/*  CONTENEDOR */
.swiper-container { 
    width: 97%;
    padding:50px 0;
    margin-bottom: 100px !important;

  }

/* ELEMENTO DE SLIDE */
.swiper-slide {
background-color: rgba(255, 255, 255, 0) !important;
background-position: center;
background-size: cover;
width: 95vw;
max-width: 730px;
height: 61vw;
max-height: 465px;

}

/* IMAGEN DEL SLIDE */
.swiper-slide img {
user-select: none;
display: block;
object-fit: cover;
width: 100%;
height: 100%;
border-radius: 10px;
transition: opacity 0.35s ease-in-out;
}

/* ELIMINAMOS LAS SOMBRAS POR DEFECTO */
.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
opacity: 0 !important;
}

/* OPACIDAD DE LAS IMAGENES SEGUN SU POSICION */
.swiper-slide-active img {
opacity: 1 !important;
}

.swiper-slide-prev img,
.swiper-slide-next img {
opacity: 0.2 !important;
}

.swiper-slide img {
opacity: 0;
}

/* BOTONES INFERIORES DE PAGINACION*/
.swiper-pagination {
    position: relative;
    top: 15px;
}

.swiper-pagination-bullet {
background-color: rgb(0, 0, 0);
width: 12px;
height: 12px;
margin: 0 8px !important;
transition: all 0.2s ease-in-out;
}

.swiper-pagination-bullet-active {
transform: scale(1.3);
background-color: #508bb6;
}

.swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    transform: scale(1.3) !important;
    opacity: 0.4;
}

/* FLECHAS LATERALES DE NAVEGACION */
.swiper-button-next,
.swiper-button-prev {
color: #508bb6;
transition: transform 0.15s ease-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
transform: scale(1.3);
}

.swiper-slide p {
    position: absolute;
    bottom: 30px;
    width: fit-content;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 20px;
    font-size: 35px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0.473);
    border-radius: 5px;
    transition: opacity 0.35s ease-in-out;
    opacity: 0;
}

.swiper-slide-next p,
.swiper-slide-prev p {
    opacity: 0.2 !important;
}

.swiper-slide-active p {
    opacity: 1 !important;
}

@media screen and (max-width: 760px) { 
    .swiper-slide p {
        padding: 2.6vw;
        font-size: 4.6vw;
        bottom: 3.6vw;
    }
}

/* ADAPTADO DE TAMAÑO DE FLECHAS LATERALES*/
@media screen and (max-width: 500px) { 
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 8.5vw !important;
    }
}