@media only screen and (max-width: 767px)
{
.vision-container {
    font-size: 18px!important;
    line-height: 35px!important;
}
}
.vision-container {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
	color: #fff;
}

.highlight {
  color: #F6A623;
  font-weight: bold;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #F6A623;
  animation: underlineGrow 1s ease forwards;
  animation-delay: 0.5s;
}
.highlight2 {
  color: #F6A623;
  font-weight: bold;
  position: relative;
}

.highlight2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #F6A623;
  animation: underlineGrow 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underlineGrow {
  from { width: 0; }
  to { width: 100%; }
}