.footer {
    width: 100%;
    padding: 60px 120px;
    background-color: var(--background-dark);
    color: white;
    display: flex;
    margin-top: auto;
}

.footer-row {
    display: flex;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-row > .footer-col:first-child {
    margin-right: 120px;
}

.footer-logo {
    width: 350px;
    object-fit: contain;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer-link, .footer-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--background);
    text-decoration: none;
    font-weight: 300;
}

@media screen and (max-width: 700px) {
    .footer-row > .footer-col:first-child {
        margin-right: 60px;
    }
}

@media screen and (max-width: 520px) {
    .footer-row {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-col {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-row > .footer-col:first-child {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .footer-logo {
        width: 300px;
        object-fit: contain;
        margin-bottom: 30px;
    }
}

.copyright {
    width: 100%;
    padding-bottom: 20px;
    background-color: var(--background-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.flag-bar {
    width: 100%;
    height: 6px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 78px 6px;
    background-color: var(--text-color);
    margin-bottom: 20px;
}

@media screen and (max-width: 1500px) {
    .footer {
        padding: 60px 40px;
    }
}