/*contenedor principal*/
.carrusel{
    height: 370px;
    background: white;
    width: 100%;
}
.slide-contenedor{
    max-width:100%;
    max-height: 100vh;
    width: 85%;
    height: auto;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.girar{
    display: flex;
    width: 95%;
    margin: 0 auto;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
    vertical-align: top;
    transition: 2s;
} 
.carrusel-img {
    margin: 2% auto;
    width: 35%;
    height: 140px;
    text-align: center;
}
img{
    width: 100%;
    height: 140px;
}
.header-text{
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    margin-top: 4%;
}
.texto{
    font-size: 12px;
    font-weight: normal;
    margin-top: 1%;
}
.miSlider{
    width: 24.75%;
    margin: 0 2px;
}
.tabla{
    width: 90%;
    margin: 3% auto;
}
.titulos{
    display: flex;
    width: 100%;
    font-size: 12px;
    text-align: center;
}
.tabla-contenido{
    display: flex;
    width: 100%;
    font-size: 10px;
    text-align: center;
}
.estilo-conte{
    margin: 1px;
    border: solid 1px #000;
    width: 200px;
    display: block;
}
.direcciones{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 30px;
}
.direcciones a{
    color: #666691;
    display: inline-block;
    padding: 15px;
    text-decoration: none;
}
.direcciones a:hover{
    background: #c1c1c9;
    transition: .5s;
}

@keyframes fade {
    from {opacity: .4;}
    to{opacity:1;}
}
.texto-header-carusel{
    display: block;
    text-align: center;
    width: 100%;
    height:auto;
    padding-bottom: .3%;
    margin: auto;
}
.texto-contenido-carrusel{
    width: 100%;
    font-size: 15px;
    height: auto;
    transition: .7s;
    margin: auto;
}
.texto-contenido-carrusel:hover{
    padding: 8px;
    font-size: 20px;
    margin: auto;
}
@media only screen and (max-width: 800px) {
    .carrusel{
        height: 340px;
    }
    .slide-contenedor{
        width: 85%;
    }
    .girar{
        width: 100%;
        height: 330px;
    }
    .miSlider{
        width: 50%;
        height: 330px;
        margin: 0 2px;
    }
    .tabla{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid black;
        height: auto;
    }
    .carrusel-img {
        height: 105px;
    }
    img{
        width: 90%;
        height: 100px;
    }
    .header-text{
        margin-top: 0;
    }

    @media only screen and (max-width: 550px) {
        .miSlider{
            width: 100%;
            height: 330px;
            margin: 0 2px;
        }
    }
}