/* moving text */
.quick-links{
	left: 0;
	bottom: 0;
	position: absolute;
	/*background: #343F4F;*/
	background: #0b0b0b;
	width: 100vw;
	display: flex;
	height: 130px;
	align-items: center;
	justify-content: center;
}
.wrapper{
  display: flex;
}
.wrapper .static-txt{
  color: #fff;
  font-size: 30px;
  font-weight: 400;
    margin-left: 15px;
  height: 90px;
  line-height: 90px;
  overflow: hidden;
}
.wrapper .dynamic-txts{
  margin-left: 15px;
  height: 90px;
  line-height: 90px;
  overflow: hidden;
}
.dynamic-txts li{
  list-style: none;
  color: #f73020;
  font-size: 30px;
  font-weight: 500;
  position: relative;
  top: 0;
  animation: slide 12s steps(4) infinite;
}
@keyframes slide {
  100%{
    top: -360px;
  }
}
.dynamic-txts li span{
  /*position: relative;*/
  /*margin: 5px 0;*/
  line-height: 90px;
}
.dynamic-txts li span::after{
  content: "";
  position: absolute;
  left: 0;
  height: 80%;
  width: 100%;
  /*background: #343F4F;*/
  background: #0b0b0b;
  border-left: 2px solid #f73020;
  animation: typing 3s steps(10) infinite;
}
@keyframes typing {
  40%, 60%{
    left: calc(100% + 30px);
  }
  100%{
    left: 0;
  }
}
/* END of moving text */
