
  .my-carousel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
  }

  .my-swiper {
    overflow: hidden;
  }

.swiper-slide {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin: 10px 10px;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 0 8px rgb(119, 196, 232);
  display: flex;
  flex-direction: column; /* ✅ Ключевой момент */
  align-items: center;
  justify-content: center;
      max-width: 90%;
  width: 100%;
    min-height: 24vh;
}

  .my-carousel-arrow {
    background-color: rgb(119, 196, 232);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    padding: 0;
    top: 75%;
    transform: translateY(-50%);
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 22px;
    font-weight: bold;
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-button-next {
    right: 10px;
  }
  .swiper-slide p:last-child {
  font-style: italic;
  color: #666;
}
  .swiper-slide p {
  margin: 0;
  padding: 0;
}

.swiper-slide .author {
  margin-top: 10px;
  font-style: italic;
  color: #666;
}
  @media (max-width: 768px) {
      .swiper-slide{
          max-width: 30vh;
      }
  }
  @media (max-width: 480px) {
  .swiper-slide {
    padding: 16px;
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 997.98px) {
  .landing-text {
    margin-left: 30px;
    margin-top: 15px;
  }
}
.landing .img-fluid {
    max-width: 100%;
}