footer {
    background: var(--border-color);
    border-top: 1px solid var(--color-3);
    width: 100%;
    padding: 20px 60px;
}

footer .footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-3);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

footer .footer-top a.main-logo {
    width: 15vw;
    min-width: 15vw;
}

footer .footer-top .footer-links-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-right: 10vw;
}

footer .footer-top .footer-links-container .item {
    
}

footer .footer-top .footer-links-container .item h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

footer .footer-top .footer-links-container .item .item-links-container ul.footer-links {
    list-style: none;
}

footer .footer-top .footer-links-container .item .item-links-container ul.footer-links li.link {
    text-align: center;
    margin-bottom: 7px;
    font-size: 18px;
}

footer .footer-top .footer-links-container .item .item-links-container ul.footer-links li.link a {
    
}

footer .footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .footer-bottom p.copyright {
    font-weight: bold;
    font-size: 18px;
}

footer .footer-bottom .social-links {
    display: flex;
    align-items: center;
}

footer .footer-bottom .social-links > a {
    display: flex;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
}

footer .footer-bottom .social-links > a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    footer {
        padding: 20px;
    }

    footer .footer-top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    footer .footer-top a.main-logo {
        width: 150px;
        min-width: 150px;
    }

    footer .footer-top .footer-links-container {
        margin-right: 0;
        margin-top: 20px;
        flex-direction: column;
    }

    footer .footer-top .footer-links-container .item {
        margin-bottom: 20px;
        width: 100%;
    }

    footer .footer-top .footer-links-container .item:last-child {
        margin-bottom: 0;
    }

    footer .footer-top .footer-links-container .item h3 {
        font-size: 20px;
        margin-bottom: 0px;
        width: 100%;
        position: relative;
    }

    footer .footer-top .footer-links-container .item h3::after {
        content: "\f067";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
    }

    footer .footer-top .footer-links-container .item.open h3::after {
        content: "\f068";
    }

    footer .footer-top .footer-links-container .item .item-links-container {
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height .6s ease-in-out;
    }

    footer .footer-top .footer-links-container .item .item-links-container ul.footer-links {
        padding-top: 10px;
    }

    footer .footer-top .footer-links-container .item .item-links-container ul.footer-links li.link {
        text-align: right;
    }

    footer .footer-bottom {
        flex-direction: column-reverse;
    }

    footer .footer-bottom .social-links {
        margin-bottom: 20px;
    }

    footer .footer-bottom .social-links > a {
        margin-right: 20px;
        width: 45px;
        height: 45px;
    }

    footer .footer-bottom .social-links > a:first-child {
        margin-right: 0;
    }
}