footer {
	background: var(--color-bg-teritary);
	color: var(--color-text-white);
}

footer ul,
footer li {
	list-style: none;
	margin: 0;
}

.footer__blocks {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	padding-top: 30px;
	padding-bottom: 20px;
}

.footer__block h2 {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	font-family: Roboto;
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.footer__blocks .footer__logo {
	filter: brightness(0) invert(1);
	padding: 0 15px;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: flex-start;
	align-items: center;
}

.footer__links a {
	display: flex;
	flex-flow: row nowrap;
	align-content: flex-start;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	width: 100%;
	position: relative;
	padding: 0;
	margin: 0 0 15px 0;
	line-height: 1;
	font-weight: 400;
}

.footer__links a::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 7px;
	background: var(--color-rkr-bg-red);
}

.link-icons .footer__link {
	justify-content: start;
    gap: 12px;
    display: flex;
	white-space: nowrap;
}

.link-icons .footer__link--centered {
	align-items: center;
	margin-bottom: 15px;
}

.link-icons .footer__link svg {
	display: block;
	margin-top: 5px;
}

footer .link__text__wrapper label {
	font-weight: 500;
	line-height: 1.8;
}

footer .link__text__wrapper a {
	font-weight: 400;
	font-size: 0.9rem;
}

.footer__links.link-icons a::before {
	content: none;
	display: none;
}

.footer__link svg {
	width: 25px;
    height: 25px;
    margin: 0px;
}

.social-links {
	display: flex;
    gap: 10px;
    margin-top: 100px;
}

@media (min-width: 640px) {
	.footer__blocks {
		grid-template-columns: 1fr 1fr;
		padding-top: 60px;
		padding-bottom: 30px;
	}
}

@media (min-width: 1024px) {
	.footer__blocks {
		grid-template-columns: repeat(auto-fill, minmax(25%, 480px));
		padding-top: 80px;
		padding-bottom: 60px;
	}
}

@media (min-width: 1200px) {
	.footer__blocks {
		grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	}
}

.block__footer-copyright {
	padding: 24px 10px;
	font-size: 0.8rem;
	line-height: 1;
	text-align: center;
	border-top: var(--input-border);
}

.block__footer-copyright a {
	color: #ababab;
}