.w3-lobster {
  font-family: "Lobster", Sans-serif;
}
body {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-bottom: 40px;
    overflow: hidden;
    overscroll-behavior: none;
    color: #5a5a5a;
    background-color: #C3FFC7;
}
#HeadPage {
    padding: 10px;
    color: #76016B;
    font-family: cursive;
    font-size: 1em;
}
#HeadWelcome {
    position: relative;
    margin-top: 20px;
    font-family: arial, sans-serif;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: #260580;
}
/*-------------------------------------*/
/*               CAROUSEL              */
/*-------------------------------------*/
#Content {
    display: block;
    position: relative;
    margin-top: 0;
    margin-left: auto;
}
.imgSlide {
    vertical-align: middle;
}
.textSlide {
    color: #ffffff;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}
#Sliding img {
    margin: auto;
    max-width: 50%;
    height: auto;
}
.TitreA {
   font-size: 1.4em; 
   color: white; 
   text-shadow: black 0.1em 0.1em 0.1em; 
   max-width:100%; 
   height:auto; 
}
.TitreB {
   font-size: 1em; 
   color: white; 
   text-shadow: black 0.1em 0.1em 0.1em; 
   max-width:100%; 
   height:auto; 
}
/*--------------------------------------*/
/*           NAVIGATION                 */
/*--------------------------------------*/
.nav-link {
    display: block;
    width: 200px;
}
.nav-link:hover {
    background-color: #159735;
    color: #FFF;
}
/*--------------------------------------*/
/*          PIED DE PAGE                */
/*--------------------------------------*/
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
    background-color: #ccc;
    color: white;
    text-align: center;
    font-size: .8em;
    vertical-align: middle;
}
.callMotions {
    text-decoration: none;
}
.callMotions:hover {
    /* color: #000; */
    background-color: #000;
}
/*--------------------------------------*/
/*             MODALE MENTIONS          */
/*--------------------------------------*/
.cModal {
    display: block;
    position: fixed;
    z-index: 99999;
    top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #328FF9;
    opacity: 1;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition-duration: 10s;
    animation-duration: 10s;
    animation-name: fondu;
}
.cModal p {
    padding: 5px 20px 13px 20px;
    font-family: arial, serif;
    font-size: 13px;
    text-align: justify;
    color: #FFF;
}
.droite {
    float: right;
    background: #606061;
    color: #ffffff;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
     border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
     box-shadow: 1px 1px 3px #000;
     cursor: pointer;
}
/******************************************************************/
/*                  RESPONSIVE POUR SMARTPHONE                    */ 
/******************************************************************/
@media screen and (max-width: 600px){
    body {
        background-color: #B6AC97;
    }
    #HeadPage {
        padding: 10px;
        text-align: center;
        color: #000;
        font-family: cursive;
        font-size: 0.8em;
    }
    #HeadWelcome {
        position: relative;
        margin-top: 20px;
        font-family: arial, sans-serif;
        font-size: 1em;
        font-weight: bold;
        text-align: center;
    }
    /*-----------------------------------------------------------*/
    /*                MENU NAVIGATION RESPONSIVE                 */
    /*-----------------------------------------------------------*/
    .nav-link {
        display: block;
        width: 200px;
    }
    .nav-link:hover {
        background-color: #add827;
        color: #FFF;
    }    
}