/* CABECERA */

#cabecera{
  background-image: url('../img/cabecera/header_big.webp');
  background-repeat: no-repeat;
  background-size: cover;
}

.bottom-shadow{
  box-shadow: 0px 0px 20px 0px gray ;
}

.shadow{
  box-shadow: 0px 10px 20px 0px #eaeaea;
}

/*==========
 MENU MOVIL
 ========= */

.capaOculta {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.capaOculta-content {
  position: relative;
  top: 15%;
  width: 100%;
  padding-left: 20px;
  margin-top: 30px;
}

.capaOculta a,
.capaOculta button {
  padding: 8px;
  text-decoration: none;
  font-size: 24px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.capaOculta a:hover,
.capaOculta a:focus {
  color: #f1f1f1;
}

.capaOculta .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* ======================= */
/* ESTILOS PARA PORTAFOLIO */
/* ======================= */

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none;
}

/* Content */
.content {
  background-color: white;
  padding: 10px;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
}

.btn:hover {
  background-color: #ddd;
}

.btn.active {
  background-color: #666;
  color: white;
}

/*===========
 MEDIASCREEN 
 ===========*/

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

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

  #smallBar {
    display: block;
  }

  .capaOculta a {
    font-size: 20px
  }

  .capaOculta .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

@media screen and (max-width: 450px) {

  .top-bar-element {
    padding: 8px;
  }
}

@media screen and (max-width: 600px) {

  .topnav a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }

  .topnav.responsive {
    position: relative;
  }

  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .topnav.responsive .dropdown {
    float: none;
  }

  .topnav.responsive .dropdown-content {
    position: relative;
  }

  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

@media screen and (max-width: 800px) {

}