/*
Theme Name: Chantier Hervé
Author: Mediapilote
Author URI: https://www.mediapilote.com/
Description: 
Version: 1.0
License: 
License URI: 
*/

/*
   _____ _                 _   _             _    _                  __ 
  / ____| |               | | (_)           | |  | |                /_/ 
 | |    | |__   __ _ _ __ | |_ _  ___ _ __  | |__| | ___ _ ____   _____ 
 | |    | '_ \ / _` | '_ \| __| |/ _ \ '__| |  __  |/ _ \ '__\ \ / / _ \
 | |____| | | | (_| | | | | |_| |  __/ |    | |  | |  __/ |   \ V /  __/
  \_____|_| |_|\__,_|_| |_|\__|_|\___|_|    |_|  |_|\___|_|    \_/ \___|
01000101 01001111 01000100 01000101 01110111 01100101 01100010
*/

/*
FONTS
*/

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2'),
        url('fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.woff2') format('woff2'),
        url('fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2'),
        url('fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Italic.woff2') format('woff2'),
        url('fonts/Poppins-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
.font-small {
	font-size: 14px;
}

/*GLOBAL*/

:root {
  --color-main: #005A83;
  --color-white: #FFFFFF;
  --color-accent: #00C0EA;
  --color-main-dark: #00202E;
  --color-error: #C80030;
  --color-main-light: #52A0C3;
  --color-main-dark : #00202F;
}

.color-main {
	color: var(--color-main) !important;
}
.color-main p {
	color: var(--color-main) !important;
}
.color-white {
	color: var(--color-white) !important;
}
.color-accent {
	color: var(--color-accent);
}
.color-error {
	color: var(--color-error);
}
.color-main-light {
	color: var(--color-main-light);
}
.color-main-dark {
	color: var(--color-main-dark);
}

.bg-main {
	bg: var(--color-main);
}
.bg-white {
	bg: var(--color-white);
}
.bg-accent {
	bg: var(--color-accent);
}
.bg-error {
	bg: var(--color-error);
}
.bg-main-light {
	bg: var(--color-main-light);
}
.bg-main-dark {
	bg: var(--color-main-dark);
}

p {
	font-size: 14.5px;
	font-family: 'Poppins';
	color: var(--color-main-dark);
}

.p-m-0 {
	padding: 0;
	margin: 0;
}

.p-10 {
	padding: 10px;
}


.mb-30 {
	margin-bottom: 30px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-100 {
	margin-top: 100px;
}

.mt-150 {
	margin-top: 150px;
}

.mt-180 {
	margin-top: 180px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-auto {
	margin-top: auto;
}

.contain {
	width: 1200px;
    margin: 0 auto;
}

.white_box {
	border: 2.5px solid var(--color-main);
	background: #FFF;
	padding: 25px;
	box-shadow: 0px 0px 159px 0px rgba(255, 255, 255, 0.43); 
}

.float-right {
	float:right;
}

.rotate {
  transform: rotate(3.142rad);
}

.border_blue_accent {
	border: 4px solid transparent;
	cursor: pointer;
}

.border_blue_accent:hover img {
  border: 4px solid var(--color-accent);
}


/*CARROUSEL*/
.carousel-item-post >div h2 {
	padding-top: 30px;
}
.carousel-item-post >div {
	max-width: 1200px;
	margin: 0 auto;
	display: block;
}
.carousel-item-post >div >div {
	width: 25%;
	float: right;
	margin-top: 80px;
	margin-bottom: 50px;
}
.carousel-item-post >div >div {
	width: 25%;
	float: right;
	margin-top: 80px;
	margin-bottom: 50px;
	margin-right: 10%;
}

@media (max-width: 1000px) {
	.carousel-item-post >div  >div{
		width: auto;
		display: block;
		margin: 0 auto;
		margin-top: 80px;
		margin-bottom: 50px;
	}
}
/*MENU*/

/* Icon 1 */

#nav-icon {
	width: 55px;
	height: 38px;
  position: relative;
  z-index:99999;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  z-index:99999;
  height: 2px;
  width: 100%;
  background: #ffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
   -webkit-box-shadow: 0px 0px 18px -3px rgba(0,0,0,0.99);
  box-shadow: 0px 0px 18px -3px rgba(0,0,0,0.99);
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2) {
  top: 16px;
}

#nav-icon span:nth-child(3) {
  top: 33px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nav-menu {
	width: 60%;
	max-width: 930px;
	position: absolute;
	z-index:10;
	top: 0;
	left: -150%;
	height: 100vh;	
	background: url("img/nav-menu-bg.png");
	transition: left 0.3s ease;
	background-position: right bottom;
	background-repeat: no-repeat;
	overflow-x: auto;
	direction: rtl;
}

#hero_contact {
	position: absolute;
	max-width: 300px;
	right: 20%;
	z-index: 12;
}

#hero_header_mask {
	top: 0;
	left: 0;
	pointer-events: none;
	position: absolute;
	height: 1030px;
	width: 100%;
	z-index: 9;
	background-repeat: no-repeat;
	background-position: center;
}
#menu_mask {
	background: linear-gradient(180deg, rgba(0, 50, 94, 0.5) 0%, rgba(8, 60, 105, 0.5) 0.01%, rgba(8, 60, 105, 0) 100%);
	height: 100px;
	background-blend-mode: color-dodge, normal;
	top: 0;
	height: 40%;
	padding-top: 30px;
	padding-bottom: 20px;
	width: 100%;
	position: fixed;
	pointer-events: none;
	z-index: 10;
}
#hero_header >div:not(#explore):not(.videoWrapper){
	pointer-events: none;
	width: 60%;
	max-width: 930px;
	position: absolute;
	z-index: 11;
	top: 0;
	left: 0%;
	height: calc(100vh + 300px);
	transition: left 0.3s ease;
}
#hero_header >div:not(#explore) svg:first-of-type{
	top: 30%;
	position: absolute;
	left: 10.5%;
	z-index: 8;
	transition: left 0.3s ease;
}
#hero_header.hero_header_page >div:not(#explore) svg:first-of-type{
	top: 14%;
	pointer-events: all;
}
#hero_header #explore {
	display: inline-block;
	position: absolute;
    top: 85vh;
	text-align: center;
	margin: 0 auto;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 70px;
}
#hero_header.hero_header_page #explore {
    top: unset;
    bottom: 19%;
	z-index: 11;	
}

#hero_header.hero_header_page #explore p, #footer #return_top p {
	font-size: 20px;
	margin-bottom: 5px;
	margin-top: 5px;
}



#hero_header video, #hero_header iframe {
	position: absolute;
/*	object-fit: cover;
	width: 100vw !important;
	height: 100vh !important;*/
}

#hero_header .videoWrapper iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    min-height: 400px;
}

/*@media screen and (min-height: 1000px) {
    .videoWrapper, .videoWrapper iframe {
        max-height: 100%;
    }
    .videoWrapper {
	    position: relative;
	    padding-bottom: 56.25%;
	    height: 0;
	    overflow: hidden;
	}
}*/

.gallery-item, .gallery-item img {
	height: 220px !important;
}

.gallery-item img {
	object-fit: cover !important;
	border: none !important;
}


@media (max-width: 1200px) {
	.nav-menu {
		width: 70%;
	}
	#hero_header >div:not(.videoWrapper){
		width: 70%;
	}
}
@media (max-width: 1000px) {
	#hero_header >div:not(#explore) svg:first-of-type{
		width: 300%;
		left: 11% !important;
	}
}
@media (max-width: 700px) {
	.nav-menu {
		width: 100%;
	}
	#hero_header >div{
		width: 100%;
	}
	#hero_contact {
		padding: 5px 25px;
		top: 31%;
		left: 50%;
		right: unset;
		transform: translate(-50%, -50%);
	}
}
@media (max-width: 580px) {
	.nav-menu {
		background-position: unset;
	}
	#hero_header >div:not(#explore) {
		background: none !important;
	}
}

/*BUTTONS*/

a.btn_main, .btn_main a, .btn_accent a {
    padding: 15px 40px;
	text-decoration: none !important;
	border-radius: 3px;
	font-weight: bold !important;
}
a.btn_main:hover, .btn_main a:hover, .btn_accent a:hover {

}
a.btn_main, .btn_main a {
	border: 2px solid var(--color-main);
	color: var(--color-main) !important;
	background: transparent;
}
a.btn_main:hover, .btn_main a:hover {
	background: var(--color-accent) !important;
	color: var(--color-white) !important;
	box-shadow: 0px 4px 22px rgba(2, 193, 234, 0.17) !important;
	border: 2px solid rgba(2, 193, 234, 0.17) !important;
}
.btn_accent a {
	background: var(--color-accent) !important;
	color: var(--color-white);
	box-shadow: 0px 4px 22px rgba(2, 193, 234, 0.17) !important;
}
.btn_accent a:hover {
	color: var(--color-accent);
	outline: 2px solid var(--color-accent) !important;
	background-color: #fff !important;
}

/*
GENERAL
*/

html {
	overflow-x: hidden;
	min-height: 100vh;
}
textarea {
	resize: none !important;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
element.style {
    padding-left: none;
}

body {
	display: block;
	min-height: 100vh;
	margin: 0 auto;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1px; padding: 0; margin: 0; 
	font-weight: 400; font-size: 14px;
}

main {
	min-height: 400px;
	position: relative;
	z-index: 11;
}

a:not(.button_primary):not(.button_secondary), a:focus:not(.classic_button):not(.utilitary_button), a:hover:not(.button_primary):not(.button_secondary) {
	text-decoration: underline;
}
a:not(.button_primary):not(.button_secondary), a:focus:not(.classic_button):not(.utilitary_button), a:hover:not(.button_primary):not(.button_secondary) {
	text-decoration: underline;
}

.menu-item a, .menu_second a {
	color: #fff;
	text-decoration: none !important;
}
p, li {
	font-family: 'Poppins' !important;
	font-style: normal;
	font-weight: normal;
}

h1, h2, h3, h4 {
	font-family: 'Poppins' !important;
	margin-top: 10px !important;
	margin-bottom: 10px !important;
	color: var(--color-main) !important;
}

p strong, li strong{
	font-size: 18px !important;
	font-family: 'Poppins' !important;
}

a, button {
	font-family: 'Poppins' !important;
}

.font-bold {
	font-weight: bold !important;
}
.font-bold p {
	font-weight: bold !important;
}
h1, .h1, .h1 h1 {
	margin: 0;
	font-family: 'Poppins';
	font-style: normal !important;
	font-weight: 500 !important;
	font-size: 38px !important;
	line-height: 58px !important;
	display: flex;
	align-items: center;
}
h2, .h2, .h2 h2 {
	margin: 0;
	font-family: 'Poppins';
	font-style: normal !important;
	font-weight: 500 !important;
	font-size: 30px !important;
	line-height: 30px !important;
	text-transform: uppercase;
}
h3, .h3, .h3 h3 {
	font-family: 'Poppins';
	font-size: 25px !important;
}
h4, .h4, .h4 h4 {
	font-family: 'Poppins';
	font-size: 20px !important;
}
.unselectable {
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.cursor_pointer {
	cursor: pointer;
}
a:focus, a:hover {
	text-decoration: none !important;
}

a  {
	color: #2C3378;
	text-decoration: underline;
}
.center {
	padding: 0 17%;
}
@media (max-width: 1200px) {
	.center {
		padding: 0 5%;
	}
}
@media (min-width: 2000px) {
	.center {
	  padding: 0 !important;
	  max-width: 2000px;
	  margin: 0 auto;
	}
}
.hr {
	background-color: #d3b578;
	border: #d3b578;
	border-radius: 7px 7px 7px 7px;
	height: 4px;
	width: 150px !important;
	display: block;
	margin: 0 auto;
}

.hr_secondary {
	background-color: #134778;
	border: #134778;
	border-radius: 7px 7px 7px 7px;
	height: 4px;
	width: 150px !important;
	display: block;
	margin: 0 auto;
}

.hr_white {
	background-color: white;
	border: white;
	border-radius: 7px 7px 7px 7px;
	height: 4px;
	width: 150px !important;
	display: block;
	margin: 0 auto;
}


/*COULEURS*/
.color_white, .color_white * {
	color: white !important;
}
.color_primary {
	color: #e67d40 !important;
}
.color_secondary {
	color: #EA5B0B !important;
}
/*BACKGROUNDS*/
.bg-primary {
	background: #2c1b45 !important;
} 
.bg-secondary {
	background: !important;
}
.bg-tertiary {
	background:  !important;
}
.bg-gray {
	background: !important;
}


.border-left {
	border-left: 5px solid #eee;
}
.all-inline >* {
	display: inline-block;
} 
.break-word {
	word-wrap: break-word;
}
.text_center {
	text-align: center;
}
.text_left {
	text-align: left;
}
.text_right {
	text-align: right;
}
.text-uppercase {
	text-transform: uppercase;
}
.text-bold {
	font-weight: bold;
}
.text-white {
	color: #fff !important;
}
.text-classic-gray {
	color: #3C3C3C !important;
}
.text-primary {
	color: #fa8c80 !important;
} 
.text-decoration-none, .text-decoration-none a {
	text-decoration: none !important;
}
.link_no_underline, .link_no_underline a {
	text-decoration: none !important;
}
.link_underline {
	text-decoration: underline !important;
}

/*QUOTE*/
.quote >div:first-of-type {
	border-left: 2px dotted grey;
	padding-left: 20px;
}
.quote >div:first-of-type {
	border-left: 2px dotted grey;
	padding-left: 20px;
}
.quote >div em, .quote >div:last-of-type {
	font-family: barlowregular;
	font-size: 18px;
	line-height: 17px;
	color: #004676;
}
.quote >div:last-of-type {
	margin-top: 15px;
	font-weight: bold;
}
.quote .fa-quote-left {
	margin-right: 10px;
}
.quote .fa-quote-right {
	margin-left: 10px;
}
.quote >div em {
	display: block;
}
.quote >div em:last-of-type {
	margin-top: 15px;
}
.quote >div:last-of-type {
	text-align: right;
}

/*
REECRITURE WP
*/

.wp-block-image img {
    height: auto;
}
.contact_box .wpcf7 form.sent .wpcf7-response-output {
	font-size: 20px;
	margin-top: 0;
}

/*
==========================================================================
BUTTON
==========================================================================
*/
a.button_primary, input.button_primary, .button_primary button, .button_primary a {
	text-decoration: none !important;
	justify-content: center;
	align-items: center;
	padding: 17px 26px !important;
	background: #E67D40 !important;
	box-shadow: inset 0px 1px 0px #FBD2B6 !important;
	border-radius: 58px;
	font-family: 'barlowregular' !important;
	text-decoration: none;
	font-style: normal;
	font-size: 21px;
	line-height: 24px;
	color: #FFFFFF !important;
	min-height: 0 !important;
	border: none;
}
button.button_primary {
	border: none;
}
a.button_primary:hover, input.button_primary:hover, button.button_primary:hover, .button_primary button:hover, .button_primary a:hover {
	text-decoration: none;
	background: linear-gradient(180deg, #EA5B0B 0%, #E67D40 100%) !important;
	box-shadow: inset 0px -3px 0px rgba(0, 0, 0, 0.25), inset 0px 1px 0px #FBD2B6 !important;
	text-shadow: 0px 2px 0px rgba(206, 19, 55, 0.75) !important;
}
.button_primary:disabled {
	background: #F1C3BD;
	box-shadow: inset 0px 3px 0px #937571;
	color: #937571;
}
.button_primary:disabled:hover {
	background: #F1C3BD;
	box-shadow: inset 0px 3px 0px #937571;
	text-shadow: none;
}
a.button_secondary, button.button_secondary, .button_secondary button, .button_secondary a {
	text-decoration: none !important;
	justify-content: center;
	align-items: center;
	padding: 17px 26px !important;
	background: #12649D !important;
	box-shadow: inset 0px 2px 0px #3580B5 !important;
	border-radius: 58px;
	font-family: 'barlowregular' !important;
	text-decoration: none;
	font-style: normal;
	font-size: 21px;
	line-height: 24px;
	color: #FFFFFF;
}
a.button_secondary, button.button_secondary, .button_secondary button , .button_secondary a  {
	border: none;
}
a.button_secondary:hover, button.button_secondary:hover, .button_secondary button:hover, .button_secondary a:hover {
	text-decoration: none;
	background: linear-gradient(180deg, #004676 0%, #12649D 100%) !important;
	box-shadow: inset 0px 1px 0px #5BADE6, inset 0px -3px 0px rgba(0, 0, 0, 0.25) !important;
	text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.75) !important;
}
.button_secondary:disabled {
	background: #12649D;
	box-shadow: inset 0px 3px 0px #003254;
	color: #003254;
}
.button_secondary:disabled:hover {
	background: #12649D;
	box-shadow: inset 0px 3px 0px #003254;
	text-shadow: none;
}

/*
==========================================================================
HEADER
==========================================================================
*/

/*HEADER*/
.header_margin {
	margin-top: 350px;
}

#top {
	height: 100px;
	background-blend-mode: color-dodge, normal;
	height: 40%;
	padding-top: 30px;
	padding-bottom: 20px;
	width: 100%;
	position: fixed;
	pointer-events: unset;
	z-index: 12;
	pointer-events: none;
}
#top > div {
	max-width: 1500px;
	margin: 0 20px;
	pointer-events: all;
}

/*HEADER :logo */
#top .logo {
	display: inline-block;
	margin-left: 30px;
	max-width: 250px;
}
#top .logo img {
	width: 100%;
}

/*HEADER : navigation*/
#top .menu, #top .full_menu {
	display: inline-block;
}
#top ul.menu{
	display: flex;
	text-decoration: none;
	margin-right: 30px;
	margin-top: 10px;
	margin-bottom: 0;
	cursor: pointer;
	position: relative;
	flex-direction: column;
	width: 45%;
}

#top .nav-menu >div {
	margin-top: 100px;
	direction: ltr;
	margin-bottom: 50px;
}
#top .nav-menu >div >p {
	color: #fff;
	margin-left: 40px;
	font-size: 27px;
	font-weight: bold;
}

#top ul > li{
	min-width: 200px;
	list-style-type: none !important;
	margin-bottom: 0;
}
#top ul.menu > li{
	display: inline-block;
	position: relative;
}

#top ul.menu li a:hover{
	color: var(--color-main-light);
}

#top ul > li >a {
	font-size: 17px;
	font-family: 'Poppins';
	width: 100%;
	display: block;
	color: #fff;
	font-weight: bold;
	text-decoration: none !important;
	position: relative;
	z-index: 3;
	padding-bottom: 24px;
	padding-top: 35px;
	padding-left: 19px;
}

#top ul:not(.sub-menu) > li >a {
	border-bottom: 1px solid #fff;
}

#top ul >li ul.sub-menu {
	padding-left: 0;
}

#top ul >li ul.sub-menu a {
	padding: 5px 15px;
	min-width: 300px;
	text-align: left;
}

#top ul > li ul.sub-menu li:first-of-type a {
  padding-top: 10px;
}

/*HEADER : navigation responsives*/
#top .responsive_nav {
    transform: translateY(-1000px);
	transition: all 1s;
}
#top.responsive {
	min-height: 575px;
	transition: all 1s;
}
#top.responsive .responsive_nav {
    position: absolute;
    left: 0;
    display: block !important;
    width: 100%;
    padding-left: 0;
    transform: translateY(0px);
	transition: all 1s;
}
#top.responsive ul  > li > a {
	list-style-type: none;
}
.responsive_menu {
	float: right;
	margin-right: 30px;
	font-size: 55px;
	margin-top: -10px;
}
.responsive_menu, .responsive_nav {
	display: none !important;
}

@media (max-width: 1000px) {
	#top {
	    padding-bottom: 30px;
	}
	.responsive_menu {
		display: block !important;
	}
	.full_menu {
		display: none !important;
	}
	#top ul > li >a {
		padding-bottom: 10px;
		padding-top: 10px;
	}
	#top ul > li > a {
		text-align: left;
	}
}
@media (max-width: 600px) {
	#top .logo img {
		width: 90%;
	}
	#top ul > li >a {
		text-shadow: unset;
	}
}

.menu-menu-principal-container {
	display: inline;
}



/**/
#breadcrumbs, #breadcrumbs span, #breadcrumbs a {
	color: var(--color-main);
	text-decoration: none;
	font-size: 19px;
}

.weglot-language, .weglot-language:hover >a {
	width: 100px !important;
    min-width: unset !important;
}

.weglot-language.weglot-parent-menu-item::before {
	content: "";
	background-image: url(img/arrow-down.svg) !important;
	fill: #d3b578;
	background-position: unset !important;
	background-size: auto 20px !important;
	border-radius: 0px !important;
	width: 35px !important;
	height: 20px !important;
	vertical-align: middle;
	display: inline-block;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 22px;
}
.weglot-language.weglot-parent-menu-item:hover::before {
	transform: rotate(180deg);
}

.weglot-flags.flag-0.en > a::before, .weglot-flags.flag-0.en > span::before {
  margin-left: 20px !important;
}

@media (max-width: 767px) {
	.weglot-language.weglot-parent-menu-item::before {
	  top: 13px;
	}
}


@media screen and (min-width: 980px){
    .hero { 
    	width: 980px; 
    }    
}
@media screen and (max-width: 640px){
    .hero h1 { 
    	font-size: 4em; 
    }

}
@media screen and (max-width: 980px){
    .hero { 
    	position: absolute;
		top: 50%;
		right: 0;
		max-width: 90%;
		margin-right: 10%;
    }
	.hero p:last-of-type {
		font-size: 35px !important;
	}
	.carousel-indicators {
		width: 50px;
	}
    
}


/*FIN*/

.arrow_down {
	transform: translateY(-15px);
	transition: all 1s;
}
.arrow_down:hover {
	transform: translateY(0px);
}

@media (max-width: 1550px) {

}

@media (max-width: 1300px) {

}

@media (max-width: 1000px) {

}
@media (max-width: 600px) {

}


/*CROSS ANIMATION*/
#menu-toggle * {
	 transition: 0.25s ease-in-out;
	 box-sizing: border-box;
}
#menu-toggle span {
	 display: block;
	 background: #d3b578;
	 border-radius: 2px;
}
 #menu-toggle {
    width: 45px;
    height: 75px;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    border-radius: 5px;
}
 #menu-toggle #hamburger {
	 position: absolute;
	 height: 100%;
	 width: 100%;
	 top: 20px;
}
#menu-toggle #hamburger span {
	width: 100%;
	height: 4px;
	position: relative;
	top: 0;
	left: 0;
	margin: 10px 0;
}
#menu-toggle #hamburger span:nth-child(1) {
	 transition-delay: 0.5s;
}
#menu-toggle #hamburger span:nth-child(2) {
	transition-delay: 0.625s;
}
#menu-toggle #hamburger span:nth-child(3) {
	transition-delay: 0.75s;
}
#menu-toggle #cross {
	position: absolute;
	height: 100%;
	width: 100%;
	transform: rotate(45deg);
	top: 20px;
}
#menu-toggle #cross span:nth-child(1) {
	height: 0%;
	width: 4px;
	position: absolute;
	top: 7%;
	left: 45%;
	transition-delay: 0s;
}
#menu-toggle #cross span:nth-child(2) {
	width: 0%;
	height: 4px;
	position: absolute;
	left: 2%;
	top: 32%;
	transition-delay: 0.25s;
}
#menu-toggle.open #hamburger span {
	width: 0%;
}
#menu-toggle.open #hamburger span:nth-child(1) {
	transition-delay: 0s;
}
#menu-toggle.open #hamburger span:nth-child(2) {
	transition-delay: 0.125s;
}
#menu-toggle.open #hamburger span:nth-child(3) {
	transition-delay: 0.25s;
}
#menu-toggle.open #cross span:nth-child(1) {
	height: 56%;
	transition-delay: 0.625s;
}
#menu-toggle.open #cross span:nth-child(2) {
    width: 92%;
    transition-delay: 0.375s;
}

/*
==========================================================================
FOOTER
==========================================================================
*/
#footer {
	min-height: 814px;
	position: relative;
	pointer-events: unset;
}

#footer >div:first-of-type {
	position: absolute;
	text-align: center;
	margin: 0 auto;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 70px;
	cursor: pointer;
	z-index: 13;
}

#footer >div:nth-of-type(2) {
	position: absolute;
	bottom: 20%;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#footer div:nth-of-type(2) > div {
	color: var(--color-white);
	font-family: poppins;
	font-weight: 700;
	width: 20%;
}
#footer > div:nth-of-type(2) > div:first-of-type {
	margin-left: 4%;
	width: 40%;
	font-size: 17px;
}
#footer > div:nth-of-type(2) > div:last-of-type {
	margin-right: 4%;
	width: 20%;
	text-align: right;
}

#footer >div:last-of-type {
	position: absolute;
	bottom: 7%;
	width: 100%;
	text-align: center;
}
#footer >div:last-of-type a {
	color: var(--color-white);
	font-family: poppins;
	font-weight: 700;
	text-decoration: none;
	margin: 0 10px;
}
@media screen and (max-width: 1200px){
	#footer >div:nth-of-type(2) {
		bottom: 10%;
		flex-direction: column;
		padding: 25px;
		width: unset;
	}
	#footer > div:nth-of-type(2) > div:first-of-type, #footer > div:nth-of-type(2) > div:last-of-type {
		text-align: center;
		font-size: 13.5px;
		width: 100%;
	}
	#footer >div:last-of-type {
		bottom: 3%;
		padding: 25px;
		font-size: 13.5px;
	}
}
/*
==========================================================================
MODALE (POP-UP)
==========================================================================
*/

.modale:before {
  content: "";
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index:998;
}

.opened:before {
  display: block;
}
.opened .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  top: 20vh;
  padding: 35px;
}
.closemodale {
	float: left;
	z-index: 5;
	left: 15px;
	top: 20px;
	font-size: 2em;
	color: #fff;
	position: absolute;
}
.modal-dialog {
	margin: 0;
	background: #004676;
	border-radius: 5px;
	position: fixed;
	z-index:999;
	left: 35%;
	top: -100%;
	width: 30%;
	box-shadow:0 5px 10px rgba(0,0,0,0.3);
	-webkit-transform: translate(0, -500%);
	-ms-transform: translate(0, -500%);
	transform: translate(0, -500%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-moz-transition: -moz-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}
.modal-header,
.modal-footer {
	padding: 10px 20px;
}
.modal-header {
  	border-bottom: #eeeeee solid 1px;
}
.modal-header h2 {
  	font-size: 20px;
}

.modal-body {
	/*overflow-y: scroll;*/
	max-height: 87vh;
}
.modal-body h2 {
	font-size: 54px !important;
	margin-top: 40px;
	margin-bottom: 40px;
}
.modal-body p:nth-of-type(1) {
	margin-bottom: 40px;
}
.modal-body p:nth-of-type(2) {
	font-size: 60px;
	margin-top: 60px;
	margin-bottom: 60px;
}
@media (max-width: 1650px) {
	.opened .modal-dialog {
		top: 20px;
		left: 15%;
	  	width: 70%;
	  	text-align: center;
	  	max-height: 100vh;
	}
}
@media (max-width: 1000px) {
	.opened .modal-dialog {
		top: 20px;
		left: 5%;
	  	width: 90%;
	  	text-align: center;
	  	max-height: 100vh;
	}
	.opened .modal-dialog {
	    padding: 15px;
	}
	.modal-body a {
	    font-size: 15px;
	}
}

/*
==========================================================================
HOME
==========================================================================
*/
/*PRODUITS*/
#produits {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 50px;
	width: 100%;
	margin: 0 auto;
	padding-left: 0;
}

.produits_cards {
	position: relative;
	display: block;
	width: 26%;
	margin-left: 4%;
	margin-top: 50px;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.31);
}
.produits_cards >div {
	background: #e7edf2;
	padding: 20px;
	min-height: 220px;
	position: relative;
}

.produits_cards div h3 {
	color: #13497b;
	font-family: 'barlowbold' !important;
}

.produits_cards div p {
	color: #13497b;
	font-family: 'barlowregular' !important;
}

.produits_cards >div >div {
	position: absolute;
	bottom: -15px;
	text-align: center;
	width: 100%;
	left: 0;
}

.produits_cards >div >div a {
	padding: 10px 20px;
	background: #13497b;
	border-radius: 30px;
	color: #fff;
	font-family: barlowbold;
	text-decoration: none !important;
	border: 2px solid #fff;
}

.produits_cards > div > div a:hover {
  padding: 10px 20px;
  background: #fff;
  border-radius: 30px;
  color: #13497b;
  font-family: barlowbold;
  text-decoration: none !important;
  border: 2px solid #13497b;
}

@media (max-width: 1000px) {
	.produits_cards {
		width: 48%;
		margin-left: 2%;
	}
}
@media (max-width: 600px) {
	.produits_cards {
		width: 75%;
		margin-left: 12.5%;
		margin-right: 12.5%;
	}
}

/*NEWS*/
.homepage.news, .news_archives {
	margin-top: 175px;
}
.news_archives a {
	color: #e67d40 !important;
	display: block;
	font-size: 20px !important;
	list-style-type: disc; 
}
.news_archives a span{
	text-decoration: none;
}
.news_archives h2 {
	margin-bottom: 30px;
}
.news h2 {
	margin-bottom: 25px;
}
.news a {
	text-decoration: none !important;
}
.news ul {
	border: 2px solid #828282;
	box-sizing: border-box;
	border-radius: 12px;
	width: 90%;
	margin: 0 auto;
	padding: 50px;
	position: relative;
	min-height: 350px;
}
.news ul li {
	display: flex;
	justify-content: space-between;
}
.news ul li >div {
	height: 125px;
	width: 49%;
	position: relative;
}
	
.news ul li >div:first-of-type >a p:last-of-type {
	color: grey;
}	
.news ul li >div:last-of-type img{
	top: -50%;
	right: -5%;
	position: absolute;
	border-radius: 30px;
	width: 100%;
	object-fit: cover;
	object-position: top;
	max-height: 375px;
}

.news ul li >div:last-of-type a{
	position: relative;
	left: 40%;
	bottom: -250px;
	z-index: 4;
}

.news ul {
    border: 2px solid #828282;
    box-sizing: border-box;
    border-radius: 12px;
    width: 75%;
    margin: 0 auto;
    padding: 50px;
    position: relative;
    min-height: 350px;
}

#arrow_left {
	display: inline;
	position: absolute;
	top: 47%;
	left: -50px;
	cursor: pointer;
}
#arrow_right {
	display: inline;
	position: absolute;
	top: 47%;
	right: -50px;
	cursor: pointer;
}
.news_previews ul {
	margin-top: 60px;
	margin-bottom: 100px;
}
.news_previews ul li {
	height: 370px;
	border-radius: 12px;
	width: 90%;
	border: 2px solid #828282;
	padding: 50px;
	margin: 0 auto 115px auto;
}
.news_previews ul li {
	display: flex;
	justify-content: space-between;
	width: 80%;
}
.news_previews ul li >div:first-of-type {
	width: 40%;
	position: relative;
}
.news_previews ul li >div:first-of-type img {
	top: -28%;
	left: -8%;
	position: absolute;
	border-radius: 30px;
	width: 100%;
	object-fit: cover;
	object-position: top;
	height: 400px;
	/*	top: -28%;
    border-radius: 15px !important;
    width: 100%;
    object-fit: cover;
    height: 350px;*/
}
.news_previews ul li >div:last-of-type {
	margin-top: 20px;
	width: 58%;
	position: relative;
}

.news_previews ul li >div:last-of-type >div {
    position: absolute;
    bottom: 0;
}

.news_previews ul li >div:last-of-type >div{
	width: 100%;
	text-align: center;
}


/*
==========================================================================
TEMPLATE NEWS
==========================================================================
*/

.article_content {
  	background: #fff;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
  	background-position: top center;
  	background-size: cover;	
  	padding: 40px;
}

.article {
	opacity: 0;
    position: absolute;
}
.article.display {
	position: static;
	opacity: 1;
	transition: all 0.5s ease-out;
	display: flex !important;
	flex-wrap: wrap;
}
@media (max-width: 1500px) {
	.news ul li > div:last-of-type img {
	  top: 0;
	  right: 0;
	}
}
@media (max-width: 1200px) {
	.news ul li > div {
	    width: 100%;
	}
	.news ul li > div:last-of-type img {
		position: static;
	}
	.news ul li > div:last-of-type a {
	    display: none;
	}
	.news ul li > div:last-of-type img {
		display: none !important;
	}

	.article_content {
	  	background-position: center -20px;
	}
}

@media (max-width: 500px) {
	.news ul {
	    width: 75%;
	}
	.article_content {
	  	padding: 10px;
	}
}

/*
==========================================================================
[SHORTCODE] REALISATIONS & OFFRES
==========================================================================
*/
#realisations, #offres {
	display: flex;
	justify-content: space-around;
	padding-left: 0;
	flex-wrap: wrap;
}
#offres {
	justify-content: flex-start;
}
#realisations a, #offres a {
	text-decoration: none !important;
}
#realisations li, #offres li {
	position: relative;
	width: 30%;
	background: #fff;
	border-radius: 25px;
	list-style-type: none;
	box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.25);
	margin-top: 20px;
}
#offres li {
	margin-left: 5%;
}
#offres li:first-of-type {
	margin-left: 0;
}
#realisations li:hover, #offres li:hover {
	transform: translateY(-20px);
	transition: all 1s;
}
#realisations li h3, #offres li h3 {
	margin-left: 3%;
	color: #004676 !important;
	font-size: 17px !important;
	padding: 0 15px !important;
}
#realisations li h3 span, #offres li h3 span {
	position: absolute;
	right: 7%;
}
#realisations li img.thumbnails{
	width: 100%;
	height: 370px;
	object-fit: cover;
}
#realisations li p, #offres li p {
	padding: 10px 15px;
	font-size: 14px !important;
}
#realisations li p:first-of-type span, #offres li p:first-of-type span {
	float: right;
	font-weight: bold;
}
#realisations li .icones, #offres li .icones {
    min-height: 30px;
}
#realisations li .icones img, #offres li .icones img {
    margin: 20px auto;
    display: block;
    width: 50px;
}
#offres .description {
	margin-top: 20px;
	margin-bottom: 40px;
}
#realisations li:hover .icones img, #offres li a:hover .icones img {
	margin: 20px auto;
	display: block;
}
#realisations li .icones img:last-of-type, #offres li .icones img:last-of-type {
	display: none;
}
#realisations li:hover .icones img:first-of-type, #offres li:hover .icones img:first-of-type {
	display: none;
}
#realisations li:hover .icones img:last-of-type, #offres li:hover .icones img:last-of-type {
	margin: 20px auto;
	display: block;
}
.modal_realisations {
	display: none;
	position: absolute;
}
.modal_realisations div {
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100%;
}
.modal_realisations div img {
	max-height: 90vh;
	margin: 5vh auto;
	box-shadow: 0 5px 10px rgba(0,0,0,0.3);
	filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
	display: block;
	max-width: 95%;
}
.modal_realisations::before {
	content: "";
	display: block;
	background: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99998;
}
.realisations_cards {
	cursor: pointer;
}
#realisations .cross {
	position: fixed;
	z-index: 99999;
	left: 10px;
	width: 50px;
	top: 10px;
	cursor: pointer;
}
@media (max-width: 1400px) {
	#realisations li, #offres li {
		width: 47%;
	}
	#offres {
		justify-content: space-around;
	}
	.modal_realisations div img {
	  margin: 10vh auto;
	}
}
@media (max-width: 700px) {
	#realisations li, #offres li {
		width: 100%;
	}
	#offres li {
		margin-left: 0;
	}
}

/*
==========================================================================
TEMPLATE CONTACT
==========================================================================
*/

#contact_form {
	min-width: 80%;
	margin: 0 auto;
	width: fit-content;
}
#contact_form p, #contact_form p label span, #contact_form label, #contact_form input:not(input[type="submit"]), #contact_form textarea, #contact_form select {
	display: block !important;
	width: 100% !important;
}
#contact_form p label {
	color: #134778;
}

form input,
form textarea {
	padding: 16px 30px;
	border: 2px solid var(--main, #005A83);
	background: transparent;
	font-weight: 600;
	color: var(--color-main-dark);
	margin-top: 5px;
	margin-bottom: 10px;
}
form input:focus:not([type="submit"]),
form textarea:focus {
  	box-shadow: 0 0 0 5px var(--accent, #00C0EA);
  	outline: none;
  	border: none;
  	padding: 18px 30px;
}
.wpcf7-not-valid {
	box-shadow: 0 0 0 5px var(--error, #C80030);
	outline: none;
  	border: none;
  	padding: 18px 30px;

}

.wpcf7 form.sent .wpcf7-response-output {
    border: 2px solid var(--color-main);
    width: 100%;
    margin-top: 45px;
}

form input::placeholder,form textarea::placeholder {
	color: var(--color-main) !important;
	font-weight: 300 !important;
	color: red !important;
}

form textarea {
	height: 170px;
}
form .split_two {
	display: flex;
	justify-content: space-between;
}
form .label {
	padding: 0;
	width: 100%;
	text-align: left;
}
form .split_two .label {
	width: 48%;
}
@media (max-width: 700px) {
	form .split_two {
		flex-wrap: wrap;
	}
	form .split_two .label {
		width: 100%;
	}
}

form .label input, form .label textarea, form .label p {
	width: 100%;
	font-family: barlowregular;
	margin-bottom: 10px;
}
form .label input, .contact_box_2 form .label textarea {
	padding: 15px;
}
form .label textarea {
	height: 90px;
}
form .label p {
	width: 100%;
	font-family: barlowregular;
	font-size: 16px;
	color: #004676;
	margin-bottom: 10px;
}

select {
	cursor: pointer;
	background: #FFFFFF;
	border-radius: 25px;
	font-size: 14px;
	border: none;
	padding: 9px 14px;
	border: 2px solid #134778;
	color: #134778;
	margin-bottom: 15px;
}
select option {
	font-family: barlowregular;
}

/*.show {
	display: block;
}*/
.hidden {
	display: none;
}


/*
==========================================================================
ELEMENTOR
==========================================================================
*/

.elementor-counter-number-suffix {
	font-size: 30px;
}

.elementor-tab-title {
	border-radius: 40px;
}
.elementor-tab-content {
	padding-left: 0 !important;
}
.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened, .elementor-accordion .elementor-accordion-icon-closed {
  display: block;
  position: absolute;
  right: 25px;
  font-size: 25px;
  top: 8px;
}

.elementor-tab-title.elementor-active {
	background-color: #fff !important;
	border: 2px solid #134778 !important;
}
.elementor-tab-title.elementor-active .elementor-accordion-title, .elementor-tab-title.elementor-active .elementor-accordion-icon-opened {
	color: #134778 !important;
}

.elementor_split .elementor-col-50:first-of-type {
	margin-right: 4% !important;
}
.elementor_split .elementor-col-50 {
	width: 48% !important;
}
@media (max-width: 767px) {
	.elementor_smartphone_column_100 .elementor-column {
		text-align: center;
  		width: 100% !important;
	}
	.elementor_smartphone_column_100 .elementor-column img {
		width: 50% !important;
		margin-left: 25% !important;
	}
}

.elementor_split_tree .elementor-col-33:nth-child(1n), .elementor_split_tree .elementor-col-33:nth-child(2n)  {
	margin-right: 5% !important;
}
.elementor_split_tree .elementor-col-33:nth-child(3n)  {
	margin-right: 0 !important;
}
.elementor_split_tree .elementor-col-33 {
	width: 30% !important;
}
.elementor_split_tree .elementor-col-33:hover {
	transform: translateY(-15px);
	transition-duration: 0.3s;
}

#gallery-1  {
	display: flex;
  	justify-content: space-between;
  	flex-direction: row;
  	flex-grow: inherit;
  	flex-wrap: wrap;
}
#gallery-1 .gallery-item {
	width: 32% !important;
}


.elementor_custom_gallery #gallery-1 dt a img {
	object-fit: cover !important;
	height: 100% !important;
	border: none !important;
}

.elementor_custom_gallery #gallery-1 dt a {
	display: block;
	height: 400px !important;
}


@media (max-width: 767px) {
	.elementor_smartphone_column_100 .elementor-column {
		text-align: center;
  		width: 100% !important;
	}
	.elementor_smartphone_column_100 .elementor-column img {
		width: 50% !important;
		margin-left: 25% !important;
	}
	.elementor_split_tree .elementor-col-33 {
		width: 80% !important;
		margin-left: 10% !important; 
		margin-right: 10% !important;
	}
	#gallery-1 {
	  margin: auto;
	  display: flex;
	  flex-wrap: wrap;
	}
	#gallery-1 .gallery-item {
	  width: 100% !important;
	  max-width: unset;
	  padding: 0 !important;
	  padding-left: 0 !important;
	  padding-right: 0 !important;
	}

	#gallery-1 .gallery-item:nth-child(1n), #gallery-1 .gallery-item:nth-child(2n), #gallery-1 .gallery-item:nth-child(3n) {
		padding-left: 0 !important;
	  	padding-right: 0 !important;
	}
}



/*CARROUSEL*/
.carousel-dots {
	text-align: center;
	margin-top: 20px;
}
.carousel-dot {
	display: inline-block;
	padding-right: 10px;
	padding-left: 10px;
	cursor: pointer;
}


.chantier-cards {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-between;
}

.chantier-cards .thumbnail img {
	max-height: 250px;
}

.chantier-cards .card {
  width: calc(32% - 10px);
  		margin-bottom: 20px;
  	margin-bottom: 80px;
}
/*
.chantier-cards .card:nth-child(4n+3) {
  	margin-right: 4%;
}

.chantier-cards .card:not(:first-of-type):nth-child(3n+1) {
  	margin-left: 4%;
}*/

.chantier-cards .card {
  	width: calc(32% - 10px);
  	margin-bottom: 80px;
  	display: flex;
  	flex-direction: column;
}

@media (max-width: 1200px) {
	.chantier-cards .card {
	  width: 48%;
	  margin-bottom: 70px;
	}
	.chantier-cards {
	  justify-content: space-around;
	}
	.chantier-cards .card:nth-child(3n+3) {
	  margin-right: unset;
	}

	.chantier-cards .card:not(:first-of-type):nth-child(3n+1) {
	  margin-left: unset;
	}
}
@media (max-width: 900px) {
	.chantier-cards .card {
	  width: calc(80%);
	  margin-bottom: 70px;
	}
}

/*TIMELINE SHORTCODE*/
#timeline {
    margin-bottom: 330px;
}

#timeline >div:first-of-type img {
	background: url(<path-to-image>), lightgray 50% / cover no-repeat;
	box-shadow: 0px 4px 104px 0px rgba(131, 175, 234, 0.33);
	width: 450px;
    height: 450px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
	transform: translateY(125px);
  	mask-image: url(img/timeline_img_mask.png);
  	-webkit-mask-image: url(img/timeline_img_mask.png);
  	mask-position: center bottom;
  	-webkit-mask-position: center bottom;
}
.timeline_cards {
	display: flex;
	position: absolute;
	left: 50%;
	transform: translateX(-225px);
	transition: transform 0.3s ease;
	margin-top: 12px;
}
.timeline_cards .card {
	position: relative;
	width: 450px;
	margin-right: 50px;
}

.timeline_ellipse {
	position: absolute;
	top: 210px;
}

.timeline_cards .card .date {
	color: var(--color-accent);
	display: block;
	text-align: center;
	text-shadow: 0px 4px 56px 0px rgba(97, 215, 241, 0.91);
	margin: 0;
	font-size: 40px;
}

.timeline_cards .card .title {
	color: var(--color-main);
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 22px;
	margin: 0;
}
.timeline_cards .card svg {
	position: absolute;
	left: 50%;
	top: -15px;
  	transform: translate(-50%, -50%);
}
.timeline_controller {
	position: relative;
	width: 100%;
	top: 110px;
}
.timeline_controller svg {
	cursor: pointer;
	fill: var(--color-accent);
}
.timeline_controller svg:last-of-type {
	position: absolute;
	right: -70px;
}
.timeline_controller svg:first-of-type {
	left: -70px;
	position: absolute;
}
.timeline_cards .card:not(.active) {
  opacity: 0.5;
  border: none !important;
}

@media (max-width: 1200px) {

}
@media (max-width: 1110px) {
	#timeline div:first-of-type img {
		transform: translateY(90px);
		width: 400px;
		height: 420px;
	}
	#timeline >div:nth-of-type(2) {
		height: 270px;
	}
	#timeline div:nth-of-type(2) img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		max-width: unset;
	}
	.timeline_controller {
		position: relative;
		width: 150px;
		top: -150px;
		margin: 0 auto;
	}
}



/*VIDEO*/
video, #audio_controller {
  visibility: hidden;
}
#audio_controller {
	position: absolute;
	bottom: 10px;
	left: 10px;
	cursor: pointer;
}
#audio_controller path {
	fill: #fff;
	
}

/*SUPLEMENTARY ICONS*/
#top #icon, #top #supplementary_icons{
	display: inline-block;
	margin-top: 40px;
}
#top #supplementary_icons{
	position: fixed;
	top: 0;
	right: 45px;
	z-index: 1000;
	display: flex;
}
#top #supplementary_icons #gestal_language a > * {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

/*LANGUAGE*/

#top #supplementary_icons #gestal_language {
	position: relative;
}
#top #supplementary_icons #gestal_language p {
	margin-top: 0;
	margin-bottom: 0;
}
#top #supplementary_icons #gestal_language a {
	position: relative;
	display: inline-block;
	margin-left: 22px;
}
#top #supplementary_icons #gestal_language > a img:last-of-type {
	position: absolute;
	top: 9px;
	left: 22px;
}
#top #supplementary_icons #gestal_language_sub_menu {
  position: absolute;
  left: 0;
  top: 35px;
  display: none;
}
#gestal_language >img:first-of-type {
	position: absolute;
	left: -10px;
}

/*REECRITURE WP-CONTACT*/
.wpcf7 form .wpcf7-response-output {
	font-family: 'Poppins';	
}

