/*	svp, prendre une copie du modèle 00 et créer le vôtre à la fin en incrémentant 00 merci */
/*				option pour m00			*/
span.gras
{
font-weight: bold;
}
a.distance20 /* on utilise un lien contenant &nbsp; */
{
/*padding-left: 16%;*/
padding-right: 15%;
padding-left: 6%;
}
a.distance30 /* on utilise un lien contenant &nbsp; */
{
/*padding-left: 20%;*/
padding-left: 12%;
padding-right: 10%;
}
div.m00-overflow /*	div spéciale pour scroller en x, remplacez m00 par m00-overflow */
{
padding: 1rem;
overflow-x: auto;
}
/*********************************			m00		**************************************************************/
div.m00
{
padding: 1rem;	/*	padding par défaut */
}

/*	la div h00 sert au titre si on a besoin de plusieurs balises dans la partie titre, sinon la h seule*/

div.h00
{

}
div.h00 h1
{
font-size: ;
line-height: ;/*	<= font-size + padding */
}
div.h00 h2
{

}
div.h00 hr
{
width:50%;
margin: 0 auto;
color: pink;
}
/***************************			grille00		*********************************************************************************/
div.grille00
{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
div.grille00 figure
{
margin: 0.5rem;	/*	margin des colonnes, donne donc 1rem MINIMUM (0.5rem + 0.5rem) entre 2 colonnes*/
text-align: center;	/* pour centrer l'image et le texte dans la colonne */
width: 140px;	/* 	la largeur minimum est de 100px mais cela dépend de l'icone ou de l'image,
					du texte à afficher, un titre simple en petit font size, va entrer dans 100px
					on fonctionne en px fixe ici, PAS DE POURCENTAGE*/
/*width: 270px;	/*	la largeur MAXIMUM pour les cellulaires est de 320px en comptant les marges
					ce qui donne donc un grand maximum de 270px par colonne (1rem = +/- 10px)
					car il faut compter les marges des conteneurs de la grille fixée au minimum à 1rem
					il est désagréable de refaire tout le style quand il ne répond pas aux limites...*/
}
div.grille00 img	/* 	il n'est d'usage d'utiliser une image plus grande que 270px dans le flex pour
					avoir un responsive convenable, il faut utiliser un autre modèle si nous avons
					des images plus larges que 270px, on fonctionne en px fixe ici, PAS DE POURCENTAGE*/
{

}
div.grille00 figcaption	/* 	figcaption hérite de son parent figure. En remettant ici le texte à gauche
						il n'y aura que l'image centrée dans la colonne
						on fonctionne en px fixe ici, PAS DE POURCENTAGE*/
{
text-align: left;
}
/************************************************************************************************************/
/* Cette instruction sur la div float-stop s'applique sur tous les modèles, nul besoin de la répéter*/
div.float-stop
{
clear: both;
}
/**************************			float00			****************************************************************************/
div.float00
{

}
div.float00 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;
padding-right: 0.5rem;
width: 49%; /* laisser 1% aux marges*/
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float00 div.float-right
{
float: right;
padding-left: 0.5rem;
width: 49%;
}
div.float00 div.float-left img
, div.float00 div.float-right img
{
width: 100%;
}

/**************************				table00			**********************************************************************************/
table.table00
{
border: 1px solid black;
/*border-collapse: collapse;*/
/*border-collapse: separate;*/
/*border-spacing: 10px 50px;*/
/*empty-cells: hide;*/
/*table-layout: fixed;*/
width: 100%;	
}
table.table00 tr /*	row, ligne */
{

}
table.table00 tr:nth-child(even) /* OU odd */
{
/*background-color: yellow*/
}
table.table00 tr:hover
{
/*background-color: green;*/
}
table.table00 tr.ligne00 /*	si nous avons une ligne particulière que nous désirons styliser */
{
	
}
table.table00 th /* header, titre */
{
border-bottom: 1px solid grey;
/*border: 1px solid black;*/
/*height: 50px;*/
text-align: left;
vertical-align: middle;
padding: 8px 15px;
/*background-color: blue;*/
/*color: white;*/
}
table.table00 td /* data, cellule */
{
border-bottom: 1px solid grey;
/*border: 1px solid black;*/
/*height: 30px;*/
/*text-align: center;*/
/*vertical-align: bottom;*/
padding: 8px 15px;
}
table.table00 td img/* image dans le cellule, on ne dépasse pas 270px pour le responsive */
{
width: 100%;
max-width: 270px;
max-height: 200px;
}
table.table00 td.cell00 /*	si nous avons une cellule particulière que nous désirons styliser */
{
padding: 0;
width: 270px;
max-width: 270px;
}
/****************************			xtableau00				********************************************************************************/
div.xtableau00 
{
border-top: 1px solid black; /*	cadre autour du tableau sauf pour le bottom */
border-right: 1px solid black;
border-left: 1px solid black;
/*border-bottom: 1px solid black;*/
/*	si on ne met pas de border-bottom aux lignes mais qu'on veut tout de même
	le bas du cadre pour le tableau, il faut enlever le commentaire ci-haut*/
}
div.xtableau00 div.xt
{
display: flex;
border-bottom: 1px solid black; /*	si on veut une barre sous la ligne titre*/
}
div.xtableau00 div.xl
{
display: flex;
border-bottom: 1px solid black; /*	si on veut une barre sous la ligne du tableau*/
}
			/*	2colonnes 49%, 3colonnes 33%, 4colonnes 24%, 5colonnes 19% */			
div.xtableau00 div.xc1
, div.xtableau00 div.xc2
, div.xtableau00 div.xc3 
{
width: 33%;
padding-left: 1rem;
padding-right: 1rem;
padding-top: 1rem;
padding-bottom: 1rem;
border-right:  1px solid black;
}
div.xtableau00 div.xc3 /*		voici la dernière cellule à la droite du tableau 
							cette dernière cellule annule le border 
							si vous avez plus que 3 colonnes,
							changer xc3 pour le nom de la dernière cellule*/
{
border-right:  0px solid black;
}
div.xtableau00 div.xt div.xc1
, div.xtableau00 div.xt div.xc2
, div.xtableau00 div.xt div.xc3 /*	cellules de la ligne titre xtitle xt */
{
font-weight: bold;
}
div.xtableau00 div.xc1
{

}
div.xtableau00 div.xc2
{

}
div.xtableau00 div.xc3
{

}
/**********************				ftableau00				**************************************************************************************/
div.ftableau00 
{
visibility: hidden; /* le ftableau sera visible sous les 765px*/
height: 0px;
}
div.ftableau00 
{
border-top: 1px solid black; /*	cadre autour du tableau sauf pour le bottom */
border-right: 1px solid black;
border-left: 1px solid black;
/*border-bottom: 1px solid black;*/
/*	si on ne met pas de border-bottom aux lignes mais qu'on veut tout de même
	le bas du cadre pour le tableau, il faut enlever le commentaire ci-haut*/
}
div.ftableau00 div.xt
{
display: flex;
border-bottom: 1px solid black; /*	si on veut une barre sous la ligne titre*/
}
div.ftableau00 div.xl
{
display: flex;
border-bottom: 1px solid black; /*	si on veut une barre sous la ligne du tableau*/
}			
div.ftableau00 div.xc1
, div.ftableau00 div.xc2
, div.ftableau00 div.xc3 
{
width: 99%;
padding-left: 1rem;
padding-right: 1rem;
padding-top: 1rem;
padding-bottom: 1rem;
}
div.ftableau00 div.xt div.xc1
, div.ftableau00 div.xt div.xc2
, div.ftableau00 div.xt div.xc3 /*	cellules de la ligne titre xtitle xt */
{
font-weight: bold;
}
div.ftableau00 div.xc1
{

}
div.ftableau00 div.xc2
{

}
div.ftableau00 div.xc3
{

}
/************************************************************************************************************
			V o t r e		c o d e		v a		à	p a r t i r		d ' i c i			
Prenez une copie du modèle00 m00 float00 grille00 table00 etc... et copiez le code ici à la fin
Incrémentez le modèle m01 float01 etc... aux noms de balises de votre copie et codez
/****************************************************************************************************************/

div.a-wrapper
{
width: 270px;
height: 203px;

}
div.a-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.a-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
/*transform: matrix(0.866,0.7,-0.8,0.866,0,0);/* matrice 2D*/
transition-timing-function: ease;
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
transform: rotate(45deg);
transform-origin: 20% 40%;
}
div.a-wrapper:hover
{

}
div.b-wrapper
{
width: 270px;
height: 203px;

}
div.b-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.b-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
/*transform: matrix(0.866,0.7,-0.8,0.866,0,0);/* matrice 2D*/
transition-timing-function: ease;
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
transform-style: preserve-3d;
transform: rotate(-45deg);
transform-origin: 60% 80%;
}
div.b-wrapper:hover
{

}
div.c-wrapper
{
width: 270px;
height: 203px;

}
div.c-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.c-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
/*transform: matrix(0.866,0.7,-0.8,0.866,0,0);/* matrice 2D*/
transition-timing-function: ease;
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
/*transform-style: preserve-3d;*/
transform: skewY(20deg);
transform-origin: 10% 20%;
}
div.c-wrapper:hover
{

}
div.d-wrapper
{
width: 270px;
height: 203px;

}
div.d-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.d-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
transform: matrix(-0.866,-0.7,0.8,-0.866,0,0);/* matrice 2D*/
transition-timing-function: ease;
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
/*transform-style: preserve-3d;*/
/*transform: skewY(20deg);*/
transform-origin: 200% -250%;
/*transform: matrix3d(0.5,0,0,0,0.5,0,0,0,0.5,0,0,0,0.5,0,0,0);*/
}
div.d-wrapper:hover
{

}
div.e-wrapper
{
padding: 1rem;
width: 300px;
height: 233px;
border: 1px solid #aaaaaa;
transition-duration: 2s;
transition-timing-function: ease;
}
div.e-wrapper img
{
transition-duration: 1s;
transition-timing-function: ease;
}
div.e-wrapper img:hover
{
/*width: 100%;*/
/*transform: rotate(5deg);*/
/*transform: skewY(40deg);*/
/*transform: skewX(60deg);
transform: scaleY(1.1);
transform: scaleX(1.2);*/
/*transform: matrix(-0.866,-0.7,0.8,-0.866,0,0);/* matrice 2D*/
/*transition-timing-function: ease;*/
transition-timing-function: cubic-bezier(0.5,0.5,0.8,0.9);
transition-duration: 2s;
/*transform: translate3d(10px,20px,30px);*/
/*transform-style: preserve-3d;*/
/*transform: skewY(20deg);*/
transform-origin: 10% 90%;
/*transform: matrix3d(0.5,0,0,0,0.5,0,0,0,0.5,0,0,0,0.5,0,0,0);*/
/*transform: skew(10deg,10deg);*/
/*perspective: 100px;*/
/*perspective-origin: 50px 50px;*/
transform: rotate3d(0.8,-0.1,0.1,80deg);
}
div.e-wrapper:hover
{
transition-duration: 3s;
transition-timing-function: ease;
box-shadow: 10px 10px 5px grey;
}

div.m01
{
padding: 1rem;
text-align: center;
color: #292929;
overflow: hidden;
}
div.m01-w
{
padding: 1rem;
text-align: center;
margin: 0px auto;

overflow: hidden;
}

div.m01-pourlui
, div.m01-pourelle
, div.m01-accessoires
{
text-align: center;
color: #292929;
overflow: hidden;
height: auto;
}
div.m01-pourlui h3
, div.m01-pourelle h3
, div.m01-accessoires h3
{
color: #373d4e;
font-family: 'montserrat-bold';
}
div.m01-pourlui figure figcaption a
, div.m01-pourlui figure figcaption h3
, div.m01-pourelle figure figcaption a
, div.m01-pourelle figure figcaption h3
, div.m01-accessoires figure figcaption a
, div.m01-accessoires figure figcaption h3
{
color: white;	
}
div.m01-pourlui figure img
, div.m01-pourelle figure img
, div.m01-accessoires figure img
{
width: 100%;
/*max-width: 350px;
min-width: 350px;*/
height: auto;	
}
/*********************************************** POUR LUI   **********************/
div.m01-w0
{
padding: 1rem;
}
div.m01-w
{
overflow: hidden;
max-width: 640px;
margin: 0px auto;
max-height: auto;
}
div.m01-pourlui
{
text-align: center;
color: #292929;
margin: 0px auto;
}
div.m01-pourlui h3
, div.m01-q-s-b h3 a
{
color: #373d4e;
font-family: 'montserrat-bold';
}
div.m01-pourlui figure figcaption a
{
color: white;	
}
div.m01-w h3 a
, div.m01-w h3 
{
color: #373d4e;
font-family: 'montserrat-bold';
}
div.m01-pourlui figure img
{

}
div.m01-pourlui figure
{
height:700px;
max-width: 450px;
overflow: hidden;
background-image: url('../../../images/tmpl/_home-nos_produits-pour_lui.png');
background-repeat: no-repeat;
background-position: 50% 0%;
background-size: cover;
margin: 0px auto;
}

div.m01-pourlui figure figcaption
{
padding-top: 700px;
line-height: 0px !important;
color: white;
transition-property: all;
transition-property: line-height, padding-top, padding, top, opacity, all;
transition-duration: 0.4s;
transition-timing-function: ease;
}

div.m01-pourlui figure figcaption:hover
{
padding-top: 500px;
padding-bottom: 300px;
line-height: 20px !important;	
background: linear-gradient(rgba(72,76,97,0) 0,rgba(72,76,97,0.8) 75%);	
transition-property: all;
transition-property: line-height, padding-top, padding, top, opacity, all;
transition-duration: 0.4s;
transition-timing-function: ease;
}

/*********************************************** POUR ELLE   **********************/
div.m01-pourelle
{
text-align: center;
color: #292929;
}
div.m01-pourelle h3
{
color: #373d4e;
font-family: 'montserrat-bold';
}
div.m01-pourelle figure figcaption a
{
color: white;	
}
div.m01-pourelle figure img
{
	
}
div.m01-pourelle figure
{
height: 700px;
max-width: 450px;
overflow: hidden;
background-image: url('../../../images/tmpl/_home-nos_produits-pour_elle.png');
background-repeat: no-repeat;
background-position: 50% 0%;
background-size: cover;
margin: 0px auto;
}

div.m01-pourelle figure figcaption
{
padding-top: 700px;
line-height: 0px !important;
color: white;
transition-property: all;
transition-property: line-height, padding-top, padding, top, opacity, all;
transition-duration: 0.4s;
transition-timing-function: ease;
}

div.m01-pourelle figure figcaption:hover
{
padding-top: 500px;
padding-bottom: 300px;
line-height: 20px !important;	
background: linear-gradient(rgba(72,76,97,0) 0,rgba(72,76,97,0.8) 75%);	
transition-property: all;
transition-property: line-height, padding-top, padding, top, opacity, all;
transition-duration: 0.4s;
transition-timing-function: ease;
}




/********************							ACCESSOIRES		*******************************/
/*
div.m01-accessoires figure
{
max-height: 350px;
}
div.m01-accessoires figure figcaption
{
padding-top: 400px;
top: -400px;

position: relative;
color: white;
padding-bottom: 95px;
transition: all 1s ease;
}

div.m01-accessoires figure figcaption:hover
{
padding-top: 150px;
	
background: linear-gradient(rgba(72,76,97,0) 0,rgba(72,76,97,0.8) 75%);	
transition: all 1s ease;
}
*/
div.m01-accessoires
{
text-align: center;
color: #292929;
}
div.m01-accessoires h3
{
color: #373d4e;
font-family: 'montserrat-bold';
}
div.m01-accessoires figure figcaption a
{
color: white;	
}
div.m01-accessoires figure img
{

}
div.m01-accessoires figure
{
height: 400px;
overflow: hidden;
background-image: url('../../../images/tmpl/_home-nos_produits-accessoires.jpg');
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: cover;
}

div.m01-accessoires figure figcaption
{
padding-top: 400px;
line-height: 0px !important;
color: white;
transition-property: all;
transition-property: line-height, padding-top, padding, top, opacity, all;
transition-duration: 0.4s;
transition-timing-function: ease;
}

div.m01-accessoires figure figcaption:hover
{
padding-top: 200px;
padding-bottom: 55px;
line-height: 20px !important;	
background: linear-gradient(rgba(72,76,97,0) 0,rgba(72,76,97,0.8) 75%);	
transition-property: all;
transition-property: line-height, padding-top, padding, top, opacity, all;
transition-duration: 0.4s;
transition-timing-function: ease;
}






/**********************************************   les autres trucs **********************************/
div.m01-q-s-b-w0
{

}
div.m01-q-s-b-w
{
padding: 1rem;
overflow: hidden;
max-width: 457px;
margin: 0px auto;
text-align: center;
}
div.m01-q
, div.m01-s
, div.m01-b
{
text-align: center;
color: #292929;
}
div.m01-q-s-b-w h3
, div.m01-q-s-b-w h3 a
{
color: #373d4e;
font-family: 'montserrat-bold';
text-align: center;
}
div.m01-q figure figcaption a
, div.m01-s figure figcaption a
, div.m01-b figure figcaption a
{
color: white;	
}
div.m01-q figure figcaption h3 a
, div.m01-s figure figcaption h3 a
, div.m01-b figure figcaption h3 a
{
color: #373d4e;
}

div.m01-q figure
, div.m01-s figure
, div.m01-b figure
{
height: 677px;
overflow: hidden;
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: cover;
}
div.m01-q figure
{
background-image: url('../../../images/tmpl/_home-quotidien.png');	
}
div.m01-s figure
{
background-image: url('../../../images/tmpl/_home-sport.png');	
}
div.m01-b figure
{
background-image: url('../../../images/tmpl/_home-bien_etre.png');	
}

div.m01-q figure figcaption
, div.m01-s figure figcaption
, div.m01-b figure figcaption
{
padding-top: 677px;
line-height: 0px !important;
color: white;
transition-property: all;
transition-property: line-height, padding-top, padding, top, opacity, all;
transition-duration: 0.4s;
transition-timing-function: ease;
}

div.m01-q figure figcaption:hover
, div.m01-s figure figcaption:hover
, div.m01-b figure figcaption:hover
{
padding-top: 400px;
padding-bottom: 200px;
line-height: 20px !important;	
background: linear-gradient(rgba(72,76,97,0) 0,rgba(72,76,97,0.8) 75%);	
transition-property: all;
transition-property: line-height, padding-top, padding, top, opacity, all;
transition-duration: 0.4s;
transition-timing-function: ease;
}

/************************************************************************************************************************************************************/
div.h01
{
font-size: 2rem;
line-height: 2.5rem;/*	<= font-size + padding */
}
div.h01 h2
{
font-size: 2.5rem;
line-height: 3rem;/*	<= font-size + padding les traits: 93*19*/
margin-top: 3rem;
margin-bottom: 2rem;
font-family: 'montserrat-bold';
}
div.h01 h2 img
{
max-width: 93px;
}
/*
div.h01 h2:before
{
content: url("../../../images/icons/trait-before.png");
}
div.h01 h2:after
{
content: url("../../../images/icons/trait-after.png");
}
*/
div.h01 h2:before
, div.h01 h2:after
{
display: inline-block;
/*overflow: hidden;*/
width: 93px;
height: auto;
}
div.h01 h2.sanstrait:before
{
content: "";
}
div.h01 h2.sanstrait:after
{
content: "";
}
div.float01
{
text-align: left;
color: #292929;
}
div.float01 a
{
color: black;
}
div.float01 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;
padding-right: 0.5rem;
width: 49%; /* laisser 1% aux marges*/
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float01 div.float-right
{
float: right;
padding-left: 0.5rem;
width: 49%;
}
div.float01 div.float-left img
, div.float01 div.float-right img
{
width: 100%;
}
div.m01 h3
{
color: #373d4e;
font-family: 'montserrat-bold';
}
div.m01 img
{
width: 100%;
}
div.m01b /* à chaque activité */
{
padding: 1rem;	/*	padding par défaut */
text-align: center;
color: #292929;
}
div.m01b h3
{
color: #373d4e;
font-family: 'montserrat-bold';
}
div.m01b img
{
width: 100%;
max-width: 456px;
}
div.m01c-tsf					/* les basiques */
, div.m01c-svh
, div.m01c-ch
, div.m01c-tsh
{
margin: 1rem auto;
height: 338px;
max-width: 338px;
overflow: hidden;
background-repeat: no-repeat;
background-size: cover;
}
div.m01c-tsf
{
background-image: url('../../../images/tmpl/_home-les_basiques_1.png');
background-position: 100% 0%;
}
div.m01c-svh
{
background-image: url('../../../images/tmpl/_home-les_basiques_2.png');
background-position: 50% 50%;

}
div.m01c-ch
{
background-image: url('../../../images/tmpl/_home-les_basiques_3.png');
background-position: 50% 100%;

}
div.m01c-tsh
{
background-image: url('../../../images/tmpl/_home-les_basiques_4.png');
background-position: 50% 50%;
}

div.m02 /* respirez la vie */
{
padding-top: 5rem;
text-align: center;
background-image: url("../../../images/tmpl/_motifs-slogan.png");
background-size: 100% 100%;
padding-bottom: 5rem;
}
div.m02a /* respirez la vie */
{
padding-top: 4.5rem;
padding-bottom: 5rem;
}
div.m02a h3 /* respirez la vie */
{
font-size: 3.5rem;
line-height: 4rem;
color: #282828;
font-family: 'montserrat-extrabold';
letter-spacing: 15px;
font-weight: 900;

}
div.m03 /* respirez la vie icons */
{
padding-top: 2rem;
text-align: center;
color: #292929;
padding-bottom: 3rem;
}
div.m03 h4
{
color: #292929;
font-weight: normal;
}
div.m03 img
{

border-radius: 100px;
border: 0px;
}
div.m03 img:hover
{
transform: scale(1.2);
box-shadow: 10px 5px 10px 5px #373d4e;
transition-duration: 2s;
}
div.m04 /*logo footer*/
{
padding-top: 5rem;
padding-bottom: 1rem;
text-align:center;
}
div.m04 img
{
width: 320px;
height: 127px;
max-width: 320px;
}
div.m05 /* les autres du footer */
{
padding:0.5rem;
padding-top: 2rem;
padding-bottom: 1rem;
color: white;
font-size: 1.1rem;
}
div.m05 a
{
color: white;
}
div.m06
{
padding: 1rem;	/*	padding par défaut */
text-align: center;
color: #292929;
}
div.float06
{
text-align: left;
}
div.float06 a
{

}

div.float06 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
{
float: left;
padding-right: 1rem;
width: 48%; /* laisser 1% aux marges*/
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float06 div.float-right
{
float: right;
padding-left: 1rem;
width: 48%;
}
div.float06 div.float-left img
, div.float06 div.float-right img
{
width: 100%;
}
div.h06 h3
{
color: black;
margin-bottom: 2rem;
font-family: 'montserrat-bold';
}
div.h06 h3:after
{
/*content: url("../../../images/icons/trait-after.png");*/
}
div.fr06
{
padding: 1rem;	/*	padding par défaut */
text-align: left;
color: #292929;
border: 1px solid #373d4e;
}
div.m07
{
padding: 1rem;	/*	padding par défaut */
text-align: center;
color: #292929;
}
div.h07 h2
{
font-size: ;
line-height: ;/*	<= font-size + padding */
margin-top: 2rem;
margin-bottom: 2rem;
font-family: 'montserrat-bold';
}

div.h07 h2:before
{
/*content: url("../../../images/icons/trait-before.png");*/
}
div.h07 h2:after
{
/*content: url("../../../images/icons/trait-after.png");*/
}

div.m08
{
margin-top: 3rem;
margin-bottom: 1rem;
margin-left: auto;
margin-right: auto;
width: 80%;
}
div.m08 h3
{
color: #373d4e;
font-family: 'montserrat-bold';
}
div.m08 img
{
max-height: 300px;
max-width: 31%;
}
div.m08 img.tencel
{
width: 100%;
max-width: 100%;
max-height: 300px;
}
div.m10
{
padding: 1rem;	/*	padding par défaut */
padding-top: 3rem;
text-align: center;
color: #292929;
}
div.m10 h3
{
color: black;
}
div.m11
{
padding: 1rem;	/*	padding par défaut */
padding-top: 3rem;
text-align: center;
color: #292929;
}
div.m11 h3
{
color: black;
font-family: 'montserrat-bold';
}
div.h10 h3:before
{
content: url("../../../images/icons/trait-before.png");
}
div.h11 h3:after
{
content: url("../../../images/icons/trait-after.png");
}

div.float10
, div.float11
{

}

div.float10 div.float-left /*		les div enfants float-left et float-right nécessite qu'on les appelle avec le parent float00		*/
, div.float11 div.float-left
{
text-align: left;
float: left;
padding-right: 1rem;
width: 48%; /* laisser 1% aux marges*/
}
/*					le responsive assigne les 2 div enfants float-left et float-right 
					on n'a donc pas besoin de rajouter du code dans responsive.css */
div.float10 div.float-right
, div.float11 div.float-right
{
text-align: left;
float: right;
padding-left: 1rem;
width: 48%;
}
div.float10 div.float-left img
, div.float10 div.float-right img
, div.float11 div.float-left img
, div.float11 div.float-right img
{
width: 100%;
}

div.contact-img img
{
max-width: 100%;
}


div.m09 h1
{
font-family: 'montserrat-bold';
font-size: 2.5rem;
padding-left: 2rem;
padding-bottom: 1rem;
padding-top: 2rem;
}

div.m09
{
color: #373d4e;
text-align: center;
}






