@media (min-width: 1024px){
	.brands_wrapper .owl-carousel {
		padding-left: 0px;
		padding-right: 0px;
	}
}

.brands_wrapper a .brand_item_image{
	display: flex;
	justify-content: center;
	align-items: center;
}
.brands_wrapper a .brand_item_image img{
	max-width: 100px;
	height: auto;
}
.brands_wrapper .brand_item{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
}
.block_section_link{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 40px;
}
.more-brands-link{
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--main_color);
	font-size: 14px;
	line-height: 14px;
}
.more-brands-link i{
	margin-left: 10px;
	font-size: 14px;
	position: relative;
	top: 0px;
	transition: translate .3s;
}
.more-brands-link:hover i{
	animation: arrow_move 1s infinite;
}
.more-brands-link:hover{
	color: var(--main_color_hover);
}
@keyframes arrow_move {
	0%{
		transform: translate(0px, 0);
	}
	50%{
		transform: translate(5px, 0);
	}
	100%{
		transform: translate(0px, 0);
	}
}

.brand_item .brand_item_image img{
	filter: grayscale(100%);
	transition: .3s;
	opacity: .6;
}
.brand_item .brand_item_image:hover img{
	filter: grayscale(20%);
	opacity: 1;
}
.wrapper_slider_brends{
	padding-top: 30px!important;
	background-color: #fff;
	padding-bottom: 80px!important;
}
