:root {
  --color--main: #0fe4d2;
}



.bigger {
  margin: 0;
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(0,0,0,1);
  display: inline-block;
  position: relative;
  font-family: 'Fjalla One', sans-serif;
}

.text {
  max-width: 100%;
  width: 100%;
  line-height: 24px;
  text-align: justify;
  color: #000;
  padding: 0px;
}
.text.txt-center {
  text-align: center;
}
.text a {
  color: var(--color--main);
}

.has-animation {
  position: relative;
}
.has-animation p, .has-animation img {
  opacity: 0;
}
.has-animation.animate-in p, .has-animation.animate-in img {
  animation: textHidden 0.1s 1.1s forwards;
}
.has-animation.animate-in:before, .has-animation.animate-in:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}
.has-animation.animate-in:before {
  background-color: rgba(255,153,0,1);
}
.has-animation.animate-in:after {
  background-color: rgba(33,9,0,1);
  animation-delay: 0.5s;
}
.has-animation.animation-ltr.animate-in:before {
  animation: revealLTR 1.8s ease;
}
.has-animation.animation-ltr.animate-in:after {
  animation: revealLTR 1s 0.6s ease;
}
.has-animation.animation-rtl.animate-in:before {
  animation: revealRTL 1.8s ease;
}
.has-animation.animation-rtl.animate-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;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
	.text {
  max-width: 100%;
  width: 100%;
  line-height: 24px;
  text-align: left;
  color: #000;
  padding: 0px;
}
	} 

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	.text {
  max-width: 100%;
  width: 100%;
  line-height: 24px;
  text-align: justify;
  color: #000;
  padding: 0px;
}
	} 

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	.text {
  max-width: 100%;
  width: 100%;
  line-height: 24px;
  text-align: justify;
  color: #000;
  padding: 0px;
}
	} 

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	.text {
  max-width: 100%;
  width: 100%;
  line-height: 24px;
  text-align: justify;
  color: #000;
  padding: 0px;
}
	}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1440px) {
	.text {
  max-width: 100%;
  width: 100%;
  line-height: 24px;
  text-align: justify;
  color: #000;
  padding: 0px;
}
	}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1920px) {
	.text {
  max-width: 100%;
  width: 100%;
  line-height: 24px;
  text-align: justify;
  color: #000;
  padding: 0px;
}
	}