
section.portada-home{
  width: 100%;
  min-height:100vh;
  height: auto;
  background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
  background-image: url(../images/bg-home.png);
  /*background-image: -webkit-image-set(url(../images/bg-home.webp) 1x);*/
  position: relative;
}

section.portada-home::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.50);
  z-index: 0;
  top: 0;
  left: 0;
}

section.portada-home .content-home p{
  font-size:20px;
  margin-bottom:5px
}

section.portada-home .content-home h1{
  margin-bottom:65px;
  font-size:50px;
}

section.portada-home .content-home h3{
  margin-bottom:40px;
  font-size:35px;
  color:var(--color-3);
}

section.portada-home img.logo-home{
  margin-bottom:40px;
}

section.portada-home .content-home{
  padding: 30px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

section.portada-home .categorias-inv-home{
  width: 100%;
  display: inline-block;
  margin-bottom: 30px;
}

section.portada-home .categorias-inv-home li{
  float: left;
  margin: 0 15px;
  margin-bottom:20px;
  position: relative;
}

section.portada-home .categorias-inv-home li .msj-soon{
  position:absolute;
  top:-7px;
  padding:3px 0;
  font-size:12px;
  display: inline-block;
  width:100px;
  text-align: center;
  background-color:var(--color-1);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

section.portada-home .categorias-inv-home li a{
  color: white;
}

section.portada-home .categorias-inv-home li a:hover img{
  border-color:white;
}

section.portada-home .categorias-inv-home img{
  width: 100px;
  height: auto;
  border: 3px solid transparent;
  transition:all 0.4s ease;
  border-radius: 20px;
}

section.portada-home .categorias-inv-home li p:after{
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.4s ease;
}

section.portada-home .categorias-inv-home a:hover p:after{
  width: 100%;
}


section.portada-home .categorias-inv-home p{
  font-size:20px;
  line-height:28px;
  margin-top: 10px;
  text-align: center;
  transition:all 0.1s ease;
  position:relative;

}

section.portada-home .lang-home-btn img{
  width:25px;
  height:auto;
}

section.portada-home .lang-home-btn a{
  color:white;
  font-weight: 300;
  transition:color 0.4s ease;
  position: relative;
  font-size:14px;
}

section.portada-home .lang-home-btn a:after{
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-3);
  transition: width 0.4s ease;
}

section.portada-home .lang-home-btn a:hover:after{
  width: 100%;
}


section.portada-home .lang-home-btn a:hover{
  color: var(--color-3);
}



/* Responsive */

@media only screen and (max-width: 767px)
{

  section.portada-home .content-home p{
    font-size:17px;
  }

  section.portada-home .content-home h1 { 
    font-size: 40px;
  }

  section.portada-home .categorias-inv-home p{
    font-size:16px;
  }
  
  section.portada-home{
    background-image: url(../images/bg-home-mobile.png);
    background-image: -webkit-image-set(url(../images/bg-home-mobile.webp) 1x);
  }


}

@media only screen and (max-width: 460px) {

  section.portada-home .categorias-inv-home li {
    width: 30%
  }

}