footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 1.2rem 0.8rem 1.2rem;
    font-family: var(--primary-font);
    height: fit-content;
    background-color: var(--third-color);
}

.container-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact-group{
    display: flex;
    flex-direction: column;
}

#footer-right .contact-group{
    margin-left: 5rem;
}

#footer-left .contact-group{
    margin-right: 5rem;
}

.contact-group header{
    font-size: 1.3rem;
    color: var(--quarter-color);
    margin-bottom: 0.4rem;
}

.icon-contact{
    height: 15px;
    width: 15px;
}

.contact{
    color: var(--quarter-color);
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact p{
    font-size: 1.1rem;
    margin: 0rem 0rem 0rem 0.4rem;
}

#footer-left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: fit-content;
}

#footer-right{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: fit-content;
}

#footer-copyright{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

#footer-copyright p{
    margin: 0;
    color: var(--quarter-color);
    font-size: 0.8rem;
    margin: 0.4rem 0rem 0rem 0rem;
}

@media (max-width: 875px){
    #footer-right{
        flex-direction: column;
        align-items: flex-start;
    }
    #footer-left{
        flex-direction: column;
        align-items: flex-start;
    }
    #footer-right .contact-group, #footer-left .contact-group{
        margin-bottom: 1.2rem;
        margin-left: 10px;
        margin-right: 10px;
    }
}