.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%;
    max-height: 100vh;
    height: inherit;
    object-fit: cover;
    vertical-align: top;
    transition: 2s;
}
.miSlider iframe {
    width: 100%;
    max-height: 100vh;
    height: 500px;
    object-fit: cover;
    vertical-align: top;
    transition: 2s;

}

.direcciones{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.direcciones a {
    color: #FFFFFF;
    display: inline-block;
    padding: 20px;
    text-decoration: none;
}

.direcciones a:hover {
    background: rgba(43, 43, 43, 0.5);
    transition: .5s;
}

.barras{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.barra {
    cursor: pointer;
    height: 10px;
    width: 25px;
    margin: 0 2px;
    background: #ffffff;
    display: inline-block;
    margin-left: 3px;
    border-radius: 5px;
}

.active1{
    background-color: #002554;
}

.fade1{
    animation-name: fade1;
    animation-duration: 2s;
}

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