header {
    .st0{fill:none !important;stroke:#fff;stroke-miterlimit:10;transition:0.5s;}
    .st1{fill:none;stroke:#fff;stroke-width:5.6693;stroke-miterlimit:10;transition:0.5s;}
    .st2{fill:#fff;transition:0.5s;}
    .st3{fill:#fff;transition:0.5s;}
}
/*
header.mini {
    display: none;
}
    */

header video {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -100%);
    object-fit: cover;
    z-index: 10;
}

header svg {
    cursor: pointer;
}

h1 strong {
    display: inline-block;
    margin: 0 10px;
}
h1 span {
    color: rgba(92, 164, 167, 0.7);
    cursor: pointer;
    position: relative;
    z-index: 0;
    animation: bounce 1s infinite;
}
@keyframes bounce {
    0% {
        bottom: 5px;
        color: rgba(92, 164, 167, 0.7);
    }
    50% {
        bottom: -5px;
        color: rgba(92, 164, 167, 1.0);
    }
    100% {
        bottom: 5px;
        color: rgba(92, 164, 167, 0.7);
    }
}

main {
    margin: 0 0 50px;
}

div.produits {
    padding: 0 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;
}
