/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Feb 17, 2025, 7:45:03 PM
    Author     : SANDHYA PRAJAPATI
*/
/* General Styles */

/* Header */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap');

:root{
    --orange:#ff7800;
    --black:#130f40;
    --light-color:#666;
    --box-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);
    --border:.2rem solid rgba(0,0,0,.1);
    --outline:.1rem solid rgba(0,0,0,.1);
    --outline-hover:.2rem solid var(-black);
}

*{
    font-family: 'Poppins',sans-serif;
    margin:0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none; 
    text-transform: capitalize;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x:hidden;
    scroll-behavior: smooth;
    scroll-padding-top:7rem;
}

body{
    background: #eee;
}

section{
    padding: 2rem 9%;
}

.heading{
    text-align: center;
    padding: 2rem 0;
    padding-bottom: 3rem;
    font-size: 3.5rem;
    color: var(--black);
}

.heading span{
    background: var(--orange);
    color: #fff;
    display: inline-block;
    padding: .5rem 3rem;
    clip-path: polygon(100% 0, 93% 50%, 100% 99%, 0% 100%, 7% 50%, 0% 0%);
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .8rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    border: .2rem solid var(--black);
    color: var(--black);
    cursor: pointer;
    background: none;
}

.btn:hover{
    background: var(--orange);
    color: #fff;
}

.header{
    position:fixed;
    top:0;
    left:0;
    right: 0;
    z-index:1000;
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding:2rem 9%;
    background: #fff;
    box-shadow: var(--box-shadow);
}


.header .logo img{
    width:9rem;
 }

.header .navbar a{
    font-size:1.7rem;
    margin: 0 1rem;
    color:var(--black);
}

.header .navbar a:hover{
    color: var(--orange);
}

.header .icons div{
    height: 4.5rem;
    width:4.5rem;
    line-height: 4.5rem;
    border-radius: .5rem;
    background: #eee;   
    color:var(--black);
    font-size: 2rem;
    cursor: pointer;
    margin-right: .3rem;
    text-align: center;
}

.header .icons div:hover{
    background: var(--orange);
    color: #fff;
}

#menu-btn{
    display: none;
}

.header .search-form{
    position: absolute;
    top: 110%;
    right: -110%;
    width: 50rem;
    height: 5rem;
    background: #fff;
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.header .search-form.active{
    right: 2rem;
    transition: .4s  linear;
}

.header .search-form input{
     height: 100%;
     width: 100%;
     background: none;
     text-transform: none;
     font-size: 1.6rem;
     color: var(--black);
     padding: 0 1.5rem;
}

.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1.5rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover{
    color: var(--orange);
}

.header .shopping-cart{
    position: absolute;
    top: 110%;
    right: -110% ;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    width: 35rem;
    background: #fff;
}

.header .shopping-cart.active{
    right: 2rem;
    transition: .4s linear;
}

.header .shopping-cart .box{
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin: 1rem 0;
}

.header .shopping-cart .box img{
    height: 10rem;
}

.header .shopping-cart .box .fa-trash{
    font-size: 2rem;
    position: absolute;
    top: 50%;
    right: 2rem;
    cursor: pointer;
    color: var(--light-color);
    transform: translateY(-50%);
}

.header .shopping-cart .box .fa-trash:hover{
    color: var(--orange);
}

.header .shopping-cart .box .content h3{
    color: var(--black);
    font-size: 1.7rem;
    padding-bottom: 1rem;
}

.header .shopping-cart .box .content span{
    color: var(--light-color);
    font-size: 1.6rem;
}

.header .shopping-cart .box .content .quantity{
    padding-left: 1rem;
}

.header .shopping-cart .total{
    font-size: 2.5rem;
    padding: 1rem 0;
    text-align: center;
    color: var(--black);
}

.header .shopping-cart .btn{
    display: block;
    text-align: center;
    margin: 1rem;
} 

.header .login-form{
    position: absolute;
    top: 110%;
    right: -110%;
    width: 35rem;
    box-shadow: var(--box-shadow);
    padding: 2rem;
    border-radius: .5rem;
    background: #fff;
    text-align: center;
}

.header .login-form.active{
    right: 2rem;
    transition: .4s linear;
}

.header .login-form h3{
    font-size: 2.7rem;
    text-transform: uppercase;
    color: var(--black);
}

.header .login-form .box{
    display: flex;
    width: 100%;
    margin: 1rem 0;
    background: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
}

.header .login-form p{
    font-size: 1.4rem;
    padding: 1rem 0;
    line-height: 0.75rem;
    color: var(--light-color);
}

.header .login-form p a{
    color: var(--orange);
    text-decoration: underline;
}




.footer{
    background: #fff;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(25rem,1fr));
    gap: 1.5rem;
}

.footer .box-container .box img{
    width: 9rem;
}
.footer .box-container .box h3{
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .box-container .box h3 i{
    color: var(--orange);
}

.footer .box-container .box .links{
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box .links i{
    color: var(--orange);
    padding-right: .5rem;
} 

.footer .box-container .box .links:hover i{
    padding-right: 2rem;
}

.footer .box-container .box p{
    line-height: 1.8;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.footer .box-container .box .share a{
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    border-radius: .5rem;
    font-size: 2rem;
    color: var(--black);
    margin-left: .2rem;
    background: #eee;
    text-align: center;
}

.footer .box-container .box .share a:hover{
    background: var(--orange);
    color: #fff;
}

.footer .box-container .box .email{
    width: 100%;
    margin: .7rem 0;
    padding: 1rem;
    border-radius: .5rem;
    background: #eee;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
}

.footer .box-container .box .payment-img{
    margin-top: 2rem;
    height: 3rem;
}

.footer .credit{
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    color: var(--black);
    border-top: var(--border);
}

.footer .credit span{
    color: var(--orange);
}


.lab-section h2{
    font-size:30px;
    text-align: center;
}

.lab-section p{
    font-size:20px;
    text-align: center;
}
/* Sections */
.lab-section {
    padding: 10px 20px;
    background: white;
    margin: 10px ;
    max-width: 1900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.para .head1{
    font-size:20px;
}

.head1 h2{
    font-size:30px;
    color:black;
}

.head1 {
    font-size: 20px;
}
/* Lab Section */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.image-gallery img {
    width: 100px;
    height:300px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.image-gallery img:hover {
    transform: scale(0.9);
}

/* Products Grid */
.products-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.products {
    background: url(bgimgplant.png) no-repeat center center/cover;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 50%;
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 300px;
}

.products img {
    width: 100%;
    border-radius: 10px;
}

.products h2{
    text-align:center;
    font-size:30px;
    color:white;
}

.products .three{
    height:100px;
    width:250px;
    background:lightskyblue;
    color:black;
    padding-top:30px;
    border-radius:10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size:20px;
    font-weight:bold;
    font-family:sans-serif,georgian;
    text-align:center;
    
}

.products .containers{
    display:flex;
    margin-left:270px;
    gap:100px;
    margin-top:80px;
   
}


/* Why Choose Us */
.why-choose {
    background:graytext;
    color: white;
    margin-top:20px;
}

.why-choose h2{
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.feature {
    text-align: center;
    width: 30%;
}

.feature i {
    font-size: 40px;
    color: white;
}

.contact{
    background:white;
}
   .container {
    background: whitesmoke;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 400px;
    margin-left: 410px;
    margin-top: 20px;
}
        h2 {
            text-align: center;
        }
        label {
            display: block;
            margin: 10px 0 5px;
        }
        input, textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        button {
            width: 100%;
            padding: 10px;
            border: none;
            background: #5a78db;
            color: white;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        button:hover {
            background: #3f5bbd;
        }
/* Footer */
.gallery {
    padding: 2rem 9%;
    text-align: center;
}

.gallery .heading {
    
    margin-bottom: 2rem;
    color: #333;
}

.gallery .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem,1fr));
    gap: 1.5rem;
}

.gallery .box-container .box {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery .box-container .box img {
    width: 100%;
    height: 280px; /* Fixed height */
    object-fit: cover; /* Ensures images fit and crop neatly */
    transition: transform 0.3s ease;
}

.gallery .box-container .box:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.gallery .box-container .box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery .box-container .box:hover::after {
    opacity: 1;
}



.home{
    background: url('tricodermaimg.jpg');
    height:500px;
    width:100%;
    margin-top:100px;
}

.home p{
    font-size:60px;
    padding-left: 50px;
    padding-top:290px;
    color:white;
}
.home h1{
     text-align:center;
     font-size:40px;
}

.hero h2{
   text-align:center;
   font-size:40px;
}

.hero .three{
    height:90px;
    width:200px;
    background-color: lightsteelblue;
    color:black;
    padding-top:30px;
    border-radius:10px;
   
    font-size:20px;

    font-family:sans-serif,georgian;
    text-align:center;
    
}
.hero .three:hover{
    background-color:black;
    color:white;
}

.hero .containers{
    display:flex;
    margin-left:250px;
    gap:40px;
    margin-top:20px;
   
}

.benefits h2{
    text-align:center;
    font-size:30px;
}

.benefits .containers{
    display:flex;
    margin-left:100px;
    gap:40px;
    margin-top:20px;
   
}

.benefits .three{
    height:100px;
    width:250px;
    background-color: darkcyan;
    color:white;
    padding-top:40px;
    border-radius:10px;
    box-shadow:4px 2px 1px 2px gray;
    font-size:20px;

    font-family:sans-serif,georgian;
    text-align:center;
    
}
.benefits .three:hover{
    background-color:lightsteelblue;
    color:black;
}



@media screen and (max-width:480px) 
{
    .header{
    position:fixed;
    top:0;
    left:0;
    right: 0;
    z-index:1000;
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding:2rem 2%;
    background: #fff;
    box-shadow: var(--box-shadow);
    height:80px;
    width:90%;
    }
    
    .header .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        height:360px;
    }
    
    .header .navbar.active {
       display: flex;
    }
    
    .header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
    line-height: 3;
}
    #menu-btn {
        display: block;
        font-size:12px;
        margin-right: 40px;
    }
   
     .header .logo img {
        width: 7rem;
    }
    
    .header .icons #search-btn {
    display:none;
    }
    
    .header .icons #cart-btn {
    display:none;
    }
     
    .header .icons #login-btn {
    display:none;
   }
  
   section {
    padding: 2rem 1%;
}

 .header .search-form {
        position: absolute;
        top: 110%;
        right: -130%;
        width: 30rem;
        height: 5rem;
        background: #fff;
        border-radius: .5rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        box-shadow: var(--box-shadow);
    }
    
    .header .search-form.active{
        right: 3rem;
        transition: .4s  linear;
    }

    
.header .search-form input {
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--black);
    padding: 0 2rem;
}
.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover{
    color: var(--orange);
}

.home {
    background: url(tricodermaimg.jpg)no-repeat center center/cover;
    height: 250px;
    width: 103%;
    margin-top: 70px;
}
html{
    width:450px;
}

.home h1 {
        text-align: center;
        font-size: 15px;
        margin-right: 70px;
    }
.home p {
        font-size: 15px;
        padding-left: 20px;
        padding-top: 150px;
        color: white;
        font-weight: bold;
        margin-left: 50px;
    }
.hero h2 {
        text-align: center;
        font-size: 13px;
        margin-right: 60px;
    }
.hero .containers {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
    margin-left:60px;
}
.hero .three {
    height: 40px;
    width: 270px;
    background-color: lightsteelblue;
    color: black;
    padding-top: 10px;
    border-radius: 10px;
    font-size: 20px;
    font-family: sans-serif, georgian;
    text-align: center;
}
    
.gallery .heading {
        margin-bottom: 2px;
        color: #333;
        font-size: 20px;
        margin-right: 30px;
    }
    
  .gallery {
        padding: 1rem 20%;
        text-align: center;
        padding-left: 20px;
    }
    .gallery .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 1.5rem;
}

.gallery .box-container .box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3sease;
}

   .benefits .containers {
        display: flex;
        flex-direction: column;
        margin-left: 40px;
        gap: 10px;
        margin-top: 3px;
    }
    
    .benefits .three {
    height: 30px;
    width: 295px;
    background-color: darkcyan;
    color: white;
    padding-top: 10px;
    border-radius: 10px;
    box-shadow: 4px 2px 1px 2px gray;
    font-size: 15px;
    font-family: sans-serif, georgian;
    text-align: center;
}
    .benefits h2 {
        text-align: center;
        font-size: 25px;
        margin-right: 50px;
    }

.products h2 {
    text-align: center;
    font-size: 20px;
    color: white;
}

.products .containers {
        display: flex;
        margin-left: 40px;
        gap: 5px;
        margin-top: 10px;
        flex-direction: column;
    }
.products .three {
    height: 70px;
    width: 260px;
    background: lightskyblue;
    color: black;
    padding-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif, georgian;
    text-align: center;
}

.container {
    background: whitesmoke;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 245px;
    margin-left: 70px;
    margin-top: 20px;
    height: 350px;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 20px;
}

.contact {
    background: white;
    width: 390px;
}

.products {
    background: url(bgimgplant.png) no-repeat center center / cover;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 50%;
    transition: all 0.3sease-in-out;
    width: 85%;
    height: 300px;
}

     .footer .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
        gap: 1.5rem;
    }
    .footer {
        text-align: center;
        width: 85%;
        height: 100%;
    }
.footer .box-container .box p {
    line-height: 1.8;
    font-size: 13px;
    color: var(--light-color);
    padding: 1rem 0;
}
.footer .box-container .box .links {
    display: block;
    color: var(--light-color);
    padding: 2px;
    font-size: 13px;
}

.footer .box-container .box h3 {
    font-size: 2rem;
    color: var(--black);
}
    
    .footer .credit {
    text-align: center;
    margin-top: 2rem;
    padding: 3px;
    font-size: 1rem;
    color: var(--black);
    border-top: var(--border);
}

.footer .box-container .box .email {
    width: 80%;
    margin: .7rem 0;
    padding: 1rem;
    border-radius: .5rem;
    background: #eee;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    height: 30px;
}
.btn {
    margin-top: 2px;
    display: inline-block;
    padding: .1rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    border: .2rem solid var(--black);
    color: var(--black);
    cursor: pointer;
    background: none;
    height: 30px;
    width: 50%;
}



}

/*@media screen and (max-width:320px) 
{
    .header{
    position:fixed;
    top:0;
    left:0;
    right: 0;
    z-index:1000;
    display: flex;
    align-items:center;
    justify-content: space-between;
    padding:2rem 2%;
    background: #fff;
    box-shadow: var(--box-shadow);
    height:80px;
    width:330px;
    }
    
    .header .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        height:360px;
    }
    
    .header .navbar.active {
       display: flex;
    }
    
    .header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
    line-height: 3;
}
    #menu-btn {
        display: block;
        font-size:12px;
        margin-right: 20px;
    }
   
     .header .logo img {
        width: 7rem;
    }
    
    .header .icons #search-btn {
    display:none;
    }
    
    .header .icons #cart-btn {
    display:none;
    }
     
    .header .icons #login-btn {
    display:none;
   }
  
   section {
    padding: 2rem 1%;
}

 .header .search-form {
        position: absolute;
        top: 110%;
        right: -130%;
        width: 30rem;
        height: 5rem;
        background: #fff;
        border-radius: .5rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        box-shadow: var(--box-shadow);
    }
    
    .header .search-form.active{
        right: 3rem;
        transition: .4s  linear;
    }

    
.header .search-form input {
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--black);
    padding: 0 2rem;
}
.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover{
    color: var(--orange);
}

.home {
    background: url(tricodermaimg.jpg)no-repeat center center/cover;
    height: 250px;
    width: 103%;
    margin-top: 70px;
}
html{
    width:320px;
}

.home h1 {
    text-align: center;
    font-size: 15px;
}
.home p {
    font-size: 15px;
    padding-left: 20px;
    padding-top: 150px;
    color: white;
    font-weight: bold;
}
.hero h2 {
    text-align: center;
    font-size: 20px;
}

.hero .containers {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
    margin-left:20px;
}
.hero .three {
    height: 40px;
    width: 270px;
    background-color: lightsteelblue;
    color: black;
    padding-top: 10px;
    border-radius: 10px;
    font-size: 20px;
    font-family: sans-serif, georgian;
    text-align: center;
}
    
.gallery .heading {
        margin-bottom: 2px;
        color: #333;
        font-size: 20px;
    }
    
    .gallery {
    padding: 1rem 2%;
    text-align: center;
    padding-left: 20px;
}
    .gallery .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 1.5rem;
}

.gallery .box-container .box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3sease;
}

    .benefits .containers {
        display: flex;
        flex-direction:column;
        margin-left: 8px;
        gap: 10px;
        margin-top: 3px;
    }
    
    .benefits .three {
    height: 30px;
    width: 295px;
    background-color: darkcyan;
    color: white;
    padding-top: 10px;
    border-radius: 10px;
    box-shadow: 4px 2px 1px 2px gray;
    font-size: 15px;
    font-family: sans-serif, georgian;
    text-align: center;
}
    .benefits h2 {
    text-align: center;
    font-size: 20px;
}

.products h2 {
    text-align: center;
    font-size: 20px;
    color: white;
}

.products .containers {
    display: flex;
    margin-left: 10px;
    gap: 5px;
    margin-top: 10px;
    flex-direction: column;
}
.products .three {
    height: 70px;
    width: 260px;
    background: lightskyblue;
    color: black;
    padding-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif, georgian;
    text-align: center;
}

.container {
    background: whitesmoke;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 245px;
    margin-left: 40px;
    margin-top: 20px;
    height: 350px;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 20px;
}

     .footer .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(20rem,1fr));
        gap: 1.5rem;
    }
    .footer{
        text-align: center ;
         width: 103%;
        height: 100%;
    }
.footer .box-container .box p {
    line-height: 1.8;
    font-size: 13px;
    color: var(--light-color);
    padding: 1rem 0;
}
.footer .box-container .box .links {
    display: block;
    color: var(--light-color);
    padding: 2px;
    font-size: 13px;
}

.footer .box-container .box h3 {
    font-size: 2rem;
    color: var(--black);
}
    
    .footer .credit {
    text-align: center;
    margin-top: 2rem;
    padding: 3px;
    font-size: 1rem;
    color: var(--black);
    border-top: var(--border);
}

.footer .box-container .box .email {
    width: 80%;
    margin: .7rem 0;
    padding: 1rem;
    border-radius: .5rem;
    background: #eee;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    height: 30px;
}
.btn {
    margin-top: 2px;
    display: inline-block;
    padding: .1rem 3rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    border: .2rem solid var(--black);
    color: var(--black);
    cursor: pointer;
    background: none;
    height: 30px;
    width: 50%;
}



}*/

/*    .benefits .containers {
    display: flex;
    margin-left: 7px;
    gap: 10px;
    margin-top: 20px;
    flex-direction: column;

    .benefits h2 {
    text-align: center;
    font-size: 20px;
    }
    
    .hero .three {
    height: 50px;
    width: 300px;
    background-color: lightsteelblue;
    color: black;
    padding-top: 10px;
    border-radius: 10px;
    font-size: 20px;
    font-family: sans-serif, georgian;
    text-align: center;
}
    
        .hero .containers {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-top: 20px;
        margin-left: 10px;
    }
    
    .gallery .box-container .box img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3sease;
}
    
    .gallery .heading {
    margin-bottom: 1rem;
    color: #333;
    font-size: 25px;
}
    .hero h2 {
    text-align: center;
    font-size: 19px;
}
    
    .home p {
    font-size: 20px;
    padding-top: 140px;
    color: white;
    text-align: center;
}
    .home h1 {
    text-align: center;
    font-size: 20px;
}
    .home {
        background: url('tricodermaimg.jpg') no-repeat center center/ cover;
        height: 300px;
        width: 100%;
        margin-top: 80px;
    }
    
  

   .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 2%;
    background: #fff;
    box-shadow: var(--box-shadow);
    
}
    .header .navbar {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
  }
   .header .navbar.active {
      display: flex;
      gap:20px;
  }
  
    html{
        width: 100%;
    }
    
  
  #menu-btn {
        display: block;
    } 
    .header .navbar a {
    font-size: 1.7rem;
    margin: 0 1rem;
    color: var(--black);
    line-height: 3;
}


.gallery .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 1.5rem;
}

.header .search-form {
        position: absolute;
        top: 110%;
        right: -130%;
        width: 30rem;
        height: 5rem;
        background: #fff;
        border-radius: .5rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        box-shadow: var(--box-shadow);
    }
    
    .header .search-form.active{
        right: 3rem;
        transition: .4s  linear;
    }

    
.header .search-form input {
    height: 100%;
    width: 100%;
    background: none;
    text-transform: none;
    font-size: 1.6rem;
    color: var(--black);
    padding: 0 2rem;
}
.header .search-form label{
    font-size: 2.2rem;
    padding-right: 1rem;
    color: var(--black);
    cursor: pointer;
}

.header .search-form label:hover{
    color: var(--orange);
}
#menu-btn {
        display: block;
        font-size:12px;
        margin-right: 15px;
    }


   .header .icons #search-btn {
    display:none;
}

.header .icons #cart-btn {
    display:none;
}
.header .icons #login-btn {
    display:none;
}


 .footer .box-container{
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(20rem,1fr));
        gap: 1.5rem;
    }
    .footer{
        text-align: center ;
         width: 103%;
        height: 100%;
    }
    
.footer .box-container .box p {
    line-height: 1.8;
    font-size: 13px;
    color: var(--light-color);
    padding: 1rem 0;
}
.footer .box-container .box .links {
    display: block;
    color: var(--light-color);
    padding: 2px;
    font-size: 13px;
}

.footer .box-container .box h3 {
    font-size: 2rem;
    color: var(--black);
}
    
    .footer .credit {
    text-align: center;
    margin-top: 2rem;
    padding: 3px;
    font-size: 1rem;
    color: var(--black);
    border-top: var(--border);
}


    }*/
