.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    height: 100%;
    object-fit: cover;
}

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

/* //////logos///// */

.logos {
    overflow: hidden;
    padding: 30px 0;
    background: transparent;
    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), rgb(0, 0, 0));
}

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

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

.logos-slide {
    display: inline-block;
    width: 100%; /* Ensure each slide takes up full width */
}

.logos-slide img {
    height: 60px;
    margin: 0 40px;
}

#brand-slider-content-1 {
    animation: slide-right-left 20s linear infinite;
}

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

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




/* /////awards////// */
.awards {
    overflow: hidden;
    padding: 60px 0;
    background: transparent;
    white-space: nowrap;
    position: relative;
}

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

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

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

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

.awards-slide {
    display: inline-block;
    width: 100%;
}

.awards-slide .slide {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    padding: 0 20px;
}

.awards-slide img {
    height: 300px;
    margin: 20px;
}

.awards-slide .para {
    color: #333;
    font-size: 14px;
    margin-top: 10px;
}

.awards-slide .fs-small {
    font-size: 12px;
    margin-top: 5px;
}
#award-slider-content-1 {
    animation: slide-right-left 50s linear infinite;
}

.exp-button-next, .exp-button-prev {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.exp-button-prev:hover {
    transform: translateX(5px);
}
.exp-button-next:hover {
    transform: translateX(-5px);
}


@media (min-width: 360px) and (max-width: 478px) {
    .logos-slide img {
        height: 30px;
        margin: 0 10px;
        filter: grayscale();
    }

    .award-slide img {
        height: 30px;
        margin: 0 10px;
        filter: grayscale();
    }

    #brand-slider-content-1 {
        animation: slide-right-left 10s linear infinite;
    }
    #award-slider-content-1 {
        animation: slide-right-left 10s linear infinite;
    }
    .logos {
        padding: 10px 0;
    }

    .awards {
        padding: 10px 0;
    }
    .exp-button-next, .exp-button-prev {
        display: none;
    }
}

@media (min-width: 1365px) and (max-width: 1560px) {
    .award-slide .slide img {
        height: 20px;
        margin: 0 10px;
        filter: grayscale();
    }
}

@media (min-width: 1024px) and (max-width: 1365px) {
    .award-slide img {
        height: 20px;
        margin: 0 10px;
        filter: grayscale();
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .exp-button-next, .exp-button-prev {
        display: none;
    }
}

@media (min-width: 479px) and (max-width: 767px) {
    .exp-button-next, .exp-button-prev {
        display: none;
    }
}
