/* --------------------------------------contact_sec----------------------------- */



/* Super Large devices (large desktops, less than 1600px) */

@media (max-width: 1599.98px) {}


/* Extra Large devices (large desktops, less than 1440px) */

@media (max-width: 1439.98px) {}

/* Large devices (desktops, less than 1200px) */

@media (max-width: 1199.98px) {

    .brand_sec .brand_list {
        margin: 0;
        row-gap: 10px;
    }

    .brand_sec .brand_list>li {
        width: calc(25% - 20px);
        margin: 0px 10px 0px;
        padding: 10px 0px;
    }

}

/* Medium devices (tablets, less than 992px) */

@media (max-width: 991.98px) {}


/* Small devices (landscape phones, less than 768px) */

@media (max-width: 767.98px) {

    .brand_sec .brand_list>li {
        width: calc(33.33% - 20px);
    }

}

/* Extra small devices (portrait phones, less than 576px) */

@media (max-width: 575.98px) {

    .brand_sec .brand_list>li {
        width: calc(50% - 20px);
    }

}