@charset "UTF-8";
/* products-overview.css — functional styles for the product overview page */

.products-overview {
  width: 100dvw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  overflow: hidden;
  margin-bottom: 0 !important;
  margin-top: 100px;
  padding: 110px 0px 120px 0px;
}

.products-overview:before {
  background-image: url('/assets/images/uploads/2020/05/dec_1.png');
  width: 221px;
  height: 170px;
  content: '';
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}
.products-overview:after {
  background-image: url('/assets/images/uploads/2020/05/Layer_215511.png');
  width: 322px;
  height: 278px;
  content: '';
  bottom: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}

.products-overview__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.products-overview__heading {
  margin: 0 0 22px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #1a3c5a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.products-overview__intro {
  max-width: 700px;
  margin: 0 auto 62px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #4a4a4a;
  text-align: justify;
  padding: 0 20px;
}

.products-overview__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 150px;
}

.products-overview__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  width: 137px;
  height: 217px;
  content: "";
  background-image: url('/assets/images/uploads/2020/05/Layer_21551422.png');
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.products-overview__card:hover,
.products-overview__card:focus,
.products-overview__card.is-focused {
  transform: scale(1.5);
  transition: 0.3s;
}

/* reflection below the droplet */
.products-overview__card::before {
  width: 137px;
  height: 207px;
  position: absolute;
  content: "";
  background-image: url('/assets/images/uploads/2020/05/Layer_2155141_copy_3.png');
  left: 50%;
  transform: translate(-50%, 105%);
}

.products-overview__droplet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 168px;
  height: 168px;
  border-radius: 0 50% 50% 50%;
}

.products-overview__label {
  position: absolute;
  bottom: 45px;
  display: inline-block;
  width: 100%;
  left: 0px;
  z-index: 3;
  flex-direction: column;
  gap: 3px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.products-overview__label-line {
  display: block;
}

/* Tablet */
@media (min-width: 1025px) {
  /* .products-overview {
    padding: 90px 22px 100px;
  } */

  /* .products-overview__grid {
    gap: 36px;
  } */

  .products-overview__card {
    width: 137px;
    height: 217px;
  }

  .products-overview__droplet {
    width: 140px;
    height: 140px;
  }

  .products-overview__label {
    font-size: 13px;
  }

  .products-overview__intro {
    max-width: 90%;
  }
}

/* Mobile — intentional custom breakpoint (not 480px): the "droplet" grid needs to
   collapse from a row layout to a single column earlier than the standard 480px
   mobile breakpoint to avoid squeezing the decorative droplet artwork; keep 640px
   here rather than forcing it onto the 360/480/768/1024/1280 scale. */
@media (max-width: 640px) {
  .products-overview {
    padding: 100px 0 10px 0;
  }
  .site-footer .footer-widgets {
    padding-bottom: 0 !important;
  }
}
