/* marquee div container */
.marquee {
  font-size: 15px;
  color: #fff;
  overflow: hidden;
  height: 1.8vw;
  background-color: rgb(14 14 14 / 84%);
  position: relative;
}
/* nested div inside the container */
.marquee div {
  display: block;
  width: 200%;
  position: absolute; 
  overflow: hidden;
  animation: marquee 15s linear infinite;
}
/* span with text */
.marquee span {
  float: left;
  width: 50%;
}
/* keyframe */
@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}



@media (max-width:768px) 
{
  .marquee div
  {
    top: 5px;
  }
}



.progress {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 5px;
  margin: 0px auto;
}

.progress-bar {
  width: 0%;
  height: 20px;
  background-color: #4caf50;
  border-radius: 5px;
  text-align: center;
  color: white;
  font-weight: bold;
  transition: width 0.5s ease-in-out;
  background: linear-gradient(to right, #dc7a03 0%, #efb86b 50%, #f0b768 50%, #ffd700 100%);
}

.elements-s3
{
    animation: five_x 2s ease-in-out infinite;
}

.elements-s2
{
    animation: five_x 2s ease-in-out infinite;
}

.animate__animated {
  opacity: 0;
}

.animate__slideInLeft {
  animation-name: slideInLeft;
  animation-duration: 1s;
  opacity: 1;
}

.animate__animatedleft {
  opacity: 0;
}

.animate__slideInleft2 {
  animation-name: slideInLeft;
  animation-duration: 3s;
  opacity: 1;
}

.animate__animatedright {
  opacity: 0;
}

.animate__slideInRight {
  animation-name: slideInRight;
  animation-duration: 3s;
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.btn1, .btn2 {
  animation: pulse 2s infinite;
}

.btn1 {
  animation-delay: 0s; /* No delay for the first button */
}

.btn2 {
  animation-delay: 1s; /* Delay the second button by 1 second */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}




.fade-in-element {
  opacity: 0;
}

.fade-in {
  opacity: 1;
  animation: fadeIn 1s ease-in-out forwards;
}

.slide-in-bottom-animation
{
    opacity: 0;
}

.slide-in-bottom {
  animation: slideInBottom 1.5s ease forwards;
  opacity: 1;
}


@keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
      transform: translateX(-40%);
      visibility: visible;
      opacity: 0;
  }

  to {
      transform: translateX(0);
      opacity: 1;
  }
}


@keyframes slideInRight {
  from {
      transform: translateX(40%);
      visibility: visible;
      opacity: 0;
  }

  to {
      transform: translateX(0);
      opacity: 1;
  }
}


@keyframes five_x {
  0% {
      transform: translate(0,0) rotate(0deg)
  }

  50% {
      transform: translate(0,10px) rotate(0deg)
  }

  100% {
      transform: translate(0,0) rotate(0deg)
  }
}


.zoom-inout-animation
{
  opacity: 0;
}

.zoom-inout
{
  animation: zoom-in-zoom-out 2s ease forwards;
  opacity: 1;
}


  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(0.3, 1);
      opacity: 0;
    }
    100% {
      transform: scale(1, 1);
      opacity: 1;
    }
  }



  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-slide {
    width: 60%;
  }
