footer {
    background-color: var(--black);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 0;
    color: var(--white);
}

.footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    padding: 20px;
}

.footer-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.footer-left a {
    color: var(--light);
    font-size: 15px;
}
.footer-left a:hover {
    color: var(--main);
}

.footer-right {
    height: 50px;
}
.footer-right img {
    height: 50px;
    object-fit: scale-down;
}

@media (max-width: 1111px) {
    .footer {
        gap: 20px;
    }
    .footer-left {
        align-items: start;
    }
}

@media (max-width: 768px) {
    .footer {
        width: 90%;
    }
}

@media (max-width: 670px) {
    .footer-left  {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer {
        gap: 40px;
    }
    .footer-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}