* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  font-family: sans-serif;
}

.flexbox {
  display: flex;
  flex-direction: row;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  color: white;
  background-color: black;
}

.flexbox ul {
  list-style: none;
  display: flex;
}

.flexbox li {
  display: inline-flex;
  margin-right: 20px;
  font-size: 15px;
  text-transform: uppercase;
  border-radius: 15px;
  padding: 10px 20px;
}

.flexbox li:hover , .selected {
  background-color: white;
  color: black;
  transition: 1s;
}

label {
  font-size: 30px;
  margin: 30px;
}

.content {
  margin: 0px;
  font-size: 25px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.heading {
  margin-top: 12%;
  margin-bottom: 1%;
}

.btn {
  font-size: 22px;
  padding: 10px;
  margin: 10px;
  margin-bottom: 50px;
  border-radius: 10px;
  border: 2px solid white;
  color: white;
  background-color: rgba(0, 0, 0, 0);
}

.btn:hover {
  border: 2px solid orange;
  color: orange;
  transition: 0.8s;
}

.btnbar {
  margin: 10px;
}



.section-tag {
  margin: 30px;
  text-align: center;
  font-family: roboto;
  font-size: 30px;
}

.product-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 30px;

}

.product-block {
  background-color: white;
  width: 25%;
  margin: 0 3%;
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  border-radius: 10px;

}

.product-block:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}


.product-block > p{
     color : grey;
     margin-top: 10px;
}

.comment-block{

  display: flex;
  flex-direction: row;
  padding: 30px;
  padding-top: 0px;
  justify-content: space-between;

}

.comment-box{
  background-color: white;
  margin: 10px 0px 0px 20px;
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3);
  border-radius: 10px;


}

.comment-box > p{
  margin-bottom: 10px;
  font-size: 20px;

}

.comment-box > h4{
  color: orange;
}

marquee{
  padding: 3px;
  background-color: orange;
  color: white;
  margin: 0px;
  font-size: 18px;
}


.query{
  background-color: grey;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  background-image: url("qb.jpg");
  background-size: contain;
  background-attachment: fixed;
}

.query-box > h3{
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  color: white ;
}

.query-box{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#inp{
  width: 400px;
  height: 30px;
  text-align: center;
  font-size: 18px;

}


.ico{
  height: 20px;
  width: 20px;
  margin: 0 10px;
}



.footer{

  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: black;
}

.social{

  padding: 5px;
  align-items: center;
  background-color: white;
  border-radius: 8px;
}

.footer >   h4{

  margin-left: 20px;

}
