.clients ul li img {
    width: 133px;
    height: 133px;
    object-fit: cover;
}

@media (max-width: 550px) {
    .clients ul li img {
        width: 155px;
        height: 155px;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .swiper-slider .swiper-slide .slide-inner .container h1 {
        font-size: 16vw;
    }

    .play-now {
        left: 32%;
    }
}

@media (min-width: 767px) {
    .clients ul li img {
        width: 155px;
        height: 155px;
        object-fit: cover;
    }
}

@media (min-width: 992px) {
    .clients ul li img {
        width: 113px;
        height: 113px;
        object-fit: cover;
    }
}

@media (min-width: 1200px) {
    .clients ul li img {
        width: 133px;
        height: 133px;
        object-fit: cover;
    }
}

.newsletter-box .form .titles h6 {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 3px;
}

.play-now .play-btn-t {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 40px;
    border-color: transparent transparent transparent #ffffff;
    transform: translateX(-50%) translateY(-50%);
}

.swiper-slider .swiper-pagination-bullets {
    bottom: 50% !important; 
    width: 50px !important;
    left: auto !important;
}

.project-box.wow.fadeIn img {
    border-radius: 10px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 0 0 100px 0;
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    overflow: hidden;
    display: inline-block;
    animation: 15s slide infinite linear;
    white-space: nowrap; /* Ensures images stay in a single line */
}

.logos-slide img {
    height: 200px;
    margin: 0 40px;
    max-width: 200px;
}