.brands-header-catalog{
	font-size: 36px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	margin-bottom: 40px;
}

.brands_wrapper-catalog {
	display: grid;
	grid-template-columns: repeat(5 , 1fr);
	grid-column-gap: 30px;
	grid-row-gap:20px;
}
.brands_wrapper-catalog a .brand_item_image{
	display: flex;
	justify-content: center;
	align-items: center;
}

.brands_wrapper-catalog .brand_item{
	display: flex;
	justify-content: center;
	align-items: center;
	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%);
	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%);
}
.brand_item .brand_item_image:active img{
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
}
.wrapper_brends{
	padding: 60px 0;
}
.catalog__list-content .wrapper_brends{
	padding-top: 120px;
}

.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-catalog {
		grid-template-columns: repeat(4 , 1fr);
	}
}
@media (max-width: 992px){
	.wrapper_brends{
		padding: 40px 0;
	}
	.brands_wrapper-catalog .brand_item{
		height: 72px;
		width: 142px;
		padding: 8px 26px;
	}
}
@media (max-width: 576px){
	.catalog__list-content .wrapper_brends{
		padding-top: 50px;
	}
	.brands_wrapper-catalog{
		display: grid;
		/* auto auto is telling the browser to render two rows, if needed */
		grid-template-rows: auto auto;
		grid-auto-flow: column;
		overflow-x: scroll;
		gap: 8px;
	}
	.brands_wrapper-catalog::-webkit-scrollbar {
		display: none;
	}
	.brands-header-catalog{
		font-size: 20px;
		margin-bottom: 24px;
		font-weight: 700;
	}

}
