
/*.bg-image {
  background: url('../img/media.jpg') top / cover no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
*/
.bg-image {
  background-image: url('../img/media.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  min-height: 100vh; /* full viewport height */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.bg-image > * {
  position: relative;
  z-index: 1;
}

ul#timer li p{
  color: #3e396b !important;
}

/* Slider */
/* Slider Container */
.product-slider {
  margin: 1rem auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

/* Image styling */
.swiper-slide img {
  width: 60%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}

/* Pagination Position */
.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

/* Pagination Dots */
.swiper-pagination-bullet {
  background: black;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

