/* Déclaratinion des couleurs  */
:root {
    --noir1: #303030;
    --noir2:#1b1a1a;
    --noir3:#969798;
	--noir4:#2c2c2c;
    --bleu1:#0033A1;
    --bleu2:#00A1E0;
    --bleu3:#14BDFF;
    --bleu4:#0A2240;
    --rouge: #C1272D;
    --Orange: #FF681D;
    --blanc1: #ffffff;
    --blanc2: #f6f9fa;
    --blanc3: #eeeeee;
    --blanc4: #e1e1e1;
    --tWhite: rgba(255,255,255,0.8);
    box-sizing: border-box;
}
*, *:before, *:after{
    box-sizing: inherit;
}

a {
    text-decoration:none; 
}
.lien_a_neutre, 
.lien_a_neutre:hover, 
.lien_a_neutre:focus, 
.lien_a_neutre:active {
    text-decoration:none;
    color: currentColor;
}


/* Body et ses éléments fils  */

body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;  
}
.entete {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items:  flex-start;
    width: 100%;
    background: var(--bleu1);
    z-index: 1000;
}


.corps {
    
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    background: var(--blanc4);
    font-size:14px;
    color: var(--noir2);
}

.piedPage {
    
    width: 100%;
    background: var(--blanc4);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

/* enfants de l'éléments entete  */

.enteteMenus {
    display: grid;
    grid-template-columns: 50px 200px 1fr  60px;
    color: var(--blanc1);
    width:100%;
    justify-items: end;
    align-items: center;
    width:100%;
    top:0;
    
    
}
#pageHeader figure {
  padding: 0.5rem;
  margin: 0;
  justify-self: stretch;
}
#pageHeader > a, #pageHeader .titreSite  {
    font-size: 1.6rem;
    margin: 0;
    justify-self: start;
    font-family: hindregular, sans-serif;
    font-weight: bold;
    color:var(--blanc3);
}

#pageHeader nav {
    
    grid-row: 2;
    grid-column: 1/-1;
    justify-self: stretch;
    display: none;
    font-family: Verdana, robotoregular, sans-serif;
    transition: 0.5s;
    
}
    /* menu mobile  */
.dMenusMob {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 10px;
    border-top: 0.2px solid var(--bleuFond);
    background: var(--bleu2);
    /*
    background:-webkit-linear-gradient(left,#00A1E0,#a5dbf0);
    */
    opacity: 1;
    overflow: auto;
    
}
.dMenusMob a {
    font-size: 12px;
    margin-bottom: 2px;
    padding: 2px;
    text-decoration: none;
    color:var(--bleu4);
    width: 50%;    
}

.dMenusMob a:hover {
    background-color: var(--bleu3);
    color: var(--blanc);
    text-decoration: none;                            
}
.dMenusMob span {
    font-size: 10px;
    margin-bottom: 1px;
    margin-top: 2px;
    color: var(--blanc3);
}


 #smenuPcTablette {
     display: none;
        
}
.direct img {         /* image bouton direct  */
    width: 2rem;
    transition-duration: 0.5s;
}
.direct img:hover {
    width: 2.2rem;
    
}

#pageHeader button {    /* image bouton menu mobile  */
    background: none;
    border: none;
    font-size: 2.1rem;
    transition: color 0.2s;
    color: var(--blanc);
    padding-right: 15px;
}
#pageHeader button:hover {
    color: var(--bleu2);
}


#pageHeader button:focus {
    outline: none;
}

/* enfants de l'éléments corps  */

/* -- éléments communs  */


   
.img100{
    width:100%;
}
.imgCar{
    padding: 2px;
    box-shadow: 8px 2px 4px 3px hsl( 0, 10%, 90%);
}

 /* video  */

.artVid100 {
    width:100%;   
   
}
.vid100 {
    width:100%;
    
}
.vidYtb{
    overflow:hidden; 
    padding-bottom:56.25%; 
    position:relative; 
    height:0;
}
.vidYtb iframe {
    left:0; 
    top:0; 
    height:100%; 
    width:100%; 
    position:absolute;
    z-index: 2;    
}
.infoVid{
    width:100%;
    background: var(--blanc2);
    margin-bottom: 2px;
    padding: 10px;
    border-radius: 0px 3px 3px 0px;
    border-bottom: 0.5px solid var(--blanc4);
}
.infoVid p {
  margin-bottom: 5px;
}
.infoVid .titreVid{
    font-family: gothambold, sans-serif;
    font-size: 23px;
    color: var(--bleu4);
}
.infoVid .auteurVid{
    font-family: bentonsans_reg, sans-serif;
    font-size: 15px;
    color: var(--bleu2);
    font-weight: bold; 
}
.infoVid .dateVid{
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-size: 14px;    
}
.infoVid .categVid a {
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-size: 12px;
    color:var(--bleu1);
}
.infoVid .categVid a:hover {
    color:var(--bleu2);
}


.divVignVid1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    min-height: 500px;
}
.divVignVid1 .titreDivVignVid{
    width:100%;
    margin-bottom: 10px;
    padding: 5px;
}
.divVignVid1 .titreDivVignVid p{
    font-family: gothambold, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: var(--bleu3);
}
.divVignVid1 .titreDivVignVid p span{
    color: var(--orange);
}
.divVignVid1 .titreDivVignVid .traitKab1{
    margin-top: -40px;
    width: 100%;
}
.divVignVid1 .vignVid1{
    width: 325px;
    padding: 5px;
    border: 1px solid var(--blanc3);
    margin-bottom: 20px;
    box-shadow: 2px 2px 4px hsl( 0, 10%, 90%);
}
.divVignVid1 .vignVid1 a{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.divVignVid1 .vignVid1 .imgVignVid{
    width: 100%;
    
}
.divVignVid1 .vignVid1 .infosVignVid{
    width: 100%;
    padding: 10px;
}

.divVignVid1 .vignVid1 .infosVignVid .vElement1 {
    font-family: gothambold, sans-serif;
    font-size: 16px;
    color: var(--bleu4);
}
.divVignVid1 .vignVid1 .infosVignVid .vElement2 {
    font-family: bentonsans_reg, sans-serif;
    font-size: 14px;
    color: var(--bleu2);
    
}
.divVignVid1 .vignVid1 .infosVignVid .vElement3 {
    font-family: bentonsans_reg, sans-serif;
    font-size: 13px;
    color: var(--noir2);
}
.vElement4 {
    font-family: bentonsans_reg, sans-serif;
    font-size: 13px;
    color: var(--rouge);
}


.barRecherch{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 45px;
    margin-top: -25px;
    margin-bottom: 25px;
    padding: 5px;
    border: 1px solid var(--blanc3);
    font-family: hindregular, sans-serif;
    font-size: 15px;
}
.barRecherch button{
    background: var(--blanc3);
    color: var(--noir1);
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid var(--blanc3);
    padding: 5px;
}

.barRecherch form{
    display: flex;
}


.barRecherch form input{
    border: 2px solid var(--blanc3);
    border-radius: 5px;
    padding: 2px;
}

.barRecherch form input[type=text]{
    width: 200px; 
    background-color: var(--blanc2);
    margin-right: 5px;
    padding-left: 10px;
}
.barRecherch form input[type=checkbox]{
    width: 20px; 
}

.barRecherch form input[type=text]:focus {
    
}
.barRecherch form input[type=submit]{
    background: var(--blanc3);
    color: var(--noir1);
    cursor: pointer;   
}
.resSearch{
    width: 100%;
    margin-bottom: 20px;
    font-size: 15px;
    font-family: helveticaregular, Trebuchet MS, sans-serif; 
    color: var(--rouge);
}
.resSearch span{
    font-weight: bold;
}


.passCitPred{
    padding: 5px;
    width: 100%;
    
}
.citLues, .passBibl {
    margin-bottom: 15px;
}
.passCitPred .titpct{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    font-family: hindregular, sans-serif;
    color: var(--Orange);
    padding: 5px;
    padding-left: 0px;
    
}
.passCitPred .el{
    display: block;
    margin-left: 10px;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--bleu4);
    
    
}
.passCitPred .el button{
    font-size: 10px;
    border: none;
    outline: none;
    padding:0px;
    color: var(--bleu4);
}
.corpsPas, .corpsCit{
    display: none;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
    font-family: bentonsans_reg, sans-serif;
}
.corpsPas{
    
}

.chevronDown, .chevronUp, .chevronDown1, .chevronUp1  {
    margin-left: 5px;
    font-size: 12px;
}
.chevronUp, .chevronUp1 {
    display: none;
}



/*-- fin video --*/


.naration1{
    font-family: nanummyeongjoregular, serif;
    color: var(--bleu4);
    font-size: 18px;
    margin-top: 25px;
    padding-left: 20px;
    
}

.cVign1 {
    flex: 0 0 calc(40%);
    display: flex;
    justify-items: center;
}
.cVign1Details{
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    
}
.cVign1Details div{
    
    
}

.cVign1Details p{
    margin-bottom: 5px;
}
.cVign1Details .vign1Tit{
    font-family: gothambold, sans-serif;
    font-size: 18px;
    color: var(--bleu4);
    text-align: left;    
}
.vign1Date, .vign1Lieu {
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-size: 16px;
    color: var(--bleu3);
}
.vign1Auteur{
    color: var(--orange);
    font-family: caviar_dreamsregular, sans-serif;
}

.bLire{
    display: flex;
    justify-content: flex-end;
    padding-top: 5px;
    padding-right: 10px;
    align-self: flex-end;
    align-items: flex-end;
}
.bLire buttom{
    padding-right: 10px;
    color: var(--bleu4);
    text-decoration: underline;
    font-family: source_sans_prolight, sans-serif;
    letter-spacing: 2px;
}
.bLire buttom:hover{
    color: var(--bleu2);
}
.bLire a span{
    
}

.bPlus{
    display: flex;
    justify-content: flex-end;
    padding-top: 5px;
    padding-right: 2px;
    width: 100%;
}
.bPlus a{
    padding-right: 10px;
    color: var(--bleu4);
    text-decoration: underline;
    font-family: source_sans_prolight, sans-serif;
    letter-spacing: 2px;
}
.bPlus a:hover{
    color: var(--bleu2);
    
}


.divPagination{
    width: 100%;
    text-align: center;
}
.controls{
    width:100%;
    margin-top:5px;
    text-align: center;
}
.controls button{
    background-color: var(--bleu3);
    border: none;
    display: inline-block;
    color: var(--blanc3);
    padding: 7px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 13px;
    font-family: hindregular, sans-serif;
    width: 80px;
}

.controls .next, .controls .prev{	
    position: relative;
    
}

.controls1{
    width:100%;
    margin-top:5px;
    text-align: center;
}
.controls1 button{
    background-color: var(--noir3);
    border: none;
    display: inline-block;
    color: var(--blanc1);
    padding: 7px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 13px;
    font-family: hindregular, sans-serif;
    width: 80px;
}

.controls1 .next, .controls1 .prev{	
    position: relative;
    
}

.controls1 .numPgs {
    display: inline-block;
    background:var(--tWhite);
    color:#000000;
    width: 25px;
}


.traitKab1	{
    width:100%;
}
.traitKab1 .t1	{
    display:inline-block;
    border-bottom:3px solid var(--orange);
    width:50%;

}
.traitKab1 .t2	{
    border-bottom:3px solid var(--bleu1);
    width:50%;
    display:inline-block;
}

.traitKab2	{
    width:100%;
}
.traitKab2 .t1	{
    display:inline-block;
    border-bottom:2px solid var(--bleu2);
    width:50%;

}
.traitKab2 .t2	{
    border-bottom:2px solid var(--bleu4);
    width:50%;
    display:inline-block;
}

/* -- */
.divtxt1{
    display: flex;
    padding: 15px;
    flex-flow: wrap;
    justify-content: space-between;
    font-family: montserratregular,source_sans_proregular, sans-serif; 
    font-size: 16px;
    font-weight: 100;
    color: var(--noir2);
    text-align: justify;
}
.divtxt2{
    display: flex;
    padding: 17px;
    flex-flow: wrap;
    justify-content: space-between;
    font-family: raleway, source_sans_proregular, sans-serif; 
    font-size: 16px;
    font-weight: 400;
    color: var(--noir4);
    text-align: justify;
}
.txtTitr1, .txtTitr2{
    width:100%;
}
.txtTitr1 h2{
    font-size:27px;
    font-family:gothambold, sans-serif;
    color: var(--bleu4);
    width: 100%;   
}
.txtTitr2 h2{
    font-size:22px;
    font-family:robotobold, sans-serif;
    color: var(--noir3);
    width: 100%;   
}
.txt1, .txt2, .txt3, .txt2G, .txt2P{
    width:100%;
    margin-bottom: 20px;
}
.passBible2{
    display: flex;
    justify-content: flex-start;
    font-family: quicksandlight, sans-serif;
    font-size: 23pt;
    width: 100%;
    color: var(--bleu3); 
    
}
.passBible2 p{
    width: 100%;
    padding: 15px;
    text-align: justify;
}
.refPasBibl{
    width: 100%;
    text-align: right;
    font-size: 14px;
    margin-top: 10px;
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-weight: 400;
    color: var(--bleu4);
    padding-right: 10px;
}
.refPasBibl span{
    width: 100%;   
}
.citWmb{
    display: flex;
    justify-content: flex-start;
    font-family: quicksandlight, sans-serif;
    font-size: 18pt;
    width: 100%;
    margin-left: 10px;
    margin-bottom: 15px;
    color: var(--bleu1);
    border-left: 3px solid #0033A1;
}
.citWmb2{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: quicksandlight, sans-serif;
    font-size: 20pt;
    width: 100%;
    color: var(--bleu1);
    
}

.citWmb p{
    width: 95%;
    padding-left: 15px;
    
}
.citWmb2 p{
    width: 100%;
    padding: 10px;
    text-align: justify;
    
}
.refCitWMB{
    width: 100%;
    text-align: right;
    font-size: 12px;
    margin-top: 16px;
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-weight: 400;
    color: var(--bleu2);     
}
.refCitWMB span{
    width: 100%;
    text-align: right;
    display: inline-block;
    
}
.legendePict{
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-weight: 400;
    font-style: italic;
    color: var(--noir3);
    margin-bottom: -10px;
}
.list1{
    padding-left: 20px;
    margin-left: 20px;
}
.list1 li{
   list-style-type: square;
}

.txtGras{
    font-weight: bold;
}

.segMasq {
    display: none;
}




  /* medias sociaux */

.mediaSociauxH{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    justify-items: center;
    width: 98%;
    padding-top: 0px;
    margin-top: -10px;
    margin-bottom: 10px;
}
.mediaSociauxPl{
    width: 100%;
}
.medSocial{
    display: none;
    align-items: center;
	justify-content: flex-end;
    margin-left: 10px;
    width: auto;
    height: 20px;
}
.medSocial * :hover {
    opacity: 0.9;   
}
.medSocial a img{
    height: 100%;
    width: 22px;
    margin-bottom:2px;
    
}
.medSocial .fb-share-button{
    display: flex;
    align-items: center; 
}
.medSocial div{
    display: block;    
}


    /*-- Formumaires & Mails */

input{
    width:100%;
}
.formMail1 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size:14px;
    font-family: montserratextralight, sans-serif;
    color: var(--noir2);
    background: var(--blanc1);
    padding:5px;
    margin-bottom:20px;
    text-align:justify;
    width:100%;
    padding: 10px;
}
.formMail1 .titForm {
    font-size: 16px;
    color: var(--bleu1);
    margin-bottom: 10px;
    font-weight: bold;
}
.formMail1 label {
    width: 100px;
    font-weight: bold;
}
.formMail1 #erreur	{
    display:none;
    font-size:15px;
    color:#fb1026;
}
.formMail1 textarea{
    border: 1px solid var(--noir1);
    border-radius: 5px;
    width: 100%;  
    height: 100px;
    resize: none;
    padding: 5px;
}
#envoi, #rafraichir	{
    cursor: pointer;
    font-size:13px;		
}
.rep_form {
    font-size:13px;
    color:#fb1026;
    font-weight:bold;
}
.formMail1 .enLig{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px;
}
.formMail1 .enLig label{
    display: block;
    width: auto;
    padding: 0px;
    margin: 0px;
    font-weight: bolder;
}
.formMail1 .enLig input{
    width: 25px;
    margin-right: 2px;
}
.formMail1 .form_b_envoi input{
    width: 100px;
    margin: 3px;
    font-weight: bold;
    border-radius: 5px;
    background: linear-gradient(#FFF, #E0E0E0);
}
.formMail1 .form_b_envoi input:hover{
    
    background: linear-gradient(#FF681D, #ffffff);
}


/* -- div bas gris// all -- */ 

.divBasGris{
    display: flex;
    justify-content:space-around;
    flex-flow: row wrap;
    width: 100%;
    background: var(--blanc3);
    padding-left: 5px;
    padding-right: 5px; 
    padding-top: 30px;
}

.divBasGris .basGrisLiens{
    width: 100%;
    font-family: bentonsans_reg, sans-serif;
    padding: 0px;
}

.divBasGris .basGrisLiens p{
    display: flex;
    color: var(--bleu4);
    border-radius: 10px;
    text-decoration: underline;
    margin-bottom: 5px;
}

.divBasGris .basGrisLiens p:hover{
    color: var(--bleu2);
    background: var(--blanc1);
    
}
.divBasGris .basGrisLiens p a{
    width: 100%;
    padding-left: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    
}
.divBasGris .moreRes{
    padding-left: 10px;
}
.divBasGris .moreRes a{
    color: var(--rouge);
    padding: 5px;
    border-radius: 5px;
    border: 1px solid var(--blanc1);
}
.divBasGris .moreRes a:hover{
    background: var(--blanc1);
}



/* -- Card Hover Effet Rbk1 -- */ 

.CHERbk1{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}
.CHERbk1 .cardRbk{
    position: relative;
    max-width: 300px;
    height: 220px;
    background: ;
    display: flex ;
    flex-direction: column;
    justify-items: center;
    margin: 30px 10px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: 0.3s ease-in-out;
}
.CHERbk1 .cardRbk:hover {
    height: 420px;
}
.CHERbk1 .cardRbk .imgBox{
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 250px;
    height: 250px;
    top: -60px;
    left:8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2); 
    z-index: 1;
}
.CHERbk1 .cardRbk .imgBox img{
    border-radius: 4px;
    max-width: 100%;
    
}
.CHERbk1 .cardRbk .imgBox{
    
}

.CHERbk1 .cardRbk .cardinfo{
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color:var(noir2);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    width: 100%;
    
}
.CHERbk1 .cardRbk:hover .cardinfo{
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}
    
    
.CHERbk1 .cardRbk .cardinfo h3{
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-size: 25px;
    color: var(--bleu4);
    
}
.CHERbk1 .cardRbk .cardinfo p{
    font-family: source_sans_proregular, sans-serif;
    font-size: 18px;   
}
.CHERbk1 .cardRbk .cardinfo .phone{    
    color: var(--noir3);
    font-size: 17px;
}
.CHERbk1 .cardRbk .cardinfo .phone img{    
    width: 25px;
}


    /* --  banIndex */

.banIndex {
    width:99%;
    margin-bottom: 5px;
    margin-top: 5px;
    background-color: var(--blanc1);
    
}
#boutCar {
    width:100%;
	text-align:center;
	min-height:20px;
	z-index:3;
	margin-top:0px;
		
}
#boutCar div {
    display:inline-block;
	width:10px;
	margin-bottom:5px;
	margin-left:5px;
}
.carIm {
    display: none;
}
.carIm img {
    box-shadow: 3px 3px 8px hsl(0, 0%, 70%);
}

.anUrg{
	display: none;
	width:99%;
	background: var(--rouge);
	
	
}
.anUrg p {
	padding: 5px;
	color: var(--blanc1);
	font-size: 15px;
	font-family: robotobold, source_sans_probold, sans-serif;	
}



.affichNo{
    display: none;
}
    
    /* --  Contenu */
.contenu{
    width:99%;
    background: var(--blanc2);
}
.contenu1Part{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background: var(--blanc1);
    width:100%;
    margin-bottom: 0px;
    padding-top: 20px;
}
.contenu2PartIn {    /* --  Contenu partie gauche grande */ 
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-height: 250px;
    background: var(--blanc1);
    width:100%;
    margin-bottom: 5px;
    
}
.zoneP, .zoneG {    
    width:100%;
    min-height: 250px;
    margin-bottom: 5px;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
}


.artGen{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 20px;
}
.artGenRow{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.div2PartEg{
    min-height: 100px;
    width: 100%;
    margin: auto;
    margin-bottom: 10px;
}
.div2_2, .div2_4{
    flex: 0 0 calc(48% - 5px);
    margin-bottom: 10px;
    padding: 1px;
}

.artG{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.artGTit{
    background: var(--bleu3);
    text-align: center;
    padding-top:1px;
    width:100%;
    font-size: 18px;
    font-family: helveticaregular, sans-serif;
    font-weight: bold;
}
#divPgrCulte{
    width: 98%;
    padding-top: 5px;
}
.Table_pgrm_church {
    font-family: caviar_dreamsregular, sans-serif;
    width:100%;
    margin-bottom:10px;
    margin-top: -7px;
}
.Table_pgrm_church td {		
    color:;   
    margin-bottom: 1px;
    border: thin solid var(--blanc3);
    background: var(--blanc1);
    padding:10px;
}	
.Table_pgrm_church th {		
    border: thin solid var(--blanc3);
    background: var(--blanc2);
    font-weight: bold;
    margin-bottom: 1px;
}
.Table_pgrm_church tr {		
    margin: 2px;
}
.jr{		
    font-weight:bold;
    color:#032537;
}
/*--- pied de page ---- */

#piedDePage{
    display: flex;
    justify-content: center;
    background: var(--bleu3);
    margin-top: 15px;
    min-height: 50px;
    width: 100%;
}
.contPiedPage{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 99%;
}


/* --- Page Index uniquement --- */

#corpsIndex{
    padding-bottom: 20px;
}
#contenueIndex{
    margin-top: 25px;
    padding-top: 10px;
    padding-bottom: 20px;
    background: var(--blanc1);
}
.zoneG #vidIndex{
    padding: 3px;
}
#citVerIndex{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 3px;
    margin-bottom: 20px;
    margin-top: 20px;
    
}
#citVerIndex .div2PartEg{
    
    border: 1px solid var(--blanc3);
    margin-bottom: 10px;
}



#vProfExhorts{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 4px;
}
.vProfExhort{
    display: flex;
}

#voixProphete, #exhorationEns {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--blanc3);
    padding: 2px;
    margin-bottom: 10px;
    
}



#artActu{
    display: flex;
    flex-direction: column;
    background-color: var(--blanc3);
    margin: 5px;
    
}

.gdTitrAct p {
    padding-left: 20px;
    padding-top: 10px;
    margin-bottom: 0px;
}
.gdTitrAct p img{
    height: auto;
    width: 200px;    
}
.actuIndex{    
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
    justify-content: space-around;
    margin-bottom: -80px;
}
.actuIndex a {
    padding: 5px;
    overflow: hidden;
}
.actuIndex a img {
    border: 2px solid var(--noir1);
    min-height: 100px;
}
.titrActuIndex {
    position:relative;
    height: 80px;
    width:90%;
    bottom: 1000px; 
    z-index: 2;
    background: var(--blanc2);
    opacity: 0.7;
    padding: 5px;
    border-radius: 5px;
    transition: 1s;        
}
.actuIndex a .titreAct{
    font-family: gothambold, sans-serif;
    font-size: 24px;
    color: var(--bleu4);
    line-height: 24px;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.actuIndex a .datAct{
    width: 100%;
    text-align: right;
    color: var(--bleu4);
    letter-spacing: 2px;
}
.actuIndex a:hover .titrActuIndex {
    bottom: 100px;
}


#carrouselAct .controls{
    z-index: 4;
    position: relative;
    bottom:80px;
    padding-bottom: 10px;
}

#etiIndex{
    margin-top: 20px;
    padding-top: 30px;
    padding-left: 3px;
    padding-right: 3px;
    background: var(--blanc1); 
    margin-top: -10px;
}

#zPIndex{
    display: flex;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 5px; 
}
#partDroitIndex{
    background: var(--blanc2);
    width: 100%;
    height: auto;    
}

#divAnInd{
    display: flex;
    flex-direction: column;
    width: 98%;
    margin-top: 10px;
    background: var(--blanc1);
    
}

.anInd{
    padding-left: 7.5px;
    padding-right: 7.5px;
    width: 100%;
    padding-bottom: -5px;
    color: var(--bleu4);
    
}
.anInd a, .anInd a:hover {    
    color: var(--bleu4);    
}
.narIndex1{
    font-family: bentonsanslight, sans-serif;
    font font-stretch: extra-expanded;
    font-size: 18px;
    padding-top:10px;
    text-align: justify;
    margin-bottom: -5px;
    
}
.narIndex1 span{
    color: var(--bleu1);
    text-decoration: underline;
}
.anInd buttom {
    
    margin-bottom: -5px;
}
.artGen .bLire{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    text-align: right;
    padding-bottom: 10px;    
}
.demPr{
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.demPr a{
    padding: 5px;
    border: 1px solid var(--noir1);
}


.basPage{
    display: flex;
    flex-direction: column;
    width: 99%;
    background: var(--blanc3);
    padding-top: 20px;
    padding-bottom: 20px;
    
}

.divSuivNs{
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
    width: 100%;
    
}
.bPTitre .titr{
    margin-bottom: -15px;
    font-size: 18px;
}
.suivNS { 
    display: flex;
    align-items: center;
    color: var(--bleu1);
    font-family: ralewaythin, Century Gothic, sans-serif;
}
.suivNS a {    
    
}
.suivNS a :hover{
    opacity: 0.8;
    color: var(--bleu3);
}
.suivNS a img{    
    width: 30px;
    height: auto;
}
.suivNS a span{    
    display: inline-block;
    margin-bottom: 20px;
    margin-left: 10px;
}

.liensRecomd{
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
    width: 100%;
}
.lienSug{
    margin-bottom: 10px;    
}



.lienRecomd{
    display: flex;
    cursor: pointer;
}
.lienRecomd:hover{
    color:var(--bleu1);   
}
.lienRecomd:hover > a {
    background-position-x: 0%;
    background-position-y: 100%;
    
}
.lienRecomd:hover > lRTxt {
    color:var(--bleu1);    
}
.liensRecomd .lienRecomd span{
    
   
}



.lRimgYF{
    display: inline-block;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-image: url(../css/imgsCss/etiLSYF.png);
    background-size: auto;
    background-origin: padding-box;
    background-clip: border-box;
    width: 30px;
    height: 30px;
    transition: 0.4s;
    
}

.lRimgVGR{
    display: inline-block;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-image: url(../css/imgsCss/etiLSVGR.png);
    background-size: auto;
    background-origin: padding-box;
    background-clip: border-box;
    width: 30px;
    height: 30px;
    transition: 0.4s;
    
}

.lRimgTBM{
    display: inline-block;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-image: url(../css/imgsCss/etiLSTBM.png);
    background-size: auto;
    background-origin: padding-box;
    background-clip: border-box;
    width: 30px;
    height: 30px;
    transition: 0.4s;
    
}

.lRimgTM{
    display: inline-block;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-image: url(../css/imgsCss/etiLSTM.png);
    background-size: auto;
    background-origin: padding-box;
    background-clip: border-box;
    width: 30px;
    height: 30px;
    transition: 0.4s;
    
}
.lRTxt{
    margin-left: 10px;
    font-family:verdanaregular, sans-serif;
    color: var(--noir2);
    
}

.qlqsLiens{
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
	
}

.liensRap{
    display: flex;
    flex-direction: column;
    margin-top: -10px;
}
.liensRap a {
    display: inline-block;
    padding-left: 20px;
    color: var(--blue4);
}
.liensRap a:hover {
    text-decoration: none;
    color: var(--orange);
    font-weight: bold;
}

.divSuivNs{
    max-width: 290px;
}
.liensRecomd{
    max-width: 290px;
}
.qlqsLiens{
    max-width: 310px;
}

/* --- Page Actualité uniquement --- */

#contAct{
    
    
}
#contAct .mediaSociauxH{
    padding: 10px;
    width: 100%;
}
#listAct, #listActArch{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-basis: auto;
    padding: 10px;
    background: var(--blanc3);    
}
#listActArch {
    margin-top: 20px;
    background: var(--blanc2);
}

.listActTit{
    font-size:25px;
    font-family:gothambold, sans-serif;
    color: var(--bleu3);
    width: 100%; 
    padding:10px;
}    
#listActArch .listActTit{
    
    color: var(--rouge);
}
.cardActu{
    display: flex;
    flex: 0 85%;
    margin-bottom: 20px;
    background: var(--blanc1);   
}
.cardActuArch{
    flex: 0 45%;
}

.cardActu a:hover{
    box-shadow: 3px 3px 8px hsl(0, 0%, 70%);
}
.cardActu a{
    display: flex;
    flex-direction: column;
    color: var(--noir1); 
}
.actuDescrit{
    padding: 5px;
}

.actuDescrit h2{
    font-family: gothambold, sans-serif;
    font-size: 18px;
}
.cardActuArch .actuDescrit h2{
    font-size: 15px;
}
.actuDescrit p{
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    text-align: justify;
    font-size: 15px;
    margin-bottom: 0px;
}
.cardActuArch .actuDescrit p{
    font-size: 12px;
}
.actuDescrit .datActu{
    display: block;
    text-align: right;
    width: 100%;
    padding: 10px;
    text-decoration: underline;
    bottom: 0px;
    position: relative;
    font-size: 13px;  
}
.cardActuArch .actuDescrit .datActu{
    font-size: 10px;  
}
.vignImgLien{
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    margin-top: -50px;
    background: var(--bleu3);
    height: 35px;
    width: 100%;
    border-radius: 5px 20px;
}

.vignImgLien p{
    display: flex;
    margin: auto;
    color: var(--blanc1);
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-size: 15px;
}
.div2_2:hover .vignImgLien {
    background: var(--bleu2);
    color: var(--blanc2);
}
.div2_2:hover img {
    box-shadow: 3px 3px 8px hsl(0, 0%, 70%); 
}
#etiIndex .div2_2{
    display: inline-block;
    margin-bottom: 25px;
}


/* -- */

/*page notre assemblée */

.divBasGris .pgrm, .divBasGris .divAn, .divBasGris .qlqLiens  {
    width: 100%;
    background: var(--blanc4);
    min-height:  50px;
    padding: 5px;
    margin-bottom: 20px;
}
.divBasGris .tit {
    text-align: center;
    font-family: hindregular, sans-serif;
    font-size: 18px;
    background: var(--orange);
    color: var(--blanc3);    
}

.divBasGris .pgrm table {
    text-align: center;
}


.divBasGris .qlqLiens div {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    
}
.divBasGris .qlqLiens div p {
        
}

.divBasGris .divAn img {
    display: none;        
}
.divBasGris .divAn .tit {
    font-size: 15px;        
}
/*page notre Pasteur */

.FormContactPast{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    width: 100%;
    background: var(--blanc4);
    min-height:  50px;
    padding: 5px;
    margin-bottom: 20px;
}
.divBasGris .pgrmP{
    width: 100%;
    background: var(--blanc4);
    min-height:  50px;
    padding: 5px;
    margin-bottom: 20px;    
}
.FormContactPast form label{
    display: none;    
}
.divBasGris .pgrmP .autrLPP{
    margin-top: 50px;    
}

/*-- Page WMB -- */

.pWmb {
    align-content: flex-start;
    padding: 5px;
}
.divBasGris .basPWMB{
    justify-content: space-around;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    border-bottom: 5px solid var(--blanc2);
}

.divBasGris .basPWMB .titLiens{
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-weight: 400;
    font-size:20px;
    font-style: italic;
    text-align: center;
    color: var(--orange);
    border-bottom: 1px solid var(--noir4);
    width: 100%;
    margin-bottom: 10px;
}
.pWmb .liensBioWmb ,.pWmb .comAnge,.pWmb .autresRes{    
    width:100%;
}
.divBasGris .liensBioWmb div p{
    background: var(--blanc1);
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
}
.divBasGris .liensBioWmb a{
    color: var(--noir1);
    padding: 3px;
    text-align: center;
}
.divBasGris .liensBioWmb a:hover{
    color: var(--bleu2);
}

/* -- page Conseil d'administration -- */

.divBasConseil{
   border-top: 3px solid var(--blanc4);
}
.divBasGris .conseilCit  {
    width: 100%;
    background: var(--blanc2);
    min-height:  50px;
    padding: 5px;
    margin-bottom: 20px;
}

.divBasGris .basConseil{
    justify-content: space-around;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--blanc2);
    background: var(--blanc2);
    width: 100%;
}

.divBasGris .basConseil .titLiens{
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-weight: 400;
    font-size:25px;
    font-style: italic;
    text-align: center;
    color: var(--orange);
    border-bottom: 1px solid var(--noir4);
    width: 100%;
    margin-bottom: 10px;
}

/*-- Page ECODIM --*/

.ListEcodim{
    color:#000000;
    font-family:loraregular, sans-serif;
    background:#e8eef1;
    font-size:11px;
    width:100%;
}
.ListEcodim tr{		
    margin-bottom: 2px;
    border-bottom: 2px solid var(--blanc1);    
}
.ListEcodim td{		
    color:var(--blanc1);		
    background:var(--bleu3);
    border-left: 1px solid var(--blanc3);
}
.ListEcodim th{		
    background:#d5e5ee;
    font-weight:bold;
    border-left: 1px solid var(--blanc2);
}
.ListEcodim .dir{		
    display: none;
}
#passEcodim {
    background: var(--blanc1);
   
}
.divFonctOff{
    width: 100%;
    padding: 0px;
    padding-top: 5px;
    padding-bottom: 10px;
    margin-top: 10px;
    background: var(--blanc2);
    border-top: 1px solid var(--bleu4);
    border-bottom: 1px solid var(--bleu4);
}

.divFonctOff .txtTitr1, .txtFonct {
    background: var(--blanc2);
    padding: 5px;
    text-align: center;
    width: 100%;
}
.divFonctOff .txtTitr1 h2{
    color: var(--orange);
}
.txtFonct{
    text-align: justify;
    padding: 10px;
}
.txtFonct .txtTitr2 h2{
    width: 100%;
    font-size: 16px;
    color: var(--bleu4);
}
.txtFonct .txtFonctCit{
    font-size: 18px;
    font-family: ralewaythin, Century Gothic, sans-serif;
    color: var(--bleu1);
    margin-bottom: 10px;
}
.txtFonctCont{
    font-size: 16px;
    font-family: Verdana, robotoregular, sans-serif;
    color: var(--noir2);
    margin-bottom: 10px;
}

.osee h2 .osee1{
    display: none ;    
}
.txtFonct .txtTitr2{
    cursor: pointer;
}

/* -- page direct culte en direct (All pages multimedia) -- */
.directVid .basGrisLiens{
    width: 100%;
    text-align: justify;
}
.directVid .basGrisLiens p{
    width: 200px;
    
}
#directG{
    margin-top: -30px;
}

/* -- page direct predications -- */



/* -- page photos -- */

.pGal{
    min-height: 0px;
    margin-bottom: -35px;    
}
.divGalleriePh{
    display: flex;
    width: 100%;
    flex-direction: column;
}
.galVisual{
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    background: var(--blanc3);
    padding: 3px;
}
.imVisual{
    background: var(--blanc1);
    width: 100%;
    opacity: 1;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 100px;
}
.imVisual p{
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-family: helveticaregular, Trebuchet MS, sans-serif;
    font-weight: 400;
    color: var(--noir3);
    padding-top: 5px;
    box-shadow: 3px 3px 8px hsl(0, 0%, 70%);
}
.btFermImg{
    width: 100%;
    text-align: end;
    
}
.btFermImg a{
    display: inline-block;
    width: 30px;
    margin-bottom: 5px;
    margin-right: -10px;
    margin-top: -15px;
}
.btFermImg p{
    
}


.galCats{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    background: var(--blanc3);
    padding-top: 5px;
    padding-bottom: 5px;
    
}

.galCat{
    width: 75px;
    height: 30px;    
}

.galCat a {
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    box-shadow: 3px 3px 8px hsl(0, 0%, 70%);
    overflow: hidden;
    padding: 5px;
    border-radius: 5px;
    transition: width 0.4s;
    
}
.galCat a span{
    display: none;
    color: var(--blanc2);
    width: 100%;
    text-align: center;
    font-family: gothambold, sans-serif;;
    font-size: 12px;
    transition: display 0.4s;
}
.galCat a:hover{
    width: 100%;
}
.galCat a:hover span{
    display: flex;
    justify-content: center;
}

#galCatAll {
    color: var(--bleu2);
    text-align: center;
    width: 70px;
    font-family: gothambold, sans-serif;;
    font-size: 12px;
}
#galCatAll a{
    background: var(--bleu1);
}
#galCatChurch a{
    background: var(--orange);
}
#galCatPastor a{
    background: var(--bleu2);
}
#galCatArch a{
     background: var(--rouge);
}

#galCatAllPh{
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
#galCatAllPh a{
    background: var(--blanc1);
    color: var(--noir3);
    
    box-shadow: 3px 3px 8px hsl(0, 0%, 70%);
    padding: 5px;
    border-radius: 5px;
    font-family: gothambold, sans-serif;;
    font-size: 12px;
}


.galList{
    display: flex;
    width: 100%;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 1;
   
}
.galEti{
    width: 32.5%;
    margin-bottom: 10px;
    
}

/* -- page citation et versets du jour -- */
.entCitV{
    background: var(--blanc1);
}
.carCitVerJr{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100px;
    padding-bottom: -10px;
    padding-top: -10px;
}
.bGroundCarCitVer{
    width: 100%;
    height: 50px;
    background: var(--blanc3);
     z-index: 1;
}
.imgCarCitVer{
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    margin-top:0px;
}
.imgCarCitVer img{
    width: 90%;
    height: auto;
    box-shadow: 3px 3px 8px 1px hsl(0, 0%, 70%);
    border: 1px solid var(--blanc3);
}
#imgCarCV{
    position: relative;
    z-index: 2;
    margin-top: -100px;
}

.gifCharg{
    width: 100%;
    text-align: center;
}


.contCitVJr{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    min-height: 300px;
    padding-top: 0px;
    margin-bottom: 20px;
}
.contCitVJr .citVersJrAf{
    width: 90%;
    padding-left: 25px;
    text-align: justify;
    margin-top: 50px;
    margin-bottom: 30px;
}

.contCitVJr #citJr {
    border-left: 3px solid var(--bleu2);
    font-family: quicksandlight, sans-serif;
    font-size: 25px;
    color: var(--bleu1);
}

.contCitVJr #versetsJr {
    border-left: 3px solid var(--orange);
    font-family: quicksandlight, sans-serif;
    font-weight: 400;
    font-size: 25px;
    color: var(--noir2);
}

#citJr .refCitWMB{
   font-size: 17px;
}

#versetsJr .refPasBibl{
    font-size: 17px;
    color: var(--orange);
}

.contCitVJr .mediaSociauxH{
    border-top: 1px solid var(--blanc3);
    padding-top: 20px;
}

/* -- page Contacts -- */


.nosContacts{
    
    padding: 20px; 
}
.nosContacts p{
     
}

.nosContacts .cTitre{
    font-family: gothambold, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: var(--bleu3);
    margin-bottom: -10px;
}
.nosContacts .cTxt{
    width:100%;
    text-align:justify;	
    margin:auto;
    font-family:montserratextralight, sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;  
}
.nosContacts .cTxt{
    width:100%;
    text-align:justify;	
    margin:auto;
    font-family: montserratextralight, sans-serif;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;  
}
.divCoord{
   width: 100%; 
}
.divCoord .cIcone{
    width: 30px;
    margin-right: 20px;
}
.divCoord .cVal{
    width: 100%;
}
.cPhone, .cWhatsapp, .cEmail{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    
}

.divFormMail .formMail1{
    width: 100%;
    max-width: 500px;
    background: var(--blanc3);
}
.divFormMail .formMail1 .titForm{
    width: 100%;
    text-align: right;
    font-size: 12px;
}
.divEcW {
    padding-top: 0px;
    color: var(--noir1);
}
.divEcW div{
    padding-top: 10px;
    color: var(--noir1);
    
}

.lienW{
    display: inline-flex;
    background: var(--blanc3);
    padding: 10px;
    align-items: center;
    border-radius: 10px;
    
}
.lienW img{
    width: 40px;
    margin-right: 20px;
}

.carContact {
    margin-top: -10px; 
}

.basCont .citContact{
    width: 100%;
    padding: 10px;
    max-width: 600px;
    justify-content: space-around;
    box-shadow: 3px 3px 8px hsl(1, 0%, 70%);
    border-radius: 5px;
    margin-bottom: 10px;
}
.basCont .citContact .refCitWMB{
    width: 100%;
    text-align: right;
    font-size: 14px;
    margin-top: -15px;
}
.basCont .autresRes{
    width: 100%;
    text-align: left;
    padding: 20px;
    border-top: 1px solid var(--blanc2);
    margin-bottom: 20px;
}
.basCont .autresRes .basGrisLiens{
    width: 150px;
}
.carContact .cTxt {
    padding: 20px;
}



.otherRes{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 10px;
    margin-bottom: 20px;
}
.otherRes .basGrisLiens{
    width: 150px;
}



/*---- All End --------*/

.dispBlock {
	display: block;
}
.dispFlex{
	display: flex;
}



@media screen and (max-width: 411px) { /* ------------------------------------------------------ (max-width: 411px) -------- */
    .CHERbk1 .cardRbk .imgBox{
       
        left: 0px;
        
    }

}
    
@media screen and (min-width: 640px) { /* ------------------------------------------------------ (min-width: 640px) -------- */   
    
    /* --- Page Actualité uniquement --- */

    #contAct{
        
    }
    #listAct, #listActArch{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .cardActu{
        flex: 0 0 calc(48% - 10px);

    }
    
    
    
    

} 

@media screen and (min-width: 768px) { /* ------------------------------------------------------ (min-width:768px) -------- */
    /* --  entete*/
    .entete {
        position: fixed;
                
    } 
    #pageHeader {       
        grid-template-columns: 55px 170px 1fr 40px;
        padding-right: 5px;        
    }   
    #pageHeader > a, #pageHeader h1  {
         font-size: 1.5rem;
    }
    #pageHeader nav {
        display: block;
        padding-right: 1rem;
        grid-row: auto;
        grid-column: auto;
        justify-self: end;
    }
    .dMenusMob{        
        display: none;
    }
    
    /* munu PC Tablette  */
    
    #smenuPcTablette {
        display: flex;
        justify-items: end;
        align-items: center;       
    }
    
    .navbar a {
        float: left;
        font-size: 12px;
        color: var(--blanc2);
        text-align: center;
        padding-bottom: 16px;
        padding-left: 3px;
        padding-right: 3px;
        padding-top: 16px;
        text-decoration: none;
    }

    .subnav {
        float: left;
        overflow: hidden;
    }

    .subnav .subnavbtn {       
        border: none;
        outline: none;
        color: white;
        padding: ;
        background-color: inherit;
        margin: 0;
    }
    #navBar #menuAct{
        display: none;
    }
    #navBar button {
        font-size: 12px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .navbar a:hover, .subnav:hover .subnavbtn {
        color: var(--bleu2);
        text-decoration: none;
    }
    
    #navbar > .subnav:hover > subnavbtn {
        color: var(--bleu2);
        text-decoration: none;
    }

    .subnav-content {        
        display: none;
        position: absolute;
        left: 0;
        padding-left: 10px;
        background: var(--bleu1);
        margin-top:0px;
        padding-top: 17px;
        width: 100%;
        opacity: 0.80;
        z-index: 1;
    }

    .subnav-content a {
        float: left;
        color: var(--blanc);
        text-decoration: underline;
        font-size: 12px;        
    }

    .subnav-content a:hover {
        color: var(--bleu3);
        text-decoration: none;
    }

    .subnav:hover .subnav-content {
        display: block;
    }

    #mobileMenu {
        display: none;
    }
    .direct {
        justify-self: center;
        padding-left: 0px;
        padding-right: 10px;
        
    }
   
    
    /* --  corps*/
    
    .corps{
        margin-top: 53px;
        width: 100%;
    }
    /* enfants de l'éléments corps  */

    /* -- éléments communs  */
    
    
    
    /* video  */

    .artVid100 {
        margin-top: 20px;
    }
    
    .cVign1Details p{
        margin-bottom: 5px;
    }
    .cVign1Details .vign1Tit{
        
    }
    .vign1Date, .vign1Lieu {
        
    }
    .div2_2{
        
    }
    .div2_4{
        flex: 0 0 calc(25% - 10px);
        margin-bottom: 5px;
    }
    
    
    /* --*/
    
    .divtxt1{
        font-size: 18px;
    }
    .divtxt2{
        font-size: 18px;
    }
    
    .txt2, .txt3, .txt2G, .txt2P{
        width: 48%;
    }
    
    .segMasq{
        display: inline-block;
    }
    
    .citWmb{
        font-size: 20pt;
        
    }
    .citWmb2{
        font-size: 20pt;
        
    }
    .citWmb p{
        width: 90%;
        padding-left: 20px;    
    }
    
	.legendePict{
		
		font-size: 16px;
		
	}
    
    
    

             /* banière page d'acceuil  */
    .banIndex {
        width:99%;
        margin-bottom: 5px;
        margin-top: 5px;
        padding-top: 10px;
    }    
    
        /* --  Contenu */
    
    .contenu2PartIn {    /* --  Contenu partie gauche grande */ 
        display: flex;
        flex-direction: row;
        justify-content: space-between
    }
    .zoneG {
        display: flex;
                
    }    
    
    .zoneP {
        display: flex;
        flex: 0 0 300px;
        justify-content: flex-start;        
    }    
    .artGen{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        justify-items: first;
    }
    .div2PartEg {
        flex: 0 1 calc(50% - 10px);       
    }
    
    /*--- pied de page ---- */

    #piedDePage{
        display: flex;
        width: 100%;
    }
    
     /* -- divBasGris -- */
    
    .divBasGris {
        justify-content: flex-start;
    }
    
    
    /* --- Page Index uniquement --- */
    
    .zoneG > .artVid100{
        margin-top: 0px;
        padding: 2px;
    }
    
    #citVerIndex{
        display: flex;
        flex-direction: row;
        justify-content: space-between;        
        width: 100%;
        padding: 3px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    #vProfExhorts{
        display: flex;
        flex-direction: row;
        
    }
    .vProfExhort{
        display: flex;
        flex: 0 1 calc(50% - 10px);
    } 
    
    
    
    .actuIndex{
        
    }
    .titrActuIndex {
        width: 75%;        
    }
    
    #partDroitIndex{    

    }
    #zPIndex{
        padding-left: 15px;
        margin-top: 0px;
    }
    .artG{
        margin-top: 0px;
    }

    .basPage{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        width: 99%;
        
    }
    .divSuivNs{
        flex: 0 0 215px;
    }
    .liensRecomd{
        flex: 0 0 290px;
    }
    .qlqsLiens{
        flex: 0 0 225px;
    }
    
    #etiIndex{
        
    }
    

/* --- Page Actualité uniquement --- */

    .cardActu{
        flex: 0 0 calc(33% - 10px);

    }
    .cardActuArch{
        flex: 0 0 calc(24% - 10px);

    }
   
    
  /*-- page notre assemblée --*/
    .divBasGris .pgrm {
        width:48%;
    }
    .divBasGris .qlqLiens {
        width: 48%;
        
    }
    .divBasGris .divAn {
        width:48%;
        margin-left: 4%;
    }
    
    /*page Pasteur */
    .divBasGris .FormContactPast{
        width: 55%;
        
    }
    .divBasGris .pgrmP{
        width: 37%;
        margin-left: 8%;
    }
    
    /*-- Page WMB -- */

    
    .divBasGris .basPWMB{
        border-bottom: 0px solid var(--blanc1);
        
    }
    .divBasGris .basPWMB .titLiens{
        
    }
    .pWmb .liensBioWmb ,.pWmb .autresRes{    
       width:35%;
    }
    .pWmb .comAnge{
        width: 55%;
        margin-left: 9.5%;
    }
    
    /*-- page conseil d'administration -- */
    
    .divBasConseil{
        justify-content: space-between;
    }
    .divBasGris .conseilCit {
        width: 58%;
        padding-right: 25px;
       
        
    }
    .divBasGris .basConseil {
        width: 30%;
        margin-bottom: 10px;
        margin-left: 2%;
        
    }
    
    /*-- Page Ecodim --*/
    
    .ListEcodim{
        font-size:13px;
    }
    .ListEcodim .dir{		
        display: block;
    }
    
    
    /* -- page photos -- */
    
    .divGalleriePh{ 
        padding: 15px;
    }
    .imVisual{
        max-width: 600px;
        margin-bottom: 0px;
    }
    
    .btFermImg a{
        margin-right: -20px;
        margin-top: -20px;
    }
    
    .galCat{
        width: 140px;
        height: 30px;
    }

    .galCat a {
        width: 70px;
    }
    .galCat a span{
        font-size: 15px;
    }

    #galCatAll {
        width: 200px;
        font-size: 15px;
    }

    #galCatAllPh a{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .galEti{
        width: 24%;
        margin-bottom: 10px;

    }
    
    /* -- page citation et versets du jour -- */
    .entCitV{
        padding: 25px;
    }
    .carCitVerJr{
        height: 200px;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    .bGroundCarCitVer{
        height: 100px;
    }
 
    .imgCarCitVer img{
        width: 80%;
    }
    #imgCarCV{
        margin-top: -200px;
	}
    
    .contCitVJr{
        padding-top: 30px;
    }
    .contCitVJr .citVersJrAf{
        width: 80%;
        padding-left: 40px;
    }



    .carContact {
        margin-top: 0px; 
    }

    
}



@media screen and (min-width: 880px) {  /* ------------------------------------------------------ (min-width: 880px) -------- */
    
    .enteteMenus {
        
        grid-template-columns: 50px 220px 1fr  60px;
    }
    #pageHeader > a, #pageHeader h1  {
         font-size: 1.5rem;
    }
    #navBar #menuAct{
        display: block;
    }
    .subnav-content a{
        padding-left: 4px;
        padding-right: 7px;
    }
    
     /* --  Contenu */
    
    /* --  divBasGris -- */
    
    .divBasGris {
        justify-content: space-around;
    }
    

    /*-- page notre assemblée --*/
    
    
    .divBasGris .pgrm {
        width:24%;
            
    }
    .divBasGris .qlqLiens {
        width: 20%;
        
    }
    .divBasGris .divAn {
        width:53%;
        margin-left: 0px;
    }
    
     /* -- page Pasteur assemblée -- */
    .divBasGris .FormContactPast{
        width: 53%;
        margin-left: 0px;
    }
    
     /* -- page gallerie photos -- */
    
    .imVisual{
        max-width: 700px;
        margin-bottom: 0px;
    }
    
    
}
    

@media screen and (min-width: 992px){    /* ------------------------------------------------------ (min-width: 992px) -------- */
    
    .enteteMenus, .banIndex,.contenu, .basPage, .contPiedPage, .anUrg {
        width: 98%;
       
    }
     #pageHeader > a, #pageHeader h1  {
         font-size: 1.6rem;
    }
    /* --  entete*/
    #pageHeader {       
        grid-template-columns: 55px 180px 1fr 70px;
        padding-right: 5px;        
    }
    #pageHeader > a, #pageHeader h1  {
        
        
    }
    #smenuPcTablette {
        
    }
    
    .navbar > a {
        font-size: 13px;
        padding-left: 8px;
        padding-right: 7px;
    }
    #navBar button {
        font-size: 13px;
        padding-left: 8px;
        padding-right: 7px;
        color: var(--blanc);
    }
    .subnav-content a{
        padding-left: 8px;
        padding-right: 9px;
    }
    
    
    .banIndex{
        margin-top: 7px;
    }
    
    /* --  Contenu */
   
    .zoneP {
        flex: 0 0 400px;
    }
    .txt3 {
        width: 32%;
        margin-bottom: 20px;
    }
    .txt2G{
        width:64%;
    }
    .txt2P{
        width:34%;
    }
    
    
    
    /*-- Page WMB -- */

    .pWmb .liensBioWmb ,.pWmb .autresRes{    
       width:20%;
    }
    .pWmb .comAnge{
        width: 40%;
        margin:0px;        
    }
    
    /* -- page gallerie photos -- */
    
    .imVisual{
        
    }
   
    
} 

@media screen and (min-width: 1200px) { /* ------------------------------------------------------ (min-width:12000px) -------- */
    .enteteMenus, .banIndex,.contenu, .basPage, .contPiedPage, .anUrg {
        width: 90%; 
    }
    .navbar > a {
        font-size: 13px;
        padding-left: 10px;
        padding-right: 7px;
    }
    #navBar button {
        font-size: 13px;
        padding-left: 10px;
        padding-right: 7px;
        color: var(--blanc);
    }
    
    /* --- Page Actualité uniquement --- */
    
    .cardActu{
        flex: 0 0 calc(24% - 10px);
    }
    .cardActuArch{
        flex: 0 0 calc(16% - 10px);
    }
    
    
     /* -- page photos -- */
    
    
    .imVisual{
        max-width: 1000px;
        margin-bottom: 0px;
    }
    .galEti{
        width: 24%;
        margin-bottom: 10px;

    }
    
    
        
}
    

