.cd {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.logo_depto {
    padding-top: 30px;
}

.card_1 {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    /* min-width: 0;
    word-wrap: break-word; */
    background-color: #fff;
    box-shadow: 1px 5px 8px #3f3f3f;
    border-radius: 5px;
    text-align: center;
}

.card_1:hover {
    background-color: rgb(192, 253, 141);
    font-weight: 600;
    box-shadow: 1px 5px 8px #3f3f3f;
    border-radius: 5px;
    text-align: center;
}

.card_1 img {
    position: relative;
    top: 15px;
    width: 100px;
}

.card_1 h5 {
    font-size: 1rem;
    font-weight: 300;
    color: #333232;
}

.card_1 h5:hover {
    font-weight: 500;
}


/*.... slider DEPTOS.....*/

.slider_depto {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.slider_depto ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    width: 1018%;
    animation: cambio 30s infinite alternate;
}

.slider_depto li {
    list-style: none;
    width: 100%;
}

.slider_depto img {
    width: 99%;
    margin-left: auto;
    margin-right: auto;
}

@keyframes cambio {
    0% {
        margin-left: 0;
    }
    20% {
        margin-left: 0;
    }
    25% {
        margin-left: -100%;
    }
    45% {
        margin-left: -100%;
    }
    50% {
        margin-left: -200%;
    }
    70% {
        margin-left: -200%;
    }
    75% {
        margin-left: -300%;
    }
    100% {
        margin-left: -300%;
    }
}