.mkt_content {
    width: 98.79vw;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}
.slider-wrapper {
    font-size: 40px;
    color: #3b3b3b;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider{
    height: 50px;
    padding-left:15px;
}
.slider-text1 {
    background: darkorange;
    animation: slide 5s linear infinite;
}
.slider-text2 {
    background: darkslateblue;
}
.slider-text3 {
    background: #842029;
}

.slider div {
    color:#fff;
    height: 50px;
    margin-bottom: 50px;
    padding: 2px 15px;
    text-align: center;
    box-sizing: border-box;
}

.slider{
    height: 50px;
    padding-left:15px;
    overflow: hidden;   /* hide the text outside the slider div area */
}


@keyframes slide {
    0% {margin-top:-300px;}
    5% {margin-top:-200px;}  /* 5% delay */
    33% {margin-top:-200px;}
    38% {margin-top:-100px;} /* 5% delay */
    66% {margin-top:-100px;}
    71% {margin-top:0px;} /* 5% delay */
    100% {margin-top:0px;}
}