/* COLORS */
/* FONTS */
.h1,
.h2,
.h3 {
  font-family: "ArticulatCF", sans-serif;
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  color: #ef0003;
  font-weight: 700;
  margin-bottom: 50px;
}
a,
a:link,
a:visited {
  color: #000000;
  text-decoration: none;
  background-color: transparent;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0 !important;
  display: inline;
}
a:hover,
a:link:hover,
a:visited:hover {
  color: #111111;
}
#intro .words .word {
  opacity: 0;
  transform: translateY(30px);
  transition: 0s;
  display: inline-block;
}
#intro .words.animate .word {
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.5s ease;
  transform: translateY(0);
}
#intro .text-animation {
  opacity: 1 !important;
  background: linear-gradient(to right, #000000, #000000 50%, #cccccc 50%);
  background-clip: text;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  overflow: hidden;
  transition: background-position 0s;
}
#intro .text-animation strong {
  transition: color 0.5s ease;
  display: inline-block;
  line-height: inherit !important;
}
#intro .text-animation.animate {
  background-position: 0 100%;
  transition: background-position 1.5s;
}
