
.feature{
  display: flex;
  justify-content: space-between;
  padding: 3% 0;
}
.feature-descrition{
  width: 40%;
}
.feature-image-container{
  width: 60%;
  padding: 20px;
}

.feature-descrition{
  padding-top: 75px;
}
.feature-image{
  
  animation: float 1.5s linear 0s infinite alternate;
}

@keyframes float {
	from {
		transform: translateY(-40px);
	}
	to {
		transform: translateY(20px);
	}
}

.banner-1,
.banner-2,
.banner-3,
.banner-4 {
  height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.img-carousel {
  width: 120%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(50%);
  animation: zoom-out 3s linear infinite;
  /* opacity: 0.8; */
}

@keyframes zoom-out {
  100% {
    width: 100%;
  }
}

.text-box {
  animation: text-up 12s linear infinite;
  transform: translateY(100px);
}

.text-box h1 {
  margin-bottom: 40px;
}

.text-box p {
  font-size: 14px;
  line-height: 18px;
  margin-top: 60px;
}

.text-box span {
  background: red;
  height: 1px;
  width: 100px;
  position: absolute;
  left: 0;
}

.banner-1 {
  animation: slide1 12s linear infinite;
}

.banner-2 {
  animation: slide2 12s linear infinite;
}

.banner-3 {
  animation: slide3 12s linear infinite;
}

.banner-4 {
  animation: slide4 12s linear infinite;
}

@keyframes slide1 {
  0% {
    visibility: visible;
  }

  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

@keyframes slide2 {
  0% {
    visibility: hidden;
  }

  25% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: hidden;
  }
}

@keyframes slide3 {
  0% {
    visibility: hidden;
  }

  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: visible;
  }
  100% {
    visibility: hidden;
  }
}

@keyframes slide4 {
  0% {
    visibility: hidden;
  }

  25% {
    visibility: hidden;
  }
  50% {
    visibility: hidden;
  }
  75% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}

@keyframes text-up {
  10% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}

.text-box1 {
  animation-delay: 0s;
}

.text-box2 {
  animation-delay: 3s;
}

.text-box3 {
  animation-delay: 6s;
}

.text-box4 {
  animation-delay: 9s;
}
