.footer--section {
	background: var(--theme-black);
	color: var(--theme-gray);
}

.footer--section a:hover {
	color: var(--theme-red);
	transition: color .3s;
} 

.footer--container {
	padding: 240px 30px 45px;
	text-align: center;
	max-width: none;
}

.footer--logo {
	max-width: 80%;
	margin-bottom: 30px;
	height: auto;
}

.footer--address,
.footer--email,
.footer--phone {
	font-size: 0.938rem;
	line-height: 1.1em;
}

.footer--address {
	margin-bottom: 8px;
}

.footer--social {
	display: flex;
	justify-content: center;
	margin: 0 -5px;
}

.footer--social a {
	width: 33px;
	height: 33px;
	padding: 5px;
	margin: 0 5px;
}

.footer--social svg {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

@media (min-width: 992px) {
	.footer--container {
		text-align: left;
	}
	
	.footer--logo {
		max-width: none;
		margin-bottom: 0;
	}
	
	.footer--social-col {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	
	.footer--social {
		align-self: flex-end;
	}
	
	.footer--address-col {
		margin-bottom: 0;
	}
}