footer{
    background: #000000;
    width: 100%;
}

.footer_components {
    padding: 40px 0;
}

.footer__contenido {
    width: 80%;
    margin: 0 auto;
}


.footer__lista {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__item {
    width: calc(100vw / 5);
    height: 350px;
    border-radius: 5px;
    transition: .3s;
    margin-top: 20px;
}

.footer__item:hover {
    transform: translateY(-10px)
}

.footer__imagen {
    width: calc(100vw / 5);
    height: 300px;
}

.footer__item:nth-child(1) {
    background: url("../../images/descrip.jpg") no-repeat center / 100% 100%;
}

.footer__item:nth-child(2) {
    background: url("../../images/objetivos.avif") no-repeat center / 100% 100%;
}

.footer__item:nth-child(3) {
    background: url("../../images/manual.avif") no-repeat center / 100% 100%;
}

.footer__item:nth-child(4) {
    background: url("../../images/contacto.jpg") no-repeat center / 100% 100%;
}
.footer__item:nth-child(5) {
    background: url("../../images/encuesta.png") no-repeat center / 100% 100%;
}

.footer__descripcion {
    width: calc(100vw / 5);
    height: 50px;
    background: #242020;
}

.footer__texto {
    font-family: cursive;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    padding-top: 10px;
}

@media screen and (max-width: 952px) {}

@media screen and (max-width: 767px) {
    .proyects__item {
        width: calc(80vw / 1);
    }

    .proyects__imagen {
        width: calc(80vw / 1);
        height: 350px;
    }

    .proyects__descripcion {
        width: calc(80vw / 1);
        height: 50px;
        background: #000000;
    }

    .proyects__lista {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
    }
}