.invoice-overlay {
    position: absolute;
    top: -40%;
    left: -110px;
    width: 100vw;
    z-index: 5;
    color: #111;
    font-size: 25px !important;
    line-height: 1;
    margin: 0;
    font-weight: bold;
    padding: 5px 0;
    border-radius: 0;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invoice-overlay h1 {
    display: inline-block;
    white-space: nowrap;
    color: #c74912;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    padding-left: 100%;
    animation: moveLeft 20s linear infinite;
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 767px) {
    .invoice-overlay {
        top: -460px;
        left: 0;
        width: 100%;
        font-size: 18px;
        overflow: hidden;
        position: absolute;
    }

        .invoice-overlay h1 {
            transform: translateX(100%);
            font-size: 16px;
            animation: moveLeftMobile 20s linear infinite;
            padding-left: 0%;
            white-space: nowrap;
        }

    @keyframes moveLeftMobile {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .m-about-img img {
        width: 100%;
        height: auto;
    }

    .about-bg img {
        display: none;
    }
}

@media (min-width: 768px) {
    .m-about-img img {
        display: none;
    }

    .about-bg img {
        display: block;
    }
}