#slider{
    height: calc(100vh - var(--altura-header) - var(--altura-nav));
    width: 100%;
    position: relative;
}

.slide{
    text-align: center;
    color: #fff;
    font-family: var(--font-ubuntu);
    transition: all 0.7s ease-in-out;
    width: 100%;
    height: 100%;
    max-height: 963px;
    z-index: 0;
    background-size: cover;
    background-position: center;
    -webkit-animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.s1{
    background-image: url("../img/image1.jpg");
}
.s2{
    background-image: url("../img/image2.jpg");
    display: none;
}
.s3{
    background-image: url("../img/image3.jpg");
    display: none;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*** Contenedor del texto ***/
.slide .content-slider{
    /*background-color: #30c70d;*/
    height: 75%;
    left: 50px;
    padding: 0 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 100px);
    display: flex;
    flex-direction: column;
}

.slide .content-slider .content-slider-image{
    /*background-color: blanchedalmond;*/
    height: 100%;
}
.content-slider-image{
    padding-top: 50px;
}
.content-slider-image img{
    max-height: 155px;
}

@media(min-width:600px){
    .content-slider-image img{
        max-height: 250px;
    }
}
@media(min-width:800px){
    .content-slider-image{
        padding-top: 40px;
    }
}
@media(min-width:1024px){
    .content-slider-image{
        padding-top: 20px;
    }
    .content-slider-image img{
        max-height: 300px;
    }
}
@media(min-width:1440px){
    .content-slider-image{
        padding-top: 20px;
    }
    .content-slider-image img{
        max-height: 400px;
    }
}
@media(min-width:1900px){
    .content-slider-image{
        padding-top: 20px;
    }
    .content-slider-image img{
        max-height: 500px;
    }
}

.slide .content-slider .content-slider-text h1{
    color: var(--color-texto-bold);
    font-family: var(--font-ubuntu);
    font-size: 30px;
    padding-bottom: 10px;
    text-align: center;
    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
.slide .content-slider .content-slider-text p{
    color: var(--color-btn-menu);
    font-size: 16px;
    text-align: center;
    padding-bottom: 10px;
    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}
@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }
    40% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

@media(min-width:800px){
    .slide .content-slider{
        /*background-color: #30c70d;*/
        flex-direction: row;
        align-items: center;
        left: 70px;
        padding: 0;
        width: calc(100% - 140px);
    }
    .content-slider-image{
        /*background-color: thistle;*/
        width: 100%;
    }

}
@media(min-width:1024px){
    .slide .content-slider{
        left: 80px;
        width: calc(100% - 160px);
    }
}
@media(min-width:1200px){
    .slide .content-slider{
        left: 10%;
        width: 80%;
    }
}
@media(min-width:1440px){
    .slide .content-slider{
        left: 10%;
        width: 80%;
    }
}
@media(min-width:1900px){
    .slide .content-slider{
        left: 15%;
        width: 70%;
    }
}

button{
    background-color: #0338a6;
    padding: 12px 50px;
    border: initial;
    margin-top: 20px;
    width: 200px;
}
.boton{
    background-color: rgba(85, 186, 202,0.4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
}
.boton:hover{
    background-color: rgba(85, 186, 202,0.8);
    transition: all 0.5s ease-in-out;
    border: 2px solid #fff;
}
.boton:hover span{
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.boton span{
    color: #fff;
    font-size: 25px;
}

.derecha{
    right: 10px;
    padding: 5px 0 0 7px;
}
.izquierda{
    left: 10px;
    padding: 5px 0 0 3px;
}

/*** PAGINACIÓN ***/
.paginacion{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
}
.paginacion li{
    list-style: none;
    width: 35px;
    height: 5px;
    background-color: #fff;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}
.paginacion li:first-of-type{
    background-color: #29B0A9;
}

.paginacion li:hover{
    background-color: rgba(0,0,0,0.3);
    transition: all 0.5s ease-in-out;
}

@media(min-width:800px) {
    .boton{
        width: 60px;
        height: 60px;
    }
    .boton span{
        font-size: 40px;
    }
    .derecha{
        padding: 7px 0 0 10px;
    }
    .izquierda{
        padding: 7px 0 0 5px;
    }
    .paginacion li{
        margin-right: 15px;
    }
    .slide .content-slider .content-slider-text h1{
        text-align: left;
    }
    .slide .content-slider .content-slider-text p{
        text-align: left;
    }
}
@media(min-width:1024px) {
    .slide .content-slider .content-slider-text h1{
        font-size: 60px;
    }
    .slide .content-slider .content-slider-text p{
        font-size: 22px;
    }
    .derecha{
        right: 20px;
    }
    .izquierda{
        left: 20px;
    }
    .paginacion li{
        width: 45px;
        height: 7px;
        margin-right: 25px;
    }
}

/**** INICIO DE ESTILOS PARA LA FLECHA ****/
@media(min-height:600px){
    .flechascroll {
        align-items: center;
        bottom: 75px;
        display: flex;
        height: 60px;
        justify-content: center;
        position: absolute;
        width: 100%;
        z-index: 400;
    }
    .chevron {
        position: absolute;
        width: 2.1rem;
        height: 0.48rem;
        opacity: 0;
        transform: scale(0.3);
        -webkit-animation: move-chevron 3s ease-out infinite;
        animation: move-chevron 3s ease-out infinite;
    }

    .chevron:first-child {
        -webkit-animation: move-chevron 3s ease-out 1s infinite;
        animation: move-chevron 3s ease-out 1s infinite;
    }

    .chevron:nth-child(2) {
        -webkit-animation: move-chevron 3s ease-out 2s infinite;
        animation: move-chevron 3s ease-out 2s infinite;
    }

    .chevron:before,
    .chevron:after {
        content: "";
        position: absolute;
        top: 0;
        height: 100%;
        width: 50%;
        background: rgba(85, 186, 202,0.3);
    }

    .chevron:before {
        left: 0;
        transform: skewY(30deg);
    }

    .chevron:after {
        right: 0;
        width: 50%;
        transform: skewY(-30deg);
    }

    @-webkit-keyframes move-chevron {
        25% {
            opacity: 1;
        }
        33.3% {
            opacity: 1;
            transform: translateY(2.28rem);
        }
        66.6% {
            opacity: 1;
            transform: translateY(3.12rem);
        }
        100% {
            opacity: 0;
            transform: translateY(4.8rem) scale(0.5);
        }
    }

    @keyframes move-chevron {
        25% {
            opacity: 1;
        }
        33.3% {
            opacity: 1;
            transform: translateY(2.28rem);
        }
        66.6% {
            opacity: 1;
            transform: translateY(3.12rem);
        }
        100% {
            opacity: 0;
            transform: translateY(4.8rem) scale(0.5);
        }
    }
}
@media(min-height:800px) {
    .flechascroll {
        bottom: 100px;
    }
}
/**** FIN DE ESTILOS PARA LA FLECHA ****/