.text-animation-group .static-txt {
  color: #fff;
  font-size: 60px;
}
.text-animation-group .dynamic-txts {
  margin-left: 15px;
  height: 70px;
  line-height: 70px;
  overflow: hidden;
}
.text-animation-group .dynamic-txts li {
  list-style: none;
  font-size: 60px;
  position: relative;
  top: 0;
  animation: slide 10s steps(10) infinite;
}
.text-animation-group > h2 {
  text-align: center;
  color: #f15829;
  font-size: 16px;
}
.typed_wrap h2 {
    font-size: 18px;
}
.typed_wrap h1 {
  display: inline;
}
.typed_wrap {
  text-align: center;
}
/*Add custom cursor so it auto inherits font styles*/
.typed::after {
  content: '|';
  display: inline;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

/*Removes cursor that comes with typed.js*/
.typed-cursor{
  opacity: 0;
  display: none;
}
/*Custom cursor animation*/
@keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}