/********************** effecttext4 start ********************/
.effecttext4 {
  text-align: center;
  text-transform: uppercase;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 50px;
  color: #000;
  margin: 0 auto;
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .effecttext4 {
    font-size: 30px;
  }
}

.effecttext4 .animation {
  position: relative;
  width: 100%;
}
.effecttext4 .animation div {
  overflow: hidden;
  width: 50%;
  height: 100%;
  transform: skewX(-20deg);
}
.effecttext4 .animation div::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  background: #000;
}
.effecttext4 .animation span {
  padding: 0 10px;
}

.effecttext4 .animation-left::before {
  left: 0;
  animation: widthLineLeft 1.2s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.1) forwards;
}
.effecttext4 .animation-left span {
  display: block;
  animation: slideLeft 1.2s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.1) forwards;
  transform: translateX(900px) skewX(20deg);
}

.effecttext4 .animation-right {
  position: absolute;
  right: 0;
  top: 0;
}
.effecttext4 .animation-right:before {
  bottom: 0;
  right: 0;
  animation: widthLineRight 1.2s 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.1) forwards;
}
.effecttext4 .animation-right span {
  position: absolute;
  width: 100%;
  left: -100%;
  transform: translateX(-900px) skewX(20deg);
  animation: slideRight 1.2s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.1) forwards;
}

@keyframes slideLeft {
  from {
    transform: translateX(900px) skewX(20deg);
  }
  to {
    transform: translateX(0%) skewX(20deg);
  }
}
@keyframes slideRight {
  from {
    transform: translateX(-900px) skewX(20deg);
  }
  to {
    transform: translateX(0%) skewX(20deg);
  }
}
@keyframes widthLineLeft {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}
@keyframes widthLineRight {
  0% {
    width: 0%;
    right: 0%;
  }
  50% {
    width: 100%;
    right: 0%;
  }
  100% {
    width: 0%;
    right: 100%;
  }
}
/********************** effecttext4 finish ********************//*# sourceMappingURL=effekt2.css.map */