.brands-title,
.brands-title h3.bx-wave-title:after {
	text-align:center;
	background-position: 50%;
}
.brands-list {
    display: table;
    width: 100%;
}
.brend-item {
    padding: 15px;
	cursor: pointer;
	border-bottom: 4px solid transparent;
	transition: all 0.3s ease;
	position: relative;

	border-radius: 8px;
}
.brend-item.current{
	border-bottom: 4px solid var(--text-e20613);
	box-shadow: 0 0 15px 0 rgba(9, 54, 7, 0.12);
	background: var(--text-ffffff);
	cursor: auto;
}
.brend-item:hover{
	border-bottom: 4px solid var(--text-e20613);
	border-radius: 8px;
	box-shadow: 0 0 15px 0 rgba(9, 54, 7, 0.12);
	background: var(--text-ffffff);
}

.brend-item a{
	display: block;
    width: 100%;
}
.brend-hover-image {
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 80px;
	opacity: 0;
	transition: all 0.4s ease;
	z-index: -1;
}
.brend-hover-image.over {
	z-index: 2;
}
.brend-hover-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.brend-item:hover .brend-hover-image {
	opacity: 1;
	top: -40px;
}

@media(min-width:992px){
	.brands-content {
		margin-top:30px;
margin-bottom:70px;
	}
}

@media(max-width:767px){
	.brend-item{
		width: 70px;
	}
}

.block_head_line{
	margin-bottom: 48px;
}