body{
    margin: 0;
    padding: 0;
    font-family:"Open Sans", sans-serif; 
}
.header{
    background-color:#8FA31E;
    width: 100%;
    height: 4rem;
    justify-content: center;
    align-content: center;
}
.header-inner{
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.logo{
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: bolder;
}

.header a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.social-svg-burger{
    width: 2rem;
}
.social{
    width: 100%;
}

.burger-btn{
    display: block;
    width: 30px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding-top: 10px;
    
    
}
.burger-btn span{
    display: block;
    background-color: white;
    width: 30px;
    height: 4px;
    margin-bottom: 3px;
}
.nav-menu{
    display: none;
    position: absolute;
    width: 40%;
    height: 100vh;
    transition: 0.3s ease-in-out;
    transform:  translateX(100%);
    top: 3;
    right: 0;
    background-color: #8FA31E;
    padding-left: 1rem;
    z-index: 100;    
}
.nav-menu li{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    padding-top: 1rem;
}
.nav-menu.show{
    display: block;
    transform: translateX(0);
}



.trust{
    background-color:#E67514 ;
    color: white;
    padding-right:10px;

}
.image-container{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}
.image-container img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
}
.overlay-text{
    width: 70%;
    height: 100%;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;

}
h1{
font-size: 120px;
}
.overlay-heading{
    width: 100%;
    padding-top: 1rem;
}
.overlay-slogan{
    border: 4px solid white;
    padding: 0;
    background-color: #8FA31E;

}
.overlay-slogan p{
    width: 100%;
    text-align: center;
    justify-content: center;
}

.oil-description{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.oil-description p{
    color: #E67514;
}
h3{
    text-align: center;
    font-weight: 500;
    display: block;
    justify-content: center;
    padding: 50px;
}
.products{
    width: 100%;
}
.products-inner{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.product{
    width: 15rem;
}
.product-img-con{
    width: 100%;
    height: 14rem;
    background-color: antiquewhite;
}
.product-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.product-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-name{
    margin-top:5px;
    margin-bottom: 5px;
    font-weight: bold;
}
.product-desc{
    text-align: center;
    font-size: 13px;
    color: #586410;
    padding-bottom: 0;
    margin-bottom: 2px;
    margin-top: 2px;
    padding-top: 0;
}
.product-price{
    margin-top: 0;
    margin-bottom: 10px;
}
.pictures {
    text-align: center;
    font-size: 20px;
}
button{
    border-radius: 5px;
    padding: 15px;
    background-color: #8FA31E;
    color: white;
    border: 2px solid white;
}
.bottom-tabs{
    background-color: #8FA31E;
    padding: 10px;
    margin-top: 2rem;
}
.bottom-tabs-inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;

}
.tab{
    width: 20rem;
    gap: 15px;
}
.tab-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    gap: 10px;
    color: white;
}
.tab-icon{
    width: 2rem;
}
.bottom-tabs a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 10px;
    
}

.about-container h2{
    color: #E67514;
    text-align: center;
    font-size: 30px;
    font-family:  "Bricolage Grotesque", sans-serif;
}

.about-container p{
    font-size: 20px;
}
@media(max-width: 985px) {
    h1{
        font-size: 80px;
    }
}
@media (max-width:812px){
    h1{
        font-size: 60px;
    }

    .products-inner{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 2rem;
    }
    .product{
        padding-bottom: 1rem;
    }


}
@media(max-width: 405px) {

    .bottom-tabs-inner{
        flex-direction: column;
    }
    .tab{
        margin: 0 auto;
    }

}
@media(max-width:360px) {
    .overlay-slogan p{
        font-size: 10px;
    }
    .shop-con a{
        font-size: 13px;
    }
    .header-about-con a{
        font-size: 13px;
    }
}
