/*-- HOME PAGE --*/

.swiper-container.fullscreen a{
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-100%);  
  z-index: 999;
  text-decoration: none;
}

.swiper-container.fullscreen a h1{
  width: calc(60% - 1.4rem);
  /*width: 55%;*/
  text-transform: uppercase;
  margin-left: 1.4rem;
  color: white;
  font-size: 5rem;
  cursor: pointer;
}

.swiper-container.fullscreen h1.enter:after{
  content: 'entra';
  color: white;
  font-size: 1.4rem;
  padding: 0.6rem 1.3rem;
  border: 2px solid white;
  position: relative;
  top: -14px;
  letter-spacing: 0;
  left: 20px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.5,0,0.2,1);
}

.swiper-container.fullscreen h1.enter:hover:after{
  opacity: 1;
}

.swiper-container.fullscreen h1.s1{
  border-bottom: 0px solid var(--slide1-color);
}
.swiper-container.fullscreen h1.s2{
  border-bottom: 0px solid var(--slide2-color);
}
.swiper-container.fullscreen h1.s3{
  border-bottom: 0px solid var(--slide3-color);
}
.swiper-container.fullscreen h1.s4{
  border-bottom: 0px solid var(--slide4-color);
}
.swiper-container.fullscreen h1.s5{
  border-bottom: 0px solid var(--slide5-color);
}

.swiper-container.fullscreen h2{
  position: absolute;
  top:50vh;
  width: calc(60% - 1.4rem);
  padding: 0 1.4rem;
  z-index: 999;
  color: white;
  font-size: 1.5rem;
  text-align: justify;
  font-weight: 300;
  letter-spacing:1px;
  text-transform: none;
}

.swiper-container.fullscreen h2 p{
  margin-bottom: 0;
  line-height: 2rem;
}

.mobilescroll{ 
  display: none; 
  margin-top: 60vh;
  padding: 10px 0 50px 0;
  background: rgba(0,0,0,0.7);
  pointer-events: none;
  position: absolute;
  transition: opacity 0.5s cubic-bezier(0.5,0,0.2,1);
}

.mobilescroll.hide{
  opacity: 0;
}

.mobilescroll h2{
  z-index: 999;
  color: white;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing:1px;
  text-transform: none;
  width:85%;
  padding: 2rem 1rem;
  margin-bottom: 0;
  margin:auto;
}


.swiper-container.fullscreen h2 p:last-child{
  margin-bottom: 0px;
}

.swiper-container nav {
  top:55%;
  position: absolute;
  width: calc(60% - 1.4rem);
}

.swiper-container.fullscreen a.next , .swiper-container.fullscreen  a.prev{
  position: absolute;
  color: white;
  text-decoration: none;
  padding: 1rem;
  top: 55%;
  transform: translateY(-50%);
  z-index: 999;
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}



.swiper-container.fullscreen a.next{
  right: 0;
}
.swiper-container.fullscreen a.prev{
  left: 1.4rem;
  padding-left: 30px;
}

.swiper-container.fullscreen #next:after{
  content: "";
  border-top: 2px solid white;
  border-right: 2px solid white;
  width: 20px;
  height: 20px;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;

}

.swiper-container.fullscreen #prev:before{
  content: "";
  border-top: 2px solid white;
  border-right: 2px solid white;
  width: 20px;
  height: 20px;
  display: inline-block;
  transform: rotate(-135deg);
  position: absolute;
  left: 5px;
}

.swiper-container.fullscreen .swiper-slide img {
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}

.swiper-container.fullscreen .swiper-slide{
  overflow: hidden;
}

/* Media query aspect ratio img home page 2:1 */
@media (min-aspect-ratio: 2/1){
  .swiper-container.fullscreen .swiper-slide img{
    width: 100%;
  }
}

@media (max-aspect-ratio: 2/1) {
  .swiper-container.fullscreen .swiper-slide img{
    height: 100%;
  }
}
/*-- --*/
