@charset "UTF-8";
/**
 * Bootstrap 5.3 – Variabili SCSS di base
 * @see https://getbootstrap.com/docs/5.3/customize/sass/
 */
/* ----------------------------------------------------------
 * SPACING
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * COLOR SYSTEM
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BODY
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * TYPOGRAPHY
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * LINK
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BUTTONS
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BORDER RADIUS
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * ACCORDION
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * TABS
 * ---------------------------------------------------------- */
.block__slider-gallery .container-gallery {
  position: relative;
  overflow: hidden;
  height: 210px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}
@media (min-width: 576px) {
  .block__slider-gallery .container-gallery {
    height: 300px;
  }
}
.block__slider-gallery .container-gallery .row-gallery {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  animation: galleryCardMove 30s linear infinite;
}
.block__slider-gallery .container-gallery:nth-of-type(2) .row-gallery {
  animation: galleryCardMoveReverse 30s linear infinite;
}
.block__slider-gallery .container-gallery .card-gallery {
  width: 250px;
  height: 205px;
  border-radius: 0.625rem;
  user-select: none;
  position: relative;
  padding: 0;
  overflow: hidden;
}
@media (min-width: 576px) {
  .block__slider-gallery .container-gallery .card-gallery {
    width: 340px;
    height: 280px;
  }
}
.block__slider-gallery .container-gallery .card-gallery .wrap-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.block__slider-gallery .container-gallery .card-gallery .wrap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes galleryCardMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes galleryCardMoveReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}