.slider {
    background-image: url(../Image/portada_nosotros.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10vw 0;
    width: 100%;
    height: auto;
    position: relative;
}
.container {
    width: 90%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}


.slider_container {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    gap: 1em;

}

.slider_body {
    grid-column: 2/3;
    grid-row: 1/2;
    opacity: 0;
    pointer-events: none;
    display: grid;
    border-radius: 5px;
    grid-template-columns: 1fr max-content;
    align-items: center;
    transition: opacity 0.5s;

}
.slider_body--show {
    opacity: 1;
    pointer-events: unset;
}
.slider_text {
    margin: 10px;
    color: var(--white-color);
}
.subtitulo {
    font-size: 4.5vw;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 15px;
    text-align: center;
    
}
.slider_review {
    font-weight: 300;
    text-align: justify;
    font-size: 2.5vw;
    line-height: 4vw;
}
.slider_arrow {
    cursor: pointer;
    width: 40%;
}

.slider_arrow:hover {
    
    transform: scale(1.3,1.3);
    
}

@media (min-width: 600px) {
    .slider {
        padding: 8vw 0;
    }
    .container {
        width: 85%;
    }
    .subtitulo {
        font-size: 4vw;
        font-weight: 500;
        margin-bottom: 20px;
    }
    .slider_review {
        font-weight: 300;
        font-size: 2vw;
        line-height: 3.5vw;
        width: 55vw;
    }
    .slider_arrow {
        width: 50%;   
    }
}
@media (min-width: 800px) {
    .slider {
        padding: 7vw 0;
    }
    .container {
        width: 80%;
    }
    .subtitulo {
        font-size: 3.5vw;
        margin-bottom: 25px;
    }
    .slider_review {
        font-weight: 300;
        font-size: 1.8vw;
        line-height: 3.5vw;
        width: 50vw;
    }
    .slider_arrow {
        width: 50%;   
    }
}
@media (min-width: 800px) {
    .slider {
        padding: 7vw 0;
    }
    .container {
        width: 75%;
    }
    .subtitulo {
        font-size: 3.5vw;
        margin-bottom: 25px;
    }
    .slider_review {
        font-weight: 300;
        font-size: 1.8vw;
        line-height: 3.5vw;
        width: 48vw;
    }
    .slider_arrow {
        width: 50%;   
    }
}
@media (min-width: 1024px) {
    .slider {
        background-image: url(../Image/portada_nosotros_grande.png);
        padding: 8vw 0;
    }
    .container {
        width: 70%;
    }
    .subtitulo {
        font-size: 3vw;
        margin-bottom: 30px;
    }
    .slider_review {
        font-size: 1.6vw;
        line-height: 3.5vw;
        width: 40vw;
    }
    .slider_arrow {
        width: 55%;   
    }
}
@media (min-width: 1280px) {
    .slider {
        padding: 5vw 0;
    }
    .container {
        width: 60%;
    }
    .subtitulo {
        font-size: 2.5vw;
        margin-bottom: 30px;
    }
    .slider_review {
        font-weight: 300;
        font-size: 1.2vw;
        line-height: 3.1vw;
        width: 35vw;
    }
    .slider_arrow {
        width: 58%;   
    }
}


