.gallery_section {
  margin: 0 -30px;
  padding: 120px 0;
}

.gallery-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
  white-space: nowrap;
}
.marquee-container:hover .marquee-wrapper {
  animation-play-state: paused;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

.animate .marquee-track {
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.animate.direction-left .marquee-track {
  animation-name: marquee-left;
}

.animate.direction-right .marquee-track {
  animation-name: marquee-right;
}

.marquee-item {
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  vertical-align: top;
}

.marquee-item img {
  width: 390px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.image-caption {
  font-size: 0.875rem;
  color: #666;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.gallery_title_wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 70px;
  padding: 0 30px;
}

.gallery_title_wrapper_inner {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.gallery_title_devider {
  min-width: 60px;
  width: 60%;
  background: #8A2422;
  height: 2px;
}

.gallery-title {
  font-family: "ClashDisplay", sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
}

.link_gallery {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  font-weight: 600;
  margin-top: 20px;
  font-family: "ClashDisplay", sans-serif;
  color: #000000;
  font-size: 20px;
  transition: 0.3s;
}
.link_gallery .arrow {
  margin-left: 0.5rem;
  transition: margin-left 0.2s ease;
}
.link_gallery:hover {
  text-decoration: unset;
  color: black;
  border-bottom-color: black;
}
.link_gallery:hover .arrow {
  margin-left: 0.75rem;
}

.gallery_link_wrapper {
  padding-top: 70px;
  text-align: center;
}

@media (max-width: 1200px) and (min-width: 801px) {
  .gallery-title {
    font-size: 34px;
  }
  .marquee-item img {
    width: 370px;
    height: 260px;
  }
}
@media (max-width: 800px) and (min-width: 500px) {
  .gallery-title {
    font-size: 32px;
  }
  .marquee-item img {
    width: 350px;
    height: 230px;
  }
  .gallery_section {
    padding: 100px 0;
  }
}
@media (max-width: 499px) {
  .gallery-title {
    font-size: 26px;
    line-height: 35px;
  }
  .marquee-item img {
    width: 280px;
    height: 200px;
  }
  .gallery_section {
    padding: 100px 0;
  }
  .gallery_title_wrapper {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=gallery.css.map */