*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
}

:root{
    --main-color: #00754a;
    --text-color: #000000;
    --bg-color:#dfdfdc;
    --other-color: #ffffff;
    --second-color: #3b3b3b;

    --big-font : 4.5rem;
    --h2-font : 2.6rem;
    --p-font : 1.1rem;
}

body{
    background: var(--bg-color);
    color: var(--text-color);
}

header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between ;
    background: transparent;
    padding: 30px 14%;
    transition: all .50s ease;
}

.logo{
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 33px;
    font-weight: 700;
}

.logo i{
    vertical-align: middle;
    margin-right: 8px;
    color: var(--main-color);
}

.navlist{
    display: flex;
}

.navlist a{
    color: var(--text-color);
    font-size:18px;
    font-weight: 600;
    margin: 0 30px;
    transition: all .50s ease;
}

.navlist a:hover{
    color: var(--main-color);
}

.navlist a.active{
    color:var(--main-color);
}

.nev-icons{
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: var(--main-color);
    border-radius: 3rem;
    box-shadow: #00754a 0px 1px 25px;
}
.nev-icons i{
    vertical-align: middle;
    font-size: 25px;
    color: var(--bg-color);
    margin-right: 8px;
    margin-left: 5px;
    transition: all .50s ease;
}

#menu-icon{
    font-size: 33px;
    color: var(--bg-color);
    display: none;
}

.nev-icons i:hover{
    transform: scale(1.1);
    color: var(--text-color);
}

section{
    padding: 70px 15% 60px;
}

.home{
    position: relative;
    height: 100vh;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}
.home-img img{
    width: 100%;
    height: auto;
    

}
.home-text h1{
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3rem;
}

span{
    color: var(--main-color);
}
.btn{
    display: inline-block;
    padding: 15px 35px;
    background: #00754a;
    color: #edede9;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 3rem;
    transition: all .50s ease;
}

.btn i{
    vertical-align: middle;
    margin-left: 9px;
    font-size: 22px;
}
.btn:hover{
    background-color: var(--main-color);
    color: var(--bg-color);
    box-shadow: #00754a 0px 1px 25px;
}

.btn2{
    display: inline-block;
    margin-left: 30px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 3px solid black;
    color: #000000;
    transition: all .50s ease;
}

.btn2:hover{
    transform: scale(1.1) translateX(12px);
}

header.sticky{
    padding: 6px 13%;
    background:rgb(237, 237, 237);
}

.container{
    padding: 30px 14% 70px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,auto));
    gap: 2rem;
    text-align: center;
}

.container-box{
    padding: 43px 43px 43px 43px;
    background: var(--other-color);
    border-radius: 3rem;
}
.container-box img{
width: 100%;
max-width: 50px;
height: auto;
}

.container-box h3{
    font-size: 21px;
    font-weight: bold;
    margin: 16px 0;
}

.container-box a{
    color: var(--second-color);
    font-size: 15px;
    letter-spacing: 1px;
    transition: all .50s ease;
}

.container-box a:hover{
color: #00754a;
}

.about{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: auto;
}

.about-img img{
    width: 100%;
    height: auto;
}

.about-text h2{
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 2rem;  
}

.about-text p{
    color: #3d3d3d ;
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 3rem;

}

.middle-text{
    text-align: center;
}

.middle-text h4{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00754a;
}

.middle-text h2{
    font-size: 25px;
}

.shop-content{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,auto));
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;

}

.row{
    position: relative;
    padding: 10px 35px 40px;
    background: var(--other-color);
    border-radius: 3rem;

}

.row img{
    width: 100%;
    height: auto;
    transition: transform .40s ease;
    cursor: pointer;
}

.row h3{
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.row p{
    color: #3d3d3d;
    font-size: 15px;
    line-height:30px;
    margin-bottom: 1.1rem;
}

.in-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.in-text .price h6{
    font-size: 17px;
    color: #00754a;
    font-weight: 600;

}

.in-text .s-btnn a{
    display: inline-block;
    padding: 9px 23px;
    background: var(--bg-color);
    color: #00754a;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 3rem;
    transition: all .50s ease;
}

.in-text .s-btnn a:hover{
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: #00754a 0px 1px 25px;
}

.top-icon{
    position: absolute;
    top: 30px;
    left: 35px;
}

.top-icon i{
    font-size: 22px;
    color: #00754a;
}

.row-btn{
    text-align: center;
    margin-top: 6rem;
}

.row img:hover{
    transform: scale(1.1);
}

.review-content{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,auto));
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
}

.box{
    padding: 35px;
    background: var(--other-color);
    border-radius: 3rem;
}
.box p{
    color: var(--second-color);
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 1.5rem;
}

.in-box{
    display: flex;
    align-items: center;
    gap: 30px;
}

.bx-img img{
    width: 30%;
    height: auto;
    border-radius: 70%;
}

.bxx-text h4{
    margin: 5px 0;
    font-size: 18px;
}
.bxx-text h5{
    color: var(--second-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;

}

.ratings i{
   color: #00754a;
    font-size: 18px;
    margin-right: 5px;
    
}
.contact{
   margin-top: 0%;
}



.contact-text{
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 5rem;
    padding: 50px;
    align-items: center;
  
}

.contact-text h2{
    
font-size: 30px;
margin-bottom: 10px;
}

.contact-text p{
    color: var(--second-color);
    font-size: 15px;
    max-width: 950px;
    line-height: 30px;
    margin-bottom: 3rem;
}

.social i{
    display: inline-block;
    font-size: 35px;
    color: var(--second-color);
    margin: 0 20px;
    transition: all .50s ease;
}

.social .clr i{
    color: var(--main-color);
}

.social i:hover{
    color: #00754a;
}
.details{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-left: 80px;

}

 .main-d a{
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    
}
.main-d i{
    vertical-align: middle;
    margin-right: 12px;
    font-size: 20px;
    color:var(--main-color);
}

.scroll{
    position: fixed;
    bottom: 2.2rem;
    border-top: 5rem;
    right: 3.2rem;
}

.scroll i{
    font-size: 22px;
    color: var(--text-color);
    background: var(--main-color);
    padding: 10px;
    border: radius 2rem; ;
}



@media (max-width: 1545px){
    header{
        padding: 60px 4%;
        transition: .2s;
    }
    header.sticky{
        padding: 14px 4%;
        transition: .2s;
    }
    section{
        padding: 50px 10% 60px;
        transition: .2s;
    }

    .container{
        padding: 30px 4% 50px;
    }

}

@media (max-width: 1180px){
    .home{
        height: 85vh;
    }
}

@media (max-width: 1060px){
    #menu-icon{
        display: initial;

    }
    .navlist{
        position: absolute;
        top: -1000px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: left;
        background: var(--other-color);
        transition: all .50s ease;
    }

    .navlist a{
        display: block;
        padding: 0.5rem;
        margin: 1rem;
        border-left: 2px solid var(--main-color);
    }

    .navlist.open{
        top: 100%;
    }


}

@media (max-width: 1045px){
.home-img img{
    width: 100%;
    max-width: 490px;
    height: auto;
}

    .about-img img{
        width: 100%;
        max-width: 490px;
        height: auto;
    }

    .home{
        height: 70vh;
    }

}

@media (max-width: 860px){
    .home{
        grid-template-columns: 1fr;
        height: 118vh;
    }

    .home-text{
        padding-top: 60px;
    }
    .home-img{
        text-align: center;
    }
    .about{
        grid-template-columns: 1fr;
    }
.about-img{
    text-align: center;
}
}

@media (max-width: 860px){

}
