@import url("https://fonts.loli.net/css?family=Oswald:300,400,500,600,700&display=swap");

.footertxt {
  text-align: center;
	font-family: 'Oswald', helvetica;
	color: rgb(124, 121, 121);
	position: absolute;
	bottom: 0%;
	right: 2%;
}

.containertxt {
  text-align: center;
  font-family: 'Oswald', helvetica;
  color: rgb(124, 121, 121);
  width: 100%;
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.containertxt .txt {
  font-size: 6rem;
  display: inline-block;
  position: relative;
}
.containertxt .txt::before, .containertxt .txt::after {
  content: "";
  position: absolute;
  background: rgb(167, 167, 167);
  width: 2px;
  margin: auto 0;
  top: 5px;
  bottom: 0;
}
.containertxt .txt::before {
  left: 50%;
  animation: leftSlide 1.3s cubic-bezier(0.68, -0.55, 0.265, 1.5) forwards;
}
.containertxt .txt::after {
  animation: rightSlide 1.3s cubic-bezier(0.68, -0.55, 0.265, 1.5) forwards;
}
.containertxt .txt span {
  letter-spacing: 3px;
  font-weight: 300;
  display: inline-block;
  opacity: 0;
  text-transform: uppercase;
  animation-iteration-count: 1;
  animation: fadeIn forwards 0.8s ease-out;
}
.containertxt .txt span:nth-child(1) {
  animation-delay: 0.8s;
}
.containertxt .txt span:nth-child(2) {
  animation-delay: 0.7s;
}
.containertxt .txt span:nth-child(3) {
  animation-delay: 0.6s;
}
.containertxt .txt span:nth-child(4) {
  animation-delay: 0.5s;
}
.containertxt .txt span:nth-child(5) {
  animation-delay: 0.4s;
}
.containertxt .txt span:nth-child(6) {
  animation-delay: 0.4s;
}
.containertxt .txt span:nth-child(7) {
  animation-delay: 0.5s;
}
.containertxt .txt span:nth-child(8) {
  animation-delay: 0.6s;
}
.containertxt .txt span:nth-child(9) {
  animation-delay: 0.7s;
}
.containertxt .txt span:nth-child(10) {
  animation-delay: 0.8s;
}

@keyframes fadeIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes leftSlide {
  0% {
    opacity: 0;
    left: 50%;
    height: 5%;
  }
  100% {
    opacity: 1;
    left: -6%;
    height: 75%;
  }
}
@keyframes rightSlide {
  0% {
    opacity: 0;
    right: 50%;
    height: 5%;
  }
  100% {
    opacity: 1;
    right: -6%;
    height: 75%;
  }
}
