.wrapper{
    display: flex;
}

.wrapper .static-txt{
    color: #10d6c9;
    font-size: 60px;
    font-weight: 400;
}

.wrapper .dynamic-txts{
    margin-left: 0px;
    padding: 0%;
    line-height: 90px;
    height: 90px;
    overflow: hidden;
 
    
}


.dynamic-txts li{
    list-style: none;
    color: fff;

    top: 0;
    background-color: #1d1e21;
    position: relative;
    animation: slide 12s steps(4) infinite;
}

@keyframes slide{
    100%{
        top: -360px;
    }
}

.dynamic-txts li ::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #1d1e21;
    border-left: 2px solid;
    animation: typing 3s steps(10) infinite;
    
}

@keyframes typing{
    40%,
    60% {
        left: calc(100% + 30px);
    }
    100%{
        left: 0;
    }
}
