/*

m01 à m09 les modules

m10 en montant, les articles



*/
/*	svp, prendre une copie du modèle 00 et créer le vôtre à la fin en incrémentant 00 merci */
div.m00
{
padding: 1rem;	/*	padding par défaut */
}
div.m00-overflow /*	div spéciale pour scroller en x */
{
padding: 1rem;
overflow-x: auto;
}
/*	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;
}
/************************************************************************************************************/
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;
}
/************************************************************************************************************/
div.float00
{

}
div.float00 div.float-left
{
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.float-left img
, div.float-right img
{
width: 100%;
}
div.float-stop
{
clear: both;
}
/************************************************************************************************************/
div.m00-overflow /*	div spéciale pour scroller en x, remplacez m00 par m00-overflow */
{
padding: 1rem;
overflow-x: auto;
}

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: #022d54;*/
/*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;
}
/************************************************************************************************************/
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
{

}
/************************************************************************************************************/
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			*/
/**/
div.m02
{
padding: 1rem;	/*	padding par défaut */
}
div.h02
{

}
div.h02 h2
{
font-size: ;
line-height: ;/*	<= font-size + padding */
color: #022d54;
}
div.m02 a
{
padding: 15px;
background-color: #022d54;
color: white;
border: 1px solid #022d54;
transition-duration:  0.2s;
}

div.m02 a:hover
{
background: transparent;
    color: #022d54;
    
}

div.m03
{
padding: 1rem 0;	/*	padding par défaut */
}

.m03 h3
{
    font-size: 3rem;
}

div.h03a
, div.h03b
, div.h03c
{
background-color: white;
color: #022d54;
padding-right: 1rem;
}
div.h03a h3
, div.h03b h3
, div.h03c h3
{
font-size: ;
line-height: ;/*	<= font-size + padding */
color: #022d54;
}
div.h03a hr
{
border: 0.5px solid #9c0019;
position: relative;
top: -1.3rem;
left: 50%;
width: 50%;
}
div.h03b hr
{
border: 0.5px solid #9c0019;
position: relative;
top: -1.3rem;
left: 30%;
width: 70%;
}
div.h03c hr
{
border: 0.5px solid #9c0019;
position: relative;
top: -1.3rem;
left: 20%;
width: 80%;
}
div.m03a a
, div.m03b a
, div.m03c a
{
padding: 5px 15px;
background-color: #022d54;
color: white;
}
div.m04
{
padding: 1rem;
color: white;
}
div.m04a
{
padding: 1rem;
padding-right: 0px;
color: white;
}
div.m04b
{
padding: 1rem;
padding-left: 0px;
color: white;
}
div.m04 h5
, div.m04a h5
, div.m04b h5
{
margin-bottom: 0.5rem;
color: white;
}
div.m04 hr
, div.m04b hr
{
border: 1px solid white;
width: 100px;
}
div.m04a hr.plusgrand
{
border: 1px solid white;
width: 100%;
}
div.m04 hr.pluspetit
{
width: 40px;
}
div.m04 a
, div.m04a a
, div.m04b a
{
color: white;
}
div.m04 a:hover
, div.m04a a:hover
, div.m04b a:hover
{
color: #9c0019;
}

/*			les articles							*/

div.m10
{
padding: 1rem;	/*	padding par défaut */
}

.m10 h2
{
    margin: 1rem 0;
    font-size: 1.8rem;
    border-left: 6px solid #9c0019;
    padding-left: 2rem;
    color: #9c0019;
}


.zone-bt
{
    width: 80%;
    margin: auto;
    text-align: center;
    margin-bottom: 2rem;
}


.bt-viewmore
{
        background: #9c0019;
    border: 1px solid #9c0019;
    padding: 8px 30px;
    color: #fff;
    transition: all 0.2s;
}

div.h10a
{

}
div.h10b
{

}
div.h10a h1
{
font-size: ;
line-height: ;/*	<= font-size + padding */
color: #022d54;
width:100%;
text-transform: uppercase;
}
div.h10b h2
{
font-size: ;
line-height: ;/*	<= font-size + padding */
color: ;
}
div.h10a hr
{
border: 0.5px solid #9c0019;

}
div.h10a ul
{
list-style:  none;
padding-left: 0;
font-weight: bold;
}

div.h10a ul li a 
{
    color: #022d54;
}

.separator-blog
{
    border: 1px solid #F2F2F2;
    margin: 3rem 0;
}

/*** contact ***/ 

.text-contact
{
    padding: 5rem;
    box-sizing: border-box;
    text-align: center;
}

.text-contact img
{
    width: 100%;
    margin: 1rem 0;
}

.text-contact a
{
    color: #022d54;
}

.text-contact h2
{
    font-size: 1.5rem;
}

div#fox-container-m229 .btn
{
    background: #9c0019;
    color: #fff !important;
    border: 0;
    text-shadow: none;
    border-radius: 0;
    padding: 10px 15px;
}

div#fox-container-m229 .btn, div#fox-container-m229 .btn span
{
    color: #fff;
}

div#fox-container-m229 .btn:hover
{
    background: #790114 !important;
}

div#fox-container-m229 .fox-form input[type="text"]:hover, div#fox-container-m229 .fox-form textarea:hover, div#fox-container-m229 .fox-form input[type="text"]:focus, div#fox-container-m229 .fox-form textarea:focus
{
    background: none;
}

.fox-row
{
    padding: 5rem 1rem;
    box-sizing: border-box;
}

.banner-contact
{
    height: 350px;
    background-image: url(../../../images/tmpl/banner-contact.jpg);
}

#b15mainw .container-fluid 
{
    max-width: none;
}

.banner-contact h1
{
    line-height: 350px;
    color: #fff;
    text-align: center;
}


/*** légales ***/

.title-page 
{
    color: #022d54;
    border-bottom: 1px solid #9c0019;
    padding-bottom: 2rem;
} 

.m01 h5
{
    color: #9c0019;
}

.m01 a 
{
    color: #022d54;
}


