html {
    background: #131313;
}

body {
    padding: 5px 50px;
    margin: 0 auto;
    font-family: 'Maven Pro', sans-serif;
}

section {
    padding: 0 10px;
}

ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
}

li {
    list-style-type: none;
    margin: 0 10px;
}

a {
    text-decoration: none;
}

body, a {
    color: #fff;
}

h1 {
    text-transform: uppercase;
    margin-top: 0;
    font-weight: 500;
}

h2 {
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
}

h3 {
    font-weight: 600;
}

p {
    margin-bottom: 0;
}



/* MENU */
header {
    padding-top: 5px;
    padding-bottom: 15px;
}

header img:last-child {
    transform: scaleX(-1);
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}



/* Le SLIDESHOW se fait via les autres fichiers */



/* PRESENTATION ARTISTES */
.presentation {
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #131313;
}

.noms-artistes {
    text-transform: uppercase;
    font-weight: 600;
}

.rubrique-artistes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    justify-content: center;
}

.rubrique-artistes div {
    width: 100%;
    overflow: hidden;
}
.rubrique-artistes img {
    max-width: 100%;
}


/* PIED DE PAGE */
.zone-bas {
    padding-top: 20px;
    padding-bottom: 10px;
    background: #303030;
}

.actus {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: justify;
    line-height: 22px;
}

.actus div {
    width: 23.5%;
}

.supports {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.map {
    margin-right: 10px; 
    width: 30%;
}
.youtube {
    width: 40%;
}

iframe {
    height: 300px;
    max-width: 100%;
}


/* FOOTER */
footer section {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partage-reseaux {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logos-reseaux i {
    margin: 3px;
    margin-top: 10px;
    font-size: 25px;
}

.newsletter {
    text-align: right;
    margin-left: 30px;
}

.newsletter p {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    text-align: right;
}

.newsletter span {
    display: inline-block;
}

.newsletter input {
    background: #303030;
    border: none;
    padding: 10px;
    height: 20px;
    width: 200px;
    margin-right: 10px;
}

.arrow-input i {
    vertical-align: middle;
    font-size: 25px;
    color: #fff;
}

/* Erreur formulaire mail vide */
.message-erreur {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    padding: 20px;
    color: red;
    background: #fff;
    border: 1px solid #303030;
    text-align: center;
}

.menu-2 {
    background: #303030;
    padding-right: 10px;
}
.menu-2 p {
    margin: 0;
    text-align: right;
}



/* FLECHE RETOUR HAUT DE PAGE */
.fleche-hdpage i {
    font-size: 30px;
    position: fixed;
    bottom: 30px;
    right: 30px;
}








/* MISE EN PAGE MOBILES */

@media screen and (max-width: 768px) {
    
    body {
        padding: 5px 10px;
    }
    
    section {
        padding: 0 25px;
    }
    
    ul {
        flex-direction: column;
        text-align: left;
    }
    
    li {
        margin: 0;
        padding: 0;
    }
    
    .presentation {
        padding-top: 20px;
        padding-bottom: 35px;
    }
    
    .rubrique-artistes {
        flex-direction: column;
    }
    
    .rubrique-artistes img {
        max-width: 85%;
    }
    
    .actus {
        flex-direction: column;
        margin-bottom: 0;
    }
    
    .actus div {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .supports {
        margin-top: 50px;
        flex-direction: column;
        text-align: center;
    }
    
    .map {
        margin-right: 0; 
        width: 100%;  
    }
    .youtube {
        width: 100%;
    }
    
    footer section {
        padding-top: 10px;
        padding-bottom: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .logos-reseaux i {
        margin-top: 17px;
    }
    
    .newsletter {
        flex-direction: column;
        margin-top: 30px;
        margin-left: 0;
    }
    .newsletter p {
        margin: 0;
        display: block;
        text-align: center;
    }
    
    .newsletter input {
        margin-top: 15px;
        display: inline-block;
        width: 300px;
    }
    
    .newsletter span {
        display: inline-block;
    }
    
    .menu-2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }
    .menu-2 p {
        margin-top: 30px;
    }
    
    
    
    
    
    
    
    
    
    
    
}