.horisontal-line-animation {
    height: 1px;
    background: #ffffff;
    animation: lineExpand 1.5s ease-out forwards;
    transform-origin: left;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
        filter: blur(30px);
    }
    50% {
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        width: 100%;
        opacity: 1;
        filter: blur(0px);
    }
}

.blur1-animation {
    animation: blur1-animation 1s ease-out forwards;
}

@keyframes blur1-animation {
    0% {
        opacity: 0;
        filter: blur(30px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

.blur2-animation {
    animation: blur2-animation 3s ease-out forwards;
}

@keyframes blur2-animation {
    0% {
        opacity: 0;
        filter: blur(30px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

.blur3-animation {
    animation: blur3-animation 5s ease-out forwards;
}

@keyframes blur3-animation {
    0% {
        opacity: 0;
        filter: blur(30px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

.opacity3-animation {
    animation: opacity3-animation 3s ease-out forwards;
}

@keyframes opacity3-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.horisontal-fade-in {
    animation: horisontal-fade-in 0.4s ease-out forwards;
    transform-origin: left;
}

@keyframes horisontal-fade-in {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.opacity-out-20-anim {
    animation: opacity-out-20-anim 2s ease-out forwards;
    transform-origin: left;
}

@keyframes opacity-out-20-anim {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.vertical-fade-in {
    animation: vertical-fade-in 1.5s ease-out forwards;
}

@keyframes vertical-fade-in {

    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.horizontal-fade-in-left2 {
    animation: horizontal-fade-in-left2 2s ease-out forwards;
}

@keyframes horizontal-fade-in-left2 {

    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.horizontal-fade-in-left3 {
    animation: horizontal-fade-in-left3 3s ease-out forwards;
}

@keyframes horizontal-fade-in-left3 {

    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.bounce-anim {
  animation: bounce-anim 1.5s infinite;
}

@keyframes bounce-anim {
  0% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  50% {
    transform: translateY(-30px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}

.bounce-anim5 {
  animation: bounce-anim 5s infinite;
}

@keyframes bounce-anim {
  0% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  50% {
    transform: translateY(-30px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}


.fade-in-blur {
  animation: fade-in-blur 5s ease-out forwards;
}

@keyframes fade-in-blur {

  0% {
    opacity: 0;
    filter: blur(30px);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

}
