#template.fullbanner {
  position: relative;
  overflow: hidden;
}
#template.fullbanner .swiper-slide {
  overflow: hidden;
}
#template.fullbanner img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
#template.fullbanner .swiper-pagination-bullets {
  bottom: 32px;
}
#template.fullbanner .swiper-pagination-bullet,
#template.fullbanner .swiper-pagination-bullet-active {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  border-radius: 56px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}
#template.fullbanner .swiper-pagination-bullet {
  background-color: rgba(84, 84, 84, 1);
  backdrop-filter: blur(4px);
  opacity: 0.5;
}
#template.fullbanner .swiper-pagination-bullet-active {
  background-color: rgba(48, 48, 48, 0.7);
  opacity: 1;
}
#template.fullbanner .swiper-pagination-bullet:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  #template.fullbanner .swiper-pagination {
    width: fit-content !important;
    padding-left: 16px;
  }
}