.nv-animated-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}
.nv-animated-wrapper .nv-animated-divider {
  position: absolute;
  width: 5rem;
  height: 0.6rem;
  display: block;
  background: var(--secondary);
  border-radius: var(--radius-xxl);
  bottom: 0;
}
.nv-animated-wrapper .dynamic-txts {
  height: 90px;
  line-height: 90px;
  overflow: hidden;
  text-align: center;
  padding: 0 !important;
  margin: 0 !important;
}
.dynamic-txts li {
  font-family: "Nunito Sans";
  list-style: none;
  color: var(--base);
  font-size: 42px;
  font-weight: 600;
  position: relative;
  top: 0;
  animation: slide 12s steps(3) infinite;
}
@keyframes slide {
  100% {
    top: -270px;
  }
}
.dynamic-txts li span {
  position: relative;
  line-height: 90px;
}
.dynamic-txts li span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(-14%);
  height: 72%;
  width: 100%;
  background: #FFF;
  border-left: 4px solid var(--base);
  animation: typing 4s steps(26) infinite;
}
@keyframes typing {
  40%, 60% {
    left: calc(100% + 30px);
  }
  100% {
    left: 0;
  }
}
@media (max-width: 767px) {
  .dynamic-txts li {
    font-size: 28px !important;
  }
}
@media (max-width: 480px) {
  .dynamic-txts li {
    font-size: 22px !important;
  }
  .nv-animated-wrapper .dynamic-txts {
    height: 75px !important;
    line-height: 75px !important;
  }
}
@media (max-width: 430px) {
  .dynamic-txts li {
    font-size: 19px !important;
  }
}
@media (max-width: 470px) {
  .dynamic-txts li {
    font-size: 17px !important;
  }
}

