.wrapper{
    /* align-items: center; */
    justify-content: center;
    margin-top: 40px;
}

.static-text{
    color: #fff;
    font-size: 60px;
    font-weight: 400;
}
.wrapper .dynamic-text{
    margin-left: 15px;
    height: 90px;
    line-height: 90px;
    overflow: hidden;
}
.dynamic-text li{
    list-style: none;
    color: #ff4c29;
    font-size: 60px;
    font-weight: 600;
    position: relative;
    top: 0;
    animation: slide 12s steps(4) infinite;

}

@keyframes slide{
    100%{
        top:-360px;
    }
    
}


.dynamic-text li span{
    position: relative;
}
.dynamic-text li span::after{
    content: "";
    position: absolute;
    left: 0;
    background-color: var(--primary);
    height: 100%;
    width: 100%;
    border-left: 2px solid #ff4c29;
    animation: typing 3s steps(14) infinite;

}

@keyframes typing{
    100%{
        left: 100%;
        margin: 0 -35px 0 35px;
    }
    
}