/***** Slider *****/
.swiper-container {
  width: 100%;
  height: 90vh;
}
.swiper-slide .wrap {
  width: 1000px;
  padding-top: 60px;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-slide h2 {
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  font-size: 4rem;
  line-height: 3.7rem;
  margin-top: 20px;
  margin-bottom: 35px;
}
.swiper-slide a.boton {
  text-transform: uppercase;
  margin-top: 20px;
}
.swiper-slide .pretitle {
  font-size: 1.8rem;
}
.swiper-slide-cover {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
}
#slide-1 .swiper-slide-cover {
  background: url('../images/slide4.jpg') center bottom no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#slide-1 .swiper-slide-cover::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: #000;
  mix-blend-mode: multiply;
  opacity: 0.3;
}
#slide-2 .swiper-slide-cover {
  background: url('../images/slide2.jpg') center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#slide-2 .swiper-slide-cover::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: #000;
  mix-blend-mode: multiply;
  opacity: 0.3;
}
#slide-3 .swiper-slide-cover {
  background: url('../images/slide3.jpg') center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
#slide-3 .swiper-slide-cover::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: #000;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.swiper-slide {
  overflow: hidden;
}
.swiper-slide-cover {
  transition: 10s ease-out;
  transform: scale(1);
}
.swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1.1);
}
