:root{
	--noir: rgb(40, 40, 50);
	--blanc: #f2f1ec;
	--gris: rgb(110, 110, 120);
	--gris-clair: rgb(130, 157, 163);
	--rouge: rgb(255,20, 20);
	--orange: #FF8449;
	--jaune: #41c1ba;
	--bleu: #365b6d;
	--vert: #6C9286;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}

html, body{
  font-size: 100%;
  font-family: helvetica, arial, sans-serif;
  background: var(--blanc);
	overflow-x: hidden;
	color: var(--noir);
}

.noir{
  background: var(--noir);
}
.blanc{
  background: var(--blanc);
}
.gris{
  background: var(--gris);
}
.gris-clair{
  background: var(--gris-clair);
}
.rouge{
  background: var(--rouge);
}
.orange{
  background: var(--orange);
}
.jaune{
  background: var(--jaune);
}
.bleu{
  background: var(--bleu);
}
.vert{
  background: var(--vert);
}


h1 a{
	color: rgba(20,20,20,.5);
	font-weight: 900;
	transition: color .4s linear;
}

h1 a:hover{
	color: rgba(20,20,20,.7);
}

h2{
  padding: 1rem 0;
}

.typo-big {
	font-size: 110%;
	line-height: 1.7rem;
}

p.typo-big {
	font-size: 110%;
	line-height: 1.7rem;
	margin-top: 1rem;
}

.chapo{
	padding-top: 1rem;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: -.05rem;
}

.typo-fond-rouge{
	font-size: 110%;
	background: var(--rouge);
	color: var(--blanc);
	margin: 1rem 0;
	padding: 5px 10px;
	width: 50%;
}

.row {
   width: 100%;
} 
/* Clear floats after the columns */
.row:after {
  clear: both;
}
.column {
  float: left;
  width: 50%;
}
#contenugauche {
	margin: 5%;
}

button {
  border: 0;
	margin-top: 20px;
	}

button a{
  line-height: 2.5;
	text-decoration: none;
  font-size: 1rem;
  text-align: center;
	 text-transform: uppercase;
  color: var(--blanc);
	padding: 0 10px;
  background-color: rgba(50,50,50,.7);
	transition: background-color .4s linear;
	float: right;
}

button a:hover, button a:active{
	background-color: rgba(50,50,50,1);
}


/* HEADER *************************************/

main{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
}


section{
  display: flex;
  justify-content: center;
  align-content: center;
}

#fonctions {
	width: 80%;
	margin: 10px auto;
	text-align: center;
	cursor: crosshair; 
}


.imgeffet {
  display: inline-flex;
  margin: 8px auto;
  width: 15%;
  min-width: 100px;
  max-width: 320px;
}

.imgeffet img {
  transition: all 0.3s;
  box-sizing: border-box;
  max-width: 100%;
  margin: 8px auto;
}

.imgeffet:hover img{
  transform: scale(1.3) rotate(5deg);
}

/* GRILLE ***************************************/

.assistance-wrapper, .formation-wrapper, .location-wrapper, .coding-wrapper{
	margin-top: 80px;
}

.titre{
	min-width: 50%;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	padding: 2%;
}

.titre h1{
	text-align: center;
	font-family: serif;
	font-size: 4rem;
	font-style: italic;
	font-weight: 400;
	letter-spacing: -.1rem;
	line-height: 4.3rem;
	color: var(--blanc);
}

.titre img, .txt-assistance img, .txt-formation img, .txt-location img, .txt-codingrobot img{
	display: block;
	width: 15%;
	margin: 0 auto 2rem;;
}

.txt-assistance, .txt-formation, .txt-location, .txt-codingrobot{
	padding: 10% 5%;
}

/* COMPETENCES ***************************************/

.competences{
  padding:5% 0;
  color: var(--blanc);
}

.competences > div{
  width: 25%;
  text-align: center;
}

.comp, .ouv, .ecou{
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  border: solid 5px var(--blanc);
}

.comp{
  background: var(--bleu) url("../../assets/images/signs-post.svg") no-repeat center ;
  background-size: 60% auto;
}

.ouv{
  background: var(--jaune) url("../../assets/images/binoculars.svg") no-repeat center ;
  background-size: 60% auto;
}

.ecou{
  background: var(--vert) url("../../assets/images/headset.svg") no-repeat center ;
  background-size: 60% auto;
}

#imageappli {
	display: flex; 
	justify-content: space-between; 
	width: 100%; 
	margin-top : 180px; 
	background-color: gray; 
	z-index: 1; 
	text-align: center;
	}

#textfonction {
	z-index:100; width:100%;  height: 5%; margin : 0 auto; background-color: gray; text-align: center; 
	opacity: 100%;}
	
#montext {
	font-size: 3em; color: white;
}

#txtintro {
	margin: 20px 0;
	}
	
/* RESPONSIVE ****************************************/

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

	main{
		grid-template-columns: 1fr;
	}

  .column {
    width: 100%;
  }
  
  
	#imageappli {
	margin-top : 70px; 
	}
	
	div.titre.vert{
		padding: 4rem 0 0;
	}

	#montext {
	font-size: 1em;
	}
	
	#txtintro {
		margin: 10px 0;
		font-size: 0.7em;
	}
	
	div.titre.orange{
		grid-row: 3/4;
	}

	div.titre.bleu{
		grid-row: 7/8;
	}

	section{
		flex-direction: column;
	}

	.competences > div{
		width: 100%;
		margin: 20px auto;
	}

	.comp, .ouv, .ecou{
		background-size: 60% auto;
	}

	h1 a{
		font-size: 1.5rem;
	}

	.assistance-wrapper, .formation-wrapper, .location-wrapper, .coding-wrapper {
	  padding-top: 2rem;
	}

	.titre img, .cartouche-assistance img, .cartouche-formation img, .cartouche-location img, .cartouche-coding img{
		margin: 1rem auto .5rem !important;
		width: 25% !important;
	}

	.titre h1 {
	  font-size: 2.5rem;
	  line-height: 2.5rem;
		padding: 0 0 1rem;
	}

	.txt-assistance, .txt-formation, .txt-location, .txt-coding{
		height: 100%;
		padding: 20px;
	}

	.cartouche-assistance h1, .cartouche-formation h1, .cartouche-location h1, .cartouche-coding h1{
		font-size: 2.3rem !important;
		line-height: 2.3rem  !important;
		padding: 0 0 .5rem  !important;
	}

	.titre{
		min-width: 100%;
	}
	
	
	
}
