*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

/*body{
    font-family: 'lato';
}*/
h1{
    font-family: EncodeSemiBold; sans-serif;
}
h2{
    font-family: EncodeSemiBold; sans-serif;
}
h3{
    font-family: EncodeSemiBold; sans-serif;
}
h4{
    font-family: EncodeSemiBold; sans-serif;
}
.slide-contenedor{
    max-width:100%;
    max-height: 100vh;
    width: 100%;
    height:auto;
    position: relative;
    overflow: hidden;
    /* margin: auto; */
}

 .miSlider{
    display: none;
    transition: 5s;
    max-height: 100vh;
} 

.miSlider img{
    margin: 0 5%;
    width: 90%;
    max-height: 100vh;
    height: 300px;
    object-fit: cover;
    vertical-align: top;
    transition: 2s;
}

.direcciones{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.direcciones a{
    color: #fff;
    display: inline-block;
    padding: 20px;
    text-decoration: none; 
    background-color: #009AAE;
}

.direcciones a:hover{
    /*background: rgba(0, 0, 0, .5);*/
    background-color: #5D4A7A;
    transition: .5s; 
}

.barras{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom:15px; 
}

.barra{
    cursor: pointer;
    border-radius: 50%;
    height:15px;
    width: 15px;
    margin: 0 2px;
    background: #009AAE;
    display: inline-block;
    margin-left: 3px;
}

.active{
    background-color:#5D4A7A;;
}

.fade{
    animation-name: fade;
    animation-duration: 1.5s;    
}

@keyframes fade {
    from {opacity: .4;}
    to{opacity:1;}
}