/* Brands. */

.brands_title {
	margin-bottom: 48px;
	padding-top: 32px;
	font-size: 28px;
	font-weight: 700;
	border-top: 1px solid #EEEEEE;
}

.brands_subtitle {
	margin-top: -40px;
	padding-top: 40px;
	margin-bottom: 36px;
	font-size: 24px;
	font-weight: 700;
}

.brands_tops {
	display: flex;
	align-items: center;
	grid-gap: 16px;
	flex-wrap: wrap;

	margin-bottom: 72px;
}

.brands_top {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 122px;
	height: 52px;
	border: 1px solid rgba(224, 237, 243, 1);
	border-radius: 20px;
	cursor: pointer;

	transition: border-color .43s;
}

.brands_top:hover,
.brands_top.active {
	border-color: var(--primary);
}

.brands_top img {
	width: auto;
	max-width: 90%;
	height: auto;
	max-height: 90%;
}

.brands_hrefs {
	--color: var(--primary);

	display: flex;
	align-items: center;
	grid-gap: 44px 80px;
	flex-wrap: wrap;

	margin-bottom: 66px;
	font-weight: 500;
}

.brands_subtitle {

}

.brands_tabls {
	--net: 5;
	display: grid;
	grid-template-columns: repeat(var(--net), 200px);
	justify-content: space-between;
	grid-gap: 60px 40px;
}

.brands_tabls:not(:last-child) {
	margin-bottom: 66px;
}

.brands_tabl a {
	transition: color .43s;
}

.brands_tabl a:hover {
	color: var(--primary);
}

.brands_tabl_name {
	color: var(--primary);
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

.brands_tabl_list {
	display: flex;
	flex-direction: column;
	grid-gap: 20px;

	line-height: 1.3;
}

.brands_tabl_more {
	--icon_size: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 12px;

	margin-top: 20px;

    transition: color .43s;
}

.brands_tabl_more:after {
    content: '';
    width: var(--icon_size);
    height: var(--icon_size);
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9L5.13991 6.25258C5.59524 5.85416 5.59524 5.14583 5.13991 4.74742L2 2' stroke='%230093CD' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/* Brands. */

@media only screen and (max-width: 1200px) {

	/* Brands. */

	.brands_tabls {
		--net: 4;
	}

	/* Brands. */

}

@media only screen and (max-width: 1030px) {

	/* Brands. */

	.brands_tabls {
		--net: 3;
	}

	/* Brands. */

}

@media only screen and (max-width: 770px) {

	/* Brands. */

	.brands_tabls {
		--net: 2;
	}

	/* Brands. */

}

@media only screen and (max-width: 600px) {

	/* Brands. */

	.brands_tabls {
		--net: 1;

		grid-gap: 0;

		margin-bottom: 0 !important;
	}

	.brands_tabl:not(:first-child) {
		margin-top: 24px;
		padding-top: 24px;
		border-top: 1px solid #eee;
	}

	.brands_title {
		margin-bottom: 26px;
		padding-top: 26px;
		font-size: 24px;
	}

	.brands_subtitle {
		margin-bottom: 24px;
		font-size: 20px;
	}

	.brands_tops {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 16px;

		margin-bottom: 0;
	}

	.brands_top {
		position: relative;

		width: 100%;
		height: 60px;
	}

	.brands_hrefs {
		flex-direction: column;
		align-items: flex-start;
		grid-gap: 16px;

		margin: 36px calc(var(--bone_size) * -1) 0px;
		padding: 28px var(--bone_size) 0;
		border-top: 20px solid #F7F7F7;
	}

	.brands_hrefs ~ .brands_subtitle {
		margin: 36px calc(var(--bone_size) * -1) 0px;
		padding: 28px var(--bone_size) 24px;
		border-top: 20px solid #F7F7F7;
	}

	.brands_tabl_name {
		font-size: 19px;
	}

	/* Brands. */

}