.eaatbigger {
  margin: 0;
  font-size: 60px;
  font-weight: 800;
  padding: 20px;
  text-transform: uppercase;
  color: #202020;
  position: relative;
}
.eaattext {
  max-width: 100%;
  line-height: 24px;
  text-align: left;
  color: #404040;
  padding: 20px;
}
.eaattext.eaattxt-center {
  text-align: center;
}
.eaathas-animation {
  position: relative;
}
.eaathas-animation p,
.eaathas-animation img {
  opacity: 0;
}
.eaathas-animation.eaatanimate-in p,
.eaathas-animation.eaatanimate-in img {
  animation: textHidden 0.1s 1.1s forwards;
}
.eaathas-animation.eaatanimate-in:before,
.eaathas-animation.eaatanimate-in:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}
.eaathas-animation.eaatanimate-in:before {
  background-color: #0fe4d2;
}
.eaathas-animation.eaatanimate-in:after {
  background-color: #202020;
  animation-delay: 0.5s;
}
.eaathas-animation.eaatanimation-ltr.eaatanimate-in:before {
  animation: revealLTR 1.8s ease;
}
.eaathas-animation.eaatanimation-ltr.eaatanimate-in:after {
  animation: revealLTR 1s 0.6s ease;
}
.eaathas-animation.eaatanimation-rtl.eaatanimate-in:before {
  animation: revealRTL 1.8s ease;
}
.eaathas-animation.eaatanimation-rtl.eaatanimate-in:after {
  animation: revealRTL 1s 0.6s ease;
}
@keyframes revealRTL {
  0% {
    width: 0;
    right: 0;
  }
  65% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 0;
    right: 100%;
  }
}
@keyframes revealLTR {
  0% {
    width: 0;
    left: 0;
  }
  65% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes textHidden {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
