*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	font-size: 14px;
}

h1 {
	margin:auto 0;
}

@font-face {
 font-family: "aqua_grotesqueregular";
 src: url("../fonts/aqua-webfont.ttf") format("ttf"),
        url("../fonts/aqua-webfont.woff") format("woff"),
	url("../fonts/aqua-webfont.woff2") format("woff2");
	 font-weight: normal;
    font-style: normal;
}

.link0 {
    cursor: pointer;
    font-size: 18px;
    position: relative;
    white-space: nowrap;
    color: var(--color-text);

}

.link0::before,
.link0::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
	
}

.link0::before {
    content: '';
}





.link0--helike:hover span {
    animation: glitchText 0.4s linear;
}

@keyframes glitchText {
    0% {
        opacity: 1;
        transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1);
        -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
        clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    }

    10% {
        -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
        clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    }

    20% {
        -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
        clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    }

    35% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
        clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    }

    50% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
        clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    }

    60% {
        -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
        clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    }

    70% {
        -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
        clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    }

    80% {
        -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
        clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    }

    90% {
        transform: translate3d(-10px, 0, 0) scale3d(-1, -1, 1);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

.link0--helike::before {
    height: 2px;
    opacity: 0;
}

.link0--helike:hover::before {
    opacity: 1;
    animation: glitchLine 0.4s steps(2, start) forwards;

}

@keyframes glitchLine {
    0% {
        transform: scale3d(1, 1, 1);
    }

    10% {
        transform: translate3d(10px, 0, 0);
    }

    20% {
        transform: translate3d(0, 4px, 0);
    }

    30% {
        transform: scale3d(0.1, 1.4, 1) translate3d(0, -25px, 0);
        transform-origin: 100% 0%;
    }

    40% {
        transform: scale3d(1, 0.3, 1) translate3d(0, 25px, 0);
    }

    50% {
        transform: scale3d(0.5, 0.3, 1) translate3d(-100px, -80px, 0);
    }

    60% {
        transform: scale3d(1, 1.25, 1) translate3d(10px, -5px, 0);
    }

    70% {
        transform: scale3d(0.5, 0.5, 1) translate3d(0, 20px, 0);
    }

    80% {
        transform: translate3d(-30, 10px, 0) scale3d(1, 0.4, 1);
        transform-origin: 100% 0%;
    }

    90% {
        transform: scale3d(1, 0.5, 1) translate3d(0, -15px, 0);
        ;
        transform-origin: 0% 50%;
    }

    100% {
        opacity: 1;
    }
}



.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
}

.unbutton:focus {
	outline: none;
}

.content__back {
	position: absolute;
	top: 0rem;
	right: 2rem;
	opacity: 0;
	cursor: pointer;
}

.content__back2 {
	/*position: absolute;*/
	top: 0rem;
	/*right: 2rem;*/
	opacity: 1;
	cursor: pointer;
}

.content__article--open ~ .content__back {
	pointer-events: auto;
}

.content__article--open ~ .content__back2 {
	pointer-events: auto;
}




/* Page Loader */
.js .loading::before,
.js .loading::after {
	content: '';
	position: fixed;
	z-index: 1000;
}

.js .loading::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1a1b23 url(../images/logowhite.png);
	background-size:auto;
	background-position: center center;
	background-repeat: no-repeat;
}

.js .loading::after {
	/*top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;*/

}

/*@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}*/

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}


.frame {
	text-align: center;
	position: relative;
	/*z-index: 1000;*/
}

.frame--header {
	grid-area: header;
}

.frame--footer {
	grid-area: footer;
}

.frame a {
	text-decoration: none;
}

.frame a:hover,
.frame a:focus {
	text-decoration: none;
}

/*.frame__title {
	font-size: 1rem;
	margin: 0 0 1rem;
	font-weight: normal;
	color: #e63811;
}*/



.frame__menu {
	font: inherit;
	background: none;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: not-allowed;
}




.menu__item:hover,
.menu__item:focus {
	color: var(--color-menuItem-hover);
}

.menu__item-inner-wrap {
	overflow: hidden;
	position: relative;
}

.menu__item-inner {
	display: inline-block;
	margin-bottom: 1.5rem;
	will-change: transform, opacity;
}

.menu__item-number {
	font-size: 1.5vw;
	font-family: soleil, sans-serif;
}

.hover-reveal {
	position: absolute;
	z-index: -1;
	/*width: 150px;
	height: 200px;*/
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	/*will-change: transform;*/
}

.hover-reveal__inner {
	overflow: hidden;
}

.hover-reveal__inner,
.hover-reveal__img {
	width: 100%;
	height: 100%;
	position: relative;
	will-change: transform;
}

.hover-reveal__img {
	/*background-size: cover;
	background-position: 50% 50%;
	transform-origin: 50% 100%;*/
}

.cursor {
	display: none;
}

.content-wrap {
	grid-area: content;
	/*position: relative;*/
	margin-top: 0vh;
}

.content {
	height: 0;
	overflow: hidden;
	position: absolute;
	opacity: 0;
	top: 0;
	pointer-events: none;
}



.content__title {
	display: flex;
	align-items: flex-start;
	font-weight: normal;
	line-height: 1;
	margin: 30px 0 3vh 0;
}

.content__title-wrap {
	overflow: hidden;
	position: relative;
}



.content__title-number {
	margin-top: 1rem;
	font-size: 1.5vw;
	font-size: clamp(1rem,1.5vw,1.75rem);
	font-family: soleil, sans-serif;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-gap: 2.5rem;
}

.gallery__item {
	flex: none;
	margin: 0;
}

.gallery__item-img {
	width: 100%;
	overflow: hidden;
	position: relative;
	will-change: transform;
}

.gallery__item-imginner {
	background-size: cover;
	background-position: 100% 0;
	width: 100%;
	padding-bottom: 65%;
	will-change: transform;
	border: 1px solid #676cb5;
}

.gallery__item-caption {
	display: grid;
	grid-template-areas: 'caption-title caption-more' 'caption-meta caption-meta';
}



.gallery__item-more::after {
	content: '';
	position: absolute;
	width: 300%;
	height: 200%;
	left: -100%;
	top: -50%;
}

.content__title-inner,
.content__title-number,
.gallery__item-imginner,
.gallery__item-title,
.gallery__item-meta,
.gallery__item-more {
	will-change: transform, opacity;
}

.gallery__item-more:focus,
.gallery__item-more:hover {
	opacity: 0.7;
	outline: none;
}

.backdiv {
    float: left;
    position: relative;
    margin-top: 30px;
}

.close-btn {
    background: url(../images/icon/close2.png);
    background-size: auto;
    z-index: 1000;
    cursor: pointer;
    width: 40px;
    height: 40px;
}





@media screen and (min-width: 53em) {
	
	
	
	
	html, body {
		height: 100vh;
		/*overflow: hidden;*/
	}
	main {
		grid-row-gap: 0;
	}
	.frame {
		text-align: left;
		/*display: grid;*/
		display: block;
		align-content: space-between;
		width: 100%;
		grid-template-columns: auto auto 1fr;
	}
	.frame--header {
		grid-template-areas: 'title links menu';
	}
	.frame--footer {
		grid-template-areas: 'author ... credits';
	}
	.frame__title {
		grid-area: title;
		margin: 0;
	}
	.frame__links {
		grid-area: links;
		padding: 0;
		margin-left: 0vw;
		justify-self: end;
	}
	.frame__author {
		align-self: end;
		grid-area: author;
	}
	.frame__menu {
		justify-self: end;
		align-self: start;
		grid-area: menu;
		display: inline-block;
	}
	.frame__credits {
		justify-self: end;
		grid-area: credits;
		color: #e63811;
		margin: 0;
	}
	.hover-reveal {
		width: 300px;
		height: 400px;
	}
	.gallery {
		grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
		grid-auto-columns: 350px;
		/*grid-auto-flow: column;*/
		grid-template-rows: auto;
	}
}

@media (any-pointer: fine) {
	.cursor {
		position: fixed;
		top: 0;
		left: 0;
		display: block;
		pointer-events: none;
		z-index: 9999;
	}
	.cursor__inner {
		fill: var(--cursor-fill);
		stroke: var(--cursor-stroke);
		stroke-width: var(--cursor-stroke-width);
		opacity: 1;
	}
	.no-js .cursor {
		display: none;
	}
}



@-webkit-keyframes slide-in-elliptic-left-bck {
  0% {
    -webkit-transform: translateX(-800px) rotateY(-30deg) scale(6.5);
            transform: translateX(-800px) rotateY(-30deg) scale(6.5);
    -webkit-transform-origin: 200% 50%;
            transform-origin: 200% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotateY(0) scale(1);
            transform: translateX(0) rotateY(0) scale(1);
    -webkit-transform-origin: -600px 50%;
            transform-origin: -600px 50%;
    opacity: 1;
  }
}
@keyframes slide-in-elliptic-left-bck {
  0% {
    -webkit-transform: translateX(-800px) rotateY(-30deg) scale(6.5);
            transform: translateX(-800px) rotateY(-30deg) scale(6.5);
    -webkit-transform-origin: 200% 50%;
            transform-origin: 200% 50%;
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotateY(0) scale(1);
            transform: translateX(0) rotateY(0) scale(1);
    -webkit-transform-origin: -600px 50%;
            transform-origin: -600px 50%;
    opacity: 1;
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@-webkit-keyframes text-focus-in2 {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in2 {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}










/***************************************************************************************/
/*************** RESPONSIVE ************************************************************/
/***************************************************************************************/
@media only screen and (min-width: 1025px) {
	
	body {
	margin: 0;
	--color-text: #000;
	/*--color-bg: #ddd;*/
	--color-link: #000;
	--color-link-hover: #000;
	--color-menuItem-hover: #e63811;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: soleil, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	--cursor-stroke: #fff;
    --cursor-fill: none;
    --cursor-stroke-width: 1px;
	background: #072c73 url(../images/background/fd4.jpg);
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
	
	.idmobil {
    display: none;
}
	
	.content__title-inner {
	display: block;
	line-height: 1.3;
	font-family: Syncopate, serif;
	font-size: 5vw;
	/*font-size: clamp(3rem,9vw,6rem);*/
	text-transform: lowercase;
	font-size: clamp(2rem,1.8vw,1.5rem);
	color:#fff;
	text-align: right;
}
	
	.gallery__item-title {
	line-height: 1;
font-family: Play, serif;
font-size: 1.3rem;
text-transform: lowercase;
font-weight: normal;
grid-area: caption-title;
margin: 1rem 0 0.5rem 0;
color: #fff;
}

.gallery__item-meta {
	margin: 0px 0px 20px 0px;
grid-area: caption-meta;
color: #fff;
	font-size: 13px;
	font-family: Roboto, sans-serif;
}

.gallery__item-more {
	grid-area: caption-more;
	align-self: center;
    justify-self: end;
    -moz-appearance: none;
	-webkit-appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	background: none;
	cursor: pointer;
	position: relative;
	color: #fff;
font-size: 18px;
font-weight: 300;
}
	.back {
	position: relative;
	/*background: url(../images/icon/close2.png);
    background-size: auto;
background-size: auto;
background-size: auto;
width: 40px;
height: 40px;
cursor: pointer;
		background: none;*/
	border: 0;
	padding: 0;
	margin: -2px 10px;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    fill: #fff;
}

.back:hover,
.back:focus {
	fill: var(--color-menuItem-hover);
	outline: none;
}
	
	.back2 {
	position: relative;
	border: 0;
	padding: 0;
	margin: -2px 10px;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    fill: #fff;
}
	

	
	.slide-in-elliptic-left-bck {
	-webkit-animation: slide-in-elliptic-left-bck 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-elliptic-left-bck 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: 0.2s;
			
}
.text-focus-in {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation-delay: 0.3s;
}
	
.text-focus-in2 {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation-delay: 0.6s;
}
	.menu {
	grid-area: content;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: flex-start;
	align-content: center;
	max-width: 1050px;
	margin-top: -15vh;
}
	.menu__item {
	font-family: Syncopate, serif;
	font-size: 5vw;
	/*font-size: clamp(2rem,8vw,4.75rem);*/
	font-size: clamp(2rem,2.5vw,4.75rem);
	text-transform: lowercase;
	line-height: 1;
	cursor: pointer;
	margin-right: 2rem;
	display: flex;
	align-items: flex-start;
	flex: none;
	position: relative;
	color:#fff;
	text-shadow: 0px 0px 10px #000;
}
	.content--current {
	height: auto;
	overflow: visible;
	position: relative;
	opacity: 1;
	pointer-events: auto;
}

	
	nav3 {
    display: none;
}
	.frame__links {
	display: none;
}

.frame__links a:not(:last-child) {
	margin-right: 1rem;
}
	
	.footer {
    background: none;
   padding: 1rem 4rem;
}

.footer p {
    /*line-height: 1;*/
    color: #fff;
    float: right;
	font-family: 'Play', sans-serif;
    margin: 0;
	margin-top: -24px;
}
	.infosite {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Play', sans-serif;
    font-weight: bold;
}
	
.infofoot {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: 8px;
margin-bottom: 8px;
}
	

	
.infofoot:hover {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: 8px;
margin-bottom: 8px;
}
	
.infofoot:visited {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
margin-top: 8px;
margin-bottom: 8px;
}
	
	.infofootml {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: -17px;
	margin-top: 8px;
margin-bottom: 8px;
}
	

	
.infofootml:hover {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: -17px;
}
	
.infofootml:visited {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: -17px;
}
	
	.ml {
    color: #fff;
    text-decoration: none;
}
	
	main {
	min-height: 100vh;
	padding: 2rem 4.8rem;
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-auto-columns: 100%;
	grid-template-areas: 'header'
						 'content'
						 'footer';
	align-items: center;
	grid-row-gap: 6rem;
	overflow: hidden;
}


.frame__title {
    font-size: 1.3em;
    margin: 0;
    font-family: 'aqua_grotesqueregular', sans-serif;
    color: #fff;
    font-weight: normal;
    padding: 80px 0px 10px 0px;
}

.frame__tagline {
    margin: 2rem 0 2.5rem;
    line-height: 1.5;
	padding:0;
    max-width: 85ch;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #fff;
	margin-bottom: -5vh;
	font-weight: 300;
}
	
	.content__titlelogo {
    margin: 20px 0 10px 0;
    position: relative;
    max-width: 320px;
	 min-width: 320px;
    height: auto;
    text-align: center;
    animation-delay: calc(var(--delay-anim) + var(--time-anim) * 0.2);
}

.content__titlelogo2 {
    display: none;
}
	
	.idnormal {
		display:block;
	}
	
	.menunav {
font-family: 'aqua_grotesqueregular', sans-serif;
font-size: 14px;
color: #fff;
text-align: left;
display: block;
list-style: none;
margin: 0px;
padding: 10px 0px;
	}
	
	
	
	.menunav > ul {
    font-size: 14px;
    color: #fff;
		text-align: left;
		list-style:none;
		margin: 0px 0px 0px -6px;
padding: 0;
	}
	
	.menunav > ul > li {
    font-size: 14px;
    color: #fff;
		text-align: left;
		display: inline;
		list-style:none;
		padding: 5px 6px 5px 6px;
	}
	
	.menunav > ul > li > a {
	font-family: 'aqua_grotesqueregular', sans-serif;
    font-size: 1em;
		letter-spacing:0px;
    color: #fff;
		text-align: left;
		display: inline;
		list-style:none;
	}
	
	.menunav > ul > li > a:hover {
	font-family: 'aqua_grotesqueregular', sans-serif;
    font-size: 1em;
		letter-spacing:0px;
    color: #fff;
		text-align: left;
		display: inline;
		list-style:none;
		margin:2px 0px;
		text-decoration: none;
	}
	
	.flou {
		opacity:0.5;
		text-decoration: none !important;
		
	}
	
	.link--metis {
    font-family: aqua_grotesqueregular, sans-serif;
    text-transform: uppercase;
}

.link--metis::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.link--metis:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
	
}






@media only screen and (max-width: 1024px) {
	
	body {
	margin: 0;
	--color-text: #000;
	/*--color-bg: #ddd;*/
	--color-link: #000;
	--color-link-hover: #000;
	--color-menuItem-hover: #e63811;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: soleil, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	--cursor-stroke: #fff;
    --cursor-fill: none;
    --cursor-stroke-width: 1px;
	background: #022567 url(../images/background/fd4.jpg);
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
	
	.idmobil {
    display: none;
}
	
	.content__title-inner {
	display: block;
	line-height: 1.3;
	font-family: Syncopate, serif;
	font-size: 5vw;
	/*font-size: clamp(3rem,9vw,6rem);*/
	text-transform: lowercase;
	font-size: clamp(2rem,1.8vw,1.5rem);
	color:#fff;
	text-align: right;
}
	
	.gallery__item-title {
	line-height: 1;
font-family: Play, serif;
font-size: 1.3rem;
text-transform: lowercase;
font-weight: normal;
grid-area: caption-title;
margin: 1rem 0 0.5rem 0;
color: #fff;
}

.gallery__item-meta {
	margin: 0px 0px 20px 0px;
grid-area: caption-meta;
color: #fff;
	font-size: 13px;
	font-family: Roboto, sans-serif;
}

.gallery__item-more {
	grid-area: caption-more;
	align-self: center;
    justify-self: end;
    -moz-appearance: none;
	-webkit-appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	background: none;
	cursor: pointer;
	position: relative;
	color: #fff;
font-size: 18px;
font-weight: 300;
}
	.back {
	/*position: absolute;*/
	position: relative;
	/*background: none;*/
	border: 0;
	padding: 0;
	margin: -2px 10px;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    fill: #afb1a8;
}

.back:hover,
.back:focus {
	fill: var(--color-menuItem-hover);
	outline: none;
}
	
	.slide-in-elliptic-left-bck {
	-webkit-animation: slide-in-elliptic-left-bck 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-elliptic-left-bck 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: 0.2s;
			
}
.text-focus-in {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation-delay: 0.3s;
}
	
.text-focus-in2 {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation-delay: 0.6s;
}
	.menu {
	grid-area: content;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: flex-start;
	align-content: center;
	max-width: 1050px;
	margin-top: -15vh;
}
	.menu__item {
	font-family: Syncopate, serif;
	font-size: 5vw;
	/*font-size: clamp(2rem,8vw,4.75rem);*/
	font-size: clamp(2rem,2.5vw,4.75rem);
	text-transform: lowercase;
	line-height: 1;
	cursor: pointer;
	margin-right: 2rem;
	display: flex;
	align-items: flex-start;
	flex: none;
	position: relative;
	color:#fff;
	text-shadow: 0px 0px 10px #000;
}
	.content--current {
	height: auto;
	overflow: visible;
	position: relative;
	opacity: 1;
	pointer-events: auto;
}

	
	nav3 {
    display: none;
}
	
	.frame__links {
	display: none;
}

.frame__links a:not(:last-child) {
	margin-right: 1rem;
}
	
	main {
	min-height: 100vh;
	padding: 2rem 4.8rem;
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-auto-columns: 100%;
	grid-template-areas: 'header'
						 'content'
						 'footer';
	align-items: center;
	grid-row-gap: 6rem;
	overflow: hidden;
}
	
		.footer {
    background: none;
   padding: 2rem 4rem;
}

.footer p {
    /*line-height: 1;*/
    color: #fff;
    float: right;
	font-family: 'Play', sans-serif;
    margin: 0;
	margin-top: -24px;
}
	.infosite {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Play', sans-serif;
    font-weight: bold;
}
	
.infofoot {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: 8px;
margin-bottom: 8px;
}
	

	
.infofoot:hover {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: 8px;
margin-bottom: 8px;
}
	
.infofoot:visited {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
margin-top: 8px;
margin-bottom: 8px;
}
	
	.infofootml {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: -17px;
	margin-top: 8px;
margin-bottom: 8px;
}
	

	
.infofootml:hover {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: -17px;
}
	
.infofootml:visited {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: -17px;
}
	
	.ml {
    color: #fff;
    text-decoration: none;
}


.frame__title {
    font-size: 1.3em;
    margin: 0;
    font-family: 'aqua_grotesqueregular', sans-serif;
    color: #fff;
    font-weight: normal;
    padding: 80px 0px 10px 0px;
}

.frame__tagline {
    margin: 2rem 0 2.5rem;
    line-height: 1.5;
	padding:0;
    max-width: 85ch;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #fff;
	margin-bottom: -5vh;
	font-weight: 300;
}
	
	.content__titlelogo {
    margin: 20px 0 10px 0;
    position: relative;
    max-width: 420px;
	 min-width: 420px;
    height: auto;
    text-align: center;
    animation-delay: calc(var(--delay-anim) + var(--time-anim) * 0.2);
}

.content__titlelogo2 {
    display: none;
}
	
	.idnormal {
		display:block;
	}
	
	.menunav {
font-family: 'aqua_grotesqueregular', sans-serif;
font-size: 14px;
color: #fff;
text-align: left;
display: block;
list-style: none;
margin: 0px;
padding: 10px 0px;
	}
	
	
	
	.menunav > ul {
    font-size: 14px;
    color: #fff;
		text-align: left;
		list-style:none;
		margin: 0px 0px 0px -6px;
padding: 0;
	}
	
	.menunav > ul > li {
    font-size: 14px;
    color: #fff;
		text-align: left;
		display: inline;
		list-style:none;
		padding: 5px 6px 5px 6px;
	}
	
	.menunav > ul > li > a {
	font-family: 'aqua_grotesqueregular', sans-serif;
    font-size: 1em;
		letter-spacing:0px;
    color: #fff;
		text-align: left;
		display: inline;
		list-style:none;
	}
	
	.menunav > ul > li > a:hover {
	font-family: 'aqua_grotesqueregular', sans-serif;
    font-size: 1em;
		letter-spacing:0px;
    color: #fff;
		text-align: left;
		display: inline;
		list-style:none;
		margin:2px 0px;
		text-decoration: none;
	}
	
	.flou {
		opacity:0.5;
		text-decoration: none !important;
		
	}
	
	.link--metis {
    font-family: aqua_grotesqueregular, sans-serif;
    text-transform: uppercase;
}

.link--metis::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.link--metis:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
	
}




@media only screen and (max-width: 768px) {
	
	body {
	margin: 0;
	--color-text: #000;
	--color-bg: #fff;
	--color-link: #000;
	--color-link-hover: #000;
	--color-menuItem-hover: #e63811;
	color: var(--color-text);
	background-color: var(--color-bg);
	font-family: soleil, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	--cursor-stroke: #fff;
    --cursor-fill: none;
    --cursor-stroke-width: 1px;
	background: none;
}
	
	.content-wrap {
	grid-area: content;
	/*position: relative;*/
	margin-top: -17vh;
}
	
	.idmobil {
    display: block;
}
	
	.ico {
    margin: 3% 0%;
}
	
	.truclog3 {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 70px;
    height: auto;
    margin-bottom: 1%;
    margin-top: -5%;
}
	
	.content__title-inner {
	display: block;
	line-height: 1.3;
	font-family: Syncopate, serif;
	font-size: 5vw;
	/*font-size: clamp(3rem,9vw,6rem);*/
	text-transform: lowercase;
	font-size: clamp(1.3rem,1.8vw,1.5rem);
	color:#343333;
	text-align: right;
}
	
	.gallery__item-title {
	line-height: 1;
font-family: Play, serif;
font-size: 1.1rem;
text-transform: lowercase;
font-weight: normal;
grid-area: caption-title;
margin: 1rem 0 0.5rem 0;
color: #343333;
}

.gallery__item-meta {
	margin: 0px 0px 20px 0px;
grid-area: caption-meta;
color: #343333;
	font-size: 13px;
	font-family: Roboto, sans-serif;
}

.gallery__item-more {
	grid-area: caption-more;
	align-self: center;
    justify-self: end;
    -moz-appearance: none;
	-webkit-appearance: none;
	border: 0;
	padding: 0;
	margin: 0;
	background: none;
	cursor: pointer;
	position: relative;
	color: #343333;
font-size: 16px;
font-weight: 300;
}
	.back {
	/*position: absolute;*/
	position: relative;
	/*background: none;*/
	border: 0;
	padding: 0;
	margin: 0px 10px;
    top: 33px;
    left: 230px;
    opacity: 0;
    pointer-events: none;
    fill: #afb1a8;
}

.back:hover,
.back:focus {
	fill: var(--color-menuItem-hover);
	outline: none;
}
	
	.slide-in-elliptic-left-bck {
	-webkit-animation: slide-in-elliptic-left-bck 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-elliptic-left-bck 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation-delay: 0.2s;
			
}
.text-focus-in {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation-delay: 0.3s;
}
	
.text-focus-in2 {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation-delay: 0.6s;
}
	.menu {
	grid-area: content;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	justify-content: center;
	align-content: center;
	max-width: 1050px;
	margin-top: -5vh;
}
	.menu__item {
	font-family: Syncopate, serif;
	font-size: 5vw;
	/*font-size: clamp(2rem,8vw,4.75rem);*/
	font-size: clamp(2rem,2.5vw,4.75rem);
	text-transform: lowercase;
	line-height: 1;
	cursor: pointer;
	margin-right: 0rem;
	display: flex;
	align-items: center;
	flex: none;
	position: relative;
	color:#022567;
	text-shadow: none;
		padding: 0 1rem;
}
	.content--current {
	height: auto;
	overflow: visible;
	position: relative;
	opacity: 1;
	pointer-events: auto;
		padding: 3rem;
}

	
	nav3 {
    display: block;
    margin-top: 0px;
    text-align: center;
}
	
	.frame__links {
	display: inline;
}

.frame__links a:not(:last-child) {
	margin-right: 0rem;
}
	
	main {
	min-height: 100vh;
	padding: 0rem 0rem;
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-auto-columns: 100%;
	grid-template-areas: 'header'
						 'content'
						 'footer';
	align-items: center;
	grid-row-gap: 6rem;
	overflow: hidden;
}
	
		.footer {
    background: none;
   padding: 2rem 2rem;
	line-height: 20px;
}

.footer p {
    /*line-height: 1;*/
    color: #343333;
    float: right;
	font-family: 'Play', sans-serif;
    margin: 0;
	margin-top: -24px;
}
	.infosite {
    color: #343333;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Play', sans-serif;
    font-weight: bold;
}
	
.infofoot {
    color: #343333;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: 8px;
margin-bottom: 8px;
}
	

	
.infofoot:hover {
    color: #343333;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: 8px;
margin-bottom: 8px;
}
	
.infofoot:visited {
    color: #343333;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
margin-top: 8px;
margin-bottom: 8px;
}
	
	.infofootml {
    color: #343333;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: -17px;
	margin-top: 8px;
margin-bottom: 8px;
}
	

	
.infofootml:hover {
    color: #343333;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: -17px;
}
	
.infofootml:visited {
    color: #343333;
    text-decoration: none;
    font-size: 14px;
    float: left;
    font-family: 'Play', sans-serif;
	margin-top: -17px;
}
	
	.ml {
    color: #343333;
    text-decoration: none;
}


.frame__title {
    font-size: 1.3em;
    margin: 0;
    font-family: 'aqua_grotesqueregular', sans-serif;
    color: #343333;
    font-weight: normal;
    padding: 20px 0px 10px 0px;
}

.frame__tagline {
    margin: 2rem 0 2.5rem;
    line-height: 1.5;
	padding: 0px 1rem;
    max-width: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #343333;
	font-weight: 300;
}
	
	.content__titlelogo {
    display: none;
}

.content__titlelogo2 {
    margin: 0px 0 0 0;
    position: relative;
    display: block;
    padding: 0px !important;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    text-align: center;
}
	
	.idnormal {
		display:none;
	}
	
	.menunav {
font-family: 'aqua_grotesqueregular', sans-serif;
font-size: 14px;
color: #fff;
text-align: left;
display: block;
list-style: none;
margin: 0px;
padding: 10px 0px;
	}
	
	
	
	.menunav > ul {
    font-size: 14px;
    color: #fff;
		text-align: left;
		list-style:none;
		margin: 0px 0px 0px -6px;
padding: 0;
	}
	
	.menunav > ul > li {
    font-size: 14px;
    color: #fff;
		text-align: left;
		display: inline;
		list-style:none;
		padding: 5px 6px 5px 6px;
	}
	
	.menunav > ul > li > a {
	font-family: 'aqua_grotesqueregular', sans-serif;
    font-size: 1em;
		letter-spacing:0px;
    color: #fff;
		text-align: left;
		display: inline;
		list-style:none;
	}
	
	.menunav > ul > li > a:hover {
	font-family: 'aqua_grotesqueregular', sans-serif;
    font-size: 1em;
		letter-spacing:0px;
    color: #fff;
		text-align: left;
		display: inline;
		list-style:none;
		margin:2px 0px;
		text-decoration: none;
	}
	
	.flou {
		opacity:0.5;
		text-decoration: none !important;
		
	}
	
	.link--metis {
    font-family: aqua_grotesqueregular, sans-serif;
    text-transform: uppercase;
}

.link--metis::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.link--metis:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
	
}
