.a-brands-grid {
    margin-bottom: var(--container-indent, 50px)
}

.a-brands-grid__subtitle,
.a-brands-grid__title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--main-text-color, #191919)
}

.a-brands-grid__title {
    font-size: 24px;
    line-height: 1.2
}

.a-brands-grid__subtitle {
    font-size: 16px;
    letter-spacing: .03em;
    margin-bottom: 1em
}

.a-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius, 6px);
    margin-bottom: var(--grid-gutter-width, 20px);
    height: 160px;
    position: relative;
    overflow: hidden;
    transition: border .3s ease;
}

.a-brand:hover .a-brand__bg {
    transform: scale3d(1.1, 1.1, 1)
}

@media screen and (max-width:991px) {
    .a-brand {
        height: 120px
    }
}

@media screen and (max-width:719px) {
    .a-brand {
        height: 175px
    }
}

@media screen and (max-width:539px) {
    .a-brand {
        height: 118px
    }
}

.a-brand__bg {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    transition: transform var(--transition-long, 1s)
}

.a-brand__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin: 0 10px;
    height: 85px;
    max-width: 182px;
    min-width: 47%;
    background: rgba(255, 255, 255, .91);
    border-radius: var(--border-radius, 6px);
    z-index: 1
}

.a-brand__inner img {
    transition: all .3s ease-in-out;
    transform: rotateX(.1deg);
}

.a-brand:hover {
    border-color: #007bff;
}

.a-brand:hover .a-brand__inner img {
    transform: rotateX(.1deg) scale(1.05);
}

/*# sourceMappingURL=brands-grid.css.map */