@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/*FLEX BOX*/
/* FLIP */
/* FONT */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

	audio:not([controls]) {
		display: none;
		height: 0;
	}

[hidden], template {
	display: none;
}

html {
	background: #fff;
	color: #000;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
	font-family: sans-serif;
}

body {
	margin: 0;
}

a {
	background: transparent;
}

	a:focus {
		outline: thin dotted;
	}

	a:hover, a:active {
		outline: 0;
	}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

h2 {
	font-size: 1.5em;
	margin: 0.83em 0;
}

h3 {
	font-size: 1.17em;
	margin: 1em 0;
}

h4 {
	font-size: 1em;
	margin: 1.33em 0;
}

h5 {
	font-size: 0.83em;
	margin: 1.67em 0;
}

h6 {
	font-size: 0.75em;
	margin: 2.33em 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #000;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 1em;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

q {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

	q:before,
	q:after {
		content: '';
		content: none;
	}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
	vertical-align: baseline;
}

button,
input {
	line-height: normal;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

	button[disabled],
	input[disabled] {
		cursor: default;
	}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

	input[type="search"]::-webkit-search-cancel-button,
	input[type="search"]::-webkit-search-decoration {
		-webkit-appearance: none;
	}

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*@font-face {
  font-family: 'Avenir';
  src: url("../../fonts/home/AvenirNextLTW01-Regular.woff2") format("woff2"), url("../../fonts/home/AvenirNextLTW01-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'AvenirDemi';
  src: url("../../fonts/home/AvenirNextLTW01-Demi.woff2") format("woff2"), url("../../fonts/home/AvenirNextLTW01-Demi.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'AvenirBold';
  src: url("../../fonts/home/AvenirNextLTW01BoldRegular.woff2") format("woff2"), url("../../fonts/home/AvenirNextLTW01BoldRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }*/

@font-face {
	font-family: 'Product Sans';
	font-style: normal;
	font-weight: normal; 
	src: local('Product Sans'), url('../../fonts/home/productsans-regular-webfont.woff') format('woff');
}

@font-face {
	font-family: 'Font Awesome 5 Pro';
	font-style: normal;
	font-weight: 300;
	font-display: auto;
	src: url("../../fonts/home/fa-light-300.eot");
	src: url("../../fonts/home/fa-light-300.eot?#iefix") format("embedded-opentype"), url("../../fonts/home/fa-light-300.woff2") format("woff2"), url("../../fonts/home/fa-light-300.woff") format("woff"), url("../../fonts/home/fa-light-300.ttf") format("truetype"), url("../../fonts/home/fa-light-300.svg#fontawesome") format("svg");
}

@font-face {
	font-family: 'Font Awesome 5 Pro';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url("../../fonts/home/fa-regular-400.eot");
	src: url("../../fonts/home/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../../fonts/home/fa-regular-400.woff2") format("woff2"), url("../../fonts/home/fa-regular-400.woff") format("woff"), url("../../fonts/home/fa-regular-400.ttf") format("truetype"), url("../../fonts/home/fa-regular-400.svg#fontawesome") format("svg");
}

@font-face {
	font-family: 'Font Awesome 5 Pro';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url("../../fonts/home/fa-solid-900.eot");
	src: url("../../fonts/home/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../../fonts/home/fa-solid-900.woff2") format("woff2"), url("../../fonts/home/fa-solid-900.woff") format("woff"), url("../../fonts/home/fa-solid-900.ttf") format("truetype"), url("../../fonts/home/fa-solid-900.svg#fontawesome") format("svg");
}

@font-face {
	font-family: 'Font Awesome 5 Brands';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url("../../fonts/home/fa-brands-400.eot");
	src: url("../../fonts/home/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../../fonts/home/fa-brands-400.woff2") format("woff2"), url("../../fonts/home/fa-brands-400.woff") format("woff"), url("../../fonts/home/fa-brands-400.ttf") format("truetype"), url("../../fonts/home/fa-brands-400.svg#fontawesome") format("svg");
}

/* Standard */
html {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
	height: 100%;
	width: 100%;
	font-family: "Product Sans", Arial, Helvetica, serif;
	color: #000;
	font-size: 18px;
	min-width: 320px;
}

body {
	height: 100%;
	width: 100%;
	position: relative;
	overflow-x: hidden;
}

*:focus {
	outline: 0;
}

.form {
	width: 100%;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-content: flex-start;
	-webkit-align-content: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

::-moz-selection {
	background: #502a7d;
	color: #fff;
	text-shadow: none;
}

::selection {
	background: #502a7d;
	color: #fff;
	text-shadow: none;
}

textarea {
	resize: vertical;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

/* Transition pour les submits ici */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

::-webkit-input-placeholder {
	color: #999;
}

::-moz-placeholder {
	color: #999;
}

:-ms-input-placeholder {
	color: #999;
}

:-moz-placeholder {
	color: #999;
}

a {
	text-decoration: underline;
}

	a:hover, a:active, a:focus {
		text-decoration: none;
		outline: 0;
	}

strong {
	font-family: "Product Sans", Arial, sans-serif;
	font-weight: 700;
}

h1 {
	font-family: "Product Sans", Arial, sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 2.94444rem 0;
	line-height: 1;
}

	h1 strong {
		position:relative;
		z-index:1;
	}

	h1 strong:before {
		content: "";
    position: absolute;
    background: #ea5c60;
    z-index: -1;
    top: 2px;
    border-radius: 6px;
    bottom: -30px;
    left: -9px;
    width: calc(100% + 0.3em);
    height: 95%;
    transform: skewY(-2deg);
    opacity: .55;
    border-radius: 6px;
	}

h2 {
	font-size: 2.5rem;
	font-family: "Product Sans", Arial, sans-serif;
	font-weight: 700;
	color: #502a7d;
	line-height: 1;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 1.16667rem;
	font-family: "Product Sans", Arial, sans-serif;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 0.3rem;
}

	h3 + h2 {
		margin-top: 0;
	}

h4 {
	font-size: 1.11111rem;
	font-family: "Product Sans", Arial, sans-serif;
	color: #000;
	font-weight: 700;
	line-height: 1;
}

p,
ul,
ol {
	margin: 1rem 0;
}

img {
	vertical-align: middle;
	max-width: 100%;
	/* Remettre actif pour rendre plus vos transition sur image, mis en commentaire pour permettre le border-radius sur les parent d'image 
  -webkit-backface-visibility: hidden; 
  -ms-interpolation-mode: bicubic;*/
}

.clear {
	clear: both;
}

.clearfix {
	zoom: 1;
}

	.clearfix:after {
		content: "";
		display: table;
		clear: both;
	}

.text > :first-child {
	margin-top: 0;
}

.text > :last-child {
	margin-bottom: 0;
}

.text ul {
	padding: 0;
}

	.text ul li {
		margin: 0;
		padding: 0;
		list-style: none;
		list-style-image: none;
		position: relative;
		padding-left: 1rem;
		margin-bottom: 0.1rem;
	}

		.text ul li:before {
			content: "";
			font-family: "Font Awesome 5 Pro";
			display: inline-block;
			font-size: 0.4rem;
			font-weight: normal;
			font-weight: 700;
			position: absolute;
			left: 0;
			top: 0.5rem;
			color: #502a7d;
		}

.btnHome {
	text-decoration: none;
	font-size: 1.27778rem;
	color: #0074c8;
	border: 0.16667rem #0074c8 solid;
	border-radius: 2.77778rem;
	transition: 0.25s;
	padding: 0.55556rem 1.66667rem;
	box-sizing: border-box;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	/* Bouton secondaire */
}

	.btnHome:hover {
		background: #0074c8;
		color: #fff;
	}

	.btnHome.alt {
		font-family: "Product Sans", Arial, sans-serif;
		font-weight: 600;
		padding: 0.55556rem 1.11111rem;
		background: none;
		font-size: 0.83333rem;
		text-decoration: none;
		position: relative;
		transition: 0.25s;
		border: 0.16667rem #fff solid;
		background: white;
		text-transform: uppercase;
	}

		.btnHome.alt:hover {
			color: #0074c8;
			background: rgba(255, 255, 255, 0.7);
		}

.gauche {
	float: left;
	margin-right: 1rem;
	margin-bottom: 1rem;
}

.droite {
	float: left;
	margin-left: 1rem;
	margin-bottom: 1rem;
}

.width100 {
	width: 100%;
}

.height100 {
	height: 100%;
}

.wrapAll {
	flex: 1 0 auto;
	width: 100%;
}

.wrapper {
	max-width: 1200px;
	padding: 0 0.55556rem;
	margin: 0 auto;
}

div[itemtype*="NmsPageContentHolder"]:empty,
div[itemtype*="NmsContentTemplateControlHolder"]:empty {
	background: lime;
}

div[itemtype*="NmsLiteral"] {
	color: #fff;
}

div[id*="LibraryText"],
div[id*="LibraryItem"],
nmslibrarytext {
	display: inline !important;
}

li[class*="cultureItemLiSelected"] {
	display: none !important;
}

.CaptchaRow {
	padding: 1rem 0;
}

#secureFrame {
	width: 100%;
}

.video {
	position: relative;
	height: 0;
	overflow: hidden;
}

/* 16x9 Aspect Ratio */
.video-16x9 {
	padding-bottom: 56.25%;
}

/* 4x3 Aspect Ratio */
.video-4x3 {
	padding-bottom: 75%;
}

.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.padY {
	padding-top: 3.88889rem;
	padding-bottom: 3.88889rem;
}

/* Entête */
.header {
	position: relative;
	background: url(../../images/home/fr/banner.jpg) center top no-repeat;
	background-size: cover;
}
html[lang=fr] .header.bannerBook {
	position: relative;
	background: url(../../images/home/fr/page-carriere-background-desktop.png) center top no-repeat;
	background-size: cover;
}
html .header.bannerBook {
	position: relative;
	background: url(../../images/home/en/career-background.png) center top no-repeat;
	background-size: cover;
}
html .header.bannerBook:before{
	display:none!important;
}
html .header.bannerBook .lang ul li a {
	color: #0074c8;
	font-weight: 700;
}
html .header.bannerBook .burger span,
html .header.bannerBook .burger span::before,
html .header.bannerBook .burger span::after {
	background-color: #0074c8;
}
html .header.bannerBook .burger.clicked span {
	background-color: transparent;
}
html .header.bannerBook .btnHome.alt {
	background-color: transparent;
	border-color: #0074c8;
}
html .header.bannerBook .btnHome.alt:hover {
	background-color: #0074c8;
	color:#ffffff;
}
html .header.bannerBook .logo .titleLogo {
	display: none;
}
html .header.bannerBook .banner {
	padding-top: 115px;
	padding-bottom: 115px;
}
html .header.bannerBook .banner .txtContent {
	width: 100%;
	max-width: 500px;
}
html .header.bannerBook .banner .new {
	font-family: "Product Sans", Arial, sans-serif;
	font-size: 1.222rem;
	font-weight: 700;
	color: #000000;
	text-transform: uppercase;
}
html .header.bannerBook .banner h1 {
	font-family: "Product Sans", Arial, sans-serif;
	font-weight: 700;
	color: #502a7d;
	font-size: 3.333rem;
	margin:0;
}
html[lang=fr] .header.bannerBook .banner h1 {
	max-width: 365px;
}
html .header.bannerBook .banner p {
	font-family: "Product Sans", Arial, sans-serif;
	font-size: 1.00rem;
	font-weight: 700;
	color: #000000;
	max-width: 365px;
}
html .header.bannerBook .banner .btnHome {
	background-color: #0074c8;
	color: #ffffff;
	border-color: #0074c8;
	margin-top: 1.389rem;
	display: flex;
	align-items: center;
	white-space: nowrap;
	padding: 0.73rem 1rem;
	text-align: center;
	justify-content: center;
	max-width: 365px;
}
html .header.bannerBook .banner .btnHome .icon {
	display: flex;
	width: 1.111rem;
	height: 1.111rem;
	margin-left: 0.556rem;
}
html .header.bannerBook .banner .btnHome:hover {
	border-color: #00508b;
	background-color: #00508b;
}
html .header.bannerBook .logo .white {
	display: none
}
html .header.bannerBook .logo .purple {
	display: block;
}
html .header.bannerBook .top.scrolled .logo .purple {
	display: none
}
html .header.bannerBook .top.scrolled .logo .white {
	display: block;
}
html .header.bannerBook .top.scrolled .lang ul li a {
	color: #ffffff;
}
html .header.bannerBook .top.scrolled .burger span,
html .header.bannerBook .top.scrolled .burger span::before,
html .header.bannerBook .top.scrolled .burger span::after {
	background-color: #ffffff;
}
html .header.bannerBook .top.scrolled .burger.clicked span {
	background-color: transparent;
}
html .header.bannerBook .top.scrolled .btnHome.alt {
	background-color: #ffffff;
	border-color: #ffffff;
}
html .header.bannerBook .top.scrolled .btnHome.alt:hover {
	color: #0074c8;
	background: rgba(255, 255, 255, 0.7);
}
html .header.bannerBook > .top.scrolled {
	padding-bottom: 1.72222rem
}

.header .logo {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	align-content: center;
	-webkit-align-content: center;
	-webkit-align-items: center;
	align-items: center;
}
	.header .logo .purple{
		display:none;
	}

	.header .logo img {
		width: 12.27778rem;
	}

		.header .logo .titleLogo {
			color: #fff;
			margin-left: 2.11111rem;
			line-height: 1.2;
			font-size: 0.88889rem;
		}

	.header .top {
		top: 0;
		padding-top: 1.72222rem;
		width: 100%;
		z-index: 9999;
		background: rgba(255, 255, 255, 0);
		transition: 0.25s;
	}

		.header .top .wrapper {
			display: -ms-flexbox;
			display: -webkit-flex;
			display: flex;
			-webkit-flex-direction: row;
			-ms-flex-direction: row;
			flex-direction: row;
			-webkit-flex-wrap: nowrap;
			-ms-flex-wrap: nowrap;
			flex-wrap: nowrap;
			justify-content: space-between;
			-webkit-justify-content: space-between;
			align-content: center;
			-webkit-align-content: center;
			-webkit-align-items: flex-start;
			align-items: flex-start;
		}

		.header .top .menuUtil {
			display: -ms-flexbox;
			display: -webkit-flex;
			display: flex;
			-webkit-flex-direction: row;
			-ms-flex-direction: row;
			flex-direction: row;
			-webkit-flex-wrap: nowrap;
			-ms-flex-wrap: nowrap;
			flex-wrap: nowrap;
			justify-content: flex-end;
			-webkit-justify-content: flex-end;
			align-content: center;
			-webkit-align-content: center;
			-webkit-align-items: center;
			align-items: center;
			margin-right: 30px;
		}

			.header .top .menuUtil .btnHome {
				padding-top: 0.33333rem;
				padding-bottom: 0.33333rem;
			}

	.header .banner {
		padding: 7.44444rem 0 7.66667rem 0;
	}

		.header .banner h1 {
			cursor: default;
			text-decoration: none;
		}

		.header .banner .btnHome {
			border-color: #fff;
			color: #fff;
			padding: 0.73rem 1.66667rem;
		}

			.header .banner .btnHome:hover {
				background: #fff;
				color: #0074c8;
			}

.introContent {
	background: url(../../images/home/fr/trio.png) center top no-repeat;
	background-size: cover;
	padding: 3.11111rem 0 3.44444rem 0;
	text-align: right;
}

	.introContent .wrapper {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		justify-content: flex-end;
		-webkit-justify-content: flex-end;
		align-content: center;
		-webkit-align-content: center;
		-webkit-align-items: initial;
		align-items: initial;
	}

	.introContent .right {
		max-width: 600px;
	}

.centerContent {
	text-align: center;
}

	.centerContent .wrapper {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
		align-content: center;
		-webkit-align-content: center;
		-webkit-align-items: center;
		align-items: center;
	}

	.centerContent .text {
		max-width: 800px;
	}

.badges {
	width: 100%;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	align-content: center;
	-webkit-align-content: center;
	-webkit-align-items: center;
	align-items: center;
	margin: 1.94444rem 0 6rem 0;
}

	.badges img {
		max-width: 8.88889rem;
		max-height: 10.55556rem;
		width: 150px;
		max-height: 150px;
	}

.advantages {
	width: 100%;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	align-content: center;
	-webkit-align-content: center;
	-webkit-align-items: stretch;
	align-items: stretch;
	margin-top: 3.05556rem;
}

	.advantages .box {
		width: 31.66667%;
		box-sizing: border-box;
		border: 0.22222rem #d2e6f5 solid;
		border-radius: 1rem;
		padding: 1.77778rem 2.05556rem;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		justify-content: space-between;
		-webkit-justify-content: space-between;
		align-content: center;
		-webkit-align-content: center;
		-webkit-align-items: center;
		align-items: center;
		color: #0075c8;
		font-family: "Product Sans", Arial, sans-serif;
		font-weight: 600;
		text-align: left;
		margin-bottom: 1.11111rem;
		cursor: pointer;
	}

		.advantages .box img {
			max-width: 100px;
			max-height: 100px;
			margin-right: 1.94444rem;
		}

		.advantages .box:hover {
			background: #a1dafd;
			color: #fff;
			transition: opacity 2s linear;
			transition: 0.3s;
		}

.implications {
	margin-top: 2.22222rem;
	margin-bottom: -113px;
}

	.implications .text {
		text-align: center;
	}

	.implications .events {
		width: 22.22222rem;
		margin: 0 auto;
	}

	.implications .rotation {
		display: flex;
	}

		.implications .rotation .slide {
			background: #502a7d;
			margin-right: 2.22222rem;
		}

			.implications .rotation .slide .image img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				pointer-events: none;
			}

			.implications .rotation .slide .desc {
				padding: 1.11111rem 1.66667rem 1.38889rem 1.66667rem;
				text-align: left;
				border-top: 0.83333rem #502a7d solid;
				font-family: "Product Sans", Arial, sans-serif;
				font-weight: 600;
				color: #fff;
			}

				.implications .rotation .slide .desc h4 {
					margin-bottom: 1rem;
				}

				.implications .rotation .slide .desc.orange {
					border-color: #fea30b;
				}

					.implications .rotation .slide .desc.orange h4 {
						color: #fea30b;
					}

				.implications .rotation .slide .desc.red {
					border-color: #ea5c60;
					/* unvisited link */
					/* visited link */
					/* mouse over link */
					/* selected link */
				}

					.implications .rotation .slide .desc.red h4 {
						color: #ea5c60;
					}

					.implications .rotation .slide .desc.red a:link {
						color: #ea5c60;
					}

					.implications .rotation .slide .desc.red a:visited {
						color: #ea5c60;
					}

					.implications .rotation .slide .desc.red a:hover {
						color: #ea5c60;
					}

					.implications .rotation .slide .desc.red a:active {
						color: #ea5c60;
					}

				.implications .rotation .slide .desc.blue {
					border-color: #4dc0e8;
				}

					.implications .rotation .slide .desc.blue h4 {
						color: #4dc0e8;
					}

				.implications .rotation .slide .desc.green {
					border-color: #00c08a;
				}

					.implications .rotation .slide .desc.green h4 {
						color: #00c08a;
					}

				.implications .rotation .slide .desc.yellow {
					border-color: #c2d501;
				}

					.implications .rotation .slide .desc.yellow h4 {
						color: #c2d501;
					}

.bx-wrapper {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
	align-content: center;
	-webkit-align-content: center;
	-webkit-align-items: initial;
	align-items: initial;
}

.bx-viewport {
	overflow: visible !important;
}

.bx-controls {
	text-align: center;
	margin-top: 0.27778rem;
	margin-bottom: 0.55556rem;
}

	.bx-controls a {
		font-size: 0;
	}

		.bx-controls a:before {
			transition: 0.25s;
		}

		.bx-controls a:first-child {
			margin-right: 2.77778rem;
		}

		.bx-controls a.bx-prev:before {
			content: "";
			font-family: "Font Awesome 5 Pro";
			display: inline-block;
			font-size: 2.5rem;
			font-weight: normal;
			color: #c2b5d2;
		}

		.bx-controls a.bx-next:before {
			content: "";
			font-family: "Font Awesome 5 Pro";
			display: inline-block;
			font-size: 2.5rem;
			font-weight: normal;
			color: #c2b5d2;
		}

		.bx-controls a:hover:before {
			color: #502a7d;
		}

.valuesContent {
	background: url(../../images/home/fr/team.jpg) center top no-repeat #e6f1fa;
	padding-top: 20.55556rem;
	padding-bottom: 15rem;
	text-align: center;
}

	.valuesContent .values {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		justify-content: space-between;
		-webkit-justify-content: space-between;
		align-content: center;
		-webkit-align-content: center;
		-webkit-align-items: center;
		align-items: center;
		max-width: 1024px;
		margin: 2.5rem auto 2.5rem auto;
	}

		.valuesContent .values .value h4 {
			font-size: 1.55556rem;
		}

		.valuesContent .values .value img {
			max-width: 6.11111rem;
		}

		.valuesContent .values .value .image-containeur {
			min-height: 130px;
		}

		.valuesContent .values .value.orange h4 {
			color: #fea30b;
		}

		.valuesContent .values .value.red h4 {
			color: #ea5c60;
		}

		.valuesContent .values .value.blue h4 {
			color: #4dc0e8;
		}

		.valuesContent .values .value.green h4 {
			color: #00c08a;
		}

		.valuesContent .values .value.yellow h4 {
			color: #c2d501;
		}

.testimonialsContent {
	position: relative;
	top: -15.27778rem;
	margin-bottom: -15.27778rem;
}

	.testimonialsContent .text {
		text-align: center;
	}

	.testimonialsContent .testimonials {
		width: 31.72222rem;
		margin: 0 auto;
	}

		.testimonialsContent .testimonials .testimonial {
			background: #fff;
			padding: 1.55556rem 2.44444rem 1.55556rem 9.66667rem;
			display: -ms-flexbox;
			display: -webkit-flex;
			display: flex;
			-webkit-flex-direction: row;
			-ms-flex-direction: row;
			flex-direction: row;
			-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			justify-content: space-between;
			-webkit-justify-content: space-between;
			align-content: center;
			-webkit-align-content: center;
			-webkit-align-items: center;
			align-items: center;
			margin-right: 2.22222rem;
			box-shadow: 0 0 2.22222rem 0 #e5f1fa;
			position: relative;
			min-height: 500px;
			max-width: 470px;
		}

			.testimonialsContent .testimonials .testimonial .photo {
				width: 6.66667rem;
				height: 6.66667rem;
				border-radius: 6.66667rem;
				overflow: hidden;
				position: absolute;
				left: 1.77778rem;
				top: 50%;
				transform: translateY(-50%);
			}

				.testimonialsContent .testimonials .testimonial .photo img {
					object-fit: cover;
					width: 100%;
					height: 100%;
					pointer-events: none;
				}

			.testimonialsContent .testimonials .testimonial .testi {
				width: 18.33333rem;
				text-align: left;
				font-size: 0.9em;
			}

			.testimonialsContent .testimonials .testimonial .profile {
				margin-top: 1rem;
			}

				.testimonialsContent .testimonials .testimonial .profile .name {
					font-family: "Product Sans", Arial, sans-serif;
					font-weight: 700;
				}

			.testimonialsContent .testimonials .testimonial.orange .photo {
				background: #fea30b;
			}

			.testimonialsContent .testimonials .testimonial.orange .profile .name {
				color: #fea30b;
			}

			.testimonialsContent .testimonials .testimonial.red .photo {
				background: #ea5c60;
			}

			.testimonialsContent .testimonials .testimonial.red .profile .name {
				color: #ea5c60;
			}

			.testimonialsContent .testimonials .testimonial.blue .photo {
				background: #4dc0e8;
			}

			.testimonialsContent .testimonials .testimonial.blue .profile .name {
				color: #4dc0e8;
			}

			.testimonialsContent .testimonials .testimonial.green .photo {
				background: #00c08a;
			}

			.testimonialsContent .testimonials .testimonial.green .profile .name {
				color: #00c08a;
			}

			.testimonialsContent .testimonials .testimonial.yellow .photo {
				background: #c2d501;
			}

			.testimonialsContent .testimonials .testimonial.yellow .profile .name {
				color: #c2d501;
			}

.submission {
	text-align: center;
	padding: 4.61111rem 0 5rem 0;
}

	.submission h3 {
		margin-bottom: 1.94444rem;
	}

	.submission .btnHome {
		padding: 0.7rem 1.7rem;
	}

.wrapAll.home .header:after {
	height: 8.33333rem;
}

.lang {
	margin-right: 0.88889rem;
}

	.lang ul {
		margin: 0;
		padding: 0;
	}

		.lang ul li {
			margin: 0;
			padding: 0;
			list-style: none;
			list-style-image: none;
		}

			.lang ul li a {
				text-decoration: none;
				font-size: 0.88889rem;
				color: #fff;
				transition: 0.25s;
			}

				.lang ul li a:hover {
					text-decoration: none;
				}

			.lang ul li[class*="cultureItemLiSelected"] {
				display: none;
			}

.bgBlue {
	background: #e6f1fa;
}

/* Pied de page */
.footer {
	z-index: 1;
	position: relative;
	width: 100%;
	padding: 2.94444rem 0;
	box-sizing: border-box;
	background: #000;
	color: #fff;
}

	.footer a {
		color: #b8b8b8;
		text-decoration: none;
		display: inline-block;
		transition: 0.25s;
	}

		.footer a:hover {
			color: #fff;
		}

	.footer .legal {
		margin-top: 20px;
		display: inline-block;
		width: 250px;
		font-size: 0.8em;
		line-height: 1.5;
	}

	.footer .top {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		justify-content: space-between;
		-webkit-justify-content: space-between;
		align-content: center;
		-webkit-align-content: center;
		-webkit-align-items: flex-start;
		align-items: flex-start;
	}

		.footer .top .left {
			width: 13.05556rem;
		}

		.footer .top .right {
			display: -ms-flexbox;
			display: -webkit-flex;
			display: flex;
			-webkit-flex-direction: row;
			-ms-flex-direction: row;
			flex-direction: row;
			-webkit-flex-wrap: nowrap;
			-ms-flex-wrap: nowrap;
			flex-wrap: nowrap;
			justify-content: flex-end;
			-webkit-justify-content: flex-end;
			align-content: center;
			-webkit-align-content: center;
			-webkit-align-items: center;
			align-items: center;
		}

			.footer .top .right a {
				font-family: "Product Sans", Arial, sans-serif;
				font-weight: 600;
				margin-right: 1.55556rem;
			}

				.footer .top .right a.in:before {
					content: "";
					font-family: "Font Awesome 5 Brands";
					display: inline-block;
					font-size: 2rem;
					font-weight: normal;
					color: #fff;
					margin-left: 2.22222rem;
				}

	.footer .bottom {
		padding-top: 1.66667rem;
		font-size: 0.83333rem;
		color: #b8b8b8;
	}

/* Modal valeur */
.tooltip {
	position: relative;
	display: inline-block;
}

	.tooltip .tooltiptext {
		position: absolute;
		visibility: hidden;
		min-height: 175px;
		color: #ffffff;
		text-align: center;
		border-radius: 6px;
		padding: 15px 15px 15px 15px;
		z-index: 1;
		bottom: 50%;
		left: 50%;
		opacity: 0.5;
		transition: opacity 0.5s;
		min-width: 200px;
		margin-bottom: -45px;
		margin-left: -100px;
	}

	.tooltip h3 {
		color: white;
		text-transform: none;
	}

	.tooltip .collaboration {
		background-color: rgba(255, 164, 0, 0.85);
	}

	.tooltip .innovation {
		background-color: rgba(77, 192, 232, 0.85);
	}

	.tooltip .agilite {
		background-color: rgba(194, 213, 1, 0.85);
	}

	.tooltip .empathie {
		background-color: rgba(234, 92, 96, 0.85);
	}

	.tooltip .integrite {
		background-color: rgba(0, 192, 138, 0.85);
	}

	.tooltip .tooltiptext::after {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		margin-left: -5px;
		border-width: 5px;
		border-style: solid;
		border-color: #555 transparent transparent transparent;
	}

	.tooltip:hover .tooltiptext {
		visibility: visible;
		opacity: 1;
	}

#overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 2;
	overflow-y: scroll;
	cursor: pointer;
}

	#overlay .myModal {
		padding: 1.5rem;
		background: #ffffff;
		max-width: 700px;
		min-height: 200px;
		margin: auto;
		font-size: 1em;
		position: relative;
		transition: 0.3s;
		cursor: auto;
		top: 25%;
	}

		#overlay .myModal .dismiss {
			color: #0075C8;
			position: absolute;
			right: 0.5rem;
			top: 0.5rem;
			font-size: 2.1em;
			cursor: pointer;
		}

		#overlay .myModal h1 {
			margin: 0;
			padding: 0;
			color: #512b7d;
			font-size: 22px;
			text-transform: uppercase;
		}

		#overlay .myModal ul {
			list-style: none;
		}

			#overlay .myModal ul li::before {
				content: "\2022";
				color: #512b7d;
				display: inline-block;
				width: 1em;
				margin-left: -3.7em;
				line-height: 1.5em;
				list-style-position: inside;
				padding-left: 3.7em;
				padding-right: 1em;
			}

		#overlay .myModal .icone_popup {
			position: absolute;
			right: 1rem;
			bottom: 1rem;
			opacity: 0.1;
		}

.mobile-menu--open {
	right: 0;
	opacity: 0.9;
}

html,
body {
	position: relative;
	overflow-x: hidden;
}

/* MENU 
========================================== */
/* BURGER
========================================== */
a.button {
	position: relative;
	display: block;
	width: 25px;
	height: 19px;
	padding: 23px 20px;
	margin: 0 auto;
	background-color: #F3F3F3;
	border-radius: 50%;
}

	a.button .burger-icon {
		position: relative;
		margin-top: 8px;
		margin-bottom: 8px;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

		a.button .burger-icon,
		a.button .burger-icon::before,
		a.button .burger-icon::after {
			display: block;
			width: 25px;
			height: 3px;
			background-color: #fffff;
			-webkit-transition-property: background-color, -webkit-transform;
			-moz-transition-property: background-color, -moz-transform;
			-o-transition-property: background-color, -o-transform;
			transition-property: background-color, transform;
			-webkit-transition-duration: 0.3s;
			-moz-transition-duration: 0.3s;
			-o-transition-duration: 0.3s;
			transition-duration: 0.3s;
		}

			a.button .burger-icon::before,
			a.button .burger-icon::after {
				position: absolute;
				content: "";
			}

			a.button .burger-icon::before {
				top: -8px;
			}

			a.button .burger-icon::after {
				top: 8px;
			}

	a.button:hover .burger-icon {
		background-color: transparent;
	}

		a.button:hover .burger-icon::before {
			-webkit-transform: translateY(8px) rotate(45deg);
			-moz-transform: translateY(8px) rotate(45deg);
			-ms-transform: translateY(8px) rotate(45deg);
			-o-transform: translateY(8px) rotate(45deg);
			transform: translateY(8px) rotate(45deg);
		}

		a.button:hover .burger-icon::after {
			-webkit-transform: translateY(-8px) rotate(-45deg);
			-moz-transform: translateY(-8px) rotate(-45deg);
			-ms-transform: translateY(-8px) rotate(-45deg);
			-o-transform: translateY(-8px) rotate(-45deg);
			transform: translateY(-8px) rotate(-45deg);
		}

/* RESET
    ========================================== */
*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	height: 100%;
}

/* BURGER
    ========================================== */
.burger {
	width: 50px;
	height: 39px;
	position: relative;
	border-radius: 4px;
	z-index: 10;
}

	.burger span {
		position: relative;
		margin-top: 9px;
		margin-bottom: 9px;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-left: -15px;
		margin-top: -1.5px;
	}

		.burger span,
		.burger span::before,
		.burger span::after {
			display: block;
			width: 30px;
			height: 2px;
			background-color: #ffffff;
			-webkit-transition-property: background-color, -webkit-transform;
			-moz-transition-property: background-color, -moz-transform;
			-o-transition-property: background-color, -o-transform;
			transition-property: background-color, transform;
			-webkit-transition-duration: 0.3s;
			-moz-transition-duration: 0.3s;
			-o-transition-duration: 0.3s;
			transition-duration: 0.3s;
		}

			.burger span::before,
			.burger span::after {
				position: absolute;
				content: "";
			}

			.burger span::before {
				top: -9px;
			}

			.burger span::after {
				top: 9px;
			}

	.burger.clicked span {
		background-color: transparent;
	}

		.burger.clicked span::before {
			-webkit-transform: translateY(9px) rotate(45deg);
			-moz-transform: translateY(9px) rotate(45deg);
			-ms-transform: translateY(9px) rotate(45deg);
			-o-transform: translateY(9px) rotate(45deg);
			transform: translateY(9px) rotate(45deg);
		}

		.burger.clicked span::after {
			-webkit-transform: translateY(-9px) rotate(-45deg);
			-moz-transform: translateY(-9px) rotate(-45deg);
			-ms-transform: translateY(-9px) rotate(-45deg);
			-o-transform: translateY(-9px) rotate(-45deg);
			transform: translateY(-9px) rotate(-45deg);
		}

		.burger.clicked span:before,
		.burger.clicked span:after {
			background-color: #ffffff;
		}

	.burger:hover {
		cursor: pointer;
	}

/* NAV
    ========================================== */
nav {
	background-color: #502a7d;
	position: fixed;
	z-index: 9;
	top: 0;
	right: 0;
	height: 100%;
	max-width: 440px;
	width: 100%;
	padding: 100px 40px 60px 40px;
	overflow-y: auto;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

	nav.show {
		-webkit-transform: translateX(0px);
		-moz-transform: translateX(0px);
		-ms-transform: translateX(0px);
		-o-transform: translateX(0px);
		transform: translateX(0px);
	}

		nav.show ul.main li {
			-webkit-transform: translateX(0px);
			-moz-transform: translateX(0px);
			-ms-transform: translateX(0px);
			-o-transform: translateX(0px);
			transform: translateX(0px);
			opacity: 1;
		}

			nav.show ul.main li:nth-child(1) {
				transition-delay: 0.15s;
			}

			nav.show ul.main li:nth-child(2) {
				transition-delay: 0.3s;
			}

			nav.show ul.main li:nth-child(3) {
				transition-delay: 0.45s;
			}

			nav.show ul.main li:nth-child(4) {
				transition-delay: 0.6s;
			}

			nav.show ul.main li:nth-child(5) {
				transition-delay: 0.75s;
			}

			nav.show ul.main li:nth-child(6) {
				transition-delay: 0.9s;
			}

			nav.show ul.main li:nth-child(7) {
				transition-delay: 1.05s;
			}

			nav.show ul.main li:nth-child(8) {
				transition-delay: 1.2s;
			}

			nav.show ul.main li:nth-child(9) {
				transition-delay: 1.35s;
			}

		nav.show .about,
		nav.show .social,
		nav.show ul.sub {
			-webkit-transform: translateY(0px);
			-moz-transform: translateY(0px);
			-ms-transform: translateY(0px);
			-o-transform: translateY(0px);
			transform: translateY(0px);
			opacity: 1;
			transition-delay: .85s;
		}

@media (min-width: 667px) {
	nav {
		padding: 120px 90px 70px 90px;
	}
}

nav ul.main {
	list-style-type: none;
}

	nav ul.main li {
		margin-bottom: 20px;
		-webkit-transform: translateX(40px);
		-moz-transform: translateX(40px);
		-ms-transform: translateX(40px);
		-o-transform: translateX(40px);
		transform: translateX(40px);
		opacity: 0;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}

		nav ul.main li:last-of-type {
			margin-bottom: 0px;
		}

		nav ul.main li a {
			color: #ffffff;
			text-decoration: none;
			text-transform: uppercase;
			font-size: 1rem;
			display: block;
			letter-spacing: 2px;
			font-weight: 600;
			padding: 10px 0;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
			transition: all 0.3s ease;
		}

			nav ul.main li a span {
				color: #ea5c60;
			}

			nav ul.main li a:hover {
				color: #ea5c60;
			}

nav ul.sub {
	list-style-type: none;
	margin-top: 40px;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

	nav ul.sub li {
		margin-bottom: 10px;
	}

		nav ul.sub li:last-of-type {
			margin-bottom: 0px;
		}

		nav ul.sub li a {
			color: #ffffff;
			font-family: "Raleway", sans-serif;
			letter-spacing: 1px;
			font-size: 0.9rem;
			text-decoration: none;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
			transition: all 0.3s ease;
		}

			nav ul.sub li a:hover {
				color: #ea5c60;
				opacity: 0.1;
			}

/* OVERLAY
    ========================================== */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #ea5c60;
	opacity: 0.5;
	visibility: hidden;
}

	.overlay.show {
		visibility: visible;
	}

.container_MenuUtil {
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 1230px) {
	.advantages .box {
		width: 49%;
		justify-content: flex-start;
		-webkit-justify-content: flex-start;
	}
}

@media screen and (max-width: 800px) {
	.valuesContent .values {
		flex-wrap: wrap;
	}

		.valuesContent .values .value {
			width: 50%;
		}

			.valuesContent .values .value:first-child {
				width: 100%;
			}

			.valuesContent .values .value .orange {
				max-height: 100px;
				margin-top: 3em;
			}

			.valuesContent .values .value .blue {
				max-height: 100px;
			}

			.valuesContent .values .value .yellow {
				max-height: 100px;
			}

			.valuesContent .values .value .red {
				max-height: 150px;
			}

			.valuesContent .values .value .green {
				max-height: 150px;
			}

			.valuesContent .values .value .tooltip {
				max-height: 200px;
			}

			.valuesContent .values .value .tooltiptext {
				max-width: 180px;
			}

			.valuesContent .values .value img {
				max-width: 5rem;
			}
}

@media screen and (min-width: 768px) {
	.m {
		display: none !important;
	}

	a[href^="tel:"] {
		text-decoration: none;
		cursor: default;
		color: inherit;
		pointer-events: none;
		white-space: nowrap;
	}
}

@media screen and (max-width: 767px) {
	html {
		font-size: 32px;
		height: auto;
	}

	body {
		min-width: 320px;
		height: 100%;
		width: 100%;
		position: relative;
		padding: 0;
		box-sizing: border-box;
	}

	.form {
		position: relative;
		display: block;
		height: auto;
	}

	.wrapper {
		padding: 0;
	}

	.padX {
		padding-left: 4.55729% !important;
		padding-right: 4.55729% !important;
		box-sizing: border-box;
	}

	.padY {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.btnHome {
		font-size: 0.875rem;
		border-width: 1px;
		padding: 0.8rem 1.5rem;
	}
	html[lang=fr] .header.bannerBook {
		background: url(../../images/home/fr/page-carriere-background-mobile.png) center top no-repeat;
		background-size: cover;
	}
	html .header.bannerBook {
		background: url(../../images/home/en/career-background-mobile.png) center top no-repeat;
		background-size: cover;
	}
	html .header.bannerBook .top .menuUtil .btnHome.alt:before {
		color: #0074c8;
	}
	html .header.bannerBook .banner {
		padding-top: 13.00rem;
		padding-bottom: 0;
	}
	html .header.bannerBook .banner .txtContent{
		max-width:100%;
	}
	html .header.bannerBook .banner .new {
		font-size:1.00rem;
	}
	html .header.bannerBook .banner h1{
		font-size:2.50rem;
	}
	html[lang=fr] .header.bannerBook .banner h1 {
		max-width: 100%;
	}
	html .header.bannerBook .banner p {
		margin: 0.5rem 0;
		max-width: 100%;
	}

	html .header.bannerBook .banner .btnHome{
		max-width:100%;
	}
		.header {
			background: url(../../images/home/fr/banner-m.jpg) center top no-repeat;
			background-size: cover;
			padding-bottom: 3.75rem;
		}

		.header .top {
			padding: 1.125rem 0 0 0;
		}

			.header .top .wrapper {
				align-items: flex-start;
			}

		.header .logo {
			display: block;
			width: 10.625rem;
		}

			.header .logo .titleLogo {
				margin-left: 0;
				margin-top: 1rem;
				font-size: 0.75rem;
			}

		.header .top .menuUtil .btnHome.alt {
			font-size: 0;
			background: none;
			border: 0;
			padding: 0;
			padding-bottom: 0.1rem;
		}

			.header .top .menuUtil .btnHome.alt:before {
				content: "";
				font-family: "Font Awesome 5 Pro";
				display: inline-block;
				font-size: 1.5rem;
				font-weight: normal;
				font-size: 300;
				line-height: 1;
				color: #fff;
			}

	.lang ul li a {
		font-size: 1.5rem;
		line-height: 1;
	}

	h1 {
		font-size: 2.85rem;
	}

		h1 span {
			display: block;
		}

		h1 br {
			display: none;
		}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 0.8125rem;
	}

	h4 {
		font-size: 0.875rem;
	}

	.header .banner {
		padding-top: 7.125rem;
		padding-bottom: 0;
	}

	.introContent {
		background: url(../../images/home/fr/trio-m.jpg) center top no-repeat;
		background-size: cover;
		text-align: center;
		font-size: 0.875rem;
	}

		.introContent .right {
			max-width: inherit;
		}

	.badges {
		margin-bottom: 1.875rem;
	}

		.badges img {
			margin: 0 1rem 2.5rem 1rem;
			max-width: 7rem;
		}

	.advantages {
		justify-content: center;
		-webkit-justify-content: center;
	}

		.advantages .box {
			width: 86%;
			padding: 1rem 2rem 1rem 1.5rem;
		}

			.advantages .box img {
				max-height: inherit;
				max-width: inherit;
				width: 25%;
				margin-right: 1.5rem;
			}

	.implications {
		margin-bottom: -6.875rem;
	}

		.implications .events {
			width: 19.375rem;
		}

			.implications .events .rotation .slide {
				margin-right: 1.25rem;
			}

				.implications .events .rotation .slide .image {
					height: 11.5625rem;
				}

				.implications .events .rotation .slide .desc {
					font-size: 0.875rem;
				}

	.bx-controls a.bx-prev:before,
	.bx-controls a.bx-next:before {
		font-size: 2rem;
	}

	.valuesContent {
		background: url(../../images/home/fr/team-m.jpg) center top no-repeat #e6f1fa;
		background-size: 100%;
		padding-top: 15rem;
		padding-bottom: 16rem;
	}

		.valuesContent .values {
			align-items: stretch;
		}

			.valuesContent .values .value {
				display: -ms-flexbox;
				display: -webkit-flex;
				display: flex;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
				-webkit-flex-wrap: nowrap;
				-ms-flex-wrap: nowrap;
				flex-wrap: nowrap;
				justify-content: flex-end;
				-webkit-justify-content: flex-end;
				align-content: center;
				-webkit-align-content: center;
				-webkit-align-items: center;
				align-items: center;
				margin-bottom: 3rem;
			}

				.valuesContent .values .value h4 {
					font-size: 1.3125rem;
					margin: 0.5rem 0 0 0;
				}

	.testimonialsContent {
		top: -16rem;
		margin-bottom: -16rem;
	}

		.testimonialsContent .testimonials {
			width: 19.375rem;
		}

			.testimonialsContent .testimonials .rotation .testimonial {
				margin-right: 1.25rem;
				padding: 1.25rem;
			}

				.testimonialsContent .testimonials .rotation .testimonial .testi {
					margin-bottom: 1rem;
					font-size: 0.875rem;
				}

				.testimonialsContent .testimonials .rotation .testimonial .photo {
					position: static;
					transform: inherit;
					width: 3.875rem;
					height: 3.875rem;
				}

				.testimonialsContent .testimonials .rotation .testimonial .profile {
					margin: 0;
					flex-grow: 2;
					margin-left: 1rem;
					font-size: 0.875rem;
					width: 70%;
				}

	.submission {
		padding: 3rem 0;
	}

		.submission h3 {
			margin-bottom: 1rem;
		}

	.footer {
		padding: 2rem 0;
		text-align: center;
	}

		.footer .top {
			flex-direction: column;
			align-items: center;
		}

			.footer .top .left {
				margin-bottom: 2.5rem;
			}

			.footer .top .right {
				flex-direction: column;
			}

				.footer .top .right a {
					margin: 0;
					margin-bottom: 1rem;
				}

					.footer .top .right a.in {
						margin: 0;
						margin-top: 1rem;
					}

						.footer .top .right a.in:before {
							margin: 0;
						}

		.footer .bottom {
			font-size: 0.625rem;
		}
}

@media screen and (max-width: 744px) {
	html {
		font-size: 31px;
	}
}

@media screen and (max-width: 720px) {
	html {
		font-size: 30px;
	}
}

@media screen and (max-width: 696px) {
	html {
		font-size: 29px;
	}
}

@media screen and (max-width: 672px) {
	html {
		font-size: 28px;
	}
}

@media screen and (max-width: 648px) {
	html {
		font-size: 27px;
	}
}

@media screen and (max-width: 624px) {
	html {
		font-size: 26px;
	}
}

@media screen and (max-width: 600px) {
	html {
		font-size: 25px;
	}
}

@media screen and (max-width: 576px) {
	html {
		font-size: 24px;
	}
}

@media screen and (max-width: 552px) {
	html {
		font-size: 23px;
	}
}

@media screen and (max-width: 528px) {
	html {
		font-size: 22px;
	}
}

@media screen and (max-width: 504px) {
	html {
		font-size: 21px;
	}
}

@media screen and (max-width: 480px) {
	html {
		font-size: 20px;
	}
}

@media screen and (max-width: 456px) {
	html {
		font-size: 19px;
	}

	.tooltip .collaboration {
		background-color: #ffa400;
		margin-left: -105px;
		max-width: 180px;
	}

	.tooltip .innovation {
		background-color: #4dc0e8;
		margin-left: -105px;
		max-width: 180px;
	}

	.tooltip .agilite {
		background-color: #c2d501;
		margin-left: -105px;
		max-width: 180px;
	}

	.tooltip .empathie {
		background-color: #ea5c60;
		margin-left: -105px;
		max-width: 180px;
	}

	.tooltip .integrite {
		background-color: #00c08a;
		margin-left: -105px;
		max-width: 180px;
	}
}

@media screen and (max-width: 432px) {
	html {
		font-size: 18px;
	}
}

@media screen and (max-width: 408px) {
	html {
		font-size: 17px;
	}
}

@media screen and (max-width: 384px) {
	html {
		font-size: 16px;
	}
}

@media screen and (max-width: 360px) {
	html {
		font-size: 15px;
	}
}

@media screen and (max-width: 336px) {
	html {
		font-size: 14px;
	}
}

@media screen and (max-width: 320px) {
	html {
		font-size: 13.328px;
	}
}

@media screen and (min-width: 800px) {
	.header > .top {
		position: fixed;
	}
}

.header > .top.scrolled {
	background-color: rgba(18, 20, 25, 0.875);
	padding-bottom: .5rem;
}
