section.partners-bar {
    margin: var(--margin) 0;
    position: relative;
    z-index: 2;
}

section.partners-bar .grid {

    display: grid;
    grid-template-columns: repeat(10, 1fr);


}

body.dark section.partners-bar {
    background: rgba(255, 255, 255, 0.07);
}

section.partners-bar .item {
    text-align: center;
}

section.partners-bar img {
    width: 65px;
    height: 25px;
    object-fit: contain;
    filter: brightness(10) grayscale(1);
    max-height: 32px;
    position: absolute;
    top: 48%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%) scale(1);
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

section.partners-bar .slider {
    width: 100%;
    height: 100px;
    position: relative;
}

section.partners-bar .box {
    height: 64px;
    margin: unset;
    display: block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

section.partners-bar .box:hover img {
    filter: brightness(1) grayscale(0);
    transform: translateY(-50%) scale(1.15);
}

section.partners-bar .box:hover {
    background: rgba(0, 0, 0, 0.3) !important;
}




@media all and (max-width: 576px) {

    section.partners-bar img {

        width: 50px;

    }



    section.partners-bar .box {

        height: 60px;

    }


}