/* Footer. */

.footer {
	margin-top: 100px;
	line-height: 1.3;
	font-size: 15px;
}

.footer_line {
	border: 0 none;
	border-top: 1px solid #EEEEEE;
}

.footer_net {
	--grid_4: 4;
	grid-template-columns: repeat(var(--grid_4), 200px);
	justify-content: space-between;

	max-width: 1044px;
	grid-gap: 40px 20px;
	margin: 0 auto;
	padding: 52px 0;
}

.footer_col {
	grid-gap: 12px;
	flex-direction: column;
}

.footer_col ._col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 12px;
}

.footer_caption {
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
}

.footer_tel {
	display: grid;
	grid-gap: 20px;
}

.footer_feedback {
	--color: var(--primary);
	font-weight: 500;
}

.footer_lines {
	display: grid;
	grid-gap: 20px;
}

.footer_lines span {
	color: var(--gray);
}

.footer_cop {
	color: var(--gray);
	font-size: 15px;
}

.footer_col .link {
	transition: color .43s;
}

.footer_col .link:hover {
	color: var(--primary);
}

.footer_soc {
	width: 100%;
	grid-gap: 8px;
}

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

.footer_soc path {
	transition: fill .43s, stroke .43s;
}

.footer_card {
	grid-gap: 20px;
}

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

	width: 90px;
	height: 47px;
	border: 1px solid #EEEEEE;
	border-radius: 12px;
}

.footer_card img {
	max-width: 60px;
	max-height: 37px;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

/* Footer. */

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

	/* Footer. */

	.footer {
		margin-top: 72px;
	}

	/* Footer. */

}

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

	/* Footer. */

	.footer_net {
		--grid_4: 2;

		max-width: 600px;
	}

	.footer_col:last-child {
		grid-column: 2/3;
		grid-row: 1/2;
	}

	/* Footer. */

}

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

	/* Footer. */

	.footer {
		margin-top: 28px;
		border-top: 20px solid #F7F7F7;
	}

	.footer_line {
		display: none;
	}

	.footer_net {
		--grid_4: 1;

		grid-gap: 28px;
		padding: 26px 0 32px;
	}

	.footer_feedback {
		order: 1;
	}

	/* Footer. */

}