/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.slide-container {
  margin: 0 0;
  overflow: hidden;
}
.card {
  background: #fff;
  border-radius: 8px;
}
.card .image-box {
  height: 270px;
}
.card .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 0px 0px;
  object-fit: cover;
}
.swiper-navBtn {
  color: #000;
  height: 40px;
  width: 40px;
  background: #ffffff7c;
  border-radius: 50%;
}
.swiper-navBtn:hover {
  background: #fff;
  transition: 1s;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }
}
