.ImageGalleryItem {
  flex-shrink: 0;
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: var(--sizeButtonBorderRadius);
  transition-property: transform;
  overflow: hidden;
}

.ImageGalleryItem:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  background: white;
}

.ImageGalleryItem:not(.ImageGalleryItem.swiper-slide-active) {
  pointer-events: none;
  position: relative;
}

.ImageGalleryItem:not(.ImageGalleryItem.swiper-slide-active):after {
  opacity: .75;
}

.ImageGalleryItem:not(.ImageGalleryItem.swiper-slide-active).swiper-slide-prev:after, .ImageGalleryItem:not(.ImageGalleryItem.swiper-slide-active).swiper-slide-next:after {
  opacity: .25;
}

.ImageGalleryItem-content {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 0 10%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 13.29%, transparent);
}

.ImageGalleryItem-contentWrapper {
  max-width: 35rem;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.ImageGalleryItem-title {
  font-size: var(--textXxxl);
  color: #fff;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 36rem) {
  .ImageGalleryItem-title {
    font-size: var(--textLg);
  }
}

.ImageGalleryItem-title:last-child {
  margin-bottom: 0;
}

.ImageGalleryItem-text {
  font-size: var(--textSm);
  color: #fff;
  margin: 0;
}

.ImageGalleryItem-text:last-child {
  margin-bottom: 0;
}

.ImageGalleryItem img {
  z-index: var(--layerNegativeZIndex);
}

/*# sourceMappingURL=image-gallery-item.min.css.map */
