@font-face {
    font-family: "Oswald";
    src: url("fonts/Oswald-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "OswaldB";
    src: url("fonts/Oswald-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Open-Sans";
    src: url("fonts/OpenSans-Medium.ttf") format("truetype");
}

body{
    font-family: "Open-Sans";
    font-size: 20px;
    color: white;
    margin: 0;
    padding: 0;
    background-color: #333333;
}

#header{
    position: fixed;
    background-color: rgba(36, 35, 35, 0.5);
    width: 20%;
    height: 100%;
    transition-duration: 0.5s;
}

#header li{
    list-style: none;
}

#header a{
    padding: 10px;
    text-decoration: none;
    color: white;
}

#header a:hover{
    color: #6c939d;
    cursor: pointer;
}

#header:hover{
    transition-duration: 0.5s;
    background-color: rgb(36, 35, 35);
}

#header h1{
    font-size: 36px;
    margin-bottom: 0;
    margin-left: 20px;
}

#header h2{
    font-size: 20px;
    margin-left: 20px;
}

.topnav{
    display: none;
}

.accordion {
    background-color: rgba(36, 35, 35, 0);
    color: white;
    font-family: "Open-Sans";
    font-size: 20px;
    cursor: pointer;
    padding: 18px;
    padding-left: 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #6c939d; 
}

.panel {
    padding: 0 18px;
    display: none;
    background-color: none;
    overflow: hidden;
}

#visuel{
    margin-left: 20%;
    width: 80%;
    filter: brightness(50%);
    transition-duration: 0.8s;
    background-color: #6c939d;
}

#visuel:hover{
    transition-duration: 0.8s;
    opacity: 1;
    filter: brightness(100%);
}

#sidebar{
    background-color: white;
    color: black;
    padding: 5px 50px 5px 50px;
}

#hautG{
    display: flex;
    align-items: center;
}

#frlogo img{
    width: 50px;
    margin-right: 20px;
}

h1{
    font-family: "Oswald";
    font-size: 48px;
}

h2{
    font-family: "Oswald";
    font-size: 36px;
    text-transform: uppercase;
}

#footer{
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
}

#footer .foot{
    width: 30%;
    height: 450px;
}

#footer ul{
    padding: 0;
}

#footer li{
    list-style: none;
}

#footer a{
    text-decoration: none;
    color: white;
}

#footer a:hover{
    opacity: 0.5;
}


#footer i{
    font-size: 100px;
}

#footer img{
    width: 100px;
}

.fa:hover {
    opacity: 0.7;
}

.cookie-alert {
    position: fixed;
    bottom: 20px;
    right:20px;
    border-radius: 10px;
    background:#2f2f2f;
    color:#fff;
    padding:10px 15px;
    width:40%;
    z-index:100;
    font-size: 12px;
}
.cookie-alert a { 
    display:block;
    text-align: center;
    padding:5px 10px;
    margin:8px auto 0 auto;
    border-radius: 10px;
    background:transparent;
    border: 2px solid #52727a;
    color:white;
    transition: all .3s ease;
}
    .cookie-alert a:hover {
        background: #52727a;;
        color:white;
    }
@media only screen and (max-width:480px) {
    .cookie-alert {
        text-align: center;
        left: 0; right: 0;;
        margin: 0 auto;
        max-width:700px;
        padding:10px 30px;
    }
}

/*.fa {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}



.fa-facebook {
  background: #3B5998;
  color: white;
}*/