/*[id^='video-slider'] {    min-width: 0;    max-width: 100vw;    overflow: hidden;    width: 100%;    height: auto;    position: relative;}[id^='video-slider'] .swiper-container {    position: absolute;    top: 0;    left: 0;    box-sizing: border-box;    width: 100%;    height: 100%;    margin: 0 auto;    padding-left: 15%;    padding-right: 15%;    background-size: cover;    background-repeat: no-repeat;    background-position: center;}[id^='video-slider'] .swiper-slide {    text-align: center;    font-size: 18px;    box-sizing: border-box;    width: 70%;    display: flex;    height: 100%;    transition: width 1.5s ease, height 1.5s ease;}.video-slider.swiper-text {    margin: 103px auto 284px auto;    text-align: center;    width: 644px;}[id^='video-slider'] video {    width: 385px;    height: 211px;    margin:auto;    transition: width 1.5s ease, height 1.5s ease;}[id^='video-slider'] .swiper-slide-active video {    width: auto;    height: 75%;}[id^='video-slider'] .imgs-container {    pointer-events: none;    width: 100%;    height: fit-content;    display: flex;    flex-direction: column;    justify-content: center;    align-items: center;}[id^='video-slider'] .imgs-container img{    padding: 0 56px;}*/
[id^='video-slider'] {
    min-width: 0;
    max-width: 100vw;
    overflow: hidden;
    width: 100%;
    height: auto;
    position: relative;
}

[id^='video-slider'] .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    /* padding-left: 15%;  Ajusta para ver el slide anterior */
    /*padding-right: 15%;  Ajusta para ver el slide siguiente */
    padding-left: 20%;
    /* Inicialmente 0 */
    padding-right: 20%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

[id^='video-slider'] .swiper-slide {
    text-align: center;
    font-size: 18px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    height: 100%;
}

.video-slider.swiper-text {
    margin: 103px auto 284px auto;
    text-align: center;
    width: 644px;
    font-family: "Uncut Sans";
}

[id^='video-slider'] video {
    /*width: 385px;    height: 211px;*/
    width: auto;
    height: 75%;
    margin: auto;
}

[id^='video-slider'] .imgs-container {
    pointer-events: none;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

[id^='video-slider'] .imgs-container img {
    padding: 0 56px;
}

@media (max-width: 768px) {
    [id^='video-slider'] .swiper-container {
        height: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-top: 10vh;
    }

    [id^='video-slider'] .swiper-slide {
        width: 100%;
        height: 100%;
    }

    [id^='video-slider'] .swiper-slide video {
        width: 80%;
        height: auto;
    }

    [id^='video-slider'] .swiper-slide-active video {
        width: 100%;
    }

    [id^='video-slider'] .swiper-text {
        margin: 0 auto;
        width: 80%;
        font-size: 18px;
    }

    [id^="video-slider"] .imgs-container {
        pointer-events: none;
        width: 100%;
        height: 400px;
        justify-content: initial;
    }

    [id^="video-slider"] .imgs-container img {
        padding: 0 34px;
    }

    .video-slider.swiper-text {
        margin: 5vh 34px 0 34px;
        text-align: center;
        width: auto;
    }
}