*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'lato';
}

.slide-contenedor{
    max-width:100%;
    max-height: 100vh;
    width: 100%;
    height:auto;
    position: relative;
    overflow: hidden;
    /* margin: auto; */
}

/* .miSlider{
    display: none;
    transition: 2s;
    max-height: 100vh;
} */

.miSlider img{
    width: 100%;
    height: 800px;
   
    object-fit: cover;
    vertical-align: top;
    transition: 2s;
    position: relative;
}



.slide-contenedor::before{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, #012358 0%, rgba(11, 58, 80, 0.38) 100%);

}

.slide2-contenedor{
    max-width:100%;
    max-height: 800px;
    width: 100%;
    height:auto;
    position: relative;
    overflow: hidden;
    /* margin: auto; */
}

.slide2-contenedor::before{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;


background: linear-gradient(181.04deg, #0B2650 0.77%, rgba(0, 163, 164, 0.59) 152.77%);


}



.direcciones{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    z-index: 5;
}

.direcciones a{
    color: transparent;
    display: inline-block;
    padding: 20px;
    text-decoration: none;
    z-index: 5;
    

}

.direcciones a:hover{
    background: rgba(9, 0, 61, 0);
    transition: .5s;
}

.barras{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom:15px;
}

.barra{
    cursor: pointer;
    height:2px;
    width: 25px;
    margin: 0 2px;
    background: #dcdde1;
    display: inline-block;
    margin-left: 3px;
}

.active{
    background-color: #e74c3c;
}

.fade{
    animation-name: fade;
    animation-duration: 1.5s;    
}

.contenedorSlider{
 display: flex;
 justify-content: center;
}

@keyframes fade {
    from {opacity: .4;}
    to{opacity:1;}
}