.sec1 {
  background: url("/assets/images/product/productBG.jpg") no-repeat top center / cover;
}

.product {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.6);
}

.product .product-img img {
  aspect-ratio: 18/4;
  object-fit: cover;
  object-position: center center;
  height: auto;
}
.product-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  padding: 2rem;
}

.features .feature {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  padding: 4rem 2.5rem;
  border-radius: 2rem;
  border: 1px solid #bfbfbf;
}

@media screen and (max-width: 768px) {
  .product .product-img img {
    aspect-ratio: 1/1;
  }
}
