html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	color: #000429;
	font-style: sans-serif;
	/* background: url('../images/background.png') no-repeat; */
	background-position: top center;
	background-size: contain;
	letter-spacing: 1.5px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}







/* 

KitSans ExtraLight
font-family: "kit-sans", sans-serif;
font-weight: 200;
font-style: normal;
KitSans ExtraLight Italic
font-family: "kit-sans", sans-serif;
font-weight: 200;
font-style: italic;
KitSans Light
font-family: "kit-sans", sans-serif;
font-weight: 300;
font-style: normal;
KitSans Light Italic
font-family: "kit-sans", sans-serif;
font-weight: 300;
font-style: italic;
KitSans Regular
font-family: "kit-sans", sans-serif;
font-weight: 400;
font-style: normal;
KitSans Italic
font-family: "kit-sans", sans-serif;
font-weight: 400;
font-style: italic;
KitSans Medium
font-family: "kit-sans", sans-serif;
font-weight: 500;
font-style: normal;
KitSans Medium Italic
font-family: "kit-sans", sans-serif;
font-weight: 500;
font-style: italic;
KitSans SemiBold
font-family: "kit-sans", sans-serif;
font-weight: 600;
font-style: normal;
KitSans SemiBold Italic
font-family: "kit-sans", sans-serif;
font-weight: 600;
font-style: italic;
KitSans Bold
font-family: "kit-sans", sans-serif;
font-weight: 700;
font-style: normal;
KitSans Bold Italic
font-family: "kit-sans", sans-serif;
font-weight: 700;
font-style: italic;
KitSans ExtraBold
font-family: "kit-sans", sans-serif;
font-weight: 800;
font-style: normal;
KitSans ExtraBold Italic
font-family: "kit-sans", sans-serif;
font-weight: 800;
font-style: italic;
KitSans Black
font-family: "kit-sans", sans-serif;
font-weight: 900;
font-style: normal;
KitSans Black Italic
font-family: "kit-sans", sans-serif;
font-weight: 900;
font-style: italic;

 */

header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 10;
	width: 100%;
	/* background: white; */
	padding: 15px 30px 40px 30px;
}

header .logo {
	width: 150px;
}

header .logo img {
	width: 100%;
	fill: #fff !important;
}

.animation_intro {
	position: absolute;
	top: 0;
	left: 0;
	width: 100dvw;
	height: 100dvh;
	z-index: 1100;
	display: flex;
	justify-content: center;
	align-items: center;
}

.animation_intro .logo_animation svg {
	width: 30%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 1%;
}

.st0 {
	opacity: 0;
	animation: fadeInUp 0.1s ease forwards;
}
.st0:nth-child(1) { animation-delay: 500ms; }
.st0:nth-child(2) { animation-delay: 700ms; }
.st0:nth-child(3) { animation-delay: 900ms; }

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* .logo_animation {
	width: 100%;
	animation: Slide 0.4s ease-in-out forwards;
}

.logo_animation { animation-delay: 1700ms; }

@keyframes Slide {
	to {
		width: 650px;
		top: 75px;
		left: 330px;
	}
}
*/

/* .logo_animation {
	width: 100%;
	animation: Slide 0.1s ease-in-out forwards;
}

.logo_animation { animation-delay: 2700ms; }

@keyframes Slide {
	to {
		z-index: 50;
	}
} */



.blue_panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100dvw;
	height: 100dvh;
	background: #123061;
	z-index: 1000;
	animation: fadeInOut 0.5s ease-in-out forwards;
}

.blue_panel { animation-delay: 2200ms; }

@keyframes fadeInOut {
	to {
		top: -100dvh;
	}
} 




.video_panel {
	position: fixed;
	z-index: 1;
	width: 100dvw;
	height: 100dvh;
	background: url('../images/video_reduce.mp4') no-repeat;
	background-position: center center;
	background-size: cover;
	top: 0;
	left: 0;
}

.for_screen_scrollable {
	scroll-snap-type: y mandatory;
  width:100%;
  height:100vh;
  overflow:scroll;
  position: relative;
  z-index: 999;
}

.screen_1,
.screen_2 {
	scroll-snap-align: start;
	height:100%;
	width:100%;
	position: relative;
	z-index: 999;
	padding: 60px;


}

.screen_1 {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
}

.screen_1 ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 22px;
	font-family: "gravesend-sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #dbe0e8;
}

.screen_1 ul li:first-child {
	margin: 0 360px 0 0;
}

.screen_1 ul li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.screen_1 ul li .barre_design {
	background: #dbe0e8;
	margin: 0 5px;
	transform: scale(1) rotateY(-30deg) rotateX(45deg);
	transform-style: preserve-3d;
	width: 5px;
	height: 25px;
}

.screen_2 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}


.content_screen_2 {
	text-align: left;
	margin: 0 0 0 40px;
}

.content_screen_2 h1 {
	font-size: 54px;
	line-height: 60px;
	font-family: "kit-sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #fff;
}

.content_screen_2 p {
	font-size: 30px;
	font-family: "kit-sans", sans-serif;
	font-weight: 300;
	font-style: normal;
	color: #fff;
	margin: 40px 0 0 0;
}

.content_screen_2 hr {
	margin: 25px 0 0 10px;
	width: 30px;
	height: 4px;
	border: none;
	background: #fff;
	color: #fff;
	text-align: left;
}


.screen_2 ul {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 22px;
	font-family: "gravesend-sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #dbe0e8;
}

.screen_2 ul li:first-child {
	margin: 0 80px 0 0;
}

.screen_2 ul li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.screen_2 ul li a {
	font-size: 22px;
	font-family: "gravesend-sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #dbe0e8;
	text-decoration: none;
}


@media screen and (max-width: 1000px) {

	.screen_1, .screen_2 {
		scroll-snap-align: start;
		height: 100%;
		width: 100%;
		position: relative;
		z-index: 999;
		padding: 30px;
	}

	.screen_1 ul {
		font-size: 16px;
		font-family: "gravesend-sans", sans-serif;
		font-weight: 700;
		font-style: normal;
		color: #dbe0e8;
	}

	.screen_1 ul li:first-child {
		margin: 0 80px 0 0;
	}

	.screen_1 ul li {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.screen_1 ul li .barre_design {
		background: #dbe0e8;
		margin: 0 5px;
		transform: scale(1) rotateY(-30deg) rotateX(45deg);
		transform-style: preserve-3d;
		width: 3px;
		height: 14px;
	}


	.content_screen_2 {
		text-align: left;
		margin: 0 0 0 10px;
	}


	.content_screen_2 h1 {
		font-size: 6.5vw;
		line-height: 8.5vw;
		font-family: "kit-sans", sans-serif;
		font-weight: 700;
		font-style: normal;
	}

	.content_screen_2 p {
		font-size: 3vw;
		font-family: "kit-sans", sans-serif;
		font-weight: 300;
		font-style: normal;
		margin: 20px 0 0 0;
	}



	.screen_2 ul {
		width: 100%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		font-size: 16px;
		font-family: "gravesend-sans", sans-serif;
		font-weight: 700;
		font-style: normal;
		color: #dbe0e8;
	}

	.screen_2 ul li:first-child {
		margin: 0 20px 0 0;
	}

	.screen_2 ul li {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.screen_2 ul li a {
		font-size: 16px;
		font-family: "gravesend-sans", sans-serif;
		font-weight: 700;
		font-style: normal;
		color: #dbe0e8;
		text-decoration: none;
	}

	.content_screen_2 hr {
		margin: 10px 0 0 5px;
		width: 30px;
		height: 4px;
		border: none;
		background: #fff;
		color: #fff;
		text-align: left;
	}


}