.cibraco-hero {
  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;
  width: 100% !important;
}

.cibraco-word {
  display: inline-block;
  margin-right: 0.45em;
  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.05em 0.4em;
  margin-right: 0.45em;
  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: 75%;
  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);
  }
}

@media(max-width:768px) {
  .cibraco-hero {
    font-size: 30px !important;
    text-align: center !important;
    padding: 0 20px;
  }

  .cibraco-word,
  .cibraco-highlight {
    margin-right: 0.35em;
  }
}
