.site-footer {
	background: #f0f2f2;
	padding: 40px 20px;
}

.footer-columns {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto 40px;
	max-width: 1220px;
}

@media (max-width: 768px) {
	.footer-columns {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.footer-columns {
		grid-template-columns: 1fr;
	}
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 0 15px;
}

.footer-column:not(:first-child) {
	border-left: 1px solid var(--c-border);
}

.footer-column:first-child {
	padding-left: 0;
}

.footer-column:last-child {
	padding-right: 0;
}

.footer-column a {
	align-items: center;
	color: #fff;
	display: inline-flex;
	font-size: 16px;
	gap: 6px;
	margin-bottom: 15px;
}

.footer-column a::before {
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 14px;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M4 13.2l6-6-6-6v2l4 4-4 4z'/%3E%3C/svg%3E") no-repeat center;
	width: 14px;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M4 13.2l6-6-6-6v2l4 4-4 4z'/%3E%3C/svg%3E") no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.footer-column a,
.footer-socials a {
	color: #222;
	font-weight: 600;
	text-decoration: none;
	transition: font-weight 0.5s ease;
}

.footer-column a:hover,
.footer-socials a:hover {
	font-weight: 300;
	text-decoration: underline;
}

.footer-bottom {
	align-items: center;
	border-top: 4px solid #859ba6;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1220px;
	padding-top: 20px;
}

@media (max-width: 768px) {
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

.footer-socials {
	align-content: center;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-socials a {
	margin-right: 10px;
}

.footer-logo img {
	width: 160px;
}

.footer-bottom-strip {
	background-color: #5c6570 !important;
	box-shadow: inset 0 18px 10px -15px #0009;
	line-height: 20px;
}

.footer-bottom-strip p {
	color: var(--c-white);
	font-size: 18px;
	line-height: 0.889em;
	padding: 30px;
	text-align: center;
}