@import "tailwindcss";

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.section-bg {
  background-size: cover;
  background-position: center;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scrollLeft 40s linear infinite;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 30s linear infinite;
}

/*10-07-2025*/
/*Home Page - Our Exclusive Collaboration with BUNRI */
.img-wrapper {
    position: relative;
}
.img-wrapper .img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex
;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
