.swiper-container {
    width: 100%;
    height: 200px; 
    position: relative;
    overflow: hidden; 
    box-sizing: border-box;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    flex-shrink: 0;
    width: 25%; 
    box-sizing: border-box;
}

.customer-logo {
    max-width: 150px;
    max-height: 100px;
    padding: 10px;
    filter: none!important;
    /*filter: grayscale(100%);
    transition: filter 0.3s;*/
}

    /*.customer-logo:hover {
        filter: grayscale(0%);
    }*/

.swiper-button-next,
.swiper-button-prev {
    /*color: #333;*/
    /*background-color: #fff;*/
    border-radius: 50%;
    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);*/
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}



@media (max-width: 768px) {
    .swiper-slide {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 150px !important; /* Sabit bir yükseklik belirle */
        flex-shrink: 0 !important;
        width: 50% !important; /* Webde dört slayt gösterilir */
        box-sizing: border-box !important;
        margin-right: -20px !important;
        margin-left: -5px !important;
    }
    
    .customer-logo {
        max-width: 100px !important;
        max-height: 70px !important;
    }

    .swiper-container1 {
        /*height: 150px; */
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
}
