/***** Slider *****/
.swiper-container {
  width: 100%;
  height: max-content;
  overflow: hidden;
}
.swiper-slide {
  min-height: 750px;
  height: 100%;
  color: #FFF;
  display: flex;
  align-items: center;
}
.swiper-slide h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.swiper-slide .frase {
  font-weight: 400;
  font-size: 19px;
  line-height: 26px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}
.swiper-slide .frase a {
  text-decoration: underline;
}
.swiper-slide .frase a:hover {
  color: inherit;
}
.swiper-slide a.boton {
  margin-top: 10px;
}
.swiper-slide-cover {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
}
#slide-1 .swiper-slide-cover {
  background: url('../images/slide1.webp') center center no-repeat;
  background-size: cover;
}
#slide-2 .swiper-slide-cover {
  background: url('../images/slide2.webp') center center no-repeat;
  background-size: cover;
}
#slide-3 .swiper-slide-cover {
  background: url('../images/slide3.webp') center center no-repeat;
  background-size: cover;
}
.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);
}
.slider-navigation {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 80;
  display: flex;
  color: #FFF;
  font-size: 35px;
  border-left: 1px solid #FFF;
  border-top: 1px solid #FFF;
}
.slider-navigation div:first-child {
  border-right: 1px solid #FFF;
}
.slider-navigation div {
  width: 50px;
  text-align: center;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #5c5c5c;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFF;
  width: 20px;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .swiper-slide {
    min-height: 400px;
  }
  .swiper-slide h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 12px;
  }
  .swiper-slide .frase {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 6px;
  }
}
@media (min-width: 577px) and (max-width: 767px) {
  .swiper-slide h2 {
    font-size: 15x;
    line-height: auto;
    margin-bottom: 6px;
  }
  .swiper-slide .frase {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 6px;
  }
}
@media (min-width: 1200px) {
  .swiper-slide span.frase {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .swiper-slide h2 {
    font-size: 20px;
    line-height: auto;
    margin-bottom: 6px;
  }
  .swiper-slide .frase {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 6px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .swiper-slide h2 {
    font-size: 20px;
    line-height: auto;
    margin-bottom: 6px;
  }
  .swiper-slide .frase {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 6px;
  }
}
