.products-section {
  padding: 80px 0;
  padding-top: 0;
  background: var(--white-smoke);
}
.products-section .products {
  display: flex;
  justify-content: space-between;
  align-items: inherit;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: hidden;
}
.products-section .products .product {
  max-width: 30%;
  flex-basis: 30%;
  margin-bottom: 2%;
  margin-left: 2%;
  background: var(--light-beaver);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  padding: 10px;
}
.products-section .products .product .product-img {
  max-width: 100%;
  max-height: 60%;
}
.products-section .products .product .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-section .products .product .product-text {
  max-width: 100%;
  max-height: 30%;
  padding: 10px;
  color: #fff;
}
.products-section .products .product .product-text h1 {
  margin-bottom: 20px;
}
.products-section .products .product .product-text h2 {
  color: #000;
}
.products-section .products .product .product-text h1,
.products-section .products .product .product-text p {
  color: #fff;
  margin-bottom: 20px;
}
.products-section .products .product .product-text p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  .products-section {
    padding: 30px;
  }
  .products-section .products .product {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 2%;
    margin-left: 0%;
  }
}

@media only screen and (min-width: 600px) {
  .products-section {
    padding: 30px;
  }
  .products-section .products .product {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 2%;
    margin-left: 0%;
  }
}

@media only screen and (min-width: 768px) {
  .products-section {
    padding: 50px;
  }
  .products-section .products .product {
    max-width: 48%;
    flex-basis: 48%;
    margin-bottom: 2%;
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) {
  .products-section {
    padding: 80px;
  }
  .products-section .products .product {
    max-width: 30%;
    flex-basis: 30%;
    margin-bottom: 2%;
    margin-left: 2%;
  }
}

@media only screen and (min-width: 1200px) {
  .products-section {
    padding: 80px;
    padding-top: 0;
  }
  .products-section .products .product {
    max-width: 30%;
    flex-basis: 30%;
    margin-bottom: 2%;
    margin-left: 0;
  }
  .products-section .products .product:first-of-type {
    margin-left: 0;
  }
}
