.project-wrap {
    padding: 0 30px;
}
ul.contact-info a {
    color: #000;
}
body.arabic * {
    direction: rtl;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: scrollBackground 15s linear infinite;
}
@keyframes scrollBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -100% 0;
    }
}
.truck-content {
    z-index: 999;
    position: absolute;
    width: 60%;
    height: max-content;
    bottom: 4%;
    right: 1%;
    margin: auto;
}

.truck-content .caption {
    position: absolute;
    bottom: 0%;
    width: 11%;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
.truck-content .caption.wheel_1 {
    left: 11%;
}
.truck-content .caption.wheel_2 {
    left: 59%;
}
.truck-content .caption.wheel_3 {
    left: 71%;
}