/*===========================================================
 * Copyright 2024 Diano Di Matteo
===========================================================*/

/*************************** Font */

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500');


/*************************** Main */
:root {
	--main-color: #224AB3;
  }

body{
	background-color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	color: #4c4c4c;
	font-size: 18px;
}

::selection {
  background: #224bb380;
} 

::-moz-selection {
	background: #224bb380;
}

a, a:visited{
	color: #4c4c4c;
	text-decoration: none;
	transition: color 0.25s ease-in-out;

}

a:hover {
	color: var(--main-color);
}

.check_bullet{
    width: 16px;
    float: left;
}

.global_section{
	width: 100%;
	padding-top: 140px;
	padding-bottom: 140px;
	float: left;
}

.container{
	/*width: 1140px;*/
	width: 100%;
	position: relative;
	left: 50%;
	transform: translate(-50%);
	padding-right: 80px;
	padding-left: 80px;
}

.container_small_2{
	width: 800px;
	position: relative;
	left: 50%;
	transform: translate(-50%);
}

.container_small_1{
	width: 555px;
	position: relative;
	left: 50%;
	transform: translate(-50%);
}

.section{
	width: 100%;
	float: left;
}

.row{
	width: 100%;
	float: left;
}

.col_1{
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
	box-sizing: border-box;
	float: left;
	width: 100%;
}

.col_2{
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
	box-sizing: border-box;
	float: left;
	width: 50%; /*mettre 100% ici pour la version mobile !!!*/
}

.col_3{
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
	box-sizing: border-box;
	float: left;
	width: 33.333%; /*mettre 100% ici pour la version mobile !!!*/
}


/*************************** Text */


h1{
	text-align: center;
	font-weight: 300;
	font-size: 40px;
}

.h1_bar{
	position: relative;
	margin-top: 5px;
	width: 60px;
	height: 2px;
	background-color: var(--main-color);
	left: 50%;
	transform: translate(-50%);
}

.title{
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0px;
	margin-top: 0px;
}

p {	
	line-height: 22px;
}


/*************************** Header */

#header{
	padding: 0px;
	height: 100%;
	background-image: url(assets/other/BG_Grey_02.jpg);
	background-repeat: no-repeat;
	background-size: cover; /* Changed from 350px to cover */
	background-position: center;
}

#header_bar {
	z-index: 100;
	position: fixed;
	width: 100%;
	height: 92px;
	transition: all 0.5s ease-in-out;
	background-color: white;
}

#header_bar_logo{
	position: absolute;
	top: 50%;
	transform: translate(0%,-50%);
	left: 25px;
	height: 60px;
	transition: all 0.5s ease-in-out;
}

#header_bar ul{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	width: 700px;
}

#header_bar li{
	margin-right: 10px;
	margin-left: 10px;
	display: inline-block;
}

.li_bar{
	position: relative;
	top: 1px;
	width: 0px;
	height: 2px;
	background-color: #4c4c4c;
	left: 50%;
	transform: translate(-50%);
	transition: all 0.35s ease-in-out;
	opacity: 0;
}

#header_bar ul a, #header ul a:visited{
	transition: color 0.45s ease-in-out;
}

#header_bar #menu_mobile.base ul a{
	color: white;
}
#header_bar #menu_mobile.base ul a.li_active{
	color: var(--main-color);
}

#header_bar a:hover .li_bar{
	width: 40px;
	background-color: var(--main-color);
	opacity: 1;
}

/*active function with js for highlight nav*/

#header_bar .li_active .li_bar{
	width: 40px;
	background-color: var(--main-color);
	opacity: 1;
}

#header_bar .li_active{
	color: var(--main-color);
}

#header_bar .li_active_click .li_bar{
	width: 40px;
	background-color: var(--main-color);
	opacity: 1;
}

#header_bar .li_active_click{
	color: var(--main-color);
}
/*active end*/

#linkedin_header svg{
	right: 61px;
}

#facebook_header svg{
	right: 25px;
}

.header_social_icon svg{
	height: 24px;
	width: 24px;
	position: absolute;
	top: 50%;
	transform: translate(0%,-50%);
}

.header_social_icon:hover .st0{
	fill: var(--main-color);
}

/* #main_logo{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 460px;
	transform: translate(-50%,-50%);
	height: 2550px;
	background-image: url(assets/logo/logo_ldm_white_color.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all 0.7s ease-in-out;
} */
#main_logo{
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: all 0.7s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
}

#main_logo img {
	width: 500px;
	height: 500px;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.9));
}

#mode_facile{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	transform: translate(-50%,-50%);
	height: 800px;
	background-image: url(assets/other/event-slogan-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0;
	transition: all 0.7s ease-in-out;
}

#mouse{
	position: absolute;
	bottom: 20px;
	left: 50%;
	width: 44px;
	height: 44px;
	transform: translate(-50%);
	background-image: url(assets/other/mouse.svg);
	background-repeat: no-repeat;
	background-position: center;
}


/*************************** Prestations */

#prestations{
	background-color: #ffffff;
}

#prestations .icon{
	height: 65px;
	position: relative;
	left: 50%;
	transform: translate(-50%);
}

#prestations h2{
	margin-top: 30px;
	text-align: center;
	font-weight: 300;
	font-size: 30px;
	color: var(--main-color);
}

#prestations .section_margin{
	margin-top: 120px;
}

/*---------*/

#prestations_1 p{
	position: relative;
	top: -2px;
	width: calc(100% - 30px);
	margin-top: 0px;
	margin-bottom: 0px;
	float: right;
}

/*---------*/

#prestations_2 p{
	position: relative;
	top: -2px;
	width: calc(100% - 30px);
	margin-top: 0px;
	margin-bottom: 0px;
	float: right;
}
#prestations_3 p{
	position: relative;
	top: -2px;
	width: calc(100% - 30px);
	margin-top: 0px;
	margin-bottom: 0px;
	float: right;
}

/*---------*/

#prestations_3 h3{
	margin-top: 0px;
	font-size: 18px;
	color: var(--main-color);
	font-weight: 500;
}

/*************************** gallery */

.gallery {
	width: 100%;
	float: left;
  }

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 80%;
  position: relative;
  margin: auto;
}
  
  .gallery img {
	width: 100%; /* Make images fill their containers */
	height: 100%; /* Make images fill their containers */
	object-fit: cover; /* Ensure the images cover the area without losing aspect ratio */
	aspect-ratio: 3 / 2; /* Makes the image containers square */
  }

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -33px;
  padding: 16px;
  color: white;
  font-size: 35px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.6);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.dot-container{
	margin-top: -10px;
	text-align: center;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 14px;
  width: 14px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: var(--main-color);
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

  .outline-button {
	background-image: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
	color: black;
	padding: 2px;
	display: block;
	margin: auto;
	border-radius: 25px;
	overflow: hidden;
	transition: color 0.4s;
	margin-top: 50px; /*gerer ici le margin top du bouton insta*/
	border: none;
}

.outline-button svg {
	height: 20px;
	margin-right: 10px;
	margin-block-start: 0;
	margin-block-end: 0;
}

.outline-button p {
	padding: 0;
	margin-block-start: 0;
	margin-block-end: 0;
}
.insta-btn-content {
	padding: 10px 20px;
	background-color: white;
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.insta-btn-content:hover {
	background-color: transparent;
	color: white;
}

.insta-btn-content:hover svg .st0 {
	fill: white;
}

.gallery-button {
	display: block; /* Makes the button a block-level element to apply margin auto */
	margin: 0 auto; /* Centers the button horizontally */
	padding: 10px 20px; /* Adjust button padding to your preference */
	font-size: 16px; /* Adjust button font size to your preference */
	cursor: pointer; /* Changes the cursor to pointer when hovering over the button */
	margin-top: 20px;
	width: 150px;
	padding: 10px;
	background-color: red;
	color: #fff;
	transition: background-color 0.3s ease-in-out;
	border: none;
  }

  .gallery-button:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19); /* Optional: Changes the shadow on hover */
  }

  .gallery-button:hover {
	background-color: var(--main-color);
  }

/*************************** Valeurs */

/* #valeurs{
	background-image: url(assets/other/bg.png);
	background-repeat: repeat;
	background-size: 350px;
	background-position: center;
} */
#valeurs{
	background-color: var(--main-color);
}

#valeurs .icon{
	height: 52px;
	position: relative;
	left: 50%;
	transform: translate(-50%);
}

#valeurs h1{
	color: white;
}
#valeurs .h1_bar{
	background-color: white;
}

#valeurs h2{
	margin-top: 35px;
	text-align: center;
	font-weight: 300;
	font-size: 30px;
	/* color: var(--main-color); */
	color: white;
}

#valeurs .section_margin{
	margin-top: 100px;
}

#valeurs p{
	width: 100%;
	margin-top: 40px;
	margin-bottom: 0px;
	color: white;
}

#valeurs .col_3{
	padding: 25px;
}


/*************************** Portrait */

#portrait{
	background-color: #ffffff;
}

#portrait .section_margin{
	margin-top: 60px;
}

#portrait h2{
	text-align: center;
	margin-top: 0px;
	font-size: 30px;
	color: var(--main-color);
	font-weight: 300;
}

#portrait p{
	width: 100%;
	float: right;
	margin-top: 0px;	
	margin-bottom: 0px;
}

#portrait .col_2{
	float: left;
}

#img_portrait{
	width: 100%;
	height: 610px;
	float: left;
	background-image: url(assets/other/livio.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
}


/*************************** Tarifs */

/* #tarifs{
	background-image: url(assets/other/bg.png);
	background-repeat: repeat;
	background-size: 350px;
	background-position: center;
} */
#tarifs{
	background-color: var(--main-color);
}
#tarifs .section_margin{
	margin-top: 120px;
}

#tarifs h1{
	color: white;
}
#tarifs .h1_bar{
	background-color: white;
}



#tarifs h3{
	margin-top: 0px;
	font-size: 18px;
	/* color: var(--main-color); */
	color: white;
	font-weight: 600;
}

#tarifs p{
	width: 100%;
	float: right;
	margin-top: 20px;	
	margin-bottom: 0px;
	color: white;
}

#tarifs 


/*************************** Contact */

#contact{
	background-color: #ffffff;
}

#contact .section_margin{
	margin-top: 100px;
}

#contact h3{
	margin-top: 20px;
	font-size: 18px;
	color: var(--main-color);
	font-weight: 500;
	text-align: center;
}

#contact .icon{
	height: 52px;
	position: relative;
	left: 50%;
	transform: translate(-50%);
}

#contact p{
	width: 100%;
	margin-top: 20px;
	margin-bottom: 0px;
	text-align: center;
}

#contact input{
	width: calc(100% - 20px); /*100% - padding x2*/
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 0px;
    color: #4c4c4c;
    background-color: #E5E5E5;
    border: none;
}

input::placeholder {
    color: #B0B0B0;
}

#contact input:focus{
    background-color: #eeeeee;
    outline: none;
}

#contact textarea{
	width: calc(100% - 20px); /*100% - padding x2*/
	padding: 10px;
	height: 200px;
	margin-top: 10px;
	margin-bottom: 0px;
    color: #4c4c4c;
    background-color: #E5E5E5;
    resize: none;
    border: none;
}

textarea::placeholder {
    color: #B0B0B0;
}

#contact textarea:focus{
    background-color: #eeeeee;
    outline: none;
}

#contact #submit-button{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 0px;
    color: #fff;
    background-color: #4C4C4C;
    resize: none;
	transition: background-color 0.3s ease-in-out;
}

#contact #submit-button:hover{
    background-color: var(--main-color);
}


/*************************** Footer */

#footer{
	background-color: #4c4c4c;
	padding-top: 60px;
	padding-bottom: 60px;
}

#font_awsome{
	margin-top: 8px;
	width: 220px;
	float: left;
	margin-bottom: 0px;
	transition: color 0.2s ease-in-out;
}

#font_awsome:hover{
	color: var(--main-color);
}

.footer_social_icon svg{
	height: 24px;
	width: 24px;
	float: right;
}

#linkedin_footer svg{
	opacity: 1;
}

#facebook_footer svg{
	margin-right: 10px;
}

.footer_social_icon:hover .st1{
	fill: var(--main-color);
}

#footer #line{
	margin-top: 10px;
	width: 100%;
	float: left;
	height: 1px;
	background-color: #fff;
}

#copyright{
	width: 100%;
	float: left;
	margin-top: 10px;
	margin-bottom: 0px;
	color: white;
}

#footer a{
	color: #fff;
	transition: color 0.2s ease-in-out;
}

#footer a:hover{
	color: var(--main-color);
}

#copyright a{

	text-decoration: underline;
}


























/*******************/
/*Border activation*/
/*******************/


/*


.container{
	border: green 1px solid;
}

.container_small_2{
	border: green 1px solid;
}

.container_small_1{
	border: green 1px solid;
}

.section{
	border: blue 1px solid;
}

.row{
	border: red 1px solid;
}

.col_1{
	border: orange 1px solid;
}

.col_2{
	border: orange 1px solid;
}

.col_3{
	border: orange 1px solid;
}

*/



@media screen and (min-width: 1500px) {

	.container{
		width: 1500px;
	}

}

@media screen and (min-width: 0px) and (max-width: 1100px) {

	.container{
		padding-right: 40px;
		padding-left: 40px;
	}
	
	#valeurs .col_3{
		margin-top: 30px;
		margin-bottom: 30px;
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		padding: 0px;
		width: 600px;
		padding-right: 75px;
		padding-left: 75px;
	}
	
	/*header*/	
	#mode_facile{
		width: 450px;
		height: 240px;
	}
	
	#mouse{
		bottom: 15px;
		width: 36px;
		height: 36px;
	}

}

@media screen and (min-width: 0px) and (max-width: 860px) {

	.container{
		padding-right: 30px;
		padding-left: 30px;
	}
	
	#prestations_3 .col_3{
		position: relative;
		width: 450px;
		left: 50%;
		transform: translateX(-50%);
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.container_small_2{
		width: 100%;
		padding-right: 30px;
		padding-left: 30px;
	}
	
	#portrait .section_margin{
		margin-top: 60px;
	}
	
	#portrait p{
		position: relative;
		width: 450px;
		float: left;
		left: 50%;
		transform: translateX(-50%);
	}
	
	#portrait .col_2{
		width: 100%;
	}
	
	#img_portrait{
		height: 600px;
	}

	#header_bar {
		opacity: 1;
		background-color: #fff;
	}
	
	/* #header, #valeurs, #tarifs, #footer{
		background-size: 300px;
	} */
	
	#header_bar {
		height: 92px;
	}
	
	#header_bar_logo{
		left: 50%;
		transform: translate(-50%,-50%);
		height: 45px;
	}
	
	#burger{
		z-index: 100;
		position: relative;
		top: 50%;
		left: 25px;
		transform: translate(0%,-50%);
		width: 40px;
		height: 30px;
		cursor: pointer;
	}
	
	.burger_line{
		position: absolute;
		width: 100%;
		height: 5px;
		background-color: #4c4c4c;
		opacity: 1;
		transition: all 0.5s ease-in-out;
	}
	
	#burger :nth-child(1){
		top: 0px;
	} 
	
	#burger :nth-child(2){
		top: 50%;
		transform: translateY(-50%);
	}
	
	#burger :nth-child(3){
		bottom: 0px;
	}
	
	#burger :nth-child(1).burger_active{
		top: 50%;
		transform: rotate(45deg) translateY(-75%);
	}
	
	#burger :nth-child(2).burger_active{
		opacity: 0;
	}
	
	#burger :nth-child(3).burger_active{
		bottom: 50%;
		transform: rotate(-45deg) translateY(75%);
	}
	
	#burger:hover .burger_line{
		background-color: var(--main-color);
	}
	
	#menu_mobile{
		top: 0px;
		visibility: hidden;
		z-index: 50;
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: #fff;
		opacity: 0;
		transition: all 0.5s ease-in-out;
	}
	
	.menu_mobile_active{
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	#header_bar ul{
		position: fixed;
		text-align: center;
		width: 100%;
		height: none;
	}
	
	#header_bar li{
		margin-top: 10px;
		margin-bottom: 10px;
		margin-right: 0px;
		margin-left: 0px;
		font-size: 26px;
		display: block;
	}

	#header_bar #menu_mobile.base ul a{
		color: #4c4c4c;
	}
	#header_bar #menu_mobile.base ul a.li_active{
		color: var(--main-color);
	}

	.prev, .next {
	  font-size: 25px;
	  padding: 12px;
	  margin-top: -25px;
	}

	.dot {
	  height: 11px;
	  width: 11px;
	  margin: 0 1.5px;
	}
}

@media screen and (min-width: 0px) and (max-width: 775px) {
	
	/*header*/
	
	#mouse{
		visibility: hidden;
	}
	
	/*header*/
	
	#linkedin_header svg{
		right: 50px;
	}
	
	#facebook_header svg{
		right: 20px;
	}
	
	.header_social_icon svg{
		height: 20px;
		width: 20px;
	}
	
	
	#mode_facile{
		width: 325px;
		height: 150px;
	}
	
	#header_bar {
		height: 60px;
	}
	
	#header_bar_logo{
		height: 35px;
	}
	
	#burger{
		left: 20px;
		width: 33px;
		height: 25px;
	}
	
	.burger_line{
		height: 4px;
	}
	
	#header_bar li{
		margin-top: 10px;
		margin-bottom: 10px;
		font-size: 25px;
	}

}

@media screen and (min-width: 0px) and (max-width: 725px) {

	#contact .col_3{
		width: 100%;
	}

	/* #header, #valeurs, #tarifs, #footer{
		background-size: 250px;
	} */
	
}

@media screen and (min-width: 0px) and (max-width: 650px) {

	.slideshow-container {
	  width: 100%;
	}

	.container{
		padding-right: 30px;
		padding-left: 30px;
		width: 470px;
	}
	
	.container_small_2{
		width: 470px;
		padding-right: 30px;
		padding-left: 30px;
	}
	
	.container_small_1{
		width: 100%;
	}
	
	.col_2, .col_3, .col_1{
		position: relative;
		width: 100%;
		left: 50%;
		transform: translateX(-50%);
		padding-left: 0px;
		padding-left: 0px;
	}
	
	#prestations_3 .col_3{
		width: 100%;
	}
	
	#valeurs .col_3{
		width: 100%;
		padding-right: 0px;
		padding-left: 0px;
	}
	
	#portrait p{
		width: 100%;
	}
	
	
	/*font size / margin/padding Y / icon size*/
	
	.global_section{
		padding-top: 120px;
		padding-bottom: 120px;
	}
	
	.section_margin{
		margin-top: 70px !important;
	}
	
	.col_1, .col_2, .col_3{
		padding-top: 15px;
		padding-bottom: 15px;
	}
	
	#prestations_3 p, #tarifs p, #contact p{
		margin-top: 12px;
	}

	.gallery {
		grid-template-columns: 1fr; /* This changes the gallery to a single column layout */
	  }
	
	h1{
		font-size: 36px;
	}
	
	h2{
		font-size: 25px !important;
	}
	
	.icon{
		height: 48px !important;
	}

}

@media screen and (min-width: 0px) and (max-width: 470px) {

	.container{
		padding-right: 30px;
		padding-left: 30px;
		width: 100%;
	}
	
	.container_small_2{
		width: 100%;
	}
	

	
	/*font size / margin/padding Y / icon size*/
	
	.global_section{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.section_margin{
		margin-top: 55px !important;
	}
	
	.col_1, .col_2, .col_3{
		padding-top: 12px;
		padding-bottom: 12px;
	}
	
	#prestations_3 p, #tarifs p, #contact p{
		margin-top: 8px;
	}
	
	h1{
		font-size: 33px;
	}
	
	h2{
		font-size: 23px !important;
	}
	
	h3{
		font-size: 16px !important;
		line-height: 18px !important;
	}
	
	p {
		font-size: 16px !important;
		line-height: 18px !important;
	}
	
	.icon{
		height: 46px !important;
	}
	
	#font_awsome{
		font-size: 16px;
		width: 70%;
	}
	
	#footer{
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	/*contact form*/
	
	#contact input{
		width: calc(100% - 16px); /*100% - padding x2*/
		padding: 8px;
		margin-top: 10px;
		font-size: 16px;
	}
	
	#contact textarea{
		width: calc(100% - 16px); /*100% - padding x2*/
		padding: 8px;
		height: 180px;
		margin-top: 10px;
		font-size: 16px;
		line-height: 18px;
	}
	
	#contact #submit-button{
		width: 125px;
		padding: 8px;
		margin-top: 5px;
	}
	
	/*header*/
	
	

	#main_logo img {
		width: 300px;
		height: 300px;
	}
	
	#mode_facile{
		top: 37.5%;
		width: 315px;
		height: 140px;
	}
	
	#header{
		height: 75%;
	}
	
	/* #header, #valeurs, #tarifs, #footer{
		background-size: 200px;
	} */

}

@media screen and (min-width: 0px) and (max-width: 400px) {

	.container{
		padding-right: 20px;
		padding-left: 20px;
	}
	
	.container_small_2{
		padding-right: 20px;
		padding-left: 20px;
	}
	

	
	
	/*font size / margin/padding Y / icon size*/
	
	.global_section{
		padding-top: 90px;
		padding-bottom: 90px;
	}
	
	.section_margin{
		margin-top: 30px !important;
	}
	
	.col_1, .col_2, .col_3{
		padding-top: 10px;
		padding-bottom: 10px;
	}
	
	#prestations_3 p, #tarifs p, #contact p{
		margin-top: 4px;
	}
	
	h1{
		font-size: 25px;
	}
	
	h2{
		font-size: 20px !important;
	}
	
	h3{
		font-size: 14px !important;
		line-height: 17px !important;
	
	}
	
	p {
		font-size: 14px !important;
		line-height: 17px !important;
	}
	
	.icon{
		height: 42px !important;
	}
	
	#font_awsome{
		font-size: 14px;
	}
	
	#footer{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	
	/*contact form*/
	
	#contact input{
		width: calc(100% - 12px); /*100% - padding x2*/
		padding: 6px;
		margin-top: 6px;
		font-size: 14px;
	}
	
	#contact textarea{
		width: calc(100% - 12px); /*100% - padding x2*/
		padding: 6px;
		height: 150px;
		margin-top: 6px;
		font-size: 14px;
		line-height: 17px;
	}
	
	#contact #submit-button{
		width: 100px;
		padding: 6px;
		margin-top: 1px;
	}
	
	/*header*/
	

	
	#mode_facile{
		width: 275px;
		height: 120px;
	}
	
	#header_bar {
		height: 55px;
	}
	
	#header_bar_logo{
		height: 30px;
	}
	
	#burger{
		left: 20px;
		width: 29px;
		height: 22px;
	}
	
	.burger_line{
		height: 3.5px;
	}
	
	#header_bar li{
		font-size: 22px;
	}

}

@media screen and (min-width: 0px) and (max-width: 330px) {
	
	#mode_facile{
		width: 80%;
		height: 120px;
	}
	
	#linkedin_header svg{
		right: 47px;
	}
	
	.header_social_icon svg{
		height: 18px;
		width: 18px;
	}

}

























