.elementor-16316 .elementor-element.elementor-element-3ac9fa8{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-3bc3eba */.gallery-section {
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
  background: #ffffff;
}

.gallery-heading {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #1a1a1a;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 40px;
}

.gallery-heading::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #c9a84c;
  margin: 8px auto 0;
}

/* Slider wrapper */
.slider-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}

/* REMOVE default animation from here */
.slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

/* Left moving slider */
.left-slide {
  animation: gallerySlide 80s linear infinite;
}

/* Right moving slider */
.right-slide {
  animation: gallerySlideReverse 80s linear infinite;
}

/* Pause on hover */
.slider-track:hover {
  animation-play-state: paused;
}

/* Left direction */
@keyframes gallerySlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Right direction */
@keyframes gallerySlideReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Image box */
.img-box {
  width: 260px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Image */
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}/* End custom CSS */