.visual img {
  width: 100%;
  max-width: 1200px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}



/* animation  */


/* Heading */
.sentence {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

/* Sliding words wrapper */
.slidingVertical {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 1.2em;
  vertical-align: middle;
  text-indent: 8px;
}

/* Animated words */
.slidingVertical span {
  position: absolute;
  left: 0;
  right: 0;
  white-space: nowrap;
  text-align: center;
  font-weight: 600;
  color: #f15a26;
  opacity: 0;
  animation: bottomToTop 6.1s cubic-bezier(0.6, 0.05, 0.4, 1) infinite;
}

/* Delays */
.slidingVertical span:nth-child(2) {
  animation-delay: 2s;
}

.slidingVertical span:nth-child(3) {
  animation-delay: 4s;
}

/* LEMAI line alignment */
.lemai-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Animation */
@keyframes bottomToTop {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
  }
}