.mySwiper {
  max-width: 1400px;
  margin: auto;
  min-height: 350px;
  width: 100%;
  height: 80%;
  background-color: var(--strong-gray);
}

.swiper-slide-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 18px;
  color: var(--white);
  padding: 2em;
}

.slide-img {
  object-fit: contain;
  width: 12em;
  height: auto;
}

.--bigger {
  width: 20em;
}

.--smaller {
  width: 10em;
}

.slide-text {
  font-size: 1.5em;
  text-align: center;
  cursor: context-menu;
}

.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background-color: rgb(92, 92, 92);
}

.swiper-pagination-bullet-active {
  background-color: var(--white);
}

.swiper-button-next-carousel,
.swiper-button-prev-carousel {
  color: var(--white);
  display: none;
}

@media screen and (min-width: 1400px) {
  .slide-img {
    width: 18rem;
  }
  .--bigger {
    width: 30rem;
  }
  .--smaller {
    width: 13rem;
  }
  .slide-text {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 768px) {
  .swiper {
    height: 60%;
  }
  .slide-text {
    font-size: 1.1em;
  }
  .swiper-button-next-carousel,
  .swiper-button-prev-carousel {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .slide-text {
    font-size: 0.9em;
  }
  .slide-img {
    width: 10em;
  }
  .--bigger {
    width: 16em;
  }
  .--smaller {
    width: 8rem;
  }
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
