/*------------Attributs généraux------------*/

/* !!!NE JAMAIS TOUCHER LES MARGES LATERALES DE BOOTSTRAP!!!*/

/*Typo AVENIR avec https://transfonter.org/*/

@font-face {
    font-family: 'Avenir LT Std';
    src: url('fonts/AvenirLTStd-Roman.woff2') format('woff2'),
        url('fonts/AvenirLTStd-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'Avenir LT book';
    src: url('fonts/AvenirLTStd-Book.woff2') format('woff2'),
        url('fonts/AvenirLTStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Avenir LT Std';
    src: url('fonts/AvenirLTStd-Medium.woff2') format('woff2'),
        url('fonts/AvenirLTStd-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


/*keyframe animation flèche bas "decouvrez nos solutions"*/
@keyframes shake {
  0%,
  100% {
    transform: translateY(0);
  }

  10%,
  30%,
  50%,
  70% {
    transform: translateY(-8px);
  }

  20%,
  40%,
  60% {
    transform: translateY(8px);
  }

  80% {
    transform: translateY(6.4px);
  }

  90% {
    transform: translateY(-6.4px);
  }
}

/*keyframe flèche pour remonter*/
@keyframes vibrate {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

img{
	max-width: 100%; /*pour adapter les images en fonction de la taille de l'écran*/
	height: auto; /* ->facilite le responsive*/
}

.retour{
	clear: both;
}

body{
	font-family: 'Avenir LT Std';
	color: #454545;
	background: #FCFCF7;
	overflow-x: hidden; /*coupe tout ce qui dépasse sur x=pour éviter les ascenceurs horizontaux*/
}

strong{
	font-weight: 600;
}

.btn_violet{
	background: #951B81;
	border-radius: 0;
	color: #FFFFFF!important;
	padding: 5px 15px!important;
}

.btn_violet:hover{
	background: #BD74AF;
}

.btn_violet:after{
	display: none!important; /*pour enlever le trait en hover uniquement sur ce bouton*/
}

/*------------nav------------*/

header{
	background: #FCFCF7;
	position: -webkit-sticky; /*pour avoir le "sticky menu"*/
	position: sticky;
	top: 0;
	z-index: 999;
}

.bg-light{
	background-color: #FCFCF7 !important;
}


.navbar-light .navbar-nav .nav-link{
	color: #454545;
	margin: 0 15px;
	padding: 0;
	font-size: 17px;
	position: relative;
}

a.nav-link:after{ /*pour ajouter un trait en hover*/
	content: "";
	position: absolute;
	display: block;
	height: 2px;
	width: 0%;
	background: #BD74AF;
	left: 0px;
	transition:all 0.4s;
}

a.nav-link:hover:after{
    width: 100%;
}

.navbar-brand{
	width: 200px;
	height: auto;
}

i{ /*fontawesome*/
	color: #454545;
	font-style: normal;
	font-size: 30px;
}

i:hover{
	color: #BD74AF;
}

#reseaux a{
	margin: 0 5px;
	text-decoration: none;
}


/*------------accueil------------*/

#accueil{
	background: #FFFFFF;
	position: relative;
	margin: auto;
	overflow: hidden; /*overflow hidden=la div se comporte comme un masque -> les éléments qui dépassent sont coupés*/
}

#accueil img{
	display: block;
	margin: auto;
}

h1{
	color: #951B81;
	font-family: 'Abril Fatface', cursive; /*google font -> lien dans le head*/
	font-size: 6vw; /* vw=pour adapter la taille en fonction de l'écran*/
	text-align: center;
	padding: 35px 0;
	position: relative;
	z-index: 55;
}

.img_fondatrice{
	width: 650px;
	height: auto;
	float: left;
	position: relative;
	z-index: 1;
}

.img_guillemets{
	margin: auto;
	position: absolute; 
	z-index: 40;
	left: 48%;
	top: 20%;
}

.img_header{
	width: auto;
	height: 100%;
	position: absolute; /*attention=toujours mettre la div "parent" en position relative*/
	left: 63%;
	top: 0;
	z-index: 50; /*z-index indique la position sur un axe de profondeur=comme des calques PS (devant=0 dernier=99)*/
}

#citation{
	margin: 30px auto;
	padding: 20px;
	width: 33%;
	background: #FCFCF7;
	position: absolute;
	left: 50%; /*position depuis la gauche de la div parent*/
	top: 28%; /*position depuis le haut de la div parent*/
	z-index: 45;
	transform: translateX(-50%); /*pour centrer un élément en position "absolute" = faire une translation de la moitié de sa taille*/
}

.citation{
	font-size: 1.5vw;
	font-style: italic;
	font-weight: 100;
}

.violet{
	color: #951B81;
	font-size: 1.2vw;
	font-weight: 300;
}

#decouvrez{
	position: absolute;
	margin: auto;
	z-index: 50;
	bottom: 10%;
	left: 42%;
	text-transform: uppercase;
	font-size: 25px;
	font-weight: 200;
}

#decouvrez img{
	padding: 10px 0;
	animation: shake 5s linear 0s infinite normal none;
}

/*------------solutions------------*/

h2{
	font-family: 'Abril Fatface', cursive;
	font-size: 8vw;
	color: #454545;
	line-height: 101%;
	letter-spacing: 1px;
	margin-bottom: -1vw;
	position: relative;
	z-index: 10;
}

.titre_droit{
	margin-bottom: -3.2vw;
	text-align: center;
}

.paragraphe{
	color: #FFFFFF;
	font-size: 1.3vw;
	font-weight: 200;
}

.paragraphe{
	width: 50%;
	margin: auto;
}

.solution{
	margin-top: 80px;
	margin-bottom: 80px;
}

/*------------hover paragraphe------------*/

#conseils:hover .paragraphe{
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

#conseils .paragraphe{
	-webkit-transition: all 0.7s ease-in;
	-moz-transition: all 0.7s ease-in;
	-ms-transition: all 0.7s ease-in;
	-o-transition: all 0.7s ease-in;
	transition: all 0.7s ease-in;
}

#formation:hover .paragraphe{
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

#formation .paragraphe{
	-webkit-transition: all 0.7s ease-in;
	-moz-transition: all 0.7s ease-in;
	-ms-transition: all 0.7s ease-in;
	-o-transition: all 0.7s ease-in;
	transition: all 0.7s ease-in;
}

#cindividuel:hover .paragraphe{
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

#cindividuel .paragraphe{
	-webkit-transition: all 0.7s ease-in;
	-moz-transition: all 0.7s ease-in;
	-ms-transition: all 0.7s ease-in;
	-o-transition: all 0.7s ease-in;
	transition: all 0.7s ease-in;
}

#cequipes:hover .paragraphe{
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

#cequipes .paragraphe{
	-webkit-transition: all 0.7s ease-in;
	-moz-transition: all 0.7s ease-in;
	-ms-transition: all 0.7s ease-in;
	-o-transition: all 0.7s ease-in;
	transition: all 0.7s ease-in;
}

/*------------conseils aux entreprises------------*/

#conseils{
	background: url("images/petale_conseil.svg") no-repeat top right #BD74AF;
	background-size: 60%;
}

/*------------formation------------*/

#formation{
	background: url("images/petale_formation.svg") -15vw 20vh no-repeat #75A7D0;
	background-size: 80%;
	overflow: hidden;
}

/*------------coaching individuel------------*/

#cindividuel{
	background: url("images/petale_cindividuel.svg") 20vw no-repeat #F6BB62;
	background-size: 80%;
	overflow: hidden;
}

/*------------coaching d'équipes------------*/

#cequipes{
	background: url("images/petale_cequipes.svg") 20vw no-repeat #BDD874;
	background-size: 80%;
	overflow: hidden;
} 

/*------------typewriter------------*/

#app{
	font-size: 68px;
	font-weight: 100;
	text-align: center;
	margin-bottom: 310px;
}

/*------------réseaux sociaux------------*/

#reseaux_contact{
	z-index: 50;
	width: 100%;
}

#reseaux2{
	text-align: center;
	top: -309px;
	position: relative;
	margin: auto;
}

#reseaux2 i{
	font-size: 50px;
	margin: 5px;
}

.titre_gris{
	font-family: 'Abril Fatface', cursive;
	font-size: 51px;
	color: #454545;
}

/*------------formulaire contact------------*/

#formulaire{
	position: relative;
	top: -240px;
}

.titre_violet{
	width: 100%;
	text-align: center;
	font-family: 'Abril Fatface', cursive;
	font-size: 7vw;
	color: #951B81;
	position: absolute;
	left: 0;
}

#form-kresko{
	background: #FFFFFF;
	padding: 180px 60px 50px 60px;
	max-width: 550px;
	margin: auto;
}

#form-kresko input[type="text"],
#form-kresko input[type="email"]{
	background: #FCFCF7;
	line-height: 200%;
}

#form-kresko textarea{
	background: #FCFCF7;
	height: 150px;
	resize: none; /*pour éviter à l'internaute d'étirer la zone de texte*/
}

.form-control{
	border-radius: 0;
}

#form-kresko button{
	display: block;
	margin: auto;
	padding: 10px 30px !important;
	text-transform: uppercase;
}

/*------------footer------------*/

.bg_blanc{
	background-color: rgba(255, 255, 255, 0.8);
}

footer p{
	text-align: center;
	margin: auto;
	font-size: 16px;
	font-weight: 200;
}

footer{
	width: 100%;
	margin-top: 600px!important;
	padding: 50px 0;
	line-height: 150%;
	position: absolute;
	bottom: 0;
	z-index: 50;
}

footer img{
	display: block;
	margin: 20px auto;
	width: 250px;
	height: auto;
}

.mentions{
	margin: 13px;
	font-size: 13px;
}

.img_footer{
	position: relative;
	z-index: 1;
}

#img_footer_576{
	display: none;
}

#footer{
	position: relative;
}


/*------------flèche qui remonte en haut du site------------*/

#arrowUp{
	position: fixed;
	bottom: 20px;
	right : 30px;
	z-index: 99;
	animation: vibrate 2s linear 0s infinite normal none;
	display: none;
}


/*------------MEDIA QUERIES------------*/

/*1200

.navbar-light .navbar-nav .nav-link {
  color: #454545;
  margin: 0px 11px;
  padding: 0;
  font-size: 14.5px;
  position: relative;

/*1400 normal

/* 1334 -> mettre menu sur une seule ligne + réduction logo réseaux*/
/* 992 -> menu burger OK -> centrer les logo réseaux sociaux dans le menue burger 
-> fixer la taille en px de la citation*/
 
@media screen and (max-width:1399px){
	
	.navbar-light .navbar-nav .nav-link{
		margin: 0px 11px;
  		font-size: 14.5px;
	}
	
	#decouvrez{
		z-index: 60;
		font-size: 24px;
	}
	
	.titre_gris{
		font-size: 46px;
	}
	
}

@media screen and (max-width:1199px){
	
	.navbar-light .navbar-nav .nav-link {
  		margin: 12px 11px;
	}
	
	#reseaux{
		text-align: center;
		margin: 20px;
	}

	.img_guillemets {
		top: 16%;
		width: 80px;
		height: auto;
	}

	#citation {
		margin: 0;
	}

	#decouvrez {
		font-size: 22px;
		bottom: 16%;
		left: 35%;
	}

	.paragraphe {
		font-size: 18px;
	}
	
	#app {
		font-size: 55px;
	}
	
	.titre_gris {
		font-size: 38px;
	}
	
	#reseaux2 i {
		font-size: 40px;
	}

	#reseaux2 {
		top: -240px;
	}
	
	.titre_violet {
		font-size: 70px;
	}
		
	#form-kresko {
		padding: 120px 40px 10px 40px;
	}
	
	footer {
 		padding: 0;
	}
	
}


@media screen and (max-width:991px){
	
	.img_guillemets {
		top: 21%;
		width: 58px;
	}
	
	.img_fondatrice {
		width: 380px;
	}
	
	.img_header {
		left: 67%;
	}
	
	#decouvrez {
		font-size: 19px;
		bottom: 0;
	}
	
	#decouvrez img {
		width: 12%;
		height: auto;
	}
	
	#citation {
		width: 50%;
		top: 32%;
	}
	
	.citation {
		font-size: 15px;
	}

	.paragraphe {
		font-size: 15px;
		width: 70%;
	}
	
	#app {
		font-size: 45px;
	}
	
	#reseaux2 {
		top: -180px;
		background-color: rgba(255, 255, 255, 0.8);
		width: 59%;
	}
	
	.titre_gris {
		font-size: 28px;
	}
	
	#reseaux2 i {
  		font-size: 35px;
	}
	
	#form-kresko textarea {
		height: 90px;
	}
	
	.bg_blanc {
		padding: 10px;
	}
		
	footer p {
		font-size: 13px;
		line-height: 130%;
	}
	
	footer img {
		width: 220px;
		height: auto;
	}
	
	.mentions {
		margin: 10px 0;
		font-size: 10px;
	}
	
	#arrowUp {
		width: 50px;
		height: auto;
	}
	
	
	
}

@media screen and (max-width:767px){
	
	h1{
		padding: 5px 0;
	}
	
	.img_fondatrice{
		display: none!important;
	}
	
	#accueil{
		height: 430px;
	}
	
	.img_guillemets {
		top: 15%;
		width: 38px;
	}
	
	#citation {
		width: 63%;
		top: 26%;
		left: 39%;
		padding: 10px;
	}
	
	#accueil p{
		margin-bottom: 0!important;
	}
	
	#decouvrez{
		font-size: 15px;
		bottom: 10px;
		left: 34%;
	}
	
	.citation {
		font-size: 14px;
	}
	
	.violet{
		font-size: 12px;
	}
	
	.solution {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	
	.paragraphe {
		font-size: 14px;
	}
	
	.logo_footer{
		display: none;
	}
	
	h2 br{
		display: none;
	}
	
	.titre_droit {
		margin-bottom: -6px;
		margin-left: 15px;
		text-align: left;
	}
	
	#app {
		font-size: 35px;
	}
	
	.titre_violet {
		font-size: 50px;
	}
	
	#formulaire {
		top: -280px;
	}
	
	#form-kresko {
		padding: 80px 40px 10px 40px;
		background-color: rgba(255, 255, 255, 0.8);
	}
	
	.titre_gris {
		font-size: 25px;
	}
	
	#reseaux2 i {
		font-size: 30px;
	}
	
	#reseaux2 {
		top: -228px;
		width: 55%;
	}
	
	footer{
		bottom: -96px;
	}
	
	.bg_blanc{
		background: #FFFFFF;
	}
	
}

@media screen and (max-width:575px){
	
	#header i{
		font-size: 25px;
	}
	
	.img_guillemets {
		width: 28px;
	}
	
	.img_header{
		-moz-transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		top: -27%;
		width: 100%;
		height: auto;
		left: 0;
	}
	
	.img_guillemets{
		display: none;
	}
	
	h1{
		top: 24px;
		font-size: 28px;
		text-shadow: 1px 1px 1.5px #FFFFFF;
	}
	
	#citation {
		width: 77%;
		top: 20%;
		left: 50%;
		z-index: 60;
	}
	
	.citation{
		font-size: 13px;
	}
	
	.violet {
		font-size: 12px;
		margin-top: 15px;
	}
	
	img_guillemets{
		display: none;
	}
	
	#decouvrez {
		font-size: 13px;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
	}
	
	.solution img{
		display: none;
	}
	
	h2{
		font-size: 29px;
	}
	
	.titre_droit {
		margin-bottom: -4px;
	}
	
	.paragraphe {
		font-size: 14px;
		width: 90%;
		padding: 30px;
	}
	
	#formation {
 		background: url("images/petale_formation.svg") -15vw 10vh no-repeat #75A7D0;
	}
	
	#app {
		font-size: 25px;
	}
	
	.titre_violet {
 		font-size: 38px;
	}
	
	#app{
		margin-bottom: 35px;
	}
	
	#formulaire{
		top: 0;
		left: 0;
	}
	
	#reseaux_contact{
		position: static!important;
		width: auto;
	}
	
	#reseaux2{
		top: 0;
		position: static;
		width: 100%;
		background: transparent;
		margin: 35px auto;
	}
	
	.titre_violet {
		font-size: 35px;
	}
	
	#form-kresko input[type="text"], #form-kresko input[type="email"] {
		line-height: 0;
	}
	
	#form-kresko button.btn_violet{
		padding: 5px 15px !important;
	}
	
	.titre_gris {
		font-size: 32px;
		text-shadow: 1px 1px 1.5px #FFFFFF;
	}
	
	#reseaux2 i {
		font-size: 30px;
		color: #951B81;
	}
	
	footer{
		position: static;
		margin-top: 0!important;
		width: auto;
	}
	
	#footer{
		position: static;
		background: url("images/img_footer_576.png") no-repeat 50% 70%;
	}
	
	footer p {
		font-size: 12px;
	}
	
	.img_footer {
	  display: none;
	}
	
}











