@charset "utf-8";
/* CSS Document */

@font-face {
font-family: 'Roboto';
src: url('typo/Roboto-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Roboto';
src: url('typo/Roboto-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
font-display: swap;
}

body,html{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Roboto';
	font-size: 18px;
    /*line-height: 22px;*/
	background-color: #ffffff;
}


/* TYPO --------------------------- */

p{ margin: 0; padding: 0; }
h1{
    margin: 0;
    padding: 0 0 40px 0;
    font-size:1.5em;
    color: #6a6a6a;
    font-weight: normal;
    font-style: italic;
}
h1::after{
    content:'';
    display: block;
    width:80px;
    height: 4px;
    background-color: #6a6a6a;
    position: absolute;
    margin-top: 10px;
}
h1.bleu::after{ background-color: #0672b6; }
h1.violet::after{ background-color: #873baa; }
h1.rouge::after{ background-color: #d00000; }
h1.acier::after{ background-color: #4c7b99; }
h1.vert::after{ background-color: #a0c416; }
h1.jaune::after{ background-color: #f0c001; }
h1.orange::after{ background-color: #f07700; }

h2{
    margin: 0;
    padding: 0 0 20px 0;
    font-size:1.3em;
    color: #6a6a6a;
    font-weight: normal;
}
h2::after{
    content:'';
    display: block;
    width:30px;
    height: 2px;
    background-color: #6a6a6a;
    position: absolute;
    margin-top: 4px;
}

.bleu{ color: #0672b6; }
.violet{ color: #873baa; }
.rouge{ color: #d00000; }
.acier{ color: #4c7b99; }
.vert{ color: #a0c416; }
.jaune{ color: #f0c001; }
.orange{ color: #f07700; }
.gris{ color: #6a6a6a; }

.bPlus{
    width:100%;
    display: inline-block;
    text-align: right;
}
.bPlus a{text-decoration: none; color: inherit;}

.titreNumero{
    font-weight: bold;
    font-size: 1.3em;
    color: #0672b6;
    vertical-align: middle;
}
.numeroCercle{
    width:45px;
    height: 45px;
    border-radius: 50%;
    background-color: #0672b6;
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.numeroCercle p{
    width:100%;
    font-size: 1.2em;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

ul{
    margin: 0;
    padding: 0;
    list-style: none
}
ul li{
    margin-left: 10px;
    margin-bottom: 5px;
}
ul li::before{
content:"";
width:0.6em;
height: 0.6em;
border-radius: 0.6em;
background-color: #873baa;
display: inline-block;
margin-right: 10px
}
ul li.listeOrange::before{
content:"";
width:0.6em;
height: 0.6em;
border-radius: 0.6em;
background-color: #f07700;
display: inline-block;
margin-right: 10px
}
ul li.listeRouge::before{
content:"";
width:0.6em;
height: 0.6em;
border-radius: 0.6em;
background-color: #B00000;
display: inline-block;
margin-right: 10px
}

/* -------------------------------- */
#Haut{
    width:100%;
    height: 265px; 
    position: relative;
    float: left;
}
#Menu{
    width:100%;
    height: 265px;
    background-image: url("img/bandSup.jpg");
    background-position: top;
    background-repeat: repeat-x; 
    position: relative;
    float: left;
}
.zoneLogo{
    height: 225px;
    position: absolute;
    left: 0;
    top: 0;
}
.logo{
    width:215px;
    height: 225px;
    position: relative;
    float: left;
    margin-right: 10px;
    z-index: 2;
}
.logo img{
    object-fit: contain;
    object-position: 50% 50%;
    max-width: 100%;
    max-height: 100%;
}
.accorcheLogo{
    font-size: 1.3em;
    font-weight: bold;
    font-style: italic;
    position: relative;
    float: left;
    margin-top: 100px;
}
.zoneMenu{
    width: 100%;
    display: grid;
    grid-template-columns: auto repeat(7, 190px);
    grid-template-rows: 35px 35px;
    grid-row-gap: 5px;
    position: absolute;
    float: left;
    top: 130px;
    z-index: 1;
}
.decoMenu{
    grid-column: 1 / 6;
    background-color: #6a6a6a;
    color: #ffffff;
}
.caseMenuG{
    background-color: #6a6a6a;
    position: relative;
}
.caseMenuG a{
    text-decoration: none;
    color: #ffffff;
}
.caseMenu{
    position: relative;
}
.caseMenu a{
    text-decoration: none;
    color: #6a6a6a;
}
.boutonMenu{
    font-size: 0.9em;
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}
.barreM{
    width: 1px;
    height: 3px;
    background-color: #000000;
    position: relative;
    float: left;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    transition-property: all;
	transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
}
    .barreM.bleu{background-color: #0672b6; }
    .barreM.violet{background-color: #873baa; }
    .barreM.rouge{background-color: #d00000; }
    .barreM.acier{background-color: #4c7b99; }
    .barreM.vert{background-color: #a0c416; }
    .barreM.jaune{background-color: #f0c001; }
    .barreM.orange{background-color: #f07700; }
    .barreM.blanc{background-color: #ffffff; }
.barreM.actif{ width:100%; opacity: 1; }

.boutonMenu:hover .barreM{
    width:100%;
    opacity:1;
    transform: translateX(-50%);
}

.webFull{
    width:100%;
    height: 100vh;
    position: relative;
    float: left;
    overflow: auto;
    /*scroll-snap-type: y mandatory;*/
}

.pPage{
    width:100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    float: left;
    /*scroll-snap-align: start;*/
}
.fondBleu{ background-color: #0672b6; }
.fondViolet{ background-color: #873baa; }
.fondRouge{ background-color: #d00000; }
.fondAcier{ background-color: #4c7b99; }
.fondVert{ background-color: #a0c416; }
.fondJaune{ background-color: #f0c001; }
.fondOrange{ background-color: #f07700; }
.fondNoir{ background-color: #000000; }
.fondGris{ background-color: #6a6a6a; }

/* FOND ------------------- */
.pPage.impression{
    background-image: url("img/background/back-imp.jpg");
    background-size: cover;
    background-position: center center;
}
.pPage.basimpression{
    background-image: url("img/background/bas-imp.jpg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pPage.copyimpression{
    height: auto;
    background-image: url("img/background/copyBleu.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}
.pPage.telephonie{
    background-image: url("img/background/back-tel.jpg");
    background-size: cover;
    background-position: center center;
}
.pPage.bastelephonie{
    background-image: url("img/background/bas-tel.jpg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pPage.copytelephonie{
    height: auto;
    background-image: url("img/background/copyViolet.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}
.pPage.affichage{
    background-image: url("img/background/back-affichage.jpg");
    background-size: cover;
    background-position: center center;
}
.pPage.basaffichage{
    background-image: url("img/background/bas-affichage.jpg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pPage.copyaffichage{
    height: auto;
    background-image: url("img/background/copyVert.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}
.pPage.dynamique{
    background-image: url("img/background/back-affdyn.jpg");
    background-size: cover;
    background-position: center center;
}
.pPage.basdynamique{
    background-image: url("img/background/bas-affdyn.jpg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pPage.copydynamique{
    height: auto;
    background-image: url("img/background/copyOrange.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}
.pPage.siteweb{
    background-image: url("img/background/back-siteweb.jpg");
    background-size: cover;
    background-position: center center;
}
.pPage.bassiteweb{
    background-image: url("img/background/bas-siteweb.jpg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pPage.copysiteweb{
    height: auto;
    background-image: url("img/background/copyJaune.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}
.pPage.video{
    background-image: url("img/background/back-video.jpg");
    background-size: cover;
    background-position: center center;
}
.pPage.basvideo{
    background-image: url("img/background/bas-video.jpg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pPage.copyvideo{
    height: auto;
    background-image: url("img/background/copyRouge.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.pPage.basInd{
    background-image: url("img/background/bas-index.jpg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pPage.copyInd{
    height: auto;
    background-image: url("img/background/copyGris.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.pPage.qui{
    background-image: url("img/background/back-qui.jpg");
    background-size: cover;
    background-position: center center;
}
.pPage.basqui{
    background-image: url("img/background/bas-qui.jpg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pPage.contact,.pPage.partenaire{
    background-image: url("img/background/back-contact.jpg");
    background-size: cover;
    background-position: center center;
}
.pPage.bascontact,.pPage.baspartenaire{
    background-image: url("img/background/bas-contact.jpg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.pPage.copyqui,.pPage.copycontact,.pPage.copypartenaire{
    height: auto;
    background-image: url("img/background/copyGris.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}
.pPage.legale{
	height: auto;
    background-image: url("img/background/back-contact.jpg");
    background-size: cover;
    background-position: center center;
}

.entetePage{
width:100%;
height: calc(100% - 265px);
position: relative;
float: left;
overflow: hidden;
background-color: #dfdfdf;
}
.entetePage.impression{
    background-image: url("img/background/entete-fd-bleu.jpg");
    background-size: cover;
    background-position: top left;
}
.entetePage.telephonie{
    background-image: url("img/background/entete-fd-violet.jpg");
    background-size: cover;
    background-position: top left;
}
.entetePage.affichage{
    background-image: url("img/background/entete-fd-vert.jpg");
    background-size: cover;
    background-position: top left;
}
.entetePage.dynamique{
    background-image: url("img/background/entete-fd-orange.jpg");
    background-size: cover;
    background-position: top left;
}
.entetePage.siteweb{
    background-image: url("img/background/entete-fd-jaune.jpg");
    background-size: cover;
    background-position: top left;
}
.entetePage.video{
    background-image: url("img/background/entete-fd-rouge.jpg");
    background-size: cover;
    background-position: top left;
}
.entetePage.qui,.entetePage.contact,.entetePage.partenaire{
    background-image: url("img/background/entete-fd-gris.jpg");
    background-size: cover;
    background-position: top left;
}

.flexContenu{
    width:100%;
    height: calc(100% - 40px);
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}
.flexContenu.entete{ height: 100%; top: 0; transform: none;}
.retourW{flex-wrap: wrap; }
.flexInfo{
    width:100%;
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.flexInfo.ferGauche{
    justify-content: flex-start;
}
.flexInfo.altop{ align-items:flex-start; }
.flexTxt50{
    width:calc(40% - 62px);
    background-color: rgba(255,255,255,0.8);
    border: 1px solid #ffffff;
    padding: 30px;
    margin: 0 5%;
}
.flexTxt50.invisible{
    background-color: inherit;
    border: 0;
}
.flexTxt100{
    width:calc(90% - 60px);
    background-color: rgba(255,255,255,0.8);
    border: 1px solid #ffffff;
    padding: 30px;
    margin: 1% 5%;
}
.flexTxt100.invisible{
    background-color: inherit;
    border: 0;
}
.flexTxt100.limite{
    max-width:850px;
}
.flexTxtLibre{
    padding: 30px;
    margin: 1% 0;
}
.flexTxtEntete{
    width:calc(34% - 60px);
    background-color: rgba(255,255,255,0.8);
    border: 1px solid #ffffff;
    padding: 30px;
    margin: 8%;
}
.flexPhotoEntete{
    width:50%;
    height: 100%;
    position: relative;
    float: left;
}
.flexPhotoEntete img{
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}
.decoupePhotoEntete{clip-path : polygon(20% 100%, 0 0, 100% 0, 100% 100%) ; }

.col100{
    width: 98%;
    margin: 0.5% 1%;
    position: relative;
    float: left;
}
.col50{
    width: 48%;
    margin: 0.5% 1%;
    position: relative;
    float: left;
}
.col25{
    width: 23%;
    margin: 0.5% 1%;
    position: relative;
    float: left;
}
.textCentrer{ text-align: center; }


/* COPYR ------------------- */
.zonePubCopy{
    width:1310px;
    height: 370px;
    position: relative;
    float: left;
    left: 50%;
    margin: 80px 0;
    transform: translateX(-50%);
}
.blocPubCopy{
    width:100%;
    background-color: #ffffff;
    position: relative;
    float: left;
    box-shadow: 0 0 5px #666666;
}
.blocPubCopy.impression{
    width:100%;
    height: 180px;
    display: flex;
    background-color: #ffffff;
    position: relative;
    float: left;
    box-shadow: 0 0 5px #666666;
}
.visuPubCopy{
    width:calc(100% - 10px);
    position: relative;
    float: left;
    margin: 5px;
}
.visuPubCopy img{
    object-fit: contain;
    object-position: 50% 50%;
    max-height: 100%;
    max-width: 100%;
}
.boutonCopy{
    width:250px;
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    font-size: 1.5em;
    text-align: center;
    vertical-align: middle;
    position: relative;
    float: left;
    left: 50%;
    transform: translateX(-50%);
}
.boutonCopy a{ color: #ffffff; text-decoration: none; }

.bandCopy{
    width: calc(100% - 2px);
    display: flex;
    position: relative;
    float: left;
}
.zoneCopy{
    width:100%;
    /*height: calc(100% - 265px);*/
    position: relative;
    float: left;
    display: grid;
    grid-template-columns: 250px auto 400px 300px;
    /*grid-template-rows: 150px 70px 50px;*/
	grid-template-rows: 150px 50px;
    grid-gap: 0;
}
.logoCopy{
    grid-column: 1;
    grid-row: 1/2;
    text-align: center;
    padding: 2% 0;
}
.logoCopy img{
    max-height: 100%;
}
.videCopy{
    grid-column: 2;
    grid-row: 1/2;
}
.coordCopy{
    grid-column: 3;
    grid-row: 1;
    line-height: 1.5em;
    position: relative;
}
.coordCopy p{ position: absolute; bottom:20px; }
.adresseCopy{
    font-size: 0.9em;
    font-style: italic;
    color: #0672b6;
}
.emailCopy{
    font-size: 1.3em;
    color: #0672b6;
}
.reseauCopy{
    grid-column: 4;
    grid-row: 1;
}
.partenaireCopy{
    grid-column: 3/5;
    grid-row: 2;
}
.flexCopy{
    width:100%;
    position: relative;
    float: left;
    display: flex;
    align-items: center;
    justify-content:space-between;
    flex-wrap: nowrap;
    font-size: 0.8em;
    white-space: nowrap;
    top: 50%;
    transform: translateY(-50%);
}
.flexCopy img{ max-height: 40px; }
.ligneCopy{
    grid-column: 1/5;
    grid-row: 2;
    border-top: 1px solid #6a6a6a;
    font-size: 0.8em;
    color: #999999;
}
.ligneCopy a{color: #999999; text-decoration: none; }
.bCopyG{
    position: relative;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
}
.bCopyD{
    position: relative;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
}

/* BOUTON --------------- */
.boutCentreContact{
width:auto;
height: 30px;
line-height: 30px;
color: #ffffff;
text-align: center;
vertical-align: middle;
font-style: italic;
position: relative;
float: left;
padding: 5px 20px;
left: 50%;
transform: translateX(-50%);
clear: both;
}
.boutCentreContact a{
text-decoration: none;
color: #ffffff;
}

.maxImgMW{ max-width: 100%; }

/* INDEX ------------------ */
.patchwork{
    width:100%;
    height: calc(100% - 265px);
    position: relative;
    float: left;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 0;
    grid-auto-rows: calc( 100% / 3);
    overflow: hidden;
}
.patchwork a{text-decoration: none;}
.patchSimple{
    grid-column: span 1;
    grid-row: span 1;
    position: relative;
    float: left;
    cursor: pointer;
}
.patchSimple p{
    font-weight: bold;
    font-style: italic;
    font-size: 1.3em;
    text-align: center;
    white-space: nowrap;
    color: #ffffff;
    width: 100%;
    position: relative;
    top:50%;
    transform: translateY(-50%);
}
.patchDouble{
    grid-column: span 2;
    grid-row: span 1;
    overflow: hidden;
    position: relative;
    float: left;
    cursor: pointer;
}
.patchDouble:hover .detailPatch{
    visibility:visible;
    transform:translateX(0);
}
.imagePatch{
    width:100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.6;
    position: absolute;
    float: left;
    z-index: 1;
}
.imagePatch img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.detailPatch{
    width:100%;
    height: 100%;
    position: absolute;
    float: left;
    z-index: 5;
    background-color: rgba(0,0,0,0.4);
    color: #ffffff;
    font-weight: bold;
    font-style: italic;
    transform: translateX(-100%);
    transition-property: all;
	transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
    visibility: hidden;
}
.detailPatch.inverse{ transform: translateX(100%); }
.detailPatch.bleu{ background-color: rgba(6,114,182,0.7); }
.detailPatch.violet{ background-color: rgba(135,59,170,0.7); }
.detailPatch.rouge{ background-color: rgba(208,0,0,0.7); }
.detailPatch.acier{ background-color: rgba(76,123,153,0.7); }
.detailPatch.vert{ background-color: rgba(160,196,22,0.7); }
.detailPatch.jaune{ background-color: rgba(240,192,1,0.7); }
.detailPatch .txtD{
    width:calc(90% - 20px);
    margin: auto 5%;
    padding: 10px;
    text-align: right;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-right: 1px solid #ffffff;
}
.detailPatch .txtG{
    width:calc(90% - 20px);
    margin: auto 5%;
    padding: 10px;
    text-align: left;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-left: 1px solid #ffffff;
}

#PT1:hover ~ #P1 .detailPatch{
    visibility:visible;
    transform:translateX(0);
}
#PT2:hover ~ #P2 .detailPatch{
    visibility:visible;
    transform:translateX(0);
}
#PT3:hover ~ #P3 .detailPatch{
    visibility:visible;
    transform:translateX(0);
}
#PT4:hover ~ #P4 .detailPatch{
    visibility:visible;
    transform:translateX(0);
}
#PT5:hover ~ #P5 .detailPatch{
    visibility:visible;
    transform:translateX(0);
}
#PT6:hover ~ #P6 .detailPatch{
    visibility:visible;
    transform:translateX(0);
}

#P1{order:1; animation: 3s ease-in-out 0s 1 arrive1;}
#PT1{order:2; animation: 3s ease-in-out 0s 1 arriveT1;}
#P2{order:4; animation: 3s ease-in-out 0s 1 arrive2;}
#PT2{order:3; animation: 3s ease-in-out 0s 1 arriveT2; }
#P3{order:6; animation: 3s ease-in-out 0s 1 arrive3;}
#PT3{order:5; animation: 3s ease-in-out 0s 1 arriveT3;}
#P4{order:7; animation: 3s ease-in-out 0s 1 arrive4;}
#PT4{order:8; animation: 3s ease-in-out 0s 1 arriveT4;}
#P5{order:9; animation: 3s ease-in-out 0s 1 arrive5;}
#PT5{order:10; animation: 3s ease-in-out 0s 1 arriveT5;}
#P6{order:11; animation: 3s ease-in-out 0s 1 arrive6;}
#PT6{order:12; animation: 3s ease-in-out 0s 1 arriveT6;}


.caseIcone{
    width:140px;
    min-height: 160px;
    margin: 15px 25px;
    position: relative;
    float: left;
    text-align: center;
}
.cadreIcone{
    width:140px;
    height: 140px;
    position: relative;
    float: left;
    margin-bottom: 10px;
    border: 1px solid #6a6a6a;
    left: 50%;
    transform: translateX(-50%);
}
.cadreIcone img{
    object-fit: contain;
    object-position: 50% 50%;
    max-width: 100%;
    max-height: 100%;
}
.legendeIcone{
    width:100%;
    position: relative;
    float: left;
}


/* IMPRESSION --------------- */
.caseIcone2{
    width:90px;
    height: 90px;
    background-color: #0672b6;
    position: relative;
    margin: 10px 20px;
}
.caseIcone2.vert{
    background-color: #a0c416;
}
.caseIcone2.jaune{
    background-color: #f0c001;
}
.caseIcone2.vide{
    background-color: inherit;
    display: inline-block;
}
.caseIcone2 img{
    object-fit: contain;
    object-position: 50% 50%;
    max-height: 100%;
    max-width: 100%;
}

.bulleInfo span{
visibility: hidden;
position: absolute; 
bottom: 10px;
left: 50%;
z-index: 999;
width: 0;
font-size: 0.9em;
text-align: center;
color:#0672b6;
white-space: nowrap;
padding: 5px;
border: 1px solid #0672b6;
opacity: 0;
background-color: #fff;
transform: translateX(-50%);
overflow: hidden;
transition-property: all;
transition-duration: 0.4s;
transition-timing-function: ease-in-out;
}
.bulleInfo:hover span{
    visibility: visible;
    opacity: 1;
    width:200px;
}
.bulleInfo.vert span{ border: 1px solid #a0c416; color: #a0c416; }
.bulleInfo.jaune span{ border: 1px solid #f0c001; color: #f0c001; }

.detailIcone{
    width:100%;
    height: 0;
    position: absolute;
    float: left;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: rgba(210,149,73,0.95);
    color: #ffffff;
    text-align: center;
    transition-property: all;
	transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
    overflow: hidden;
}
.detailIcone p{
    width:90%;
    text-align: center;
    margin: 0 5%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.detailIcone.bleu{ background-color: rgba(60,104,174,0.95); }
.detailIcone.rouge{ background-color: rgba(162,60,67,0.95); }
.detailIcone.gris{ background-color: rgba(80,86,91,0.95); }

.col25:hover .detailIcone{
    height: 100%;
}

/* TELEPHONE ------------------- */
.zoneMEA{
    width:100%;
    position: relative;
    float: left;
}
.titreMEA{
    border-radius: 8px 8px 0 0;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    position: relative;
    float: left;
    padding: 5px 20px;
    left: 50%;
    transform:translateX(-50%);
    clear: both;
}
.cadreMEA{
    width:calc(100% - 22px);
    border: 1px solid #873baa;
    border-radius: 8px;
    background-color: #ffffff;
    position: relative;
    float: left;
    padding: 10px;
}

/* AFFICHAGE ------------- */
.ligneIcone{
    width:100%;
    position: relative;
    float: left;
    display: flex;
    align-items: center;
}
.caseLigneIcone{
    width:80px;
    height: 80px;
    background-color: #a0c416;
    position: relative;
    margin: 5px;
    float: left;
}
    .caseLigneIcone img{
    object-fit: contain;
    object-position: 50% 50%;
    max-height: 100%;
    max-width: 100%;
    }
.txtLigneIcone{
    width:calc(100% - 110px);
    position: relative;
    float: left;
    margin-left: 10px;
}

.caseMinPhoto{
    width:90px;
    height: 90px;
    border:1px solid #a0c416;
    position: relative;
    margin: 10px 20px;
}
.caseMinPhoto img{
    object-fit: contain;
    object-position: 50% 50%;
    max-height: 100%;
    max-width: 100%;
}

/* CONTACT ---------------------- */
.flexInfo.contact{
    align-items:stretch;
    justify-content: center;
    flex-wrap: nowrap;
}
.blocCoord{
    width:21%;
    max-width: 250px;
    margin: 0 1%;
    padding: 1%;
    background-color: #6a6a6a;
    color: #ffffff;
    text-align: center;
    position: relative;
    float: left;
}

.message{
width:90%;
max-width:350px;
background-color:#ffffff;
border:1px solid #6a6a6a;
border-radius:8px;
font-size:16px;
text-align:center;
height:auto;
padding:4px;
position:fixed;
top:50%;
left:50%;
transform:translate(-50%, -50%);
z-index:11;
overflow:auto;
}
    .closeF{
	width:80px;
	height:25px;
	background-color:#6a6a6a;
	border-radius:0 8px 0 8px;
	color:#FFFFFF;
	font-size:14px;
	text-align:center;
	line-height:25px;
	vertical-align:middle;
	position:relative;
	float:right;
	top:-4px;
	right:-4px;
	}
	.closeF a{
	color:#FFFFFF;
	text-decoration:none;
	}

.caseIcone.qui{
    width:110px;
    min-height: 110px;
    margin: 5px 20px;
    position: relative;
    float: left;
    text-align: center;
}
.cadreIcone.qui{
    width:110px;
    height: 110px;
}
.legendeIcone.qui{
    font-size:0.8em;
}

/* PARTENAIRE -------------------- */
.blocPartenaire{
	width:100%;
	display: flex;
	position: relative;
	float: left;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px dotted #6a6a6a;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

/* FORMULAIRE -------------------- */
.chp100{
	width:calc(100% - 60px);
	max-width:500px;
	padding: 0 20px;
	height: 30px;
	border-radius: 8px;
	display: inline-block;
	border: 1px solid #6a6a6a;
	margin: 10px;
	color: #000000;
	font-family: 'Roboto';
	font-size: 16px; 
	position: relative;
	float: left;
}
.chp100::placeholder{ color:#999999; }
.chpAr100{
	width:calc(100% - 60px);
	max-width:500px;
	padding: 0 20px;
	height: 160px;
	border-radius: 8px;
	display: inline-block;
	border: 1px solid #6a6a6a;
	margin: 10px;
	color: #000000;
	font-family: 'Roboto';
	font-size: 16px; 
	position: relative;
	float: left;
}
.chpAr100::placeholder{ color:#999999; }
.formLigne{
	width:calc(100% - 20px);
	margin: 10px;
	position: relative;
	float: left;
}
.chpMini{
	width:40px;
	padding: 0 20px;
	height: 30px;
	border-radius: 8px;
	display: inline-block;
	border: 1px solid #6a6a6a;
	margin: 10px;
	color: #000000;
	font-family: 'Roboto';
	font-size: 16px; 
}
.chpSub{
	width: auto;
	height: 30px;
	font-size: 16px;
	text-align: center;
	color: #ffffff;
	border-radius: 8px;
	display: inline-block;
	background-color: #6a6a6a;
	border: 1px solid #ffffff;
	padding: 0 40px;
	margin: 10px 0;
	cursor: pointer;
	position: relative;
	float: left;
    left: 50%;
    transform: translateX(-50%);
}


/* ANIMATION ------------------------ */
@keyframes arrive1{
    from,10% { transform:translateX(-100%); }
    40%{
        transform:translateX(0)
    }
}
@keyframes arriveT1{
    from { opacity:0; transform:translateX(-100%); }
    30%{
        opacity:1; transform:translateX(0)
    }
}
@keyframes arrive2{
    from,10% { transform:translateX(100%); }
    40%{
        transform:translateX(0)
    }
}
@keyframes arriveT2{
    from { opacity:0; transform:translateX(100%); }
    30%{
        opacity:1; transform:translateX(0)
    }
}

@keyframes arrive3{
    from,30% { opacity:0; transform:translateX(-100%); }
    60%{
        opacity:1;
        transform:translateX(0)
    }
}
@keyframes arriveT3{
    from,40% { opacity:0; transform:translateX(-100%); }
    70%{
        opacity:1; transform:translateX(0)
    }
}
@keyframes arrive4{
    from,30% { opacity:0; transform:translateX(100%); }
    60%{
        opacity:1;
        transform:translateX(0)
    }
}
@keyframes arriveT4{
    from,40% { opacity:0; transform:translateX(100%); }
    70%{
        opacity:1; transform:translateX(0)
    }
}

@keyframes arrive5{
    from,70% { opacity:0; transform:translateX(-100%); }
    100%{
        opacity:1;
        transform:translateX(0)
    }
}
@keyframes arriveT5{
    from,60% { opacity:0; transform:translateX(-100%); }
    90%{
        opacity:1; transform:translateX(0)
    }
}
@keyframes arrive6{
    from,60% { opacity:0; transform:translateX(100%); }
    90%{
        opacity:1;
        transform:translateX(0)
    }
}
@keyframes arriveT6{
    from,70% { opacity:0; transform:translateX(100%); }
    100%{
        opacity:1; transform:translateX(0)
    }
}