* {
    margin: 0;
    padding: 0;
}

/* body {
  background: rgb(0, 0, 0);
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  
} */

.swiper {
  margin-top: 0px;
  width: 100%;
  max-width: 450px;
  height: 350px;
}

@media (max-width: 500px) {
  .swiper {
    height: 260px;
  }
}

.swiper-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--blue);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    
}


.swiper-slide span{
    text-align: center;
    width: 100%;
    color: var(--green);
    font-size: 20px;
    margin-bottom: 10px;
}
.swiper-pagination-bullet {
    width: 30px;
    height: 10px;
    text-align: center;
    border-top: 4.5px solid white;
    border-bottom: 4.5px solid white;
    line-height: 20px;
    font-size: 12px;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
  }

  .swiper-pagination-bullet-active {
    background: #007aff;
  }

.swiper-button-next,.swiper-button-prev{
    color: #fff;
}