body,
.sticky-header .site-header {
    padding-top: 33px !important;
}

.offer-container-area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 555;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background-color: #FED90B;
    height: 33px; 
    display: flex;
    align-items: center;
    color: #000;
    text-align: center;
}

.offer-scroll-txt {
    font-size: 12px;
    font-weight: 700;
    padding: 0;
    line-height: 14.63px;
    letter-spacing: 0.05em;
    text-align: center;
}

.offer-container-area .offer-scroll-txt span {
    color: #FFDE15;
}
.offer-container-area .offer-scroll-txt img {
    position: relative;
    top: -2px;
}

@keyframes scrollText {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (min-width: 768px) {
    .offer-container-area {
        overflow: visible;
        white-space: normal;
    }

    .offer-scroll-txt {
        animation: none;
        position: relative;
        left: 0;
        top: 0;
        transform: translate(0, 0);
        white-space: normal;
        width: 100%;
    }
}

@media(max-width:767.98px) {
    .offer-scroll-txt {
        display: inline-block;
        animation: scrollText 30s linear infinite;
    }
}