@font-face {
    font-family: "LibreBaskerville";
    src: local("../fonts/LibreBaskerville-Bold.ttf"),
    local("../fonts/LibreBaskerville-Italic.ttf"),
    local("../fonts/LibreBaskerville-Regular.ttf");
}

* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    color: #707070;
}

.bg {
    background-image: url("../images/bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: -0vw -48vh;
}


hr {
    width: 100vw;
}
/* -----------------------HEARDER------------------------------ */
header {
    background-color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto 0;
}

.bandeau1 {
    position: relative;
    width: 100%;
    max-width: 1200px;
}

.logo {
    position: absolute;
    left: 70px;
    top: 20px;
    align-items: center;
    text-align: center;
}
.logo a{
    text-decoration: none;
}

.logo #titre{
    margin-bottom: 5px;
    font-size: 25px;
    text-shadow: 2px 2px 2px rgba(255,255,255,0.4);
}
.logo #span-titre{
    text-shadow: 2px 2px 2px rgba(0,0,0,0.8);
}

.logo hr{
    background-color: #707070;
    height: 1px;
    border: none;
    width: 76%;
    margin-left: 35px;
}

.logo #num1{
    font-family: "Arial Regular", sans-serif;
    font-weight: bold;
    color: black;
    margin-top: 5px;
}

.logo img{
    height: 250px;
    margin-top: 15px;
}
#bouton_IT{
    background-image: url('../images/bouton_IT.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 40px;
    height: 40px;
    display: inline-block;
}
#bouton_DE{
    background-image: url('../images/bouton_DE.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 40px;
    height: 40px;
    display: inline-block;
}
.changerLangue {
    text-align: center;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 15px;
}

.bandeau-icones {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    max-width: 1200px;
    width: 100%;
}
.bandeau-icones div {
    display: flex;
    align-items: center;

}
.bandeau-icones img, .bandeau-icones svg {
    height: 80px;
    margin: 0 10px 0 0;
}
.bandeau-icones p {
    font-family: "Arial Narrow", serif;
    font-size: 18px;
}


/* -----------------------FOOTER------------------------------ */
footer {
    font-family: "Arial Regular", serif;
    background-color: white;
    width: 100%;
    padding: 2vh 2vw 5vh 2vw;
    color: #707070;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bandeau-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1185px;
    padding-bottom: 2vh;
}

.bandeau-footer img{
    height: 50px;
    margin-top: 2vh;
}

#FNA {
    margin: 35px 3.5vw 0 0;
}

/* --- */

#liens-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1185px;
}

#liens-footer h4 {
    margin: 15px 0;
}

#liens-footer a {
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    color: #707070;

}
#liens-footer a:hover {
    text-decoration: underline;
}

#liens-footer li{
    list-style-type: none;
}

#other_sites {
    display: flex;
}

.other_sites_right1 {
    margin-top: 48px;
    margin-left: 105px;
}
.other_sites_right2 {
    margin-top: 48px;
    margin-right: 77px;
    margin-left: 215px;
}
/* ---------------------------------------------------------- */

/* -- Responsive -- */
.col-gauche-bis {
    position: relative;
    padding: 25px 25px 5px 25px;
    flex-direction: column;
    align-items: center;
    width: 60vw;
    display: none;
}

.avis-bis {
    margin-bottom: 10px;
}
/* --------------- */

/* ------ Media queries -------- */
@media all and (max-width: 980px) {
    /* responsive header */
    .banniere, .bandeau-icones{
        display: none;
    }
    .logo {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .col-gauche-bis{
        display: block;
    }

    /* --- API Google ---- */
    #avis{
        display: none;
    }

}

@media all and (max-width: 1180px) {
    /* responsive footer */
    #liens-footer {
        justify-content: space-around;
    }
    #other_sites {
        flex-direction: column;
    }
    .other_sites_right1, .other_sites_right2 {
        margin: 0 0;
    }

}

@media all and (max-width:555px) {
    #boutons_langue {
        display: flex;
        flex-direction: column;
    }
    #bouton_DE {
        margin-bottom: 5px;
    }
}

@media all and (max-width: 464px) {
    /* responsive footer */
    #other_sites {
        margin-top: 2vh;
    }
    .bandeau-footer {
        justify-content: center;
    }
}

@media all and (max-width:410px) {
    .changerLangue {
        top: auto;
    }
}