/* *{
    box-sizing: border-box;
} */

:root {
    --cantidad-sliders: 3;
}

.container-slider {
    width: 90%;
    max-width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    width: calc(var(--cantidad-sliders)*100%);
    /*Ajustar acorde a cantidad de sliders*/
    height: 540px;
    margin-left: -100%;
}

.slider_section {
    width: 100%;
    text-align: center;
}

.slider_section h1 {
    text-align: left;
}

.slider_section h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    margin-left: 3%;
    margin-top: 3%;
    font-size: calc(1.1vw + 1.1vh);
    font-family: var(--titulos);
    font-weight: 100;
    color: var(--color-texto2);
}

.slider_section h1:visited {
    color: var(--color-texto2);
}

.slider_img {
    display: block;
    height: 100%;   
    width: 100%;
    object-fit: fill;
    object-position: center;
    border-radius: 20px;
}

.slider_btn {
    position: absolute;
    width: 1em;
    height: 1em;
    background: var(--color-extra);
    top: 60%;
    transform: translateY(-60%);
    font-size: calc(2vw + 2vh);
    font-weight: bolder;
    font-family: var(--titulos);
    text-align: center;
    border-radius: 20%;
    cursor: pointer;
    opacity: 80%;
}

.slider_btn:hover {
    opacity: 50%;
}

.slider_btn-left {
    left: 2%;
}

.slider_btn-right {
    right: 2%;
}