#footer {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 0;
}

.footer-content {
    width: 1196px;
    
    padding: 50px 0;
    color: #E4E0DD;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer-logo {
    width: 124px;
}
.footer-logo-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-social-icons {
    display: flex;
    gap: 10px;
}
.footer-stack-div, .footer-right-div {
    display: flex;
}
.footer-stack-div {
    gap: 80px;
}
.footer-right-div {
    width: 68%;
    gap: 80px;
    justify-content: flex-end;
}

.footer-sites, .footer-links, .footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}
.copyright-text {
    font-size: 14px;
    color: var(--footerLinkColor);
}

.footer-right-div a {
    color: var(--footerLinkColor);
}