.slide_gallery_title {
  text-align: center;
  margin-bottom: 20px;
}

section:has(.slide_gallery) {
  overflow: hidden;
}

.slide_gallery {
  height: 50vh;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
  overflow: visible;
}
.slide_gallery .swiper-wrapper .swiper-slide {
  width: auto;
}
.slide_gallery .swiper-wrapper .swiper-slide a {
  display: block;
  height: 100%;
}
.slide_gallery .swiper-wrapper .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide_gallery_arrows {
  margin-top: 24px;
}
.slide_gallery_arrows > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide_gallery_arrows > div .gallery_pagination {
  display: flex;
  align-items: center;
  padding: 17px 28px;
  background: #f1f1f1;
  border-radius: 50px;
  margin: 0 5px;
}
.slide_gallery_arrows > div .gallery_pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #272a35;
  background: transparent;
  transition: all 300ms;
  margin: 4px;
}
.slide_gallery_arrows > div .gallery_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #272a35;
  width: 20px;
  border-radius: 5px;
}
.slide_gallery_arrows > div .gallery_prev {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f1f1;
}
.slide_gallery_arrows > div .gallery_next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f1f1;
}

@media screen and (max-width: 991px) {
  .slide_gallery {
    height: 40vh;
  }
}
