/* Slider styles */
.slider-container {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden; 
    margin: auto;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(350px * 4);
}

.slider-image {
    width: 350px; 
    height: 350px; 
    flex-shrink: 0; /* Asegura que las imágenes no se reduzcan de tamaño */
    border-radius: 10px;
    position: relative;
}

.url {
    display: flex;
    justify-content: center;
}

.jori {
position: relative;
top: 10px;
right: 90px;
z-index: 10;
padding: 5px 10px;
background-color: #E54D42;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
display: flex;
width: fit-content;
}

.jori:hover {
color: white;
}

.vm {
font-size: small;
}

/*.vm:hover {
color: white;
}*/

.title-imdx {
    position: absolute;
    display: flex;
    width: 100%;
    height: 25px;
    justify-content: center;
    bottom: 0;
}

.title-imdx h3 {
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #E54D42;
    padding: 1px 15px;
    border-radius: 15px;
    font-size: xx-small;
    margin: 0;
    align-items: center;
    display: flex;
}

.image {
    /*width: 350px; 
    height: 350px; 
    flex-shrink: 0; */
    border-radius: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    user-select: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


@media only screen and (max-width: 980px) {

.slider-container{
padding-top: 0;
margin-top: 15px;
}

.title-imdx h3 {
font-size: small !important;
}

}