/* 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;
}

/* 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;
}

.objet{
    background-color: aquamarine;
    border: 2px solid yellow;
    text-align: center;
}


