/* @group Site Footer
------------------------------------ */

.site-footer {
    position: relative;
    z-index: 1;
	padding-block: 8rem 6.3rem;
	background: var(--noir);
	color: var(--blossom);
}

.site-footer .first-row .logo-col .img-box {
	width: 26.3rem;
	display: inline-block;
}
.site-footer .first-row .info-col .info-box h3 {
	--fw: 700;
	--fs: 1.6rem;
	--lh: normal;
	--ls: 0.125em;
	padding-bottom: .5rem;
	border-bottom: 1px solid var(--blossom);
	margin-bottom: 1.5rem;
}
.site-footer .first-row .info-col .info-box a:is([href*="mailto:"]) {
	text-decoration: underline;
}
.site-footer .first-row .info-col .info-box .social {
	display: flex;
	align-items: center;
	gap: 5rem;
}
.site-footer .first-row .info-col .info-box .social li {
	position: relative;
}
.site-footer .first-row .info-col .info-box .social li:not(:last-of-type)::before {
	content: '';
	width: 1px;
	height: 2rem;
	background: var(--blossom);
	position: absolute;
	right: -2.5rem;
	top: 50%;
	transform: translate(0, calc(-50% - 2px));
}

.site-footer .second-row {
	margin-top: 5rem;
}
.site-footer .second-row .partner-col {
	display: flex;
	gap: 2rem;
}
.site-footer .second-row .partner-col .img-box img {
	object-fit: contain;
}
.site-footer .second-row .legals-col {
	display: flex;
	flex-wrap: wrap;
}
.site-footer .second-row .legals-col ul {
	display: flex;
	align-items: center;
	gap: 5rem;
}
.site-footer .second-row .legals-col ul li {
	font: unset;
}
.site-footer .second-row .legals-col ul li img {
	height: 3.5rem;
}

.site-footer .third-row .disclaimer {
	border-top: 0.5px solid var(--blossom);
	margin-top: 5rem;
	padding-top: 5rem;
}
.site-footer .third-row .disclaimer p {
	--fs: clamp(8pt, 1.1rem, 10pt);
	--lh: 1.5em;
	--ls: 0.08em;
}
.site-footer .third-row .disclaimer p:not(:last-of-type) {
	margin-bottom: 1rem;
}

.site-footer .second-row .partner-col .img-box {
    width: auto;
    height: 2.9rem;
}

@media only screen 
and (min-width : 961px) {

	.site-footer {
		padding-block: 5rem 3.5rem;
	}
	
	.site-footer .first-row .logo-col .img-box {
		width: 49.4rem;
	}
	.site-footer .first-row .info-col {
		display: flex;
		flex-wrap: wrap;
		gap: 4.8rem 2.3rem;
	}
	.site-footer .first-row .info-col .info-box {
		flex: 0 1 calc(50% - 1.15rem);
	}
	.site-footer .first-row .info-col .info-box:is(:nth-child(1), :nth-child(3)) {
		order: -1;
	}
	.site-footer .first-row .info-col .info-box p {
		--fs: 1.6rem;
		--lh: 1.5em;
		--ls: 0.06em;
	}
	.site-footer .first-row .info-col .info-box a:is([href*="mailto:"]) {
		margin-bottom: 1rem;
	}

	.site-footer .second-row {
		margin-top: 4.7rem;
	}
	.site-footer .second-row .partner-col p {
		--fs: 1.5rem;
		--lh: 1.5em;
		--ls: 0.06em;
	}
	.site-footer .second-row .legals-col {
		align-items: flex-end;
		justify-content: space-between;
	}
	.site-footer .second-row .legals-col p {
		--fs: 1.4rem;
		--ls: .06em;
	}
	.site-footer .second-row .legals-col ul {
		gap: 2.5rem;
	}
	.site-footer .second-row .legals-col ul li img {
		height: 2rem;
	}
	
	.site-footer .third-row .disclaimer {
		margin-top: 3rem;
		padding-top: 1.7rem;
	}
	.site-footer .third-row .disclaimer p {
		--fs: clamp(8pt, 1rem, 10pt);
	}
}

@media only screen 
and (min-width : 0) 
and (max-width : 960px) { 
	.site-footer .first-row {
		text-align: center;
	}
	.site-footer .first-row .info-col .info-box {
		margin-top: 5rem;
		padding-inline: 2rem;
	}
	.site-footer .first-row .info-col .info-box .social {
		justify-content: center;
	}
	.site-footer .second-row :is(.partner-col, .legals-col, .legals-col .icons) {
		justify-content: center;
	}
	.site-footer .second-row .legals-col {
		margin-top: 5rem;
		gap: 3rem 5rem;
	}
	.site-footer .second-row .legals-col :is(.icons, .copyright) {
		flex: 0 1 100%;
		text-align: center;
	}
}

/* @end */


/* Animations
------------------------------------ */
:where(#wrapper) .contenedor .elemento {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .contenedor.animateActive .elemento {
	animation: fade var(--duration) forwards;
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .contenedor.animateActive .elemento {
    --delay: 0.3s;
}