.acordeon {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.acordeon .bloque {
    display: flex;
    height: 80vh;
    box-shadow: inset 10px 0 10px -8px #222121;
    color: #fff !important;
    width: 20%;
    text-align: center;
    background: #27568C;
}

.acordeon .title {
    background-color: transparent;
    padding: 3rem 1rem;
    cursor: pointer;
    width: 100%;
    color: #fff;
}

.acordeon .contenido {
    background-color: transparent;
    width: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.7s ease-out;
}

.acordeon .contenido p {
    color: #fff !important;
    font-size: 0.785rem;
}

.acordeon .bloque.activo .contenido {
    width: calc(85px * 2) !important;
    padding: 3em 0.5rem;
}

.acordeon .bloque.activo .title {
    width: calc(85px * 2) !important;
    padding: 3em 0.5rem;
    overflow-x: hidden;
    font-size: 0.785rem;
}

@media (max-device-width: 1159px) {
    .acordeon .title {
        font-size: 0.785rem;
        padding: 1rem;
    }
}

@media (max-device-width: 991px) {
    .acordeon {
        flex-direction: column;
    }

    .acordeon .bloque {
        display: block;
        box-shadow: 10px 0 10px #222121;
        width: 100%;
        height: auto;
    }

    .acordeon .contenido {
        background-color: transparent;
        height: 0;
        padding: 0;
        overflow: hidden;
        transition: all 1s linear;
    }

    .acordeon .contenido p {
        font-size: 1rem;
    }

    .acordeon .title {
        font-size: 1.25rem;
        padding: 1rem;
    }

    .acordeon .bloque.activo .contenido {
        width: 100% !important;
        padding: 1rem;
        height: auto;
    }

    .acordeon .bloque.activo .title {
        width: 100% !important;
        padding: 1rem;
        font-size: 1.25rem;
    }
}