* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    text-decoration: none;
}
html {
    font-size: 62%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.btn {
    background-color: #fff;
    text-transform: uppercase;
    padding: 1rem 3rem;
    color: #000;
    position: relative;
    cursor: pointer;
}
.btn::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #fff;
    z-index: 0;
    transition: all .3s cubic-bezier(.78, .2, .21, .88), color 0s;
    transform: translate3d(5px, 5px, 0);
}
.btn::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    z-index: 0;
    transition: all .3s cubic-bezier(.78, .2, .21, .88), color 0s;
    transform: translate3d(5px, 5px, 0);
}
.heading{
    text-align: center;
    text-transform: capitalize;
}
.heading h1{
    position: relative;
    line-height: 1.5;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.heading h1::before{
    position: absolute;
    content: '';
    left: 47%;
    width: 100px;
    height: 2px;
    background: #75b263;
    bottom: -1%;
}
header{
    width: 100%;
    background-color: #fff;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 1rem 5rem;
    box-shadow: 0 0 30px #ccc;
}
header a{
    text-decoration: none;
    font-size: 1.7rem;
    width: 10%;

} 
header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}
header .navbar ul li{
    margin: 0 1rem;
}
header .navbar ul li a{
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: capitalize;
    color: #000;
}
header .navbar ul li a:hover,
header .icons i:hover{
    color: #75b263;
}
header .icons{
    display: flex;
}
header .icons i{
    font-size: 1.5rem;
    cursor: pointer;
    margin: .3rem; 
    color: #000;
}
.fade-element {
    animation: fade-in-out 2s infinite;
    position: relative;
}
header .ico{
    width: 45px;
    height: 45px;
    margin-right: 10px;
    align-items: center;
    justify-content: center;
}
header .ico:hover{
    animation: fade-in-out 2s infinite;
}
header .bx-menu{
    font-size: 1.5rem;
    cursor: pointer;
    margin: .1rem;
    color: #75b263;
    display: none;
}
.slider-container{
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin-bottom: 5rem;
}
.slider-container .slideBox{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .5s;
}
.slideBox.active{
    opacity: 1;
}
.slider-container .slideBox .textBox{
    position: absolute;
    top: 50%;
    left: 40%;
    text-align: center;
    justify-content: center;
}
.slider-container .slideBox .textBox h1{
    font-size: 3.1rem;
    color: rgb(6, 66, 6);
    text-transform: capitalize;
    margin-bottom: 2rem;
}
.slider-container .slideBox .textBox a{
    font-size: 22px;
    color: whitesmoke;
    background-color: #123507;
    margin-bottom: 2rem;
    align-items: center;
}
.slider-container .slideBox .imgBox img{
    width: 100%;
    height: 100vh;
    background-size: cover;
}
.slider-container .controls{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 60px;
}
.slider-container .controls li{
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #fff;
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider-container .controls li:nth-child(1){
    margin-bottom: .3rem;
}
.slider-container .controls i{
    font-size: 2rem;
    color: #000;
}
.categories{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    align-items: center;
    justify-content: center;
    padding: 6% 4%;
}
.categories .box{
    margin: 1.5rem;
    text-transform: capitalize;
    cursor: pointer;
    text-align: center;
}
.categories .box:hover img{
    transform: scale(.9); 
}
.categories .box .img-box{
    overflow: hidden;
}
.categories .box img{
    width: 100%;
    border-radius: 50%;
    transition: .5s;
    border: 2px dashed #75b263;
    padding: .4rem;
}
.categories .box h2{
     margin-top: 1rem;
}
.categories .box:hover h2{
    color: #75b263;
}
.about{
    padding: 4%;
}
.about .row{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.about .row .image{
    flex: 1 1 30rem;
}
.about .row .image img{
    width: 100%;
    height: 31rem;
}
.about .row .content{
    flex: 1 1 30rem;
    padding: 6rem 2rem;
    background-color: #f4f4f4;
}
.about .row .content h3{
    font-size: 3rem;
    color: #75b263;
    margin-bottom: .5rem;
}
.about .row .content p{
    font-size: 2rem;
    color: #ccc;
    padding: .5rem 0;
    line-height: 1.5;
}
.about .row .content .btn{
    line-height: 4rem;
}
.shop{
    padding: 5%;
}
.shop .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    align-items: center;
    justify-content: center;
}
.shop span{
    text-align: center;
    font-family: Arial, Helvetica;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    padding: 20px;
}
.shop .box-container .box{
    background-color: #75b26311;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 10px;
    margin: 2rem;
    cursor: pointer;
    line-height: 1.5;
    transition: .5s;
    position: relative;
}
.shop .box-container .box::before{
    position: absolute;
    content: '';
    width: 100%;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #75b263;
}
.shop .box-container .box .price{
    position: absolute;
    left: 2rem;
    top: 2rem;
    font-size: 2rem;
    color: #75b263;
    font-weight: bold;
}
.shop .box-container .box .title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2rem;
    margin-bottom: 2rem;
}
.shop .box-container .box .title p{
    font-size: 2.1rem;
    text-transform: capitalize;
    font-weight: bold;
    color: yellowgreen;
}
.shop .box-container .box .icons i{
    margin-top: -7rem;
}
.shop .box-container .box .icons i{
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 1.3rem;
    color: #fff;
    background-color: #75b263;
    border-radius: 50%;
    transition: .5s;
}
.shop .box-container .box .icons i:hover{
    border: 1px solid #75b263;
    background-color: #fff;
    color: #75b263;
}
.shop .box-container .box img{
    width: 100%;
}
.testimonial{
    padding: 4% 6%;
    background-image: url(/assets/img/herb\ tea3.jpg);
    background-size: cover;
    min-height: 100vh;
}
.testimonial .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    align-items: flex-start;
    justify-content: center;
    padding-top: 4rem;
}
.testimonial .box-container .box{
    text-align: center;
    padding: 30px 33px 30px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(11px);
    box-shadow: 0 20px 50px rgba(40, 113, 85, 0.4);
    border-radius: 10px;
    transition: .5s;
    border: 2px dashed #fff;
    margin: 1rem;
}
.testimonial .box-container .box:hover{
    transform: translateY(-10px);
    border-color: #75b263;
}
.testimonial .box-container .box h3{
    font-size: 2.3rem;
    text-transform: capitalize;
    color: #3ff508;
    margin: .5rem;
}
.testimonial .box-container .box span{
    color: rgb(252, 252, 78);
    text-transform: capitalize;
    font-size: 1.5rem;
}
.testimonial .box-container .box p{
    color: #3ff508;
    line-height: 1.5;
    padding: 1rem;
    font-size: 1.6rem;
}
/* .testimonial .box-container .box img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: .5rem;
    border: 2px dashed #75b263;
} */
.other{
    min-height: 100vh;
    padding: 6% 2%;
}
.other .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 0;
}
 .other .box-container .box{
    background-color: #75b26311;
    margin: 1rem .5rem;
    text-align: center;
    padding-bottom: 2rem;
    position: relative;
} 
/* .blog .box-container .box .date{
    width: 80px;
    height: 80px;
    position: absolute;
    left: 2rem;
    top: 2rem;
    background-color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.blog .box-container .box .date span{
    border-bottom: 1px solid #666;
    font-size: 2rem;
    color: #666;
} */
.other .box-container .box img{
    width: 55%;
    object-fit: cover;
}
/* .other .box-container .box img:hover{
    opacity: .7;
}
.other .box-container .box .content{
    padding: 1rem;
}
.other .box-container .box .content h3{
    margin: .5rem;
    font-size: 1.5rem;
    color: #75b263;
    text-transform: capitalize;
}
.other .box-container .box .content:hover h3{
    color: #75b26399;
}
.other .box-container .box .content p{
    color: #666;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.other .box-container .box .content .btn{
    background-color: #75b263;
    color: #fff;
}
.other .box-container .box .content .btn::before,
.other .box-container .box .content .btn::after{
    background-color: #75b263;
} */
footer{
    background-color: #75b26311;
    padding: 8% 4%;
    padding-bottom: 0;
    margin-top: -80px;
}
footer p{
    font-size: 1.5rem;
}
footer .content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19.5rem, 1fr));
    align-items: center;
    justify-content: space-around;
    line-height: 1.5;
    color: #666;
}
footer .content .box{
    margin: 2rem;
    justify-content: space-between;
}
footer .content .box img{
    width: 100px;
    color: #75b263;
}
footer .content .box h3{
    font-size: 1.8rem;
    text-transform: capitalize;
    color: #75b263;
}
footer .content .box a{
    display: block;
    text-transform: capitalize;
    font-size: 20px;
    color: #666;
}
footer .content .box a:hover{
    color: #75b263;
}
footer .content .box .icons{
    margin-top: 1.1rem;
    display: flex;
    gap: 5px;
}
footer .content .box .icons a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 1.9rem;
    color: #fff;
    background-color: #75b263;
    border-radius: 50%;
    transition: .5s;
}
footer .content .box .icons a:hover{
    border: 1px solid #75b263;
    background-color: #fff;
    color: #75b263;
}
footer .bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #fff;
    padding: 2rem 0;
}
footer .bottom p{
    font-size: 1.1rem;
    color: #000;
    text-transform: capitalize;
}
@keyframes move-button{
    0%{
        opacity: tr;
    }
    50%{
        transform: translateY(20px);
    }
    100%{
        transform: translateY(0);
    }
}
/* media queries */
@media  (max-width:991px){
    html {
        font-size: 80%;
    }
    header{
        padding: 1rem;
    }
}   
    @media  (max-width:768px){    
    header .ico{
        height: 40px;
        width: 40px;
        /* line-height: 40px; */
        border: 2px solid #75b263;
        justify-content: center;
        align-content: center;
        border-radius: 100%;
        margin-right: 10px;
    }
    header .bx-menu{
        display: block;
        font-size: 2rem;
        padding: 4px;
    }
    header .navbar{
        position: fixed;
        top: -100rem;
        left: 0;
        width: 100%;
        border-top: 1px solid #ccc;
        opacity: 1;
        transition: .5s;
    }
    header .navbar ul{
        flex-flow: column;
        padding: 2rem 0;
        background-color: #fff;
    }
    header .navbar ul li{
        width: 80%;
        text-align: center;
        margin: .5rem;
        background-color: #75b263;
        padding: 1rem;
    }
    header .navbar ul li a{
        font-size: 1.5rem;
        display: block;
        color: #f4f4f4;
    }
    header .navbar ul li:hover{
        background-color: #75b26344;
    }
    .slider-container .slideBox .textBox{
        position: absolute;
        top: 50%;
        left: 30%;
        align-items: center;
        justify-content: center;
    }
    .slider-container .slideBox .textBox h1{
        text-align: center;
        font-size: 3rem;
    }
    .slider-container .slideBox .textBox a{
        font-size: 18px;
        color: whitesmoke;
        background-color: #75b263;
        margin-bottom: 2rem;
        right: 1px;
    }    
    .slider-container .controls li{
        position: relative;
        width: 40px;
        height: 40px;
        background-color: #fff;
        list-style: none;
        cursor: pointer;
        right: -15px;
    }
    .slider-container .controls li:hover{
        background-color: rgb(33, 228, 33);
    }
    .slider-container .controls i{
        font-size: 1.5rem;
    }
    .testimonial{
        background-image: url(/assets/img/herb\ tea3.jpg);
        background-size: cover;
        min-height: 100vh;
    }
    .testimonial .box-container .box{
        text-align: center;
        position: relative;
        margin: 2rem;
    }
    header .nav-toggle{
        top: 5rem;
        opacity: 1;
    }
    footer .box:nth-child(1) p{
        margin-bottom: .5rem;
    }
    footer .content .box{
        margin: .5rem;
    }
}
@media  (max-width:450px){
    html {
        font-size: 75%;
    }
} 