/*============================================================================================
   Start Brand CSS
==============================================================================================*/
.brand-section.style-1 .brands-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.brand-section.style-1 .single-brand {
    padding: 16px;
    border-radius: 8px;
}
.brand-section.style-1 .single-brand {
    text-align: center;
    border: 1px solid #ddd;
}
.brand-section.style-1 .single-brand img {
    max-width: 140px;
    height: 80px;
    transition: all 0.3s ease;
    object-fit: contain;
}
.brand-section.style-1 .single-brand:hover img {
    transform: scale(1.02);
}

@media only screen and (min-width: 768px) and (max-width: 1300px) {
    .brand-section.style-1 .brands-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .brand-section.style-1 .brands-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .brand-section.style-1 .single-brand img {
        max-width: 112px;
        height: 52px;
    }
}

@media only screen and (max-width: 570px) {
    .brand-section.style-1 .brands-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*============================================================================================
   End Brand CSS
==============================================================================================*/
