.brands_wrapper a .brand_item_image{
	display: flex;
	justify-content: center;
	align-items: center;
}

.brands_wrapper .brand_item{
	display: flex;
	justify-content: center;
	align-items: center;
	/*height: 120px;*/
	background: #fff;
}
.block_section_link{
	display: flex;
	justify-content: center;
	align-items: center;
}
.more-brands-link{
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--main-txt);
	font-size: 12px;
	line-height: 12px;
	font-weight: 500;
	text-transform: uppercase;
}
.more-brands-link i{
	line-height: 17px;
	font-weight: 600;
	margin-left: 10px;
	font-size: 14px;
	position: relative;
	top: 0px;
	transition: translate .3s;
}
.more-brands-link:hover svg{
	animation: arrow_move 1s infinite;
}
.more-brands-link:hover path{
	stroke: var(--main_color)
}
.more-brands-link svg {
	margin-left: 5px;
	margin-bottom: 1px;
}
.more-brands-link:hover{
	color: var(--main_color);
}
@keyframes arrow_move {
	0%{
		transform: translate(0px, 0);
	}
	50%{
		transform: translate(5px, 0);
	}
	100%{
		transform: translate(0px, 0);
	}
}

.brand_item .brand_item_image {
	height: 100%;
	width: 100%;
}

.brand_item .brand_item_image img{
	height: 100%;
	width: 100%;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	/*transition: filter 0.5s linear;*/
	object-fit: contain;
}
.brand_item .brand_item_image:hover {
	opacity: 1;
}
.brand_item .brand_item_image:hover img{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	/*transition: filter 0.5s linear;*/
}
.brand_item .brand_item_image:active img{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	/*transition: filter 0.5s linear;*/
}
.wrapper_slider_brends{
	padding: 120px 0 0 0 !important;
}
.brands_wrapper {
	display: grid;
	grid-template-columns: repeat(6 , 1fr);
	grid-column-gap: 30px;
	grid-row-gap:20px;
}
.brand_item {
	border: 1px solid var(--border-bottom-gray);
	border-radius: 8px;
	max-width: 220px;
	/*max-height: 108px;*/
	transition: 0.2s ;
	overflow: hidden;
}
.brand_item a {
	height: 100%;
	width: 100%;
}
@media (max-width: 1480px){
	.brands_wrapper {
		grid-template-columns: repeat(4 , 1fr);
	}
}
@media (max-width: 992px){
	.wrapper_slider_brends{
		padding: 40px 0!important;
	}
	.brands_wrapper .brand_item{
		height: 72px;
		width: 142px;
		padding: 8px 26px;
	}
}
@media (max-width: 576px){
	.wrapper_slider_brends{
		padding: 25px 0!important;
	}
}