@font-face
{
	font-family: "Aharonibd";
	src: url("fonts/aharoni/ahronbd.ttf");
}

@font-face
{
	font-family: "Avenir";
	src: url("fonts/avenir/Avenir-Light.ttf");
}

:root
{
	--wave-navy: #032960;
	--wave-navy-darker: #032453;
	--wave-blue: #1d74cb;
	--wave-cyan: #26caef;
	--wave-white-blue: #caf0ff;
	--linkedin-blue: #007fb2;
	--animation-delay: 0.4s;
	background-color: white;
	font-family: "Avenir";
	color: var(--wave-navy);
}

body
{
	margin: 0px;
}

/*--------------------------------------------------------*/
/*							HEADER                        */
/*--------------------------------------------------------*/

header
{
	width: 100%;
	height: 80px;
	position: fixed;
	margin-top: 0px;
	background-color: var(--wave-navy-darker);
	font-size: 1.1em;
	z-index: 10;
}

header .nav-toggle
{
	display: none;
}

header .chgt_langue
{
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0px, -50%);
	box-shadow: 5 5 red;
	overflow: visible;
}

header .chgt_langue img:hover
{
	transition: var(--animation-delay);
	transform: scale(1.1);
}

header nav ul
{
	list-style: none;
	padding: 0px;
	margin: 0px;
}

header nav ul li a
{
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
}

/*------------------------COMPUTER------------------------*/
@media screen and (min-width: 1080px)
{
	header
	{
		top: 10px;
		border-radius: 5px;
		margin-left: 5%;
		width: 90%;
	}

	header nav
	{
		width: 70%;
		margin-top: 0px;
		top: 0px;
		height: 100%;
		margin-left: 8%;
	}

	header nav ul
	{
		margin-top: 0px;
		top: 0px;
		height: 100%;
		display: flex;
		justify-content: space-between;
	}

	header nav ul li
	{
		display: flex;
		justify-content: space-between;
		text-align: center;
		font-size: 1.2em;
		font-family: "Avenir";
	}

	header nav ul li a:hover
	{
		color: var(--wave-blue);
		transition: var(--animation-delay);
	}

	header .logo img
	{
		width: 70px;
		height: 70px;
		top: 5px;
		transition: 0.6s;
	}

	header .logo img:hover
	{
		transform: rotate(360deg) scale(1.28);
	}

	header .logo p
	{
		display: none;
	}
}

/*-------------------------PHONE--------------------------*/
@media screen and (max-width: 1080px)
{
	header 
	{
		top: 0px;
	}

	header nav
	{
		transform: scale(1, 0);
		transition: transform 400ms ease-in-out;
		transform-origin: top;
		position: absolute;
		top: 80px;
		width: 100%;
	}

	header nav a
	{
		background-color: var(--wave-navy-darker);
		transition: opacity 150ms ease-in-out;
		padding: 5px;
		height: 28px;
	}

	header nav ul li a:hover
{
	background-color: var(--wave-navy);
	transition: var(--animation-delay);
}


	header nav .logo img
	{
		display: none;
	}

	.nav-toggle:checked ~ nav
	{
		transform: scale(1, 1);
	}

	.nav-toggle:checked ~ nav a
	{
		opacity: 1;
		transition: opacity 250ms ease-in-out 250ms;
	}

	header .nav-toggle-label
	{
		position: absolute;
		top: 0;
		left: 0;
		margin-left: 1em;
		height: 100%;
		display: flex;
		align-items: center;
	}

	header .nav-toggle-label span,
	header .nav-toggle-label span::before,
	header .nav-toggle-label span::after
	{
		display: block;
		background: #ffffff;
		height: 3px;
		width: 2em;
		position: relative;
	}

	header .nav-toggle-label span::before,
	header .nav-toggle-label span::after
	{
		content: '';
		position: absolute;
	}

	header .nav-toggle-label span::before
	{
		bottom: 9px;
	}
	
	header .nav-toggle-label span::after
	{
		top: 9px;
	}

	header logo 
	{
		position: absolute;
		right: 15px;
	}
}

/*--------------------------------------------------------*/
/*							SECTION                       */
/*--------------------------------------------------------*/
section
{
	margin: 0px;
	padding: 0px;
	width: 100%;
}

.top-space
{
	margin-top: 150px;
}

.dark-background
{
	background-color: var(--wave-navy);
}

section .title-img
{
	width: 120%;
	transform: 	translate(-10%, 0);
}

section .texte-fort
{
	font-size: 2.3em;
	margin-top: 50px;
	margin-bottom: 50px;
	color: var(--wave-blue);
}

section .texte-fort .left-aligned
{
	text-align: left;
}

section .texte-fort .right-aligned
{
	text-align: right;
}

section article
{
	margin: 0px;
	padding: 0px;
	width: 100%;
}

section article .background-img
{
	z-index: 0;
	object-fit: contain;
	width: 100%;
	display: block;
}

section article .centered
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

section article .huge-title
{
	font-size: 8vw;
	color: var(--wave-white-blue);
	text-shadow: 3px 3px black;
	margin-bottom: 15px;
	text-transform: uppercase;
}

section article .title
{
	font-size: 3em;
	margin-bottom: 25px;
	margin-top: 40px;
	color: var(--wave-navy);
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	font-family: "Aharonibd";
}

section article .title-white
{
	font-size: 3em;
	margin-bottom: 25px;
	margin-top: 40px;
	color: white;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	font-family: "Aharonibd";
}

section article .subtitle
{
	font-size: 2em;
	color: white;
	font-family: "Avenir";
}

section article .subtitle-proportion
{
	font-size: 2vw;
	color: white;
	font-family: "Avenir";
}


section article .subsubtitle
{
	font-size: 1.3em;
	font-family: "Avenir";
}

section p
{
	margin: 0px;
	text-align: center;
}

section article
{
	padding-top: 5px;
	width: 100%;
}

section article em
{
	font-weight: bolder;
	font-size: 2.4em;
	font-style: unset;
}

section article .flex-blocks
{
	display: flex;
	margin-top: 50px;
	width: 100;
	flex-wrap: wrap;
	justify-content: space-around;
}

section article .flex-blocks .flex-block
{
	width: 10%;
	min-width: 120px;
	text-align: center;
	padding-bottom: 20px;
	padding-top: 20px;
	margin-left: 14px;
	margin-right: 14px;
}

section article .flex-blocks .flex-block .block-name
{
	padding-top: 5px;
	font-weight: bold;
	font-size: 1.3em;
	color: var(--wave-navy);
}

section article .flex-blocks .flex-block .block-text
{
	margin-top: 10px;
}

section article .flex-blocks .flex-card
{
	width: 20%;
	min-width: 200px;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 25px;
	padding-bottom: 5px;
	margin-bottom: 40px;
	margin-left: 10px;
	margin-right: 10px;
	color: white;
	background-color: var(--wave-navy);
	border-radius: 25px;
}

section article .flex-blocks .flex-card .card-name
{
	font-size: 2.5em;
	font-weight: bold;
	margin-bottom: 15px;
}

section article .flex-blocks .flex-card .card-text
{
	text-align: left;
}

section article .flex-blocks .flex-card ul
{
	text-align: left;
}

section .carousel
{
	margin-top: 25px;
	height: 80px;
	display: flex;
	justify-content: space-around;
	overflow-x: scroll;
	overflow-y: hidden;
	margin-bottom: 10px;
}

section .carousel::-webkit-scrollbar
{
	height: 10px;
}

section .carousel::-webkit-scrollbar-track
{
	background: white;
}

section .carousel::-webkit-scrollbar-thumb
{
	background-color: #E5E9EF;
	border-radius: 10px;
}

section .carousel .carousel-content
{
	display: block;
	margin-left: 18px;
	margin-right: 18px;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 60px;
}

section .carousel .carousel-content img
{
	height: 60px;
	width: auto;
}


section .topper-image
{
	display: block;
	margin: 0px;
	width: 100%;
	height: auto;
	transform: translate(0, 5px);
}

section .splitter-image
{
	display: block;
	margin: 0px;
	width: 100%;
	height: auto;
}

section .botter-image
{
	display: block;
	margin: 0px;
	width: 100%;
	height: auto;
	transform: translate(0, -5px);
}

section article .skip-line
{
	margin-bottom: 1.1em;
}

section article .justify
{
	text-align: justify;
}

section #accueil_1
{
	position: relative;
	text-align: center;
}

section #accueil_2
{
	position: relative;
	text-align: center;
	padding-bottom: 5px;
	padding-top: 5px;
	color: white;
	font-size: 1.5vw;
	background-color: var(--wave-navy);
	font-family: "Avenir";
}

section #chiffres
{
	padding-top: 20px;
}


section #prestations
{
	display: block;
	justify-content:space-around;
	text-align: center;
}

section #prestations .flex-block .figure
{
	width: 25px;
	height: 25px;
	background-color: var(--wave-white-blue);
	color: var(--wave-navy);
	margin: auto;
	border-radius: 4px;
	font-size: 1.2em;
	box-shadow: 1px 1px var(--wave-navy);
}

section #before_market
{
	margin-top: -2%;
}

section #marches
{
	background-color: var(--wave-navy);
	display: block;
	justify-content: space-around;
	text-align: center;
	color: white;
}

section #marches .flex-blocks .flex-block .block-name
{
	color: white;
}

section #implantation
{
	background-color: var(--wave-navy);
	padding-top: 25px;
	display: block;
	justify-content: space-around;
	text-align: center;
}

section #implantation #implantation_map
{
	display: block;
	margin: auto;
	width: 60%;
	height: auto;
}

section #engagements
{
	display: block;
	justify-content: space-around;
	text-align: center;
}

section #clients
{
	display: block;
	justify-content: space-around;
	text-align: center;
}

section #partenaires
{
	display: block;
	justify-content: space-around;
	text-align: center;
	margin-top: 30px;
}

section #actualites1
{
	margin-top: -35%;
}

section #presentation
{
	padding-top: 15px;
	display: block;
	background-color: var(--wave-navy);
	color: white;	
	padding-bottom: 15px;
	font-size: 1.1em;
}

section #assistance-technique1
{
	margin-top: -35%;
}

section #mentions_legales h1
{
	font-family: "Aharonibd";
	font-size: 2em;
	margin-bottom: 0px;
	color: var(--wave-navy);
}


section #mentions_legales p
{
	font-family: "Avenir";
	text-align: left;
}

section #mentions_legales em
{
	font-size: 1.2em;
	color: var(--wave-navy);
	font-weight: bold;
}

/*------------------------COMPUTER------------------------*/
@media screen and (min-width: 1080px)
{
	section .topmargin
	{
		margin-top: 160px;
	}

	section .limited-size
	{
		width: 70%;
		padding-left: 15%;
		padding-right: 15%;
	}
}

/*-------------------------PHONE--------------------------*/
@media screen and (max-width: 1080px)
{

section .limited-size
{
	width: 92%;
	padding-left: 4%;
	padding-right: 4%;
}

}

/*--------------------------------------------------------*/
/*							FOOTER                        */
/*--------------------------------------------------------*/

footer
{
	width: 100%;
	background-color: var(--wave-navy);
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap-reverse;
	padding-top: 10px;
	padding-bottom: 10px;
}

footer .footer-big-logo
{
	height: 100%;
	width: auto;
	display: flex;
	justify-content: left;

}

footer .footer-big-logo	.title-img
{
	max-height: 100px;
}

footer .footer-logo
{
	display: block;
	height: 100%;
	width: auto;
	max-width: 100px;
	max-height: 100px;
}

footer .footer-title
{
	max-height: 100%;
}

footer .footer-title p
{
	padding: 0px;
	margin: 0px;
}

footer .footer-links
{
	width: 270px;
	padding: 0px;
	display: inline-grid;
	grid-template-columns: 110px 110px;
	grid-row-gap: 10px;
	grid-column-gap: 50px;
}

footer .footer-links .footer-link
{
	text-align: center;
	margin-top: auto;
	height: 40px;
	display: flex;
	justify-content: center;
}

footer .footer-links .footer-link a
{
	text-decoration: none;
	color: white;
	margin-top: auto;
	margin-bottom: auto;
}

footer .footer-links #linkedin
{
	background-color: var(--wave-white-blue);
	border-radius: 10px;
	border-color: black;
}

footer .footer-links #linkedin a
{
	font-weight: bold;
	color: var(--wave-navy);
}

