.site-footer {
	padding: 20px 0 40px;
	background: #f5f5f7;
	color: #202020;
}

.site-footer__shell {
	width: 100%;
}

.site-footer__inner {
	width: min(1392px, calc(100% - 48px));
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.site-footer h2 {
	margin: 0;
	color: #202020;
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.site-footer__divider {
	height: 1px;
	background: rgba(32, 32, 32, 0.08);
}

.site-footer__menus {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px 16px;
}

.site-footer__menu-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.site-footer__menu-group h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
}

.site-footer__menu-group a {
	color: inherit;
	font-size: 16px;
	line-height: 22px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.site-footer__menu-group a:hover,
.site-footer__social:hover {
	opacity: 0.72;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 8px;
}

.site-footer__brand-link {
	display: inline-flex;
	flex: 0 0 auto;
}

.site-footer__brand {
	width: 180px;
	height: 64px;
}

.site-footer__socials {
	display: flex;
	gap: 20px;
	flex-wrap: nowrap;
	align-items: center;
}

.site-footer__social {
	height: 32px;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.site-footer__social img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 32px;
	object-fit: contain;
}

.site-footer__social--facebook {
	width: 16px;
}

.site-footer__social--facebook img {
	width: 16px;
	height: 30px;
}

.site-footer__social--instagram {
	width: 32px;
}

.site-footer__social--instagram img {
	position: absolute;
	inset: 0;
	width: 32px;
	height: 32px;
}

.site-footer__social--linkedin {
	width: 33px;
}

.site-footer__social--linkedin img {
	width: 33px;
	height: 31px;
}

.site-footer__social--youtube {
	width: 33px;
}

.site-footer__social--youtube img {
	width: 33px;
	height: 23px;
}

.site-footer__menu-group a,
.site-footer__brand-link,
.site-footer__social {
	outline-offset: 3px;
}

@media (max-width: 1200px) {
	.site-footer__menus {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 720px) {
	.site-footer__inner {
		width: calc(100% - 24px);
	}

	.site-footer__menus {
		grid-template-columns: 1fr;
	}
}













