
.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%;
	opacity: 0.6;
}

.brand_item .brand_item_image img{
	height: 100%;
	width: 100%;
	filter: grayscale(100%);
	object-fit: contain;
}
.brand_item .brand_item_image:hover {
	opacity: 1;
}
.brand_item .brand_item_image:hover img{
	filter: grayscale(20%);
}
.wrapper_slider_brends{
	background-color: #fcfcfc;
	padding-top: 0px!important;
	padding-bottom: 0px!important;
	margin-bottom: 60px;
}
.brands_wrapper {
	display: grid;
	grid-template-columns: repeat(6 , 1fr);
	grid-gap: 20px;
}
.brand_item {
	border: 1px solid #dfdfdf;
}
.brand_item a {
	height: 100%;
	width: 100%;
}
@media (max-width: 1350px){
	.brands_wrapper {
		grid-template-columns: repeat(4 , 1fr);
	}
}