.reveal {
    position: relative;
    transition: .3s ease;
}

.reveal::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    transition: width 0.3s ease;
    border-right: 3px solid #007396;
    animation: moveline 4s ease forwards;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    animation-delay: 3s;
}

.reveal span {
    position: absolute;
    width: 0;
    height: 110%;
    width: 105%;
    left: 0;
    top: 0;
    background-color: rgba(21, 32, 51, 1);
    transition: width 0.3s ease;
    transform-origin: left;
    animation: revealText 2s forwards;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    animation-delay: 5s;
}
#animation-target-1.reveal::after {
    animation-delay: 1s;
}
#animation-target-1.reveal span {
    animation-delay: 3s;
}
#animation-target-2.reveal::after {
    animation-delay: 3s;
}
#animation-target-2.reveal span {
    animation-delay: 5s;
}

@keyframes moveline {
    0% {
        height: 0;
        width: 100%;
        /* Starts from lower */
    }

    50% {
        height: 105%;
        width: 105%;
    }

    100% {
        height: 105%;
        width: 0;
    }
}

@keyframes revealText {
    0% {
        width: 105%;
        /* Starts from lower */
    }

    100% {
        width: 0%;
    }
}





.card-1 {
    animation-delay: 1s !important;
}

.card-2 {
    animation-delay: .5s !important;
}

.card-1.go-down::after {
    animation-delay: 4s;
}

.card-2.go-down::after {
    animation-delay: 3s;
}

.card-1.go-down img {
    animation-delay: 4s;
}

.card-2.go-down img {
    animation-delay: 3s;
}

.cards-holder>div {
    transform: translateY(-100%);
    opacity: 0;
}

.go-down {
    overflow: hidden;
    position: relative;
    animation: godown 3.9s forwards;
}
.go-down img {
    position: absolute;
    bottom: 76%;
    left: 0%;
    width: 2.5rem;
    padding: 0.1rem;
    z-index: 1111;
    animation: godownarrow 1.8s forwards;
    animation-delay: 1.7s;
}

.go-down::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background-color: liner-gradient(circle closest-corner at 80% 50%, rgba(115, 154, 207, .7) 20%, rgba(21, 32, 51, 1) 150%); */
    background-image: linear-gradient(rgba(115, 154, 207, 1), rgba(21, 32, 51, 1) 70%);
    transform-origin: 100% 100%;
    animation: godownbox 1.5s forwards;
    animation-delay: 1.9s;
}

.go-down .content {
    animation: goupcontent 1s forwards;
    animation-delay: 2s;
}



@keyframes goupcontent {
    from {
        transform: translateY(35%);
        opacity: 0;
    }

    to {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}

@keyframes godown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes godownarrow {
    to {
        /*transform: translate(33%, -27%);*/
        bottom: 0%;
        left: 78%;
    }
}

@keyframes godownbox {
    to {
        transform: scale(0);
    }
}