/* PAGE HEADER  */
body {
  padding: 0;
  margin: 0;

}
.page-header {
  margin: 50px;
  font-size: 3vw;
  color: slategray;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: goldenrod;
}

@media (max-width: 800px) {
  .page-header {
    font-size: 6vw;
  }
}
html {
  scroll-behavior: smooth;
}

.home-image {
  display: flex;
  justify-content: center;
  width: 100%;
  object-fit: cover;
  position: relative;
  text-align: left;
  color: white;
  z-index: -1;
}
.home-image img {
  width: 100%;
  opacity: 0.8;
}

.home-text {
  position: absolute;
  top: 50px;
  left: 50px;
}
.home-text H1 {
  font-size: 7vw;
  line-height: 20%;
  color: goldenrod;
}
.home-text H2 {
  font-size: 4vw;
  line-height: 10%;
}

/* abount us */
.about-us-text {
  margin-left: 10%;
  margin-right: 10%;
  font-size: 20px;
  text-align: justify;
  /* font-family: "Open Sans", sans-serif; */
}
.about-us-text ul li {
  list-style: none;
}
.about-us-text ul li h2 {
  color: slategray;
}
.about-us-text ul li h2 i {
  margin: 5px;
  color: goldenrod;
}
@media (max-width: 800px) {
  .about-us-text {
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
    font-size: 3vw;
  }
}

/* our brands  */
.brands {
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  justify-content: space-around;
}
.brands img {
  width: 30%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  object-fit: scale-down;
}

.contactus1-content {
  text-align: center;
  font-size: 2vw;
}
@media (max-width : 600px){
    .contactus1-content {
        font-size: 4vw;
      }
}
.contactus1-content i {
  color: slategray;
  
}

@media (max-width: 600px) {
  .brands {
    flex-direction: column;
    align-items: center;
  }
  .brands img {
    width: 90vw;
    height: 90vw;
    margin-bottom: 10px;
  }
}

/* our products  */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 30%);
  justify-content: space-between;
  grid-gap: 20px;
  margin-right: 5%;
  margin-left: 5%;
}
.product {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.product img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.product p {
  text-align: center;
  background-color: slategray;
  opacity: 0.7;
  width: 100%;
  font-size: 2vw;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0px;
  margin-top: 0px;
}
@media (max-width: 600px) {
  .product-container {
    grid-template-columns: repeat(auto-fill, 100%);
  }
  .product {
    width: 90vw;
    height: 90vw;
  }
  .product img {
    height: 90%;
  }
  .product p {
    font-size: 6vw;
  }
}
