/* L'element */
.burger, .burger::before, .burger::after {
  position: absolute;
  width: 24px;
  height: 4px;
  background: black;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.burger::before {
  margin-top: -8px;
}
.burger::after {
  margin-top: 8px;
}

.burger::before, .burger::after {
  content: "";
  display: block;
}

.container-burger:hover .burger{
  background: white;
}

.container-burger:hover .burger::before {
  margin-top: 0px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.container-burger:hover .burger::after{
  margin-top: 0px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sidenav {

    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #fff; /* white*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 90px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    box-shadow: 0 0 10px 0 grey;
}

/* The navigation menu links */
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #272727;
    display: block;
    transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    color: #3a5541;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.socials-responsive {
  width: 200px;
  margin: 30px auto;
  display: flex;
  justify-content: space-around;
padding: 0px 50px 0px 50px;
}


.socials-responsive a {

  font-size: 14px;
  padding: 0;
  margin:0 8px 0 0;
}
