.brands {
    padding: 40px 0;

    .brands-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        .brands_home{
            .swiper-slide{
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .swiper-pagination{
                position: relative;
                top: inherit;
                left: inherit;
                bottom: inherit;
                right: inherit;
            }
        }
        .item-brand {
            width: auto;
            height: 100px;
            padding: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            /* border-radius: 40px;
            background: #E2EBF4; */
            img {
                width: auto;
                height: auto;
                min-width: 80px;
                min-height: 60px;
                max-height: 100%;
                object-fit: contain;
                filter: grayscale(100%);
            }
        }
    }

    .read-more-btn {
        text-align: center;
        padding: 40px 0px 40px 0px;
    }
}