/* The side navigation menu */


.fullscreen {
    height: 100%!important;
}

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: white;
  overflow-y: hidden;
  transition: 0.3s;
}

.overlay-content {
  position: relative;

  width: 100%;
  text-align: center;

}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: black;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;

}

.overlay a:hover, .overlay a:focus {
  color: #fe0180;
}








.containerMenu {
  display: inline-block;
  cursor: pointer;
  padding-top: 1rem;
}

.bar1, .bar2, .bar3 {
  
  width: 30px;
  height: 5px;
  background-color: black;
  color: black;
  margin: 6px 0;
  transition: 0.4s;
}
.bar1:active, .bar2:active, .bar3:active {
  background-color: pink;

}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-8px, 7px);
  transform: rotate(-45deg) translate(-8px, 7px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -7px);
  transform: rotate(45deg) translate(-8px, -7px);
}
nav ul a{
  padding: 0.2rem 15px;
}
.dropdown-content li>a{
  color: black;
}
.dropdown-content li>a:hover{
  color: #fe0180;
}
@media only screen and (max-width: 767px) {
.containerMenu {
  padding-top: 0.7rem;
}
nav ul a{
  padding: 0.4rem 15px;
}
}
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }

}


