/* CSS du container Body */

/* On empêche la de voir la barre pour slider de gauche à droite */
html
{
    overflow-x: hidden
}

/* Détermine le fond d'écran */
body
{
    background-color : white;
}

/* Définit la taille minimum du container Body */
.mainContainer
{
    min-height : 500px;
}

/* Permet de décaler le message flash par rapport au top du container Body */
.flashMessage
{
    margin : 10px 0px 10px 0px;
}

/* Permet de changer la police du block-contact */
.block-contact
{
    background : url('../../img/background_footer.png') no-repeat;
    background-size : cover;
    height : 250px;
    font-family: 'Quicksand', sans-serif;
}

/* Ajoute la marge au titre Contact */
.block-contact .marginTitreContact
{
    margin-top : 90px;
}

/* Permet de changer le style de la police du titre du block-contact */
.block-contact .titreContact
{
    font-family: 'Quicksand-Bold', sans-serif;
    color : white;
    position : relative;
}

/* Permet d'ajouter une ligne blanche en dessous du titre Nous Contacter */
.block-contact .ligneContact
{
    width : 50px;
    text-align : center;
    position : absolute;
    border-bottom : 3px solid white;
    right : 50%;
    margin-right : -25px;
}

.ligneBody
{
    margin-top : -3px;
}

.contactFooter
{
    border : 1px solid white;
    margin-top : 15px;
}

.contactIcon
{
    margin-top : -3px;
}

.fullImg {
    width: auto;
    height: auto;
}

/* Evite le double soulignement des abbréviations */
abbr
{
    text-decoration : none;
}