body{
    background-color:#f2f2f2;
    font-family:'Roboto',sans-serif;
  
}
a{
    transition:all 700ms;
}

/* HEADER */
header{
    background-color:#F4F4F4;
    padding:10px;
    display: flex;
    justify-content:space-between;
    align-content: center;
    align-items:center;
    transition:padding 800ms;
}
header.sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:5;
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
    padding:10px 20px 10px 20px;
}

.mobile{
	display: none;
}

nav a{
    text-transform: uppercase;
    font-size:0.9rem;
    margin-left:0px;
    font-weight:700;
}
nav a:hover{
    color:orange;
}

/* HERO (bloc avec image de fond) */
#hero{
    height:600px;
    background:
        url(../medias/Test%20background.jpg)
        no-repeat
        center center;
    background-size:cover;
      text-align:center;
}
#hero.page{
    height: 400px;
}

.overlay{
    background:rgba(0,0,0,0.2);
    height:100%;
    color:#fff;
    display: flex;
    flex-wrap:wrap;
    /* Centrage Flex horizontal */
    justify-content:center;
    /* Centrage Flex vertical */
    align-content: center;
    align-items: center;
    position:relative;
    padding:0 50px;
}

h1{
    width:100%;
    text-align:center;
    font-size:3.5rem;
    line-height:4rem;
    margin-bottom:40px;
    padding:0 50px 0 50px;
}

p{
    width:100%;
    color:rgb(8, 8, 8);
    line-height:1.5rem;
    text-align:center;
    margin-bottom:30px;
}

p1{
    width:100%;
    color:#f2faf2;
    line-height:1.5rem;
    text-align:center;
    margin-bottom:30px
    
}
.hovertest:hover{
    background-color:transparent;
    border-color:white;
}
.lien_gold{
    background-color:#65350d;
    text-transform:uppercase;
    color:#fff;
    padding:15px;
    margin:0 10px 0 10px;
    display:inline-block;
    border:1px solid #c59b6c;
}
.transparent{
    background-color:transparent;
    border-color:white;
}
.lien_gold:hover{
    background-color:#65350d;
    border-color:#65350d;
}
.transparent:hover{
    background-color:transparent;
    color:#b68349;
}

button{
    font-size:2rem;
    position:absolute;
    bottom:20px;
    transition:color 500ms;
}
button:hover{
    color:orange;;
}

.block_center{
    padding:80px 20%;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}

.chapo{
    text-transform:uppercase;
    color:#47ad33;
    font-size:0.9rem;
    padding-bottom:10px;
    display:inline-block;
    letter-spacing:0.1rem;
    width:100%;
    text-align:center;
}
.tiret{
    width:50px;
    height:3px;
    background-color:#65350d;
    margin-bottom:40px;
}



#col-2{
    padding:40px 20%;
    background-color:white;
}
#col-2 .inner{
    width:55%;
    padding:40px 40px 40px 0;
}
#col-2 .chapo, #col-2 h2, #col-2 p{
    text-align:left;
}
#col-2 img{
    width:45%;
    height:450px;
    object-fit:cover;
}

.col-3{
    width:100%;
    margin-bottom:40px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between
}
.news{
    width:30%;
    background-color:white;
    position:relative;
}
.news img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom:30px;
}
.news span{
    width:0;
    height:0;
    background-color:rgba(0,0,0,0.5);
    position:absolute;
    z-index:1;
    top:0;
    left:0;
    opacity:0;
    transition:all 500ms;
}
.news:hover span{
    opacity:1;
    width: 100%;
    height: 200px;
}

h3{
    font-size:1.4rem;
    margin-bottom: 10px;
    padding:0 20px;
}
.gold{
    text-transform:uppercase;
    letter-spacing:0.05rem;
    padding:0 20px;
    font-size:0.9rem;
    margin-bottom:10px;
    font-weight:bold;
    display:inline-block;
}


.paypal{
    margin-bottom: 0px;
    padding:0px;
    align-content: center;
}



mark{
    color:#65350d;
    background-color:transparent;
}
.news p{
    text-align:left;
    padding:0 20px;
}

footer{
    background-color:#222222;
    color:#999999;
    font-size:0.7rem;
    padding: 10px 20%;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-content:center;
    align-items:center;
}
#social_networks a{
    font-size:1.5rem;
    margin-left:20px;
    transition:color 500ms;
}
footer a:hover{
    color:white;
}


/* REGLES RESPONSIVE DESIGN */
/* Requête media : media query */
/* Point de rupture : breakpoint */

/* Ecran plus grand que 1500px */
@media all and (min-width:1500px){
    
    #hero{
        height:700px;
    }
    
}

/* Ecran plus petit que 1080px */
@media all and (max-width:1080px){
    
    #hero{
        height:auto;
    }
    .overlay{
        padding:50px 20px 100px 20px;
    }
    .block_center{
        padding:80px 20px;
    }
    h2{
        font-size:2rem;
    }
    #col-2{
        padding:40px 20px;
    }
    #col-2 .inner, #col-2 img{
        width:100%;
        padding-right:0
    }
    .news{
        width:100%;
        margin-bottom:30px;
    }
    footer{        
        flex-direction:column-reverse;
    }
    footer div{
        width: 100%;
        padding:10px 0;
        text-align:center;
    }
    
}