footer a {
	color: var(--txt-light);
	transition: color .2s;
}

footer a:hover {
	text-decoration: none;
	color: var(--txt-lighter);
}

footer a.text-primary:hover,
footer a.text-primary:focus,
.text-hover-light:focus,
.text-hover-light:hover {
	color: var(--txt-lighter) !important;
}

.footer-border-divider {
	border-top: 1px solid var(--tertiary);
	height: 1px;
	width: 100%;
	position: relative;
	margin-bottom: 1.5rem;
}

.footer-divider {
	height: 1px;
	position: relative;
	margin-bottom: calc(36px + 1.5rem);
	transition: margin-bottom .4s;
}

.footer-divider svg {
	position: relative;
	width: 36px;
	height: 36px;
	transition: width .4s, height .4s;
}

@media (min-width: 576px) {
	.footer-divider {
		margin-bottom: calc(48px + 1.5rem);
	}

	.footer-divider svg {
		width: 48px;
		height: 48px;
	}
}

@media (min-width: 768px) {
	.footer-divider {
		margin-bottom: calc(56px + 1.5rem);
	}

	.footer-divider svg {
		width: 56px;
		height: 56px;
	}
}
