
[data-aos="zoom-out"] {
    transform: translateZ(0) scale(1.5);
  }


.rev-block {
    position: absolute;
    
}


.as-img-container
{
    position: relative;    
    overflow: hidden;
    display: block;
}


.rev-block .as-img-aos {
    opacity: 0;
    animation: appear-text 0.0001s linear forwards;
    animation-delay: 1.3s;
}

.rev-block:after {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    width: 0%;
    height: 100%;
    background: #455d58;
    animation: rev-block 1.5s cubic-bezier(0.19, 0, 0, 0.1) forwards;
    animation-delay: 0.5s;
}


@keyframes rev-block {

    0% {
         left: 0;
         width: 0%;
    }
    50% {
         left: 0;
         width: 110%;
    }
    100% {
         left: 100%;
         width: 0%;
    }

}

@keyframes appear-text {

    0% {
         opacity: 0;
    }
    100% {
         opacity: 1;
    }

}


@media only screen and (max-width: 900px) {
    h1 {
         font-size: 20px;
         padding: 0.4em;
    }
}


