*{
    margin: 0;
    padding: 0;

}
body{
    font-family: "Poppins", sans-serif;
}
.navebar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
   
}
.navebar-links{
    display: flex;
    column-gap: 10px;
    transition:text-decoration 0.25ms ease;
    
}
.navebar-link a{
    text-decoration: none;
    color: #1d232c;
}
.navebar-link a:hover{
    text-decoration: underline;
    color: #1d232c;
}
.navebar-manu-taggle{
    display: none;
}
.side-navebar{
    background-color: #1d232c;
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -60%;
    padding: 10px;
    color: white;
    transition: 1.5s;
    
}
.side-navebar-link{
    margin-bottom: 35px;
}
.side-navebar-links a{
    text-decoration: none;
     color: white;
}
.side-navebar-links a:hover{
    text-decoration: underline;
}
header{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}
.btn{
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
    margin-top: 15px;
    background-color: #1d232c;
    color: white;
    cursor: pointer;

}
.service{
    padding: 10px;
}
.service-container-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-container-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.service-container-2 div{
    background-color: #f2f4f7;
    border-radius: 5px;
    padding: 10px;
}
.new-arrival{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.new-arrival-container{
    position: relative;
    flex-basis: 20%;
}
.new-arrival-container button{
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
    margin-top: 10px;
    color: #1d232c;
    position: absolute;
    top: 50%;
    left: 18%;
    cursor: pointer;
}
.news{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news input{
    padding: 11px;
    width: 80vw;
    border: black solid 3px;
    margin-top: 20px; ;
}
.news button{
    padding: 10px;
    background-color: #1d232c;
    border-radius: 5px;
    margin: 20px;
    color: white;
}
footer{
    background-color: #1d232c;
    padding: 50px;
    color: white;
    
}
.product-section{
    margin-top: 20px;
}
.product-search{
    width: 80vw;
    border: solid black 2px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: auto;
}
.product-search input{
    border: none;
    background-color:transparent;
    width: 100%;
}
.product-search input:focus{
    outline: none;
}
.products{ 
    padding: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-around;
}
.product-box{
    text-align: center;
    flex-basis: 20%;
}
.product-box img{
    border-radius: 10px;
}
.contact-container{
    background-color: #1d232c;
    width: 40%;
    height: 90vh;
    margin: auto;
    margin-top: 40px;
     margin-bottom: 40px;
     border-radius: 10px;
}
.contact-box h2{
    text-align: center;
    color: white;
}
.contact-box p{
    color: white;
    margin-left: 20px;
    margin-top: 30px;
}
.contact-box input{
    width: 80%;
    height: 50px;
    margin: 20px;
    margin-top: 0;
    font-size: 17px;
}
.contact-box textarea{
     width: 80%;
    height: 100px;
    margin: 20px;
    margin-top: 0;
    font-size: 20px;
}
.contact-box button{
    margin-top: 0;
    margin-left: 20px;
}
.tq-container{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
   margin-top: 20%;
   margin-bottom: 20%;
    
}

@media screen and (max-width:600px){
    .navebar-manu-taggle{
    display: block;
}
.header-img{
    display: none;
}
.navebar-links{
    display: none;
}
.service-container-1{
    display: none;
}
.service-container-2{
    flex-direction:column;
}
}