@font-face {
  font-family: 'Gotham Bold Italic';
  src: url(/CSS/Gotham/GOTHAM-BOLDITALIC.TTF);
}

@font-face {
  font-family: 'Gotham Medium';
  src: url(/CSS/Gotham/GOTHAM-MEDIUM.TTF);
}

@font-face {
  font-family: 'Gotham Ultra';
  src: url(/CSS/Gotham/GothamUltra.otf);
  font-weight: 900;
}

body{
  background-image: 
    linear-gradient(#16181F, rgba(0,0,0,0.4)),
    url('./img/fondo-menu.png');
  background-size: cover;
  background-position: 50% 100%;
  height: 100vh;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 350px;
  margin-top: 50px;
  margin-left: 10%;
  z-index: 999;
}

.dropdown:hover{
  background-color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  width: 350px;
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  font-family: 'Gotham Medium';
}
.dropdown-submenu {
  padding-left: 30px;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.show{
  display: none;
}

.dropbtn{
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 350px;
  padding: 10px 20px 10px 15px;
  font-family: 'Gotham Bold Italic';
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  background-color: #74767D ;
  border-radius: 20px;
  border: 0;
  outline: 0;
  box-shadow: none;
}

.dropbtn img{
  width: 14px;
  padding-top: 7px;
}

.linea{
  width: 100%;
  height: 1px;
  background-color: #000;
}

.negrita{
  font-weight: 900;
  font-family: 'Gotham Ultra' !important;
}

.submenu-btn{
  position: relative;
}

.submenu-btn img{
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 14px;
}

.negrita img{
  display: none;
}

@media (max-width:800px) {
  .dropdown {
    width: 280px;
  }

  .dropbtn{
    width: 280px;
  }
  
  .dropdown-content {
    width: 280px;
  }

  .dropdown-content a {
    padding: 9px 12px;
  }
}

@media (max-width:500px){
  .dropdown{
    margin: auto;
    margin-top: 20px;
  }

  .dropbtn{
    font-size: 15px;
  }

  .dropdown-content a{
    font-size: 13px;
  }

  .submenu-content a{
    padding: 5px 10px;
  }
}