/*  CONTENEDOR */
.img.swiper-container { 
    width: 100%;
    padding:50px 0;
}

/* ELEMENTO DE SLIDE */
.img.swiper-slide {
    background-color: rgba(255, 255, 255, 0) !important;
    background-position: center;
    background-size: cover;
    width: 97vw;
    max-width: 730px;
    height: 61vw;
    max-height: 465px;
}

/* IMAGEN DEL SLIDE */
.img.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;
}

.img.swiper-slide img.rubicon {
    width: auto !important;
}

/* ELIMINAMOS LAS SOMBRAS POR DEFECTO */
.img.swiper-slide-shadow-left,
.img.swiper-slide-shadow-right {
    opacity: 0 !important;
}

/* OPACIDAD DE LAS IMAGENES SEGUN SU POSICION */
.img.swiper-slide-active img {
    opacity: 1 !important;
}

.img.swiper-slide-prev img,
.img.swiper-slide-next img {
    opacity: 0.2 !important;
}

.img.swiper-slide img {
    opacity: 0;
}

/* BOTONES INFERIORES DE PAGINACION*/


.img-swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px !important;
}

.img.swiper-pagination-bullet {
    background-color: rgb(0, 0, 0);
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
    transition: all 0.2s ease-in-out;
}

.img.swiper-pagination-bullet-active {
    transform: scale(1.3);
    background-color: #231f20;
}

.img.swiper-pagination-bullet:not(.img.swiper-pagination-bullet-active):hover {
    transform: scale(1.3) !important;
    opacity: 0.4;
}

/* FLECHAS LATERALES DE NAVEGACION */
.img.swiper-button-next,
.img.swiper-button-prev {
color: #231f20;
transition: transform 0.15s ease-out;
}

.img.swiper-button-next:hover,
.img.swiper-button-prev:hover {
transform: scale(1.3);
}

.img.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;
}

.img.swiper-slide-next p,
.img.swiper-slide-prev p {
    opacity: 0.2 !important;
}

.img.swiper-slide-active p {
    opacity: 1 !important;
}

@media screen and (max-width: 760px) { 
    .img.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) { 
    .img.swiper-button-next:after,
    .img.swiper-button-prev:after {
        font-size: 8.5vw !important;
    }
}