#index_galery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom:20px;
}

.gallery-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 16px;
  box-sizing: border-box;
}

.gallery-item img {
  max-width: 120px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  	border:7px solid #F4E049;
	border-radius:80px;
}

.gallery-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-desc h3 {
  margin: 0 0 8px 0;
  font-size: 1.1em;
}

.gallery-desc span {
  color: #666;
  font-size: 1em;
}


.swiper{
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.swiper-slide img {
  max-width: 100%;
  height: auto;
  display: block;
}

 

.swiper-button-next,
.swiper-button-prev {
  background-color: #FFDE00; /* Цвет фона кнопки */
  width: 30px;
  height: 30px;
  border-radius: 50%; /* Круглая кнопка */
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  color: #000; /* Цвет стрелки */
  font-weight: 900;
}

@media (max-width: 700px) {
  #index_galery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
.gallery-item {
   flex-direction: column;
   align-items: center;
 }

.gallery-desc{
    text-align: center;
}

}


