.brand-item-inner {
    display: flex;
    min-height: 200px;
    border: 1px solid #AFBFD6;
    border-radius: 10px;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 10px;
    row-gap: 10px;
    position: relative;
}
.brand-item:hover .brand-item-inner {
    border-color: #fff;
}
.brand-item-inner > span {
    font-size: 22px;
    font-family: 'Barlow';
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    position: absolute;
    bottom: 20px;
}
.brand-item-inner > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #24BD4D;
}
.brand-item:hover a {
    display: flex;
}
.brand-item:hover img {
    opacity: 0.5;
}
.brand-items-listing .brand-list.products{
    width: 100%;
    display: grid;
    align-items: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}
.brand-item-inner > a span {
    width: 74px;
    height: 74px;
    background-color: #24BD4D;
    border-radius: 100%;
    background-image: url('../images/link.png');
    background-repeat: no-repeat;
    background-position: center;
}
.brands-index-index .block > .block-title {
    display: none;
}
.brands-index-index .columns {
    padding-top: 0;
}
.homepage-item-heading {
    display: inline-block;
    width: 100%;
    margin-top: 56px;
    margin-bottom: 36px;
}
.homepage-item-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
}
.homepage-item-heading h2 {
    margin: 0;
}
.homepage-item-heading a {
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}
.homepage-item-heading a:after {
    content: '\f178';
    font-family: fontawesome;
    font-size: 14px;
    margin-left: 5px;
}
.new-products-container {
    background-color: #FFF8F5;
}
.new-products-container .block-products-list.slider {
    display: inline-block;
    width: 100%;
}
.brand-filter-item > span {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
    padding: 14px 42px;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    display: block;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-weight: 600;
    line-height: 22px;
    background-color:#59677C;
    border-color: #59677C;
    text-decoration: none;
    font-family: 'Barlow';
}
.brand-filter-item {
    display: inline-block;
    vertical-align: top;
    margin: 0;
    position: relative;
    cursor: pointer;
    flex: none;
}
.brand-filter-items {
    padding: 0;
    list-style: none;
    display: flex;
    vertical-align: top;
    width: 100%;
    margin: 0;
    column-gap: 10px;
    position: relative;
    overflow-x: auto;
}
.brands-index-index .brand-main{
    margin-top: 34px;
    padding-top: 40px;
    border-top: 1px solid #E2E2E2;
}
.brand-filters {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}
.brand-filter-items li.active > span, .brand-filter-items li:hover > span{
    color: #ffffff;
    background-color: #000;
    border-color: #000;
}
.brand-filter-items:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    background: #6D7E97;
}
.brand-filter-items li.active:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    background: #000;
    z-index: 1;
}
@media screen and (min-width: 1100px) and (max-width: 1365px){
    .brand-items-listing .brand-list.products {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}
@media screen and (min-width: 950px) and (max-width: 1099px){
    .brand-items-listing .brand-list.products {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}
@media screen and (min-width: 768px) and (max-width: 949px){
    .brand-items-listing .brand-list.products {
        grid-template-columns: repeat(3, 1fr);
    }
}