@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

body {
  font-family: "Sora", sans-serif;
}


.banner-img {
  text-align: center;
  position: relative;
}

.banner-img .banner-first-img {
  width: auto;
  height: 100vh;
}

.banner-back-img {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
}

.banner-back-img img {
  filter: blur(10px);
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.btn-buy {
  display: block;
  width: 200px;
  height: 50px;
  border-radius: 10px;
  margin: 20px auto;
  text-decoration: none;
  text-align: center;
  color: #000;
  font-size: 24px;
  font-weight: 900;
  text-transform: capitalize;
  background: #ffd400;
  line-height: 50px;
}

.owl-carousel {
  margin-top: 30px;
}

/* Desktop default */
/* .owl-item img {
  height: 500px;
  object-fit: contain;
} */

/* Tablet (600px to 991px) */
/* @media (max-width: 991px) {
  .owl-item img {
    height: 350px;
  }
} */

/* Mobile (up to 600px) */
/* @media (max-width: 600px) {
  .owl-item img {
    height: 250px;
  }
} */
/* OWL NAV BUTTONS */
.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-nav button {
  background: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
}

.owl-nav span {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .banner-img .banner-first-img {
    width: 100%;
    height: auto;
  }

  .banner-back-img {
    display: none;
  }
}