/*** Mobile First Workflow ***/

/* FOOTER */
.footer {
    min-height: auto; 
    width: 100% !important;
    display: flex;
    flex-direction: column;
    padding: .625rem 1.3rem;
    box-shadow: 0 -5px 5px -5px var(--color-primary);
    color: var(--color-primary);;
}

/* Estilos a los textos */
.empresa__p, .footer__h5, .mail__p, .celular__p, .direccion__p, .footer__p {
    font-size: 12px;
}
.empresa__p{
    margin-bottom: 5px;
}
.empresa__a {
    font-size: 12px;
    color: var(--color-primary);
}
.footer__h5 {
    font-weight: bold;
    font-size: 14px;

    margin-top: 1.563rem;
    margin-bottom: .75rem;
}
.footer__h5--modifier{
    text-align: center;
}

/* Seccion empresa */
.empresa__img {
    height: 3.125rem;
}
.footer__empresa {
    margin-right: 4.875rem;
}
.empresa__p {
    text-align: justify;
    margin-top: .625rem;
}

/* Seccion contactanos */
.mail__i, .celular__i, .direccion__i {
    padding-bottom: .625rem;
    padding-right: .625rem;
}
.direccion__i{
    padding-right: .875rem;
}

/* Seccion redes sociales */
.footer__redes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.redes__container {
    width: 20%;
    text-align: center;
    margin-bottom: .938rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.redes__youtube {
    margin: 0 20px;
}
.redes__youtube:hover, .redes__facebook:hover, .redes__instagram:hover {
    transform: scale(1.2);
}

/* Seccion copyright */
.footer__p {
    text-align: center;
    font-size: 10px;
}

/* BREAKPOINT 768+px*/
@media screen and (min-width: 768px) {
    /* FOOTER */
    .footer__container {
        display: flex;
        flex-direction: row;
        width: 100%;
        padding-left: 40px;
    }
    /* Estilos a los textos*/
    .empresa__p, .footer__h5, .mail__p, .celular__p, .direccion__p, .footer__p, .empresa__a {
        font-size: 14px;
    }
    .empresa__p {
        margin-bottom: 10px;
    }
    /* Seccion empresa */
    .footer__empresa, .footer__contactanos, .footer__redes {
        width: 33%;
    }
    .empresa__p {
        width: auto;
    }

    /* Seccion contactanos*/
    .footer__contactanos {
        justify-self: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .mail__p, .celular__p, .direccion__p {
        width: 18.75rem;
    }

    /* Seccion redes sociales*/
    .redes__youtube {
        margin: auto 20px;
    }

    /* Seccion copyright */
    .footer__p {
        font-size: 11px;
        margin-top: 1rem;
    }
}
.redes__facebook, .icon__facebook {
    color: #1778F2;
    font-size: 25px;
}
.redes__youtube, .icon__youtube {
    color: #FF0000;
    font-size: 25px;
}
.redes__instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d) !important;
    color: white;
    font-size: 19px;
    text-decoration: none;
    padding: 3px 4.2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width:768px) and (max-width: 997px) {
    .footer__container {
        padding-left: 0;
    }   
}