.fleet-controls {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.fleet-button {
  border-radius: 8px;
  border: none;
  width: fit-content;
  height: fit-content;
  background: transparent;
}

#fleet-swiper {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

#fleet-swiper .swiper-wrapper {
  align-items: center;
}

#fleet-swiper .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
  height: 288px;
  width: 384px;
}

#fleet-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-pagination {
  display: none;
}

@media (max-width:991.98px) {
  .fleet-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    z-index: 5;
    position: relative;
  }
}

@media (max-width:991.98px) {
  .fleet-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--fontcolor);
    opacity: 1;
    transform: scale(1);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
    box-sizing: border-box;
  }
}

@media (max-width:991.98px) {
  .fleet-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--fontcolor);
    border-color: var(--fontcolor);
    transform: scale(1.05);
  }
}

