
/* footer */
footer.site-footer {
	position: fixed !important;
	width: 100%;
	height: 100dvh;
	top: 100dvh;
	left: 0;
	display: flex;
	color: rgb(var(--b) / 1);
	z-index: 200;
	opacity: .25;
	visibility: hidden;
	transition: 
	top .85s cubic-bezier(.22, 1, .36, 1),
	opacity .65s ease,
	visibility .65s ease;
	pointer-events: none;
}

footer.site-footer.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	top: 0;
}

footer.site-footer > * {
	position: relative;
	z-index: 1;
}



footer .stamp {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 20%;
	min-height: 10dvh;
	gap: 0;
	text-align: center;
	z-index: 10;
	overflow: visible;
	opacity: .85;
}
footer .stamp .stamp-logo{
position: absolute;
width: 100%;
height: 100%;
display: block;
background: linear-gradient(130deg, rgb(var(--b) / 1) 0%, rgb(var(--c1) / 1) 80%);

-webkit-mask-image: url("/assets/img/iso.webp");
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
-webkit-mask-size: contain;

mask-image: url("/assets/img/iso.webp");
mask-repeat: no-repeat;
mask-position: center;
mask-size: contain;
}
footer .stamp .tagline{
position: absolute;
top: 125%;
}

footer .stamp span.lead {
	font-size: 1.15rem;
	font-weight: 700;
}
footer .stamp span.caption {
	font-size: 1rem;
	font-weight: 500;
}

footer .footer-container {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 80%;
	min-height: 15dvh;
	padding: 3rem 5% !important;
	color: rgb(var(--b) / 1);
	border-radius: 1rem 1rem 0 0;
	z-index: 50;
	pointer-events: auto;
	background: rgb(var(--n-d) / 1);
}

footer .footer-container ul.easy-menu {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

footer .footer-container ul.ul-main {
	flex: 2 1 0;
	background: rgb(var(--b) / .2)
}

footer .footer-container ul.easy-menu li {
	margin: .15rem;
	padding: 0;
	background: rgb(var(--b) / .1);
	color: rgb(var(--n) / 1)
}
footer .footer-container ul.easy-menu li:first-of-type {
	background: rgb(var(--b) / 0);
	color: rgb(var(--nc1) / 1);
	font-size: 1.25rem;
	font-weight: 600;
	border-bottom: 1px solid rgb(var(--b) / .5);
	margin-bottom: .5rem;
	padding-bottom: .5rem;
	text-transform: uppercase;
}

footer .footer-container ul.easy-menu li:hover {
	background: rgb(var(--b) / .25);
	cursor: pointer;
}

footer .footer-container ul.easy-menu li a {
	color: rgb(var(--b) / 1)
}

footer .footer-container ul.easy-menu li a::before {
	font-family: 'icomoon';
	content: '\e906';
	color: rgb(var(--c1) / 1);
	margin-right: 1rem;
}


footer .footer-container ul.contact li a::before {
	content: '';
}

footer .footer-container ul.contact li a span {
	color: rgb(var(--c1) / 1);
	margin-right: 1rem;
}

footer .footer-container ul.contact li.social {
	border-top: 1px solid rgb(var(--b) / .5);
	padding-top: .5rem;
	margin-top: .5rem;
}
footer .footer-container ul.contact li.social a span {
	color: rgb(var(--b) / 1);
	margin-right: 1rem;
}




footer .corp{
	text-align: right;
}

footer .corp .footer-logo {
	display: flex;
	position: relative;
	width: 50%;
	height: 10dvh;
	margin-left: auto;
	background: linear-gradient(130deg, rgb(var(--b) / 1) 0%, rgb(var(--c1) / 1) 80%);

	-webkit-mask-image: url("/assets/img/logo.webp");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;

	mask-image: url("/assets/img/logo.webp");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
}

footer span.right{
	position: absolute;
	left: 0;
	bottom: 1rem;
	font-size: .65rem;
	color: rgb(var(--c1) / 1);
}











