.top-header {
    height: 54px;
    font-size: 30px;
    color: #ff3e00;
     overflow: hidden;
     position: relative;
}
.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    height: 100px;
}
.middle .img-responsive {margin: 0 auto;}
.topleft p {
    font-size: 70px;
    font-weight: 700;
    padding-top: 20px;
}
.topright p {
    padding-top: 50px;
    font-size: 26px;
}

.top-header p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(50%);
 -webkit-transform:translateX(50%);	
 transform:translateX(50%);
 /* Apply animation to this element */	
 -moz-animation: bouncing-text 10s linear infinite alternate;
 -webkit-animation: bouncing-text 10s linear infinite alternate;
 animation: bouncing-text 10s linear infinite alternate;
}
/* Move it (define the animation) */
@-moz-keyframes bouncing-text {
 0%   { -moz-transform: translateX(50%); }
 100% { -moz-transform: translateX(-50%); }
}
@-webkit-keyframes bouncing-text {
 0%   { -webkit-transform: translateX(50%); }
 100% { -webkit-transform: translateX(-50%); }
}
@keyframes bouncing-text {
 0%   { 
 -moz-transform: translateX(50%); /* Browser bug fix */
 -webkit-transform: translateX(50%); /* Browser bug fix */
 transform: translateX(50%); 		
 }
 100% { 
 -moz-transform: translateX(-50%); /* Browser bug fix */
 -webkit-transform: translateX(-50%); /* Browser bug fix */
 transform: translateX(-50%); 
 }
}

@media only screen and (max-width: 750px) {
    .img-responsive {margin: 0 auto;}
    .topright p {
        padding-top: 0px;
        font-size: 18px;
    }
    .top-header {
        height: 54px;
        font-size: 18px;
    }
    .topleft p {
        padding-top: 0px;
        font-size: 50px;
    }
    .header {
    display: block;
    text-align: center;
    }
}