.header-top {
    background: gold;
    padding: 1rem
}

.header-wrapper {
    display: flex;
    align-items: center
}

.header-truckarea {
    flex: 1 1 auto;
    display: flex;
    position: relative;
    align-items: flex-end;
    width: 100%;
    overflow: hidden
}

.header-top-right {
    font-weight: bold;
    color: black;
    background: gold;
    z-index: 9;
    text-transform: capitalize;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    padding-left:15px;
}

.header-top-right-context {
    position: relative;
    z-index: 9
}

.header-top-region {
    font-size: 13px
}

.header-truckarea-image {
    width: 70px
}

.truck-img {
    margin-left: -3rem;
    z-index: 2;
    animation: truck 10s linear infinite
}

.box-img {
    width: 30px;
    z-index: 4;
    position: relative;
    right: 0rem;
    opacity: 0;
    animation: box 10s linear infinite
}

.box-img1 {
    animation-delay: 1s;
    position: relative;
    margin-right: -.5rem
}

@keyframes truck {
    40%,70% {
        margin-left: 50%
    }

    100% {
        margin-left: 100%
    }
}

@keyframes box {
    0%,40% {
        opacity: 0;
        right :7.5rem;
    }

    50% {
        opacity: 1;
        right: 7.5rem
    }

    60%,100% {
        opacity: 0;
        right: 7.5rem
    }
}