@charset "UTF-8";

:root {
	--color-black: 0,0,0;
	--color-pink: 228,100,145;
	--color-purple: 116,64,93; /* #74405d */
	--color-white: 255,255,255;
	--transition-duration-bt: 0.4s;
	--transition-timing-linear: linear;
	--transition-timing-ease-out: cubic-bezier(0,0.6,0.4,1);
	--transition-timing-ease-in-out: cubic-bezier(0.6,0,0.4,1);
	
	--base-w: 1960; /*  980 * 2  */
	--base-w-mobile: 430;
	--page-margin: clamp(min(20px, (20 / var(--base-w-mobile)) * 100vw), (140 / var(--base-w)) * 100vw, 140px);
	--page-margin-neg: calc(var(--page-margin) * -1);
	--page-margin-mobile: min(36px, (36 / var(--base-w-mobile)) * 100vw);
	--grid-column-gap: 0;
	--grid-row-gap: 0;
	--grid-column-w: calc((min(var(--base-w) * 1px, 100vw) - (var(--page-margin) * 2) - (11 * var(--grid-column-gap))) / 12);
}

html {
	height: 100%;
	font-family: josefin-sans, sans-serif;
	font-weight: 400;
	font-style: normal;
}

body {
	width: 100%;
	height: 100%;
	background: rgb(var(--color-blue-1));
	overflow-y: scroll;
}

body.noscroll,
body.show-nav {
	overflow: hidden;
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}

img, iframe, video {
	display: block;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, hr, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, button, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: none;
}

ul, li {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4, h5 {
	font-weight: normal;
}

button {
	background: none;
	border-radius: 0;
	cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

*:focus {
    outline: 0;
}


/*************************************
	Header
 *************************************/


header {
	display: block;
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
    background-image: linear-gradient(90deg, rgb(var(--color-pink)) 15%, rgb(var(--color-purple)) 85%);
    transition: background-color 0.4s linear;
    pointer-events: none;
	z-index: 1000;
}

header.fixed {
	position: fixed;
	transition: transform 0.6s;
}

header.hide {
	transform: translateY(-100%);
}


/*************************************
	Nav
 *************************************/


header nav {
    position: relative;
	max-width: calc(var(--base-w) * 1px);
    margin: 0 auto;
}

header nav ul {
	display: grid;
	grid-template-columns: 25% 50% 25%;
	font-size: clamp(16px, (32 / var(--base-w)) * 100vw, 32px);
	padding: calc((38 / 32) * 1em) calc((70 / 32) * 1em);
}

header nav li {
    display: block;
	line-height: 1em;
}

header nav li a {
	display: inline-block;
    color: rgb(var(--color-white));
	font-size: clamp(16px, (32 / var(--base-w)) * 100vw, 32px);
	line-height: 1em;
    text-transform: uppercase;
	pointer-events: auto;
}

header nav li.home {
	grid-column: 2 / span 1;
	justify-self: center;
	text-align: center;
}

header nav li.home:has(img) {
	grid-column: 1 / span 2;
	justify-self: start;
}

header nav li.home h1 {
	display: block;
	font-size: inherit;
	line-height: 1em;
}

header nav li.home img {
    width: auto;
    height: clamp(41px, (50 / var(--base-w)) * 100vw, 50px);
}

header nav li.lang {
	grid-column: 3 / span 1;
	justify-self: end;
}

header nav li.lang a {
	font-weight: 300;
}


/*************************************
	Sections
 *************************************/


.container {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

main {
	flex: 1 0 auto;
	display: block;
	position: relative;
	transition: transform 1.2s var(--transition-timing-ease-in-out);
	padding-top: calc(clamp(16px, (32 / var(--base-w)) * 100vw, 32px) + clamp(38px, (76 / var(--base-w)) * 100vw, 76px));
	z-index: 20;
}

section {
	display: block;
	position: relative;
	width: 100%;
	opacity: 1;
	transition: opacity 0.6s var(--transition-timing-linear);
}

section > div {
    max-width: calc(var(--base-w) * 1px);
	margin: 0 auto;
    padding: min(118px, (118 / var(--base-w)) * 100vw) min(140px, (140 / var(--base-w)) * 100vw);
}

.text-transform-uppercase {
	text-transform: uppercase;
}

.white-space-nowrap {
	white-space: nowrap;
}

.grecaptcha-badge { 
    visibility: hidden;
}

section.privacy {
	background-image: linear-gradient(90deg, rgb(var(--color-pink)) 15%, rgb(var(--color-purple)) 85%);
	color: rgb(var(--color-white));
	padding-bottom: calc((160 / 1960) * 100vw);
}

section.privacy h2 {
	font-weight: 300;
	font-size: clamp(36px, (144 / var(--base-w)) * 100vw, 144px);
	line-height: calc((144 / 144) * 1em);
}

section.privacy h3 {
	font-weight: 700;
	font-size: clamp(22px, (44 / var(--base-w)) * 100vw, 44px);
	line-height: calc((24 / 22) * 1em);
}

section.privacy p,
section.privacy ol,
section.privacy ul {
	font-size: clamp(18px, (36 / var(--base-w)) * 100vw, 36px);
	line-height: calc((24 / 18) * 1em);
}

section.privacy h2 + p {
	margin-top: calc((8 / 18) * 1em);
}

section.privacy h3 + p {
	margin-top: calc((27 / 18) * 1em);
}

section.privacy p + h3,
section.privacy ol + h3,
section.privacy ul + h3 {
	margin-top: calc((21 / 22) * 1em);
}

section.privacy p + p,
section.privacy p + ol,
section.privacy ol + p,
section.privacy p + ul,
section.privacy ul + p {
	margin-top: calc((25 / 18) * 1em);
}

section.privacy ol {
    counter-reset: count-ordered-list;
}

section.privacy ol li,
section.privacy ul li {
	position: relative;
	padding-left: 1em;
}

section.privacy ol li:before {
    content: counter(count-ordered-list)".";
	counter-increment: count-ordered-list;
    display: inline-block;
    position: absolute;
    left: 0;
}

section.privacy ul li:before {
    content: "•";
    display: inline-block;
    position: absolute;
    left: 0;
}

section.privacy a {
	text-decoration: underline;
}


/*************************************
	Section registration
 *************************************/


div.bckg {
	--opacity-p: 0;
	
	display: block;
	position: sticky;
	width: 100vw;
	height: 0;
	bottom: 0;
	z-index: 10;
}

div.bckg > div:before {
	content: "";
	display: block;
	position: fixed;
	width: 100vw;
	height: 100vh;
	left: 0;
	top: 0;
	background-image: linear-gradient(90deg, rgb(var(--color-black)) 15%, rgb(var(--color-purple)) 85%);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

div.bckg > div:after {
	content: "";
	display: block;
	position: absolute;
	width: min(var(--base-w) * 1px, 100vw);
	height: 100vh;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("../images/img-agatha-femme-pivoine.webp");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: auto min(100vh, (1700 / var(--base-w)) * 100vw);
	margin: 0 auto;
	opacity: var(--opacity-p);
	transition: opacity 0.4s linear;
}

section.registration {
	color: rgb(var(--color-white));
	padding-bottom: min(420px, (420 / var(--base-w)) * 100vw);
}

section.registration > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: min(280px, (280 / var(--base-w)) * 100vw);
    grid-row-gap: min(200px, (200 / var(--base-w)) * 100vw);
    position: relative;
}

section.registration > div > div:nth-child(1) {
    position: relative;
	grid-column: 1 / span 2;
}

section.registration > div > div:nth-child(1):before {
	content: "";
	display: block;
	position: absolute;
	width: calc(100% + min(280px, (280 / var(--base-w)) * 100vw));
	height: calc(100% + min(118px, (118 / var(--base-w)) * 100vw) + min(200px, (200 / var(--base-w)) * 100vw));
	left: max(-140px, (-140 / var(--base-w)) * 100vw);
	top: max(-118px, (-118 / var(--base-w)) * 100vw);
	background-image: linear-gradient(90deg, rgba(var(--color-black),0.9) 15%, rgb(var(--color-purple)) 85%);
	
	-webkit-mask-image: linear-gradient(rgba(0,0,0,0.95) calc(100% - min(200px, (200 / var(--base-w)) * 100vw)), rgba(0,0,0,0));
	mask-image: linear-gradient(rgba(0,0,0,0.95) calc(100% - min(200px, (200 / var(--base-w)) * 100vw)), rgba(0,0,0,0));
	z-index: -1;
}

section.registration > div > div:nth-child(1) h2 {
	font-size: clamp(48px, (96 / var(--base-w)) * 100vw, 96px);
	line-height: calc((116 / 96) * 1em);
	text-align: center;
	text-transform: uppercase;
}

section.registration > div > div:nth-child(1) h2 span {
	font-weight: 300;
	font-size: 1.4em;
}

section.registration > div > div:nth-child(1) h2 img {
	display: inline-block;
	width: auto;
	height: 1em;
}

section.registration > div > div:nth-child(1) h3 {
	color: rgb(var(--color-pink));
	font-size: clamp(22px, (44 / var(--base-w)) * 100vw, 44px);
	line-height: calc((48 / 44) * 1em);
	text-align: center;
	margin-top: calc((86 / 44) * 1em);
	padding: 0 min(280px, (280 / var(--base-w)) * 100vw);
}

body.en section.registration > div > div:nth-child(1) h3 {
	padding: 0 min(440px, (440 / var(--base-w)) * 100vw);
}

section.registration > div > div:nth-child(2) {
    position: relative;
	grid-column: 2 / span 1;
}

section.registration > div > div:nth-child(2) h2 {
	font-size: clamp(14px, (28 / var(--base-w)) * 100vw, 28px);
	line-height: calc((36 / 28) * 1em);
	text-align: center;
	text-transform: uppercase;
	margin-bottom: calc((110 / 28) * 1em);
	opacity: 0;
}

section.registration > div > div:nth-child(2).show h2 {
	opacity: 1;
	transition: opacity 0.4s linear;
	transition-delay: var(--transition-delay);
}

form#form-contact {
	display: flex;
	flex-flow: column;
	row-gap: min(25px, (25 / var(--base-w)) * 100vw);
	position: relative;
	font-size: 0px;
}

form.hide {
	height: 0 !important;
	overflow: hidden;
	transition: height 0.8s var(--transition-timing-ease-in-out);
}

form input, 
form textarea,
form select,
form label,
form p,
form button[type="submit"] {
    display: block;
    position: relative;
    min-height: 0vh;
	color: rgb(var(--color-white));
    font-family: josefin-sans, sans-serif;
	font-weight: 400;
	font-style: normal;
    font-size: clamp(12px, (24 / var(--base-w)) * 100vw, 24px);
	letter-spacing: 0.075em;
	line-height: calc((24 / 24) * 1em);
    margin: 0;
    padding: 0.5em 0;
}

form input, 
form textarea,
form select {
    width: 100%;
    background: transparent;
	border: none;
	border-bottom: solid 1px rgb(var(--color-white));
    -webkit-appearance: none;
	appearance: none;
}

form label:not(.checkbox) {
	display: flex;
	align-items: center;
	padding-left: 0;
	padding-right: 0;
}

form label.focus-in {
	clip-path: none !important;
	/*padding-top: 1.8em;*/
	transition-delay: 0s !important;
}

form label:not(.checkbox).focus-out {
	clip-path: none !important;
    transition: padding 0.4s var(--transition-timing-ease-in-out) !important;
}

form label:not(.checkbox) span {
	position: absolute;
	font-size: clamp(9px, (18 / var(--base-w)) * 100vw, 18px);
	font-weight: 700;
	line-height: calc((30 / 18) * 1em);
	text-transform: uppercase;
	transform-origin: left bottom;
}

form label.focus-in span {
	clip-path: none !important;
    transform: scale(0.8) translateY(-200%) !important;
    transition: transform 0.4s 0.2s var(--transition-timing-ease-in-out) !important;
}

form label.focus-out span {
	clip-path: none !important;
	transition: transform 0.4s var(--transition-timing-ease-in-out) !important;
}




section.registration > div > div:nth-child(2):not(show) form label {
	clip-path: inset(0 100% 0 0);
	opacity: 0;
}

section.registration > div > div:nth-child(2).show form label {
	clip-path: inset(0);
	opacity: 1;
    transition: clip-path 0.6s cubic-bezier(0.25,0.25,0.25,1), opacity 0.4s linear;
	transition-delay: calc(var(--transition-delay-1) + var(--transition-delay-2) + var(--transition-delay-3));
}

section.registration > div > div:nth-child(2):not(show) form label span {
	clip-path: inset(100% 0 0 0);
	opacity: 0;
	transform: translateY(100%);
}

section.registration > div > div:nth-child(2).show form label span {
	clip-path: inset(0);
	opacity: 1;
	transform: translateY(0);
    transition: clip-path 0.6s cubic-bezier(0.25,0.25,0.25,1), opacity 0.4s linear, transform 0.6s cubic-bezier(0.25,0.25,0.25,1);
	transition-delay: calc(var(--transition-delay-1) + var(--transition-delay-2) + var(--transition-delay-3) + 0.4s);
}




form label.checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 1em;
    align-items: center;
    padding: 0;
    transform: none;
}

form input[type="checkbox"] {
    align-self: start;
	width: auto;
	height: auto;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	font-size: 0;
	margin: 0;
	padding: 0;	
}

form input[type="checkbox"]:before {
    content: "\f00c";
    display: block;
    width: clamp(18px, (36 / var(--base-w)) * 100vw, 36px);
    height: clamp(18px, (36 / var(--base-w)) * 100vw, 36px);
    min-height: 0vh;
    background: transparent;
	border: solid 1px rgb(var(--color-white));
    color: rgba(var(--color-white), 0);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: clamp(12px, (18 / var(--base-w)) * 100vw, 18px);
    line-height: clamp(18px, (36 / var(--base-w)) * 100vw, 36px);
    text-align: center;
    transition: color 0.4s linear;
}

form input[type="checkbox"]:checked:before {
    color: rgba(var(--color-white), 1);
}

form button[type="submit"] {
    display: block;
    position: relative;
    min-height: 0vh;
    background: rgba(var(--color-pink), 0);
    color: rgba(var(--color-white), 0);
    font-weight: 700;
    font-size: clamp(13px, (26 / var(--base-w)) * 100vw, 26px);
	line-height: calc((30 / 26) * 1em);
    text-transform: uppercase;
	margin: calc((44 / 26) * 1em) 0;
    padding: calc((22 / 26) * 1em);
}

form button[type="submit"]:before {
	content: "";
	display: block;
	position: absolute;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	left: 0;
	top: 0;
	border: solid 2px rgb(var(--color-pink));
	clip-path: polygon(0 0, 0 0, 0 2px, 0 2px, 0 2px, 0 2px, 0 2px, 0 2px, 0 2px, 0 2px);
}

section.registration > div > div:nth-child(2).show form button[type="submit"]:before {
    animation: kf-submit-border-reveal 0.8s cubic-bezier(0.25,0.25,0.25,1) both;
	animation-delay: calc(var(--transition-delay-1) + var(--transition-delay-2) + var(--transition-delay-3));
}

section.registration > div > div:nth-child(2).show form button[type="submit"] {
    background: rgba(var(--color-pink), 1);
    color: rgba(var(--color-white), 1);
	transition: background-color 0.4s linear, color 0.4s linear;
	transition-delay: 
		calc(var(--transition-delay-1) + var(--transition-delay-2) + var(--transition-delay-3) + 0.6s),
		calc(var(--transition-delay-1) + var(--transition-delay-2) + var(--transition-delay-3) + 0.8s);
}

@keyframes kf-submit-border-reveal {
    0% {
		clip-path: polygon(0 0, 0 0, 0 2px, 0 2px, 0 2px, 0 2px, 0 2px, 0 2px, 0 2px, 0 2px);
	}
    33% {
		clip-path: polygon(0 0, 100% 0, 100% 2px, calc(100% - 2px) 2px, calc(100% - 2px) 2px, calc(100% - 2px) 2px, calc(100% - 2px) 2px, calc(100% - 2px) 2px, calc(100% - 2px) 2px, 0 2px);
	}
    50% {
		clip-path: polygon(0 0, 100% 0, 100% 100px, calc(100% - 2px) 100%, calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 2px, 0 2px);
	}
    83% {
		clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100%, 0 calc(100% - 2px), 2px calc(100% - 2px), 2px calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 2px, 0 2px);
	}
    100% {
		clip-path: polygon(0 0, 100% 0, 100% 100px, 0 100%, 0 0, 2px 0, 2px calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 2px, 0 2px);
	}
}

form input:-webkit-autofill,
form input:-webkit-autofill:hover, 
form input:-webkit-autofill:focus, 
form input:-webkit-autofill:active {
    -webkit-text-fill-color: rgb(var(--color-white));
	-webkit-box-shadow: 0 0 0 60px rgb(var(--color-purple)) inset !important;
	box-shadow: 0 0 0 60px rgb(var(--color-purple)) inset !important;
}

form p small {
	font-size: 0.7em;
    line-height: 1.2em;
}

input.error,
label:has(input.error) {
	color: #FF0000;
}

.recaptcha {
	opacity: 0;
}

section.registration > div > div:nth-child(2).show .recaptcha {
	opacity: 1;
	transition: opacity 0.4s linear;
	transition-delay: calc(var(--transition-delay-1) + var(--transition-delay-2) + var(--transition-delay-3) + 1s);
}

.recaptcha a {
	text-decoration: underline;
}

.takk {
	display: block;
	position: relative;
	animation: kf-fade-in 0.4s 0.8s linear both;
}

.takk p {
	display: block;
	font-size: clamp(14px, (28 / var(--base-w)) * 100vw, 28px);
	line-height: calc((36 / 28) * 1em);
}

.takk p + p {
	margin-top: calc((36 / 28) * 1em);
}



/*************************************
	Footer
 *************************************/


footer {
	background-image: linear-gradient(90deg, rgb(var(--color-pink)) 15%, rgb(var(--color-purple)) 85%);
	color: rgb(var(--color-white));
	z-index: 30;
}

footer div.images {
	display: block;
	position: relative;
	width: 100vw;
	height: calc((860 / var(--base-w)) * 100vw);
	background-image: linear-gradient(90deg, rgb(var(--color-pink)) 15%, rgb(var(--color-purple)) 85%);
	clip-path: url(#footerMask);
	margin: calc((-160 / var(--base-w)) * 100vw) 0;
}

footer div.images div {
	display: block;
	position: absolute;
	height: calc((860 / var(--base-w)) * 100vw);
}

footer div.images > div {
	top: 0;
	opacity: 0;
}

footer div.images.show > div {
	opacity: 1;
	transform: scale(1.1);
	transition: opacity 0.4s linear, transform 8s cubic-bezier(0.5,0.5,0.5,1);
}

footer div.images img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
}

footer div.images div.img01,
footer div.images div.img01 > div {
	width: calc((792 / var(--base-w)) * 100vw);
	left: 0;
}

footer div.images div.img02,
footer div.images div.img02 > div {
	width: calc((1243 / var(--base-w)) * 100vw);
	right: 0;
}

footer div.images div.img02 {
	filter: drop-shadow(0 0 15px rgba(var(--color-black),0.75));
}

footer div.images div.img02 > div {
	background: url("../images/img-agatha-footer-02.webp") center center no-repeat;
	background-size: cover;
	clip-path: url(#footerMaskVideo);
	overflow: hidden;
}

footer div.images div.img02 iframe {
	position: absolute;
	width: calc((16 / 9) * (860 / var(--base-w)) * 100vw);
	height: calc((860 / var(--base-w)) * 100vw);
	left: calc((((1243 / var(--base-w)) * 100vw) - ((16 / 9) * (860 / var(--base-w)) * 100vw)) * 0.5);
	top: 0;
}

footer > div:not(.images) {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: calc(var(--base-w) * 1px);
	padding: min(180px, (180 / var(--base-w)) * 100vw) min(70px, (70 / var(--base-w)) * 100vw) min(43px, (43 / var(--base-w)) * 100vw) min(70px, (70 / var(--base-w)) * 100vw);
	opacity: 0;
}

footer > div:not(.images).show {
	opacity: 1;
	transition: opacity 0.4s linear;
	transition-delay: calc(var(--transition-delay) + 0.2s);
}

footer div.info,
footer div.copyright {
	font-size: clamp(12px, (24 / var(--base-w)) * 100vw, 24px);
	font-weight: 300;
	line-height: calc((24 / 24) * 1em);
}

footer div.info strong {
	font-weight: 400;
}

footer div.info img {
	display: block;
	width: auto;
    height: calc((36 / 24) * 1em);
	margin-bottom: calc((23 / 24) * 1em);
}

@keyframes kf-fade-in {
    0%   {opacity: 0;}
    100%  {opacity: 1;}
}

@media screen and (max-width: 640px) {
	section > div {
		padding: 0 calc((48 / var(--base-w-mobile)) * 100vw);
	}
	div.bckg > div:after {
		background-image: url("../images/img-agatha-femme-pivoine-mobile.webp");
		background-size: 80vw auto;
	}	
	section.registration {
		padding-top: calc((80 / var(--base-w-mobile)) * 100vw);
		padding-bottom: calc((1710 / 1303) * 75vw);
	}
	section.registration > div > div:nth-child(1):before,
	section.registration > div > div:nth-child(2):before {
		content: "";
		display: block;
		position: absolute;
		width: calc(100% + ((96 / var(--base-w-mobile)) * 100vw));
		height: calc(100% + ((200 / var(--base-w)) * 100vw));
		left: calc((-48 / var(--base-w-mobile)) * 100vw);
		top: calc((-100 / var(--base-w)) * 100vw);
		background-image: linear-gradient(90deg, rgba(var(--color-black),0.9) 15%, rgb(var(--color-purple)) 85%);
		mask-image: none;
		z-index: -1;
	}	
	section.registration > div > div:nth-child(2):before {
		height: calc(100% + ((100 / var(--base-w)) * 100vw) + (((1710 / 1303) * 75vw) * 0.5));
		-webkit-mask-image: linear-gradient(rgba(0,0,0,1) calc(100% - (((1710 / 1303) * 75vw) * 0.5)), rgba(0,0,0,0));		
		mask-image: linear-gradient(rgba(0,0,0,1) calc(100% - (((1710 / 1303) * 75vw) * 0.5)), rgba(0,0,0,0));		
	}
	section.registration > div > div:nth-child(1) h3,
	body.en section.registration > div > div:nth-child(1) h3 {
		padding: 0;
	}
	section.registration > div > div:nth-child(2) {
		grid-column: 1 / span 2;
	}
	footer {
		z-index: 10;
	}
	footer div.images {
		position: absolute;
		background-image: linear-gradient(90deg, rgb(var(--color-pink)) 15%, rgb(var(--color-purple)) 85%);
		z-index: -1;
	}
	footer div.images > div {
		display: none;
	}
	footer > div:not(.images) {
		flex-direction: column;
		align-items: flex-start;
		row-gap: calc((32 / var(--base-w-mobile)) * 100vw);
		padding: calc((32 / var(--base-w-mobile)) * 100vw) calc((48 / var(--base-w-mobile)) * 100vw);
	}
	footer div.info,
	footer div.copyright {
		line-height: 1.5em;
	}
	footer div.info span {
		display: block;
	}
	footer div.copyright span {
		display: inline-block;
	}
}