.gallery-section {
  position: relative;
  padding: 5rem 0;
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 3rem 0;
  }
}

.gallery-section .img-gallery {
  height: auto;
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-section .splide .splide__slide.is-active .img-thumbnail {
  border: 3px solid #fff;
}

.gallery-section .splide .splide__track {
  overflow: visible;
}

.gallery-section .splide .splide__arrow {
  border-radius: 0;
  width: 70px;
  height: 45px;
  background-color: var(--color-secondary);
  border-radius: 50px;
}

@media (max-width: 991px) {
  .gallery-section .splide .splide__arrow {
    width: 40px;
    height: 20px;
  }
}

.gallery-section .splide .splide__arrow svg {
  fill: var(--text-button);
  width: 35px;
  height: 20px;
}

@media (max-width: 767px) {
  .gallery-section .splide .splide__arrow svg {
    width: 25px;
    height: 10px;
  }
}

.gallery-section .splide .splide__arrow--prev {
  transform: translate(-40%, -50%);
  left: 0;
}

.gallery-section .splide .splide__arrow--next {
  right: 0;
  transform: translate(40%, -50%);
}