footer {
    font-size: 0.9em;
    font-weight: 500;
    text-align: left;
}

footer .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: center;
    width: 95%;
}

footer .col {
    margin: 10px;
}

footer h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

footer address {
    font-style: normal;
    line-height: 1.6;
}

footer ul {
    list-style-type: none;
    padding: 0;
    
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    text-decoration: none;
    color: var(--color4);
}

footer ul li a:hover {
    text-decoration: underline;
}

footer .social-network {
    margin-right: 10px;
    color: var(--color4);
    text-decoration: none;
}

footer .social-network:hover {
    color: var(--color4);
}

footer .copy {
    text-align: center;
    padding: 10px;
    color: #939393c2;
    z-index: 8;
}

@media screen and (max-width: 800px) {
    footer .row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    footer .col {
        margin-bottom: 20px;
    }

    footer address {
        text-align: center;
    }
}