.cibraco-hero-mobile {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em !important;
  color: #ffffff !important;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.cibraco-word {
  display: inline-block;
  margin-right: 0.35em;
  opacity: 0;
  transform: translateY(6px);
  filter: blur(10px);
  animation: wordIn 700ms cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.cibraco-highlight {
  position: relative;
  display: inline-block;
  padding: 0.1em 0.6em;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(6px);
  filter: blur(10px);
  animation: wordIn 700ms cubic-bezier(.22, .61, .36, 1) forwards;
}

.cibraco-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 80%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  background: #FF6E37;
  z-index: -1;
  animation: markIn 650ms cubic-bezier(.22, .61, .36, 1) forwards;
  animation-delay: var(--mark-delay, 0ms);
}

@keyframes markIn {
  to {
    transform: translateY(-50%) scaleX(1);
  }
}
