@charset "UTF-8";
.brands-catalog {
	margin: 6px 0 0 0;
}
.brands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 24px 16px;
	position: relative;
}
.brand-mini {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 11px;
	position: relative;
}
.brand-mini > * {
	position: relative;
	z-index: 5;
}
.brand-mini:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: -5px -1px;
	pointer-events: none;
	background: var(--white);
	transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	box-shadow: 0px 10px 30px -2px rgba(50, 50, 71, 0.1);
	opacity: 0;
	z-index: 4;
}
.brand-mini .photo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 64px;
	width: 100%;
	flex: 0 0 auto;
	padding: 8px 0;
}
.brand-mini .photo img {
	flex: 0 0 auto;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}
.brand-mini .name {
	font-weight: 300;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: normal;
	color: var(--blue);
	transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (pointer:fine) {
a.brand-mini:hover:after {
	opacity: 1;
	pointer-events: all;
}
a.brand-mini:hover .name {
	color: var(--hover);
}
}

/*mobile end*/

/*tablet start*/

@media only screen and (min-width: 768px) {
.brands-catalog {
	margin-top: 2.5px;
}
.brands-grid {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 0;
	border-top: 0.5px solid #DAE2ED;
	padding-top: 20px;
}
.brands-grid:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1px;
	width: 2px;
	background: var(--white);
	z-index: 2;
}
.brand-mini {
	border-style: solid;
	border-width: 0 0 0.5px 0.5px;
	border-color: #DAE2ED;
	padding: 25px 25px 35px 25px;
}
.brand-mini:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	pointer-events: none;
	z-index: 3;
	width: 15px;
	height: 15px;
	background: var(--white);
	transform: translate3d(-50%, 50%, 0);
}
.brand-mini .photo {
	margin: 0 auto 31.5px auto;
	max-width: 180px;
	height: 100px;
	padding: 10px 0;
}
.brand-mini .photo:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin: 15px 0;
	width: 25px;
	height: 1.5px;
	background: #DAE2ED;
	border-radius: 0.75px;
	transition: background 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
	transform: translate3d(-50%, 0, 0);
}
@media (pointer:fine) {
 a.brand-mini:hover .photo:after {
 background: var(--yellow);
}
}
.brand-mini .name {
	margin-top: auto;
	margin-bottom: auto;
	font-size: 15px;
}
}

/*tablet end*/

/*desktop start*/

@media only screen and (min-width: 1280px) {
.brands-catalog {
	margin-top: 7.5px;
}
.articles-catalog {
	margin: 55px 0 80px 0;
}
}
