.footer_info {
    width: 100%;
    height: auto;
    background: black;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4rem 0;
}

.container_datos {
    width: 30%;
    height: 100%;
    margin: 0 0.5rem;
    line-height: 2rem;
    text-align: center;
    padding: 0rem 0 0 2rem;
    overflow: hidden;
    color: var(--texto-blanco);
    font-size: 14px;
}

.container_datos p {
    text-align: justify;
}

.img_footer {
    width: 15rem;
    height: 13rem;
}

.redes_container {
    width: 15%!important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.redes_container a, .contacto_datos a{
    text-decoration: none;
    color: var(--texto-blanco);
    margin-bottom: 2rem;
}

.redes_container i, .container_datos i {
    font-size: 20px;
    margin-right: 1rem;
    position: relative;
    top: 5px;
    color: var(--texto-blanco);
}

.contacto_datos {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.container_datos a:hover{
    color: var(--primary-color);
}

.footer_kimerkia {
    width: 91%;
    height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    line-height: 2rem;
    color: var(--texto-blanco);
    border-top: 1px solid #fff;
}

.footer_kimerkia p {
    width: 100%;
    text-align: center;
    font-size: 14px;
}

.footer_kimerkia i {
    text-decoration: none;
    color: var(--texto-blanco);
    font-size: 2rem;
    margin: 0 2rem;
    font-size: 20px;
}

@media (max-width: 1200px){

    .footer_kimerkia p {
        font-size: var(--textos_p);
    }
    .footer_kimerkia i {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px){
    .footer_info {
        flex-wrap: wrap;
    }

    .container_datos {
        width: 33%;
        padding: 1rem;
        min-width: 280px;
    }

    .redes_container {
        width: 30%!important;
        padding: 2rem;
    }

    .redes_container i, .container_datos i {
        font-size: 1.5rem;
    }

    .redes_container a, .contacto_datos a {
        font-size: var(--textos_p);
    }

    .container_datos p {
        font-size: var(--textos_p);
    }
}