/* .carousel {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 40px;
  border: 1px solid #CCC;
  border-radius: 15px;
  /* background: #eee; */
/*}

/*.carousel img {
  width: 100%;
  height: 330px;
  display: flex;
  /* делаем этот элемент блочным, чтобы убрать лишнее пространство вокруг картинок */
  /* display: block; */
/*}

/*.arrow {
  position: absolute;
  top: 60px;
  padding: 0;
  background: #ddd;
  border-radius: 15px;
  border: 1px solid gray;
  font-size: 24px;
  line-height: 24px;
  color: #444;
  display: block;
}

.arrow:focus {
  outline: none;
}

.arrow:hover {
  background: #ccc;
  cursor: pointer;
}

.prev {
  left: 7px;
}

.next {
  right: 7px;
}

.gallery {
  width: 100%;
  overflow: hidden;
}

.gallery ul {
  height: auto;
  width: 999px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: margin-left 250ms;
  /* удаляем пустое пространство между элементами li, у которых установлен inline-block */
  /* http://davidwalsh.name/remove-whitespace-inline-block */
  /*font-size: 0;
  display: flex;
}

.carousel li {
  display: inline-block;
}

  .carousel li {
    flex: 0 0 100%; /* Каждый элемент занимает 100% ширины контейнера */
    /*box-sizing: border-box;
    
  }
  
  @media (min-width: 600px) {
    .carousel li {
      flex: 0 0 50%; /* Два элемента на строку для экранов шире 600px */
   /*}
  }
  
  @media (min-width: 900px) {
    .carousel li {
      flex: 0 0 33.33; /* Три элемента на строку для экранов шире 900px */
    /*}
  } */
/**
 * Swiper 11.2.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2025
 */

/**
 * Swiper 11.2.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2025
 */
.swiper-container {
  display: flex;
  max-width: 280px;
  width: 100%;
  height: auto;
  padding-top: 1.5rem;
  margin: 0 ;
  /* border: 5px solid antiquewhite; */
}


 .swiper {
    display: flex;
    width: 100%;  
    height: auto;
    margin: 0 auto;
    /* border: 5px solid antiquewhite; */

 }   
 .swiper-wrapper{
  box-sizing: content-box ;
 }
 .swiper-slide{
  display: flex;
 }
 .swiper-slide img{
  width: 100%;
  height: 100%;
  padding: 5px;
 }
 .swiper-butoon-prev {
   background-color: #ffff;
   left: 20px;
 }

 .swiper-butoon-next {
   background-color: #ffff;
   right: 20px;
 }

 .swiper-button-next,
 .swiper-button-prev {
   color: #c09999;
   font-size: 30px;
 }
 .swiper-pagination-bullet {
   position: relative;
   bottom: 0px;
   width: 20px;
   height: 20px;
   border: 1px solid #babdda;
    
 }
 .swiper-pagination-bullet-active {
   background-color: #3a4adb;
 }
  