/* START MENU BURGER */

/* Start TEST DROPDOWN */

/* Dropdown Button */
.dropbtn {
  border: none;
  cursor: pointer;
  color: white;
  font-weight: 400;
}


/* The container <div> - needed to position the dropdown content */
.dropdown {
  float: right;
  position: relative;
  display: flex;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  background-color: #0A4C67;
  min-width: 130px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  left: 0;
}
@media screen and (width >= 750px){
  .dropdown-content {
    min-width: 200px;
  }
}
/* Links inside the dropdown */
.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #14698b;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
/* END TEST DROPDOWN */

.play-nav {
  display: flex;
  justify-content: space-around;
  position: fixed;
  width: 100%;
  z-index: 5;
}

.hidden-nav {
  justify-content: end;
  display: flex;
  position: fixed;
  width: 100%;
  z-index: 4;
}

.d-list-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 80%;
  padding-top: 15px; 
  padding-bottom: 15px;
  background-color: #357b96;
  font-weight: bold;

}
.d-list-nav li:hover{
  border-bottom: 1px solid #fff;
}
nav a {  
  color: #fff !important;
  font-weight: 400;
  text-decoration: none !important;
}

/* END MENU BURGER */