/*Menu superior*/
.topnav {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff00, #ffffff80, #ffffff3d, #ffffff00);
    padding: 10px;
    border-radius: 0em 0em 1em 0em;
    border: 2px solid #ffffff;
    box-shadow: 0px 0px 10px 2px #000000, inset 0 0 5px 3px #00000063;
    max-height: 80px;
}



.topnav a {
    float: left;
    display: block;
    color: #FFFFFF;
    text-align: center;
    padding: 15px 15px;
    margin: auto auto 30px 15px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 5px;
}

.topnav a:hover {
    background: linear-gradient(180deg, #ffffff00, #ffffffa3, #ffffff30, #ffffff00);
    color: #FFFFFF;
    /* border-radius: 1em;*/
}

.topnav a.active {
  background-color: #04AA6D;
  color: #FFFFFF;
}

.topnav .icon {
  display: none;
}

.topnav .closebtn {
    display: none;
    /*font-size: 35px;
    padding: 0 13px;
    border-radius: 50%;
    height: 50px;
    width: 50px;*/
}
/*
.topnav .closebtn:hover{
    background-color: #b60000;
}
*/ 
.topnav{
    transition: margin-left .5s;
}

@media screen and (max-width: 600px) {
  /*.topnav a:not(:first-child) {display: none;}*/
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}