.typewriter {
    overflow: hidden; 
    border-right: .15em solid #FFC700; 
    white-space: nowrap;
    animation: 
      typing 1s steps(40, end),
      blink-caret .75s step-end infinite;
  }
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  /* The typewriter cursor effect */
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #FFC700; }
  }

  .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background-color: #103294;
  }
  .owl-theme .owl-dots .owl-dot span {
	width: 15px;
	height: 15px;
}

.progress-bar-tab {
  animation: progress 5s linear infinite;
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .lg\:text-blacks {
    color: black;
  }
  .lg\:rounded-none {
    border-radius: 0;
  }
}