*{
  padding: 0px;
  margin: 0px;
}

body{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.Navbar{
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.Navbar-links{
  display: flex;
  column-gap: 20px;
}

.Navbar-links a{
  text-decoration: none;
  color: #10232c;
}

.Navbar-links a:hover{
  text-decoration: underline;
   color: #10232c;
}

.Navbar-Menu-toggle{
  display: none;
}

.container{
  padding: 20px;
}

.search-bar{
  width: 80%;
  border: black solid 2px;
  border-radius: 20px;
  padding: 10px;
  margin: auto;
  display: flex;
  text-align: center;
}

.search-bar input{
  border: none;
  justify-content: space-between;
  background-color: transparent;
  width: 100%;
}

.search-bar input:focus{
  outline: none;
}

.container-box{
  display: flex;
  gap: 10%;
  flex-wrap: wrap;
  padding: 20px;
  justify-content: space-between;
  text-align: center;
}

.container-box img{
  flex-basis: 20%;
}


/* Side navbar*/
 .Side-Navbar{
  background-color: #10232c;
  width: 50%;
  height: 100%;
  top: 0px;
  left: -60%;
  position: fixed;
  color: white;
  padding: 20px;
  transition: 2s;
 } 

 .Side-Navbar-link{
  margin-bottom: 30px;
 }

 .Side-Navbar-link a{
  color: white;
  text-decoration: none;
 }

 .Side-Navbar-link a:hover{
  text-decoration: underline;
 }

 /* Header*/
.header{
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 50px;
}

.header-btn{
  top: 20px;
  bottom: 20px;
  left: 10px;
  right: 10px;
  background-color: black;
  color: white;
  padding: 10px;
  margin-top: 10px;
  border: none;
}

.service{
  padding: 20px;
}

.service-container-1{
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.service-container-2{
  display: flex;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}

.service-container-2 div {
background-color: #f2f4f7;
padding: 10px;
border-radius: 5px;
}

.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%;
  color: #10232c;
  margin-top: 10px;
  border: none;
  border-radius: 10px;
  top: 50%;
  left: 18%;
  position: absolute;
}

.News{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.News input{
  padding: 8px;
  border: solid black 2px;
  width: 80vw;
  margin: 10px;
}

.News button{
  background-color: #10232c;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;  
}

.footer{
  background-color: #10232c;
  padding: 40px;
  margin-top: 20px;
  color: white;
}

.contact-us{
  background-color: darkblue;
  color: white;
  width: 700px;
  height: 100%;
  display: flex;
  border-radius: 15PX;
  padding: 20px;
  margin-top: 20px;
  margin-left: 23%;
  display: block;
}

.contact-us div{
  padding: 20px;
  justify-content: center;
}

.contact-us input{
  padding: 25px;
  border-radius: 10px;
  border: none;
  width: 95%;
  margin-top: 10px;
}

.contact-us input:focus{
  outline: none;
}

.submit-btn{
  padding: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 25px;
  margin-right: 25px;
  border-radius: 15px;
  border: none;
}

/* Media Query */
@media screen and (max-width:700px) {
  .Navbar-Menu-toggle{
  display: block;
  }
  .Navbar-links{
    display: none;
  }
  .header-img{
    display: none;
  }
  .service-container-1{
    display: none;
  }
  .service-container-2{
    flex-direction: column;
  }
}