/* @group Site Footer
------------------------------------ */

.site-footer {
	padding-block: 6.4rem 5.6rem;
	background-color: var(--primary-900);
	color: var(--primary-200);
}
.site-footer a {
	color: inherit;
	text-decoration: none;
}

/* Logo 
------------------------- */
.site-footer .logo {
	width: 20rem;
	height: auto;
	margin: 0 auto 6.4rem;
}

/* Iframe
------------------------- */
.site-footer iframe {
	width: 24.7rem;
	height: auto;
	margin: 1.2rem auto 6.4rem;
}

/* Contact & Disclaimer
------------------------- */
.site-footer p {
    --fw: 400;
    --fs: 1.3rem;
    --fs-small: var(--fs);
    --lh: 1.53em;
    --ls: 0.02em;
}
.site-footer .locations p {
	margin: 0 0 2rem;
}
.site-footer .locations p :is(strong, b) {
	display: block;
	--fw: 500;
}
.site-footer .contact p a:not([href^="tel:"]) {
	text-decoration: underline;
} 
.site-footer .contact p:not(:nth-child(3), :nth-child(4)) {
	margin: 0 0 2rem;
}

/* Copyright & Legals
------------------------- */
.site-footer .legals .legals-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 2.4rem;
}
.site-footer .col-legals .legals-menu li {
	text-transform: uppercase;
}

@media only screen and (min-width: 961px) {
	/* General
	------------------------- */
	.site-footer {
		padding-block: 7.2rem 6.8rem;
	}
	.site-footer a:hover {
		opacity: .7;
	}
	.site-footer :is(.content-box, .copy-legals-box) {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 2.2rem;
	}
	.site-footer .content-box :is(.logo-box) {
		flex: 0 1 33%;
	}
	.site-footer .content-box :is(.contact-box, .iframe-box) {
		flex: 0 1 30%;
	}
	/* Logo
	------------------------- */
	.site-footer .logo {
		width: 28rem;
		margin: 0;
	}
	/* Iframe
	------------------------- */
	.site-footer iframe {
		width: 100%;
		min-height: 20.2rem;
		margin: 0;
	}
	/* Copyright & Legals
	------------------------- */
	.site-footer :is(.copy-legals-box, #important) {
		margin-top: 7rem;
	}
	.site-footer :is(.legals, .copyright) {
		flex: 0 1 100%;
	}
	.site-footer .legals .legals-menu {
		flex-direction: row;
		justify-content: flex-start;
	}
	.site-footer .copyright {
		display: flex;
		justify-content: space-between;
		gap: 2rem;
	}
}
@media only screen 
and (min-width: 0) 
and (max-width: 960px) {
	/* General
	------------------------- */
	.site-footer :is([class*="col-"]) {
		text-align: center;
	}
	/* Disclaimer
	------------------------- */
	.site-footer .copy-legals-box {
		display: flex;
		flex-direction: column;
		gap: 5.6rem;
	}
	.site-footer .copyright p:not(:last-of-type) {
		margin-bottom: 5.6rem;
	}
}

/* @end */


/* ANIMATIONS */
:where(#wrapper) .site-footer :is([class*="col-"]) {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .site-footer.animateActive :is([class*="col-"]) {
	animation: fade var(--duration) forwards;
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .site-footer.animateActive :is([class*="col-"]) {
	--delay: 0.3s;
}
/* @end */