:root {
  --swiper-theme-color: #fac505 !important;
  --swiper-pagination-bullet-size: 13px;
  --swiper-pagination-bullet-size: 13px;
  --swiper-pagination-bullet-width: 13px;
  --swiper-pagination-bullet-height: 13px;
  --swiper-pagination-bottom: -30px;
  --swiper-pagination-bullet-inactive-color: #fac5054f !important;
  --swiper-pagination-bullet-inactive-opacity: 0.4 !important;
}

.animated-shadow-button {
  animation: pulseShadow 2.5s infinite ease-in-out;
  z-index: 100;
}

@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 10px rgba(118, 98, 31, 0.2);
  }
  33% {
    box-shadow: 0 0 35px 3px rgba(118, 98, 31, 0.8);
  }
  66% {
    box-shadow: 0 0 35px 3px rgba(118, 98, 31, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(118, 98, 31, 0.2);
  }
}

.swiper {
  width: 100%;
  /* height: 100%; */
  position: static !important;
  /* min-height: max-content !important; */
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  /* min-height: max-content !important; */
}

@media only screen and (min-width: 768px) {
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
