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

:root {
	font-size: 14px;
}



@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;
}



.oh {
	overflow: hidden;
}

#scrollUp
{
position: fixed;
bottom : 10px;
right: -100px;
opacity: 0.5;
}



.imgint {
	display: block;
	width:100%;
	height: auto;
	border: 1px solid #676cb5;
}




.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;
    }
}





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

.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 {
	color: var(--color-link-hover);
	outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
	background: lightgrey;
}

a:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
	background: transparent;
}

a:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid red;
	background: transparent;
}

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

.unbutton:focus {
	outline: none;
}



.cursor {
	display: none;
}

.frame {
	position: relative;
}







.frame__links a:not(:last-child) {
	margin-right: 1rem;
}



.heading .splitting .word, 
.heading .splitting .char {
	display: flex;
}

.char-wrap {
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.char {
	display: inline-block;
	will-change: transform;
}

.heading > span {
    display: flex;
}









.item__imgwrap,
.content__imgwrap {
	overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
	min-height: 200px;
	will-change: transform;
}

.item__img,
.content__img {
	width: 100%;
	height: 100%;
	min-height: 200px;
	background-size: cover;
	background-position: 50% 50%;
	will-change: transform;
	border: 1px solid #676cb5;
}



.item__meta-row {
	display: block;
	position: relative;
	overflow: hidden;
}

.item__meta-row span {
	display: block;
	will-change: transform;
}

.item__enter {
	display: none;
	will-change: transform;
}

.item__enter-circle {
	fill: none;
	stroke: #fff;
	stroke-width: 1px;
	will-change: transform, opacity;
}



.item__excerpt-link {
	/*display: inline-block;*/
	position: relative;
	cursor: pointer;
	color: var(--color-text);
	font-weight: 500;
	line-height: 1;
	overflow: hidden;
	
color: #fff;
	top:20px;
font-size: 14px;
background-color: transparent;
font-family: 'Roboto', sans-serif;
font-style: normal;
border: 1px solid #fff;
padding: 8px 20px;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
transition: ease .2s;
}

/*.item__excerpt-link span {
	display: inline-block;
	padding-bottom: 10px;
	position: relative;
}

.item__excerpt-link span::after {
	content: '';
	width: 100%;
	height: 2px;
	top: calc(100% - 10px);
	position: absolute;
	left: 0;
	background: var(--color-text);
	transition: transform 0.2s;
	transform-origin: 100% 0;
}

.item__excerpt-link span:hover::after {
	transform: scale3d(0,1,1);
}*/

.content {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	z-index: 2000;
	pointer-events: none;
}





.content__article {
	height: 0;
	overflow: hidden;
}

.content__article--open {
	pointer-events: auto;
	padding: 0 0 20vh;
	height: 100%;
	overflow-y: scroll;
}

.content__article .heading {
	text-align: center;
}





.content__text img {
	/*max-width: 50%;*/
	margin: 1.5rem auto;
	/*display: block;
	border-radius: 50%;*/
}

.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;
}

@media screen and (min-width: 73em) {
	.item {
		position: relative;
		display: grid;
		grid-template-areas: 
		'image image image enter' 
		'meta meta meta meta' 
		'... ... excerpt ...';
		grid-template-columns: 1fr auto 480px 1fr;
		grid-template-rows: minmax(420px,40vh) auto auto;
	}
	.item--invert {
		grid-template-areas: 
		'enter image image image' 
		'meta meta meta meta' 
		'... ... excerpt ...';
		/*grid-template-columns: 1fr auto 360px 1fr;*/
		grid-template-columns: 1fr auto 480px 1fr;
	}
	.item__imgwrap {
		grid-area: image;
	}
	.item__img {
		width: 100%;
		height: 80%;
	}
	.item__enter {
		align-self: center;
		justify-self: center;
		display: flex;
		grid-area: enter;
		position: relative;
		z-index: 1000;
		max-width: 400px;
		max-height: 400px;
		align-items: center;
		justify-content: center;
	}
	.item__enter-circle {
		pointer-events: none;
		cursor: pointer;
		flex: none;
	}
	.item__meta {
		grid-area: meta;
	}
	.item--invert .item__meta {
		justify-self: end;
		text-align: right;
	}
	.item__excerpt {
		grid-area: excerpt;
	}
	
	.heading > span {
		justify-content: center;
	}
	.heading--item {
		margin: 0;
		grid-area: 1 / 1 / 2 / 5;
		justify-self: center;
		align-self: center;
		text-align: center;
	}
}

@media (any-pointer:fine) {
	.cursor {
		position: fixed;
		top: 0;
		left: 0;
		display: block;
		pointer-events: none;
		z-index: 5000;
	}

	.cursor__inner {
		fill: var(--cursor-fill);
		stroke: var(--cursor-stroke);
		stroke-width: var(--cursor-stroke-width);
		opacity: 0.7;
	}

	.no-js .cursor {
		display: none;
	}

}









/***************************************************************************************/
/*************** RESPONSIVE ************************************************************/
/***************************************************************************************/
@media only screen and (min-width: 1025px) {
	
	
	body {
	margin: 0;
	--color-text: #000;
	/*--color-bg: #fff;*/
	--color-link: #fff;
	--color-link-hover: #fff;
	color: var(--color-text);
	background-color: var(--color-bg);
	/*font-family: roc-grotesk, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;*/
	font-family: Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	--cursor-stroke: #fff; 
	--cursor-fill: none;
	background: #072c73 url(../images/background/fd4.jpg);
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
	background-attachment: fixed;
/*	background: rgb(2,37,104);
background: linear-gradient(135deg, rgba(2,37,104,1) 0%, rgba(3,64,175,1) 100%);*/
	--cursor-stroke-width: 1px; 
	line-height: 1;
	font-weight: 300;
	overflow: hidden;
	overflow-y: scroll;
}
	
	.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;
}

	
	.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);
}
	
nav2 {
    display: block;
}
nav3 {
    display: none;
}
	
	.close-btn {
    background: url(../images/icon/close2.png);
        background-size: auto;
    z-index: 1000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 40px;
    top: 30px;
    /*background-size: cover;*/
}
	
	.item__excerpt {
	line-height: 1.42;
	will-change: transform;
}
	
	.whitespace {
	margin-left: 20px;
}
	
	.content .heading {
	margin-bottom: 5rem;
	font-size: 10vw;
    font-size: clamp(2rem, 10vw, 6rem);
}
	
	.content__text {
	padding: 0 1rem;
	line-height: 1.5;
	margin: 0 auto;
	max-width: 140ch;
	will-change: transform;
}
	
	.frame--footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 0vh;
}
	
	.heading > span:first-child {
	font-size: 14vw;
	/*font-size: clamp(2rem, 14vw, 9rem);*/
	font-size: clamp(2rem, 5vw, 6rem);
}
	
	.content .heading > span:first-child {
	font-size: 14vw;
	font-size: clamp(2rem, 4vw, 6rem);
}
	
	.link0--helike {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
		padding: 8px 20px;
border: 1px solid #fff;
	text-decoration: none;
	color:#fff;
}

.link0--helike:hover {
  font-family: 'Roboto', sans-serif;
font-weight: normal;
padding: 8px 20px;
border: none;
color: #fff;
}
	
	.liz {
text-align: center;
width: 55px;
height: 2px;
margin-right: auto;
margin-left: auto;
display: block;
background-color: #fff;
margin-bottom: 40px;
}

.liz2 {
text-align: left;
width: 55px;
height: 2px;
display: block;
margin-left:15px;
background-color: #fff;
margin-bottom: 0px;
}
	
	.item {
	margin: 15vh 0 18vh;
}
	
	.frame__title-wrap {
	width: 80%;
	max-width: 600px;
}
	
	main {
	padding: 2.1rem 4.7rem;
	max-width: 1400px;
/*margin: 0 auto;*/
		/*background: url(../images/background/logowhite.png);
	background-size:50%;
	background-position: bottom right;
	background-repeat: no-repeat;
	background-attachment: fixed;*/
}
	
	.heading {
	font-weight: 300;
	font-size: 6vw;
	line-height: 1.1;
	font-family: 'aqua_grotesqueregular', sans-serif;
	color:#fff;
	text-shadow: 0px 2px 3px #000;
}
	
	.heading > span:nth-child(2) {
	margin-top: 0vw;
	text-transform: lowercase;
	font-size: clamp(1rem, 3vw, 4rem);
	float: left;
}
	.item__meta {
	margin: 0.85rem 0 2rem;
	line-height: 1.3;
	font-size: 0.67rem;
	text-transform: uppercase;
	font-weight: 500;
	overflow: hidden;
		display: none;
}
	
	h3 {
font-size: 1.3em;
margin: 0;
font-family: 'aqua_grotesqueregular', sans-serif;
color: #fff;
font-weight: normal;
padding: 0px 0px 40px 0px;
	text-align: center;	
	}
	
	h4 {
    font-size: 1.2em;
    margin: 0;
    font-family: 'Play', sans-serif;
    color: #fff;
    font-weight: normal;
    padding: 40px 0px 10px 0px;
    text-align: center;
		letter-spacing: 0.3px;
}
		h5 {
 font-size: 1.2em;
margin: 0;
font-family: 'Play', sans-serif;
color: #fff;
font-weight: normal;
padding: 0px 15px 5px 15px;
text-align: left;
letter-spacing: 0.3px;
}
	
	.txt2 {
font-size: 15px;
font-family: 'Play', sans-serif;
font-weight: normal;
padding: 0px 0px 0px 0px !important;
margin: 10px 0px -10px 20px !important;
	}
	
	.frame__title {
	font-size: 1.3em;
	margin: 0;
	font-family: 'aqua_grotesqueregular', sans-serif;
	color: #fff;
	font-weight: normal;
	padding: 80px 0px 10px 0px;
}

.txt {
	font-family: 'aqua_grotesqueregular', sans-serif;
	font-size:15px;
	color: #fff;
}
	

.frame__tagline {
	margin: 2rem 0 2.5rem;
	line-height: 1.5;
	max-width: 85ch;
	font-family: 'Roboto', sans-serif;
font-size: 15px;
color: #fff;
	margin-bottom: -70px;
}
	
	.item__excerpt p {
		margin: 0 0 1.5rem;
		color:#fff;
		text-align: justify;
	}
	
	.content__text p {
	margin: 1.5rem 0;
	color:#fff;
	text-align: justify;
		padding: 0px 15px;
}
	
	.ico2 {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 60px;
    height: auto;
    margin-bottom: 5% !important;
    margin-top: 1%;
	border-radius: none;
}
	
	.ico1 {
    display: none;
}
	
	.content__titlelogo {
	margin: 0vh 0 0 0;
	position: relative;
	min-width: 320px;
max-width: 320px;
	height: auto;
	text-align: center;
	animation-delay: calc(var(--delay-anim) + var(--time-anim) * 0.2);
}
.content__titlelogo2 {
		display: 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;
}
	
	
}


@media only screen and (max-width: 1024px) {
	
	.close-btn3 {
		display: none;
}
	
	body {
	margin: 0;
	--color-text: #000;
	/*--color-bg: #fff;*/
	--color-link: #fff;
	--color-link-hover: #fff;
	color: var(--color-text);
	background-color: var(--color-bg);
	/*font-family: roc-grotesk, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;*/
	font-family: Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	--cursor-stroke: #fff; 
	--cursor-fill: none;
	background: #022567 url(../images/background/fd4.jpg);
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
	background-attachment: fixed;
/*	background: rgb(2,37,104);
background: linear-gradient(135deg, rgba(2,37,104,1) 0%, rgba(3,64,175,1) 100%);*/
	--cursor-stroke-width: 1px; 
	line-height: 1;
	font-weight: 300;
	overflow: hidden;
	overflow-y: scroll;
}
	
		.footer {
    background: none;
   padding: 2rem 4rem;
	line-height: 20px;
}

.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;
}
	
	
	.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);
}
	
nav2 {
    display: block;
}
nav3 {
    display: none;
}
	
	.close-btn {
    background: url(../images/icon/close2.png);
        background-size: auto;
    z-index: 1000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 40px;
    top: 30px;
    /*background-size: cover;*/
}
	
	.item__excerpt {
	line-height: 1.42;
	will-change: transform;
}
	
	.whitespace {
	margin-left: 20px;
}
	
	.content .heading {
	margin-bottom: 5rem;
	font-size: 10vw;
    font-size: clamp(2rem, 10vw, 6rem);
}
	
	.content__text {
	padding: 0 1rem;
	line-height: 1.6;
	margin: 0 auto;
	max-width: 140ch;
	will-change: transform;
}
	
	.frame--footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 0vh;
}
	
	.heading > span:first-child {
	font-size: 14vw;
	/*font-size: clamp(2rem, 14vw, 9rem);*/
	font-size: clamp(2rem, 5vw, 6rem);
}
	
	.content .heading > span:first-child {
	font-size: 14vw;
	font-size: clamp(2rem, 5.2vw, 7rem);
}
	
	.link0--helike {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
		padding: 8px 20px;
border: 1px solid #fff;
	text-decoration: none;
	color:#fff;
}

.link0--helike:hover {
  font-family: 'Roboto', sans-serif;
font-weight: normal;
padding: 8px 20px;
border: none;
color: #fff;
}
	
	.liz {
text-align: center;
width: 55px;
height: 2px;
margin-right: auto;
margin-left: auto;
display: block;
background-color: #fff;
margin-bottom: 40px;
}

.liz2 {
text-align: left;
width: 55px;
height: 2px;
display: block;
margin-left:15px;
background-color: #fff;
margin-bottom: 0px;
}
	
	.item {
	margin: 10vh 0 18vh;
}
	
	.frame__title-wrap {
	width: 80%;
	max-width: 600px;
}
	
	.heading > span {
		justify-content: center;
	}
	
	.item__meta {
	margin: 0.85rem 0 2rem;
	line-height: 1.3;
	font-size: 0.67rem;
	text-transform: uppercase;
	font-weight: 500;
	overflow: hidden;
		display: none;
}
	
	.heading > span:nth-child(2) {
	margin-top: 0vw;
	text-transform: lowercase;
	font-size: clamp(1rem, 3vw, 4rem);
	float: none;
}
	
	main {
	padding: 3rem 5rem;
	max-width: 1300px;
/*margin: 0 auto;*/
		/*background: url(../images/background/logowhite.png);
	background-size:50%;
	background-position: bottom right;
	background-repeat: no-repeat;
	background-attachment: fixed;*/
}
	
	.heading {
	font-weight: 300;
	font-size: 6vw;
	line-height: 1.1;
	font-family: 'aqua_grotesqueregular', sans-serif;
	color:#fff;
	text-shadow: 0px 2px 3px #000;
		margin-top: 30px;
}
	h3 {
font-size: 1.5em;
margin: 0;
font-family: 'aqua_grotesqueregular', sans-serif;
color: #fff;
font-weight: normal;
padding: 20px 0px 20px 0px;
	text-align: center;	
	}
	
	h4 {
    font-size: 1.2em;
    margin: 0;
    font-family: 'Play', sans-serif;
    color: #fff;
    font-weight: normal;
    padding: 40px 0px 10px 0px;
    text-align: center;
		letter-spacing: 0.3px;
}
		h5 {
 font-size: 1.2em;
margin: 0;
font-family: 'Play', sans-serif;
color: #fff;
font-weight: normal;
padding: 0px 15px 5px 15px;
text-align: left;
letter-spacing: 0.3px;
}
	
	.txt2 {
font-size: 15px;
font-family: 'Play', sans-serif;
font-weight: normal;
padding: 0px 0px 0px 0px !important;
margin: 10px 0px -10px 20px !important;
	}
	
	.frame__title {
	font-size: 1.2em;
	margin: 0;
	font-family: 'aqua_grotesqueregular', sans-serif;
	color: #fff;
	font-weight: normal;
	padding: 50px 0px 10px 0px;
}

.txt {
	font-family: 'aqua_grotesqueregular', sans-serif;
	font-size:15px;
	color: #fff;
}
	

.frame__tagline {
	margin: 2rem 0 2.5rem;
	line-height: 1.5;
	max-width: 45ch;
	font-family: 'Roboto', sans-serif;
font-size: 15px;
color: #fff;
}
	
	.item__excerpt p {
		margin: 0 0 1.5rem;
		color:#fff;
		text-align: justify;
	}
	
	.content__text p {
	margin: 1.5rem 0;
	color:#fff;
	text-align: justify;
		padding: 0px 15px;
}
	
	.ico2 {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 60px;
    height: auto;
    margin-bottom: 5% !important;
    margin-top: 1%;
	border-radius: none;
}
	
	.ico1 {
    display: none;
}
	
	.content__titlelogo {
	margin: 0vh 0 0 0;
	position: relative;
	width: 75%;
	height: auto;
	text-align: center;
	animation-delay: calc(var(--delay-anim) + var(--time-anim) * 0.2);
}
.content__titlelogo2 {
		display: 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;
}
	
	
}






@media only screen and (max-width: 768px) {
	
	.idnormal {
		display: none;
	}
	
	.close-btn3 {
		display: none;
}
	body {
	margin: 0;
	--color-text: #000;
	--color-bg: #fff;
	--color-link: #fff;
	--color-link-hover: #fff;
	color: var(--color-text);
	background-color: var(--color-bg);
	/*font-family: roc-grotesk, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;*/
	font-family: Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	--cursor-stroke: #fff; 
	--cursor-fill: none;
	animation-delay: calc(var(--delay-anim) + var(--time-anim) * 0.2);
		background-image: none;
	/*background: #fff url(../images/background/fdmobil.jpg);
    background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;*/
/*background: rgb(2,37,104);
background: linear-gradient(135deg, rgba(2,37,104,1) 0%, rgba(3,64,175,1) 100%);*/
	--cursor-stroke-width: 1px; 
	line-height: 1;
	font-weight: 300;
	overflow: hidden;
	overflow-y: scroll;
}
	
		.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;
}
	
nav2 {
    display: none;
}
nav3 {
    display: block;
	margin-top: 30px;
	text-align: center;
}
	
	.close-btn {
    background: url(../images/icon/close2.png);
        background-size: auto;
    z-index: 1000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 2.3%;
    top: 20px;
    /*background-size: cover;*/
}
	

	
	.item__excerpt {
	line-height: 1.42;
	will-change: transform;
}
	
	.whitespace {
	margin-left: 10px;
}
	
	.content .heading {
	margin-bottom: 3rem;
	font-size: 10vw;
    font-size: clamp(2rem, 10vw, 6rem);
}
	
	.content__text {
	padding: 0;
	line-height: 1.42;
	margin: 0 auto;
	max-width: 140ch;
	will-change: transform;
}
	
	.titreblanc {
		color:#fff !important;
		text-shadow: none;
	}
	
	.imgfond {
		background: url(../images/background/fdmobil2.jpg);
    background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
		width:100%;
		height: auto;
		padding: 4vh 0vh;
	}
	
	.frame--footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: -10vh;
		padding: 3rem 2.5rem;
}
	
	.heading > span:first-child {
	font-size: 14vw;
	/*font-size: clamp(2rem, 14vw, 9rem);*/
	font-size: clamp(2.6rem, 6vw, 7rem);
}
	
	.content .heading > span:first-child {
	font-size: 14vw;
	font-size: clamp(2.25rem, 6.2vw, 7rem);
}
	
		.heading > span:nth-child(2) {
	margin-top: 0vw;
	text-transform: lowercase;
	font-size: clamp(1.4rem, 3vw, 4rem);
	float: none;
}
	
	.liz {
text-align: center;
width: 55px;
height: 2px;
margin-right: auto;
margin-left: auto;
display: block;
background-color: #022567;
margin-bottom: 40px;
}

.liz2 {
text-align: left;
width: 55px;
height: 2px;
display: block;
margin-left:1.3rem;
background-color: #022567;
margin-bottom: 0px;
}
	
	.link0--helike {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
		padding: 8px 20px;
border: 1px solid #022568;
	text-decoration: none;
	color:#022568;
}

.link0--helike:hover {
  font-family: 'Roboto', sans-serif;
font-weight: normal;
padding: 8px 20px;
border: none;
color: #022568;
}
	
	.item {
	margin: 15vh 2.5em 15vh;
}
	
	.frame__title-wrap {
	width: 100%;
		max-width: 100%;
}
	
	/*section {
		padding: 3rem 2.5rem;
	}*/
	
	main {
	padding:0px;
	max-width: 1600px;
	background: url(../images/background/fdmobil3.png);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
/*margin: 0 auto;*/
}
	
		h3 {
font-size: 1.2em;
margin: 0;
font-family: 'aqua_grotesqueregular', sans-serif;
color: #fff;
font-weight: normal;
padding: 20px 0px 10px 0px;
text-align: center;
	}
	
		h4 {
    font-size: 1.2em;
    margin: 0;
    font-family: 'Play', sans-serif;
    color: #022567;
    font-weight: normal;
    padding: 40px 0px 10px 0px;
    text-align: center;
			letter-spacing: 0.3px;
}
	
	h5 {
   font-size: 1.2em;
    margin: 0;
    font-family: 'Play', sans-serif;
    color: #022567;
    font-weight: normal;
    padding: 0px 0px 8px 1.3rem;
    text-align: left;
    letter-spacing: 0.3px;
}
	
.txt2 {
font-size: 15px;
font-family: 'Play', sans-serif;
font-weight: normal;
	 color: #022567;
padding: 0px 0px 0px 0px !important;
margin: 10px 0px -10px 10px !important;
	}
	
	.frame__title {
	font-size: 1.3em;
	margin: 0;
	font-family: 'aqua_grotesqueregular', sans-serif;
	color: #022567;
	font-weight: normal;
	padding: 40px 0px 10px 0px;
		text-align: center;
}

.txt {
	font-family: 'aqua_grotesqueregular', sans-serif;
	font-size:15px;
	color: #022567;
}

.frame__tagline {
	margin: 2rem 0 2.5rem;
	line-height: 1.5;
	max-width: 90%;
	font-family: 'Roboto', sans-serif;
font-size: 15px;
color: #022567;
	text-align: center;
    margin-right: auto;
    margin-left: auto;
}
	
	.heading {
    font-weight: 300;
    font-size: 6vw;
    line-height: 1.1;
    font-family: 'aqua_grotesqueregular', sans-serif;
    color: #02276f;
    text-shadow: none;
    margin-top: 20px;
		letter-spacing: -1.4px;
}
	
	
	.item__excerpt p {
		margin: 0 0 1.5rem;
		color:#343333;
		text-align: justify;
	}
	
	.content__text p {
	margin: 1.5rem 0;
	color:#343333;
	text-align: justify;
		padding: 0px 1.3rem;
}
	
		.ico2 {
     display: block;
    margin-right: auto;
    margin-left: auto;
    width: 12%;
    height: auto;
    margin-bottom: 1% !important;
    margin-top: 1%;
	border-radius: none;
}
	
/*	.ico1 {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 60px;
    height: auto;
    margin-bottom: 5% !important;
    margin-top: 1%;
	border-radius: none;
}*/
	
.content__titlelogo2 {
	margin: -30px 0 0 0;
	position: relative;
	display: block;
	padding:0px !important;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	height:auto;
	text-align: center;
}
	
	.content__titlelogo {
		display: none;
}
	
	
	
}

@media only screen and (max-width: 767px) { 
	.idnormal {
		display: none;
	}
	
.close-btn3 {
    background: url(../images/icon/close2.png);
        background-size: auto;
    z-index: 1000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 40px;
    top: 30px;
}

@media only screen and (max-width: 540px) { 
		.md-device-wrapper {
    position: relative;
    text-align: center;
    width: 600px;
    margin: 0 auto;
}
	
}





@-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;
  }
}

