body {
  margin: 0;
  padding: 0px;
  font-family: Poppins;
}
.section-container {
  margin: 0 auto;
  max-width: 1330px;
}
/*section CSS*/
h1 {
  font-size: 34px;
  text-align: center;
  font-weight: bolder;
  padding-top: 50px;
}

h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

h4 {
  font-size: 19px;
  text-align: left;
  font-weight: bold;
  margin: 0;
}

section {
  margin: 0;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 100px;
}

section p {
  font-family: "Times New Roman";
  font-size: 16px;
}

section li {
  font-family: "Times New Roman";
  font-size: 16px;
}

section button {
  width: 100%;
  text-align: center;
  margin: 0px;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;

  background-color: #b83239;
  color: white;
  border: none;
}

button:hover {
  background-color: black;
}

/*content css*/
.product {
  margin: 30px;
  display: flex;
  flex-wrap: nowrap;
  text-align: center;

  padding: 50px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.product h3 {
  font-size: 24px;
  text-align: left;
  font-weight: bolder;
  padding-top: 30px;
  margin: 0;
}
.product h4 {
  font-size: 18px;
  text-align: left;
  font-weight: lighter;
  margin: 0;
}

.product p {
  text-align: justify;
}

.product img {
  width: auto;
  height: 500px;
  object-fit: cover;
}

.related-products {
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  grid-auto-rows: minmax(300px, auto);
  grid-gap: 10px;
  /* or  we can do separate values   
      grid-row-gap: 10px;    
      grid-column-gap: 5px; 
      grid-template-areas:
      "header header"
      "sidebar article"
      "sidebar article";*/
  justify-content: center;
  text-align: center;
}

.related-products a {
  text-decoration: none;
  color: black;
}

.grid-div p {
  font-family: Poppins;
}

.grid-div img {
  height: 300px;
}

.column {
  flex: 50%;
  padding: 2%;
  justify-content: center;
}

@media (max-width: 720px) {
  .product {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .product h3 {
    text-align: center;
  }

  .product h4 {
    text-align: center;
  }

  .product p {
    display: none;
  }

  .related-products {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-auto-rows: minmax(300px, auto);
    grid-gap: 10px;
    justify-content: space-evenly;
  }

  .product button {
    width: 100%;
  }
}
