footer {
	background: #31401b;
	padding-top: 60px;
    padding-bottom: 60px;
}

.footer__blocks {
	display: flex;
}

.footer__block h4 {
	color: var(--color-text-primary-inverted);
	margin-bottom: 25px;
}

.footer__block p {
	color: var(--color-text-primary-inverted);
	margin-bottom: 15px;
}

.footer__block {
	max-width: 300px;
}

.footer__block--last {
	justify-content: space-between;
}

.footer__block li,
.footer__block a {
	color: #fff;
	transition: all .2s cubic-bezier(.4, 0, .2, 1);
	font-family: 'gotham_roundedbold', serif;
	font-size: 0.875rem;
}

.footer__block li {
	margin-bottom: 12px;
}

.footer__block a:hover {
	color: var(--color-text-secondary);
}

.footer__address {
	margin-bottom: 1.5rem;
}

.footer__social {
	display: flex;
	gap: 1rem;
}

.footer__social-logo {
	background: #000;
	height: 32px;
	width: 32px;
	border-radius: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__social-logo svg {
	width: 16px;
}

.footer__logo img {
	width: 100%;
    height: 100%;
	max-width: 300px;
}

.footer__social-logo {
	color: var(--color-bg-primary) !important;
}

.footer__urls,
.footer__addresses {
	display: flex;
	justify-content: space-around;
}

.footer__urls {
	width: 100%;
	gap: 30px;
}

.footer__logo {
	display: block;
	text-align: center;
}

@media(max-width:992px) {
	.footer__blocks {
		display: block;
	}

	.footer__urls {
		flex-direction: column;
		align-items: center;
	}

	.footer__block {
		max-width: 500px;
		width: 100%;
	}
}