footer {
    background: #0C4C44;
    height: 20vh;
    display: flex;
    padding: 3rem 0rem 3rem 9rem;
}

.footer_menu {
    width: 50%;
    display: flex;
    justify-content: center;
}

.footer_menu ul {
    width: 100%;
}

.footer_menu ul li {
    list-style: none;
    color: #BFC1C7;
    margin-top: 1rem;
}

.footer_menu ul li:first-child {
    font-weight: 700;
    color: #fff;
}

.midia_social {
    width: 45%;
    margin-left: 10rem;
}

.midia_social p {
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
}

.midia_social ul {
    width: 35%;
    display: flex;
    justify-content: space-evenly;
    margin-top: 1rem;
}

.midia_social ul li {
    list-style: none;
    background-color: #147B6E;
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram_icon {
    width: 2rem;
}

.linkedin_icon {
    width: 1.5rem;
}

.facebook_icon {
    width: 1rem;
}


#sub_footer {
    width: 100%;
    height: 7vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #147B6E;
    color: #E1E4EA;
    text-align: center;
}

#sub_footer div:last-child {
    text-decoration: none;
}

#sub_footer div:last-child a{
    text-decoration: none;
    color: #E1E4EA;
}

#sub_footer div:last-child a:hover{
    opacity: 0.4;
}

.footer_menu ul li a{
    text-decoration: none;
    color: #fff;
}

.footer_menu ul li.hover a:hover{
    cursor: pointer;
}

.footer_menu ul li a::after {
    content: '';
    display: block;
    cursor: pointer;
    width: 0;
    height: 2px;
    background: #19988B;
    transition: width .3s;
}

.footer_menu ul li.hover a:hover::after {
    width: 80%;
}

.midia_social ul li:hover {
    background-color: #30A89D;
    cursor: pointer;
    transition: 0.3s;
}

@media (min-width: 249px) and (max-width: 767px) {
    footer {
        flex-direction: column;
        height: auto;
        padding: 2rem;
    }

    .footer_menu {
        flex-direction: column;
        width: unset;
    }

    .footer_menu ul {
        margin-top: 2rem;
    }

    .midia_social {
        margin: 0;
        margin-top: 2rem;
        width: unset;
    }

    #sub_footer {
        flex-direction: column;
        height: auto;
        align-items: center;
        text-align: center;
        font-size: 0.8rem;
        padding: 2rem 0rem 2rem 0rem;
    }

    #sub_footer div {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .midia_social ul {
        width: 100%;
    }

    #sub_footer div:last-child {
        margin: 0;
    }

}

@media (min-width: 768px) and (max-width: 1440px) {
    footer {
        padding: 2rem 0rem 2rem 2rem;
        flex-direction: column;
        height: unset;
    }

    .footer_menu {
        width: 100%;
    }

    .midia_social {
        margin: 0;
        margin-top: 1rem;
    }

    .midia_social ul {
        width: 80%;
    }

    .midia_social ul li {
        margin-right: 1rem;
    }

    #sub_footer div {
        padding: unset;
        padding-left: 2rem;

    }
}