@charset "utf-8";

footer {
	background: var(--brand-marine);
}
.footer__holder {
	max-width: 1280px;
	margin: auto;
	padding: 1rem 90px;
}
.footer__grid {
	color: white;
	font-weight: 500;
}
.footer__grid a {
	padding: 0.5rem 1.5rem 0.5rem 0;
	cursor: pointer;
}

.footer__logo {
	height: 5rem;
}
.footer__social {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.footer__social > a {
	transition: .2s;
	background: rgba(255, 255, 255, .05);
	border: 1px solid var(--brand-marine);
	border-radius: 100px;
	height: 1.5rem;
	width: 1.5rem;
	padding: .5rem;
	margin: .75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.footer__social > a:hover {
	background: var(--brand-marine);
	border: 1px solid white;
}

.footer__divider {
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin: .5rem 0 1.5rem;
}
.footer__mail {
	margin-bottom: 0rem;
	text-align: center;
	font-weight: 400;
	transition: .2s;
	opacity: 0.5;
}
.footer__mail--bold {
	font-weight: 800;
}
.footer__mail:hover {
	transition: .2s;
	opacity: 1;
}
@media only screen and (max-width: 800px) {
	.footer__mail {
		margin-bottom: 5rem;
	}
	.footer__social > a {
		margin: 0.5rem 1rem;
		height: 1.5rem;
		width: 1.5rem;
	}
}
