/*
 Theme Name: Divi Child
 Theme URI: https://www.elegantthemes.com/gallery/divi/
 Description: Child theme for the Divi theme
 Author: Ahmad Raza
 Author URI: https://www.upwork.com/freelancers/apiguru
 Template: Divi
 Version: 1.0.0
 Text Domain: divi-child
*/

/* Add your custom CSS below */
.divi-brands-grid{
    display: flex;
    flex-wrap: wrap;
    margin-inline: -10px;
    row-gap: 20px;
}
.divi-brand-card{
    width: 25%;
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.divi-brand-card img{
    width: 100%;
    height: 150px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .divi-brand-card{
        width: 50%;
    }
}
@media (max-width: 480px) {
    .divi-brand-card{
        width: 100%;
    }
}
.divi-brand-card h4{
    margin-top: 10px;
    font-size: 16px;
    text-align: center;
}

