section.gallery {
  padding: 4rem 0;
}
.gallery h2 {
  font-size: 50px;
  font-weight: 800;
}
.gallery h2 strong {
  color: #263c8e;
  font-weight: 800;
}
.gallery .deco-img-wrap {
  position: relative;
}
.gallery .deco-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/150;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.gallery .gallery-content {
  max-width: 1200px;
  padding: 2rem;
  margin: 0 auto;
  text-align: center;
}
.gallery .gallery-content p {
  font-size: 28px;
  line-height: 1.25;
}
.gallery .main-row {
  background: white;
}
.gallery .splide-container {
  position: relative;
}
.gallery .splide__arrow {
  width: 76px;
  height: 76px;
  background: #d10e1c;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.95;
  border-radius: 8px;
}
.gallery .splide__arrow img {
  width: 40px;
  height: auto;
}
.gallery .splide__arrow.splide__arrow--prev {
  transform: rotate(-90deg) translateX(50%);
}
.gallery .splide__arrow.splide__arrow--next {
  transform: rotate(90deg) translateX(-50%);
}
.gallery .deco-img-wrap img {
  width: 100%;
  height: auto;
}
.gallery .splide__slide {
  padding: 0.5rem;
}
.gallery .splide__slide img {
  box-shadow: 3px 3px 10px #00000048;
  aspect-ratio: 494 / 278;
  object-fit: cover;
}
.gallery .btn {
  margin: 2rem auto;
  display: table;
  min-width: 280px;
}
@media (max-width: 1200px) {
  .gallery h2 {
    font-size: 40px;
  }
  .gallery .gallery-content p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .gallery h2 {
    font-size: 32px;
  }
  .gallery .gallery-content p {
    font-size: 20px;
  }
  .gallery .splide__arrow {
    display: none;
  }
}
@media (max-width: 480px) {
  section.gallery {
    padding-bottom: 0;
  }
  .gallery .gallery-content p {
    font-size: 16px;
  }
  .gallery h2 {
    font-size: 22px;
  }
  .gallery .gallery-content {
    padding-bottom: 0;
  }
}
