.slider {
    position: relative;
    overflow: hidden;
    background-color: var(--ap-base-black);
    border-radius: 22px;
    margin-right: 1%;
    display: block !important;
}
.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slides.mobileSlides {
    position: absolute;
    top: 0;
    left: 3px;
}
.slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.slide.hiddenSlide {
    visibility: hidden;
}
.slide.noVideo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.slide.noVideo img {
    width: 100%;
}
.controls {
    position: absolute;
    left: 0;
    bottom: 2px;
    padding: 0 20px;
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    color: #fff;
}
.prev, .next {
    cursor: pointer;
}
section .text_section.slider_text {
    position: relative;
    overflow: hidden;
    height: 420px;
}
section .text_section.slider_text .slides {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    max-width: 100%;
}
section .text_section .slides .slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
section .text_section .slides .slide .text_body {
    max-width: 500px;
}
section .text_section .slides .slide .text_body .phrase {
    text-align: center;
    margin-bottom: 30px;
}
section .text_section .slides .slide .text_body .testimonial {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
section .text_section .slides .slide .text_body .testimonial .whois {
    font-weight: 200;
    font-size: 14px;
}

/** Media query para únicamente móvil */
@media only screen and (max-width: 767px) {
    .slider {
        margin-bottom: 20px;
    }
    .prev, .next {
        font-size: 30px;
    }
    section .text_section .slides .slide .text_body .testimonial {
        font-size: 20px;
    }
}

/* Media query para tablets */
@media only screen and (min-width: 768px) {
    /* Estilos específicos para tablets */
    .controls {
        bottom: 0;
    }
    section .text_section .slides .slide .text_body .testimonial .whois {
        font-size: 20px;
    }
}

/* Media query para desktops pequeños */
@media only screen and (min-width: 992px) {
    /* Estilos específicos para desktops pequeños */
}

/* Media query para desktops grandes */
@media only screen and (min-width: 1200px) {
    /* Estilos específicos para desktops grandes */
}