/* GENERAL */

body{
    font-family: 'Lato', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-weight: bold;
}
ul,ol{
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
    margin-top: 5px;
}
section{
    padding: 65px 0 80px 0;
}
section .heading{
    text-align: center;
    padding-bottom: 40px;
}
section .heading h2{
    text-transform: uppercase;
}
.white-divider{
    width: 100px;
    height: 2px;
    background: #fff;
    margin: 0 auto 20px;
}

/* BARRE DE RETOUR : même rouge que la navbar du site principal */
.back-bar{
    background: #d82c2e;
    padding: 15px;
    text-align: center;
}
.back-bar a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}
.back-bar a:hover{
    text-decoration: underline;
}

/* PORTFOLIO */

#portfolio{
    background: #d82c2e;
}
#portfolio .heading h2{
    color: #fff;
}

#portfolio .img-thumbnail{
    width: 100%;
    height: 80%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
#portfolio .img-thumbnail:hover{
    filter: none;
    -webkit-filter: none;
}

/* Carte d'application : même recette que les .skill-card de la page principale */
.objet{
    background: #fff;
    border: 2px solid #e6e6e6;
    border-left: 6px solid #d82c2e;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    padding: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #222;
}
.objet h3{
    color: #d82c2e;
    margin: 10px 0;
}
.objet p{
    margin: 0;
    font-size: 14px;
}

/* FOOTER */

footer{
    background: #333;
    padding: 20px 0 40px;
}
footer .bi{
    font-size: 25px;
    margin: 20px;
    color: #d82c2e;
    height: 30px;
    line-height: 45px;
}
footer .bi:hover{
    font-size: 35px;
    font-weight: bold;
}
footer h5{
    color: #fff;
    font-weight: normal;
}
