/* Text animation */

#container-text-left {
    color: #000;
    position: relative;
    width: 100%;
    display: block;
}
 
#flip-left {
    height: 50px;
    overflow: hidden;
}

#flip-left>div>div {
    background: rgb(6,50,125);
    background: linear-gradient(55deg, rgba(6,50,125,1) 0%, rgba(3,173,173,1) 56%, rgba(68,184,117,1) 68%, rgba(255,174,19,1) 96%, rgba(255,174,19,1) 190%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    height: 50px;
    margin-bottom: 40px;
    display: inline-block;
}

#flip-left div:first-child {
    animation: show 10s ease infinite;
}

@keyframes show {
    0% {
        margin-top: -270px;
    }

    5% {
        margin-top: -180px;
    }

    33% {
        margin-top: -180px;
    }

    38% {
        margin-top: -90px;
    }

    66% {
        margin-top: -90px;
    }

    71% {
        margin-top: 0px;
    }

    99.99% {
        margin-top: 0px;
    }

    100% {
        margin-top: -270px;
    }
}

/* Text animation End*/