/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 10 2025 | 13:28:51 */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  margin: 0 auto;
  overflow: hidden;
}

.scrolling-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  text-align: center;
}

.scrolling-text span {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 12vw;
  font-weight: 700;
color:#FF2466;
  white-space: nowrap;
	line-height:1.2;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition:
    opacity 1s ease-in-out,
    visibility 1s ease-in-out,
    transform 1s ease-in-out;
  object-fit: contain;
  bottom: 0;
}

.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .scrolling-text span {
    font-size: 8vw;
  }
  .hero-wrapper {
    height: 50vh;
  }
	
.scrolling-text-wrapper {
  top: 30%;
}
	
}

@media (max-width: 767px) {
  .scrolling-text span {
    font-size: 20vw;
  }
  .hero-wrapper {
    height: 40vh;
  }
}
