*{
    /* box-sizing: border-box; */
    margin: 0;
    padding: 0;
    font-family: "Manufacturing Consent", system-ui;
    font-weight: 400;
    font-style: normal;
}

:root {
    --bg-color:  rgb(8, 24, 8);
    --text-color: white;
    --btn-color:rgb(19, 56, 19);
    --about-color: rgb(0, 0, 0, 0.3);
}
body.dark{
    --bg-color: white;
    --text-color: black;
    --btn-color:rgb(19, 56, 19);
    --about-color:rgb(19, 56, 19);
}
body{
    background-color:var(--bg-color) ;
    color:  var(--text-color);
}
a{
    color: var( --text-color);
}
body , html{
    overflow-x: hidden;
}






/* ---------------------------------------------- */
/* ---------------------------------------------- */
/* ---------------------------------------------- */
nav{
    display: flex;
    align-items: center;
    padding: 30px;
}
nav button{
    margin-left: 5%;
    width: 100px;
    height: 25px;
    border-radius: 10px;
    border: none;
    background-color:var(--btn-color) ;
    color: white;
    box-shadow: 0 0 10px var(--text-color);
    
}
.navbar{
    text-align: center;
    flex: 1;
}
.nav-links{
    display: inline-flex;
    list-style-type: none;
}
.nav-links li{
    display: inline-block;
    margin-right: 20px;
}
.nav-links li a{
    text-decoration: none;
    font-size: 3vmin;
}
.btn{
    font-size: 5vmin;
    color: var(--text-color);
    display: none;
    cursor: pointer;
    
}
.icons{
    text-align: center;
    font-size: 3vmin ;
    margin-left: 10%;
}

/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */
/* ----------------------------------------------------------- */

main{
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
main .col-1{
    width: 40%;
}
main .col-1 h1{
    font-size: 7vmin;
}
main .col-1 p{
    margin-top: 20px;
    font-size: 3vmin;
}
main .col-1 button{
    margin-top:20px ;
    width: 100px;
    height: 25px;
    border-radius: 10px;
    border: none;
    background-color:var(--btn-color) ;
    color: white;
    box-shadow: 0 0 10px var(--text-color)
}
main .col-2{
    width: 40%;
}
main .col-2 img{
    width: 450px;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(36, 48, 36);
}

/* ------------------------------------------------ */
/* ------------------------------------------------ */
/* ------------------------------------------------ */

.section1 {
    padding: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    
    
}
.about{
    /* background-color:var(--about-color); */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    color:var(--text-color);

}
.about h2{
    font-size: 5vmin;
}
.about p {
    font-size: 2.5vmin;
    margin-top: 20px;
}


/* --------------------------------------- */
/* --------------------------------------- */
/* --------------------------------------- */
.section2{
    padding: 30px;
}
.section2 h3{
    text-align:center ;
    font-size: 7vmin;
    padding: 30px 0;
}
.section2 .row1{
    display: flex;
    justify-content: space-around;
}
.section2 .row1 .col1{
    width: 30%;
    border: 1px solid var(--text-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    
}
.section2 .row1 .col1 img{
    width: 180px;
    height: 250px;
    box-shadow: 0 0 10px white;
    transition: transform 0.5s ease;
}
.section2 .row1 .col1 img:hover{
    transform: translateY(-10px);
}

.section2 .row1 .col1 .rating{
    color: gold;
}
.section2 .row2{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.section2 .row2 .col1{
    width: 30%;
    border: 1px solid var(--text-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
}
.section2 .row2 .col1 img{
    width: 180px;
    height: 250px;
    transition: transform 0.5s ease;
}
.section2 .row2 .col1 img:hover{
    transform: translateY(-10px);
}

.section2 .row2 .col1 .rating{
    color: gold;
}
/* -------------------------------------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */

.section3{
    padding: 30px;
}
.section3 h3{
    font-size: 7vmin;
    text-align: center;
}
.section3 .row1 {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
.section3 .row1 .col1{
    width: 20%;
    border: 1px solid var(--text-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
}
.section3 .row1 .col1 img{
    width: 180px;
    height: 250px;
    box-shadow: 0 0 10px white;
    transition: transform 0.5s ease;
}
.section3 .row1 .col1 img:hover{
    transform: scale(1.1);
}

/* -------------------------- */
.product-btn {
    padding:10px ;
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 30px auto ;
}



.product-btn button{
    background-color: rgb(19, 56, 19);
    box-shadow: 0 0 10px white;
    border: none;
    border-radius: 10px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;

}
.product-btn a{
    text-decoration: none;
    color: white;
    font-size: 3vmin;
}
    

/* ------------------------------------------ */
/* ------------------------------------------ */
.title{
    font-size: 7vmin;
    text-align: center;
}
.feedback{
    display: flex;
    
    justify-content: space-around;
    padding: 30px;
}
.feedback .column1{
    width: 25%;
    height: 250px;
    padding: 20px;
    border-radius: 10px;
    background-color:var(--bg-color);
    box-shadow: 0 0 10px var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}
.feedback .column1 p{
    font-size: 2.5vmin;
}
.feedback .column1 img{
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-top: 20px;
    transition: transform 0.5s ease;
}
.feedback .column1:hover{
    transform: translateY(-10px);
}

/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* ------------------------------------------------- */
@media  (max-width:768px) {
    .navbar .nav-links{
        display: none;
        flex-direction: column;
        text-align: right;
        width: fit-content;
        background-color:var(--btn-color);
        border-radius: 10px;
        position: fixed;
        top: 80px;
        right: 0;
        padding: 10px;
        transition: 5s all ease-in;
        height: 25%;
        line-height: 30px;
        box-shadow: 0 0 10px var(--text-color);
        


    }

    
    .btn{
        display: block;
    }
    .nav-links.active{
        display: flex;
    }

    /* ----------- */
    main{
        flex-direction: column;
        
    }
    main .col-1{
        width: 100%;
    }
    main .col-2{
        width: 100%;
        margin-top: 20px;
    }
    main .col-2 img{
        max-width: 400px;
    }
    .section2 .row1{
        flex-direction: column;
    }
    .section2 .row1 .col1{
        width: 90%;
        margin: 0 auto;
    }
    .section2 .row2{
        flex-direction: column;
    }
    .section2 .row2 .col1{
        width: 90%;
        margin: 0 auto;
    }
    /* ==================== */
    .section3 .row1{
        flex-direction: column;
    }
    .section3 .row1 .col1{
        width: 80%;
        margin: 0 auto;
    }
    .feedback{
        flex-direction: column;
    }
    .feedback .column1{
        width: 60%;
        margin: 0 auto;
        margin-top: 10px;
    }
}