.container {
  display: flex;
  flex-direction: column;
  align-items: stretch;

  margin: 0 auto;
  width: 100%;
  max-width: 1200px;

  position: relative;
}

.productSectionContainer {
  width: 100%;
  height: auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: #ffffff;
}

.productsContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 15px 0;

  background-color: #35473b;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 768px) {
  .productsContainer {
    margin-bottom: 55px;
  }
}

@media screen and (min-width: 1200px) {
  .productsContainer {
    padding: 25px;
  }
}

.productsContainer h3 {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  text-align: center;

  color: #e6c38a;
}

@media screen and (min-width: 768px) {
  .productsContainer h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .productsContainer h3 {
    font-size: 26px;
    line-height: 28px;
  }
}

@media screen and (min-width: 1200px) {
  .productsContainer h3 {
    font-size: 28px;
  }
}

.alertProductContainer {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  margin: 30px 0;

  padding: 30px 0;

  background-color: #f0dbb9;
}

@media screen and (min-width: 768px) {
  .alertProductContainer {
    justify-content: space-around;
    flex-direction: row;
    max-height: 106px;
    padding: 65px 27px;
  }
}

@media screen and (min-width: 1024px) {
  .alertProductContainer {
    padding: 79px 60px;
  }
}

@media screen and (min-width: 1200px) {
  .alertProductContainer {
    margin: 75px 0;
    padding: 75px 83px;
  }
}

.alertProductContainer img {
  width: 75%;
  height: auto;
  max-width: 120px;
  padding: 5px 0;
}

@media screen and (min-width: 480px) {
  .alertProductContainer img {
    max-width: 130px;
  }
}

@media screen and (min-width: 768px) {
  .alertProductContainer img {
    max-width: 140px;
  }
}

@media screen and (min-width: 1024px) {
  .alertProductContainer img {
    max-width: 160px;
  }
}

@media screen and (min-width: 1200px) {
  .alertProductContainer img {
    max-width: 180px;
  }
}

.alertProductContainer h6 {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-weight: 400;
  font-size: 16px;
  margin: 15px 20px;
  line-height: 24px;
  text-align: center;

  color: #35473b;
}

@media screen and (min-width: 768px) {
  .alertProductContainer h6 {
    font-size: 16px;
    line-height: 21px;
    padding: 0 9px;
    max-width: 60%;
  }
}

@media screen and (min-width: 1024px) {
  .alertProductContainer h6 {
    font-size: 18px;
    line-height: 22px;
    padding: 0px 10px;
    max-width: 60%;
  }
}

@media screen and (min-width: 1200px) {
  .alertProductContainer h6 {
    font-size: 20px;
    line-height: 24px;
    padding: 0px 5px;
    max-width: 60%;
  }
}

.textTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  padding: 30px 0;
}

.textTitle h3 {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-weight: 400;
  font-size: 18px;
  text-align: center;

  color: #35473b;
}

@media screen and (min-width: 768px) {
  .textTitle h3 {
    padding: 35px 10px 10px;
    font-size: 20px;
    max-width: 600px;
  }
}

@media screen and (min-width: 1024px) {
  .textTitle h3 {
    font-size: 26px;
    padding: 35px 50px 1px;
  }
}

@media screen and (min-width: 1200px) {
  .textTitle h3 {
    font-size: 30px;
    padding: 30px 10px 1px;
  }
}

.productCards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .productCards {
    display: flex;
    justify-content: space-around;
    flex-direction: row;

    margin: 0 29px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .productCards {
    margin: 25px 76px 65px;
  }
}

.cardContent {
  display: block;
  align-items: center;
  justify-content: center;

  padding: 25px;
  background-color: #cfdad4;
  margin: 15px;
  border-radius: 5px;
  border: solid 1px #1a3c2a73;
  margin-top: 30px;
  box-shadow: 0px 4px 4px rgba(26, 60, 42, 0.25);
}

@media screen and (min-width: 1024) {
  .cardContent {
    max-width: 60%;
  }
}

.cardContent ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  list-style: none;
  line-height: 20px;
}

.cardContent ul li {
  font-family: 'Tiro Devanagari Hindi', serif;
  font-weight: 400;
  font-size: 14px;
  color: #1a3c2a;
}

@media screen and (min-width: 1200px) {
  .cardContent ul li {
    font-size: 20px;
    line-height: 30px;
  }
}

.cardContent li::before {
  content: '•';
  color: #1a3c2a;
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .cardsImage {
    width: 67%;
    padding: 3px 48px;
  }
}

.cardsImage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.cardsImage img {
  width: 100%;
  height: auto;
  max-width: 100px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .cardsImage img {
    width: 100%;
    max-width: 133px;
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 1024px) {
  .cardsImage img {
    max-width: 135px;
  }
}

@media screen and (min-width: 1200px) {
  .cardsImage img {
    max-width: 180px;
  }
}
