/* block-$ */
.block-effect-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  height: 600px;
  width: 100%;
}
.block-effect-container .block-effect {
  max-width: 1500px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
.block-effect-container .block-effect .block-reveal {
  height: 50%;
  display: flex;
  align-items: center;
  /* animations */
}
.block-effect-container .block-effect .block-reveal.time1, .block-effect-container .block-effect .block-reveal.time2 {
  font-family: "Lexend";
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 65px;
  font-size: 80px;
  color: transparent;
  position: relative;
  overflow: hidden;
  animation: revealBlock 0s 1.3s forwards;
}
.block-effect-container .block-effect .block-reveal.time1:after, .block-effect-container .block-effect .block-reveal.time2:after {
  content: "";
  width: 0%;
  height: 100%;
  padding-bottom: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background: #2b00d4;
  animation: revealingIn 1.2s 0.1s forwards, revealingOut 1.2s 1.3s forwards;
}
.block-effect-container .block-effect .block-reveal.time2 {
  animation: revealBlock 0s 1.7s forwards;
}
.block-effect-container .block-effect .block-reveal.time2:after {
  animation: revealingIn 1.2s 0.5s forwards, revealingOut 1.2s 1.7s forwards;
}
@keyframes revealBlock {
  100% {
    color: #0f0f0f;
  }
}
@keyframes revealingIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes revealingOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.block-effect-container .button-home.hover-this span a {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  border: none;
  height: 5rem;
  width: 12rem;
  font-size: 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #2b00d4;
  color: #ffffff;
  font-family: "Lexend";
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 8px 8px 40px 1px rgba(96, 96, 116, 0.3);
}
@media screen and (min-width: 1024px) {
  .block-effect-container .button-home.hover-this span a {
    height: 4.4rem;
    width: 10.6rem;
  }
}/*# sourceMappingURL=index.css.map */