.brands{
    padding: 5.33rem 0;
}

.brands .brds{
    display: flex;
    display: -webkit-flex;
    align-items: stretch;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background-color: var(--white);
}

.brands .brds>*{
    position: relative;
    z-index: 1;
    flex: 0 1 calc(100% / 6);
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
    grid-gap: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 56px 0 13px;
}

.brands .brds>*::before{
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background: url(../../assets/img/brandsboxbg.png) no-repeat center/cover,var(--white);
    background-blend-mode: multiply;
    opacity: 30%;
    -webkit-opacity: 30%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.brands .brds>*:hover::before{
    background-color: #FCFCFC;
    opacity: 100%;
    -webkit-opacity: 100%;
}

.brands .brds>* img{
    width: 100%;
    aspect-ratio: 1/.35025;
    object-fit: contain;
    -o-object-fit: contain;
}

.brands .brds>* .vt{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 0;
    text-align: center;
    color: #C1C1C1;
    font-size: 11.429px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.017px;
    margin: 0 auto;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.brands .brds>* .vt::after{
    content: url('data:image/svg+xml;utf8,<svg width="9" height="7" viewBox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.552734 0.555664L9.2532 5.45339L0.552734 10.3437V5.45339V0.555664Z" fill="rgb(236,28,36)"/></svg>');
    width: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.brands .brds>*:hover .vt{
    grid-gap: 10px;
    color: #EC1C24;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.021px;
}

.brands .brds>*:hover .vt::after{
    width: 8px;
}

@media(max-width:992px){
    .brands{
        padding: 2rem 0;
    }
    .brands .brds>*{
        flex: 0 1 calc(100% / 5);
    }
}

@media(max-width:768px){
    .brands .brds>*{
        flex: 0 1 calc(100% / 4);
    }
}

@media(max-width:575px){
    .brands .brds>*{
        flex: 0 1 calc(100% / 3);
    }
}

@media(max-width:425px){
    .brands .brds>*{
        flex: 1 1 calc(100% / 2);
    }
}