﻿


/*  Waves     */

/* Header */
.header {
    position: relative;
    text-align: center;
    background-image: linear-gradient(90deg, rgba(229,150,0,0.3) 38%, rgba(198, 204, 207,0.4) 100%),url('../../Img\Produits2/BAck.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 150px;
    margin-top: 35px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.7em;
    font-weight: 800;
    color: white;
}

    .header .logo {
        width: 300px;
        fill: white;
        padding-right: 15px;
        display: inline-block;
        vertical-align: middle;
    }

    .header .inner-header {
        height: 45vh;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .header .flex { /*Flexbox for containers*/
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .header .waves {
        position: relative;
        width: 100%;
        height: 15vh;
        margin-bottom: -9px; /*Fix for safari gap*/
        min-height: 100px;
        max-height: 150px;
    }

    .header .content {
        position: relative;
        height: 20vh;
        text-align: center;
        background-color: transparent;
    }

/* Animation */

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }

    100% {
        transform: translate3d(85px,0,0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .content {
        height: 30vh;
    }

    h1 {
        font-size: 24px;
    }
}





/* ENd waves */


.GalleryContainner{
    margin-bottom : 90px ; 
}


.gallery-wrapper {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    height: auto;
}

.gallery {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.gallery-item:not(:last-of-type) {
    margin-bottom: 40px;
}

.gallery-img {
    max-width: 100%;
    box-shadow: 4px 0px 60px 1px rgba(247, 156, 23, 0.4);
}



.gallery-im-caption {
    margin: 0;
    padding: 8px;
    background: #808080;
    color: #f2f2f2;
    font-family :'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ; 
    font-size : 1.3em ; 
    text-align : center ; 
}

@media screen and (min-width: 769px) {
    .gallery-wrapper {
        max-width: 1240px;
    }

    .gallery {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-direction: row;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        justify-content: center;
    }

    .gallery-item {
        padding: 20px;
    }

    .gallery-img {
        min-width: 350px;
        max-width: 350px;
        max-height : 350px ; 

    }
}


a{
    text-decoration : none ; 
}