header {
    .st0{fill:none !important;stroke:#5CA3A7;stroke-miterlimit:10;transition:0.5s;}
    .st1{fill:none;stroke:#5CA3A7;stroke-width:5.6693;stroke-miterlimit:10;transition:0.5s;}
    .st2{fill:#5CA3A7;transition:0.5s;}
    .st3{fill:#000;transition:0.5s;}
}

header {
    height: 140px;
}
header div.logo {
    height: 100px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
}
header div.logo svg {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
}
nav {
    margin-top: -40px;
    z-index: 999;
    position: sticky;
    top: 0px;
    box-shadow: 0 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #fff
}
nav ul li a.selected {
    box-shadow: none;
    background: #5CA3A7;
    color: #fff;
}

div.produits {
    margin: 0 0 50px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    font-family: "Roboto Condensed", sans-serif;
}
div.produit {
    border: solid 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
div.produit div.promo {
    width: auto;
    height: auto;
    background: #c00;
    color: #fff;
    transform: rotate(-45deg);
    text-align: center;
    display: inline-block;
    padding: 5px 30px;
    position: absolute;
    z-index: 9;
    top: 10px;
    left: -25px;
}
div.produit div.photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
div.produit div.photo div.cover {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: 0.5s;
}
div.produit:hover div.photo div.cover {
    transform: scale(1.2);
    transition: 0.5s;
}
div.produit p.produit {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 1px;
    text-align: center;
    font-size: 1.3em;
}
div.produit p.produit a {
    color:#222;
    text-decoration: none;
}
div.produit p.prix {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 1px;
    text-align: center;
    font-size: 1.1em;
    color: #999;
    transition: 0.5s;
}
div.produit:hover p.prix {
    color: #222;
    transition: 0.5s;
}
div.produit p.prix s {
    color: #999;
    font-size: 0.8em;
}
