footer {
    background: #2e2925;
    color: #eaeaea;
    padding:  80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    @media (max-width: 768px) {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 30px 20px;
    }
}
.margin-bottom {
    margin-bottom: 24px;
}

.footer-left {
    max-width: 450px;
    @media (max-width: 768px) {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    @media (max-width: 768px) {
        justify-content: center;
    }
}

.social-media-icons {
    display: flex;
    width: 16px;
    height: 16px;
    justify-content: center;
    flex-shrink: 0;
}
.social-icons a {
    border: 1px solid  rgba(185, 185, 185, 0.50);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.social-icons a:hover {
    border-color: #E9D2A8;
}

.social-icons a:hover img {
    filter: brightness(0) saturate(100%) invert(81%) sepia(20%) saturate(356%) hue-rotate(5deg) brightness(94%) contrast(88%);
}

.footer-links {
    display: flex;
    gap: 60px;
    @media (max-width: 768px) {
        border-top: 1px solid rgba(185, 185, 185, 0.2);
        border-bottom: 1px solid rgba(185, 185, 185, 0.2);
        flex-direction: column;
        align-items: center;
        gap: 8px;
        align-self: stretch;
    }
}

.footer-links ul {
    list-style: none;
    padding: 0;
    @media (max-width: 768px) {
        text-align: left;
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

.footer-links ul li {
    margin-bottom: 10px;
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.footer-links ul li a {
    text-decoration: none;
    transition: color 0.3s;
    color: #C7C7C7;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-links ul li a:hover {
    color: #E9D2A8;
}

.footer-paragraph {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 24px;
    @media (max-width: 768px) {
        font-size: 16px;
        margin: 20px 0;
    }
}

.footer-contact h4 {
    margin-bottom: 8px;
    color: #EBEBEB;
    font-size: 16px;
    padding: 8px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    @media (max-width: 768px) {
        margin-top: 20px;
        text-align: center;
    }
}
.footer-contact p {
    color: #C7C7C7;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    padding: 8px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    @media (max-width: 768px) {
        justify-content: center;
    }
}
.footer-contact p:hover {
    color: #E9D2A8;
}

.footer-contact img {
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(185, 185, 185, 0.2);
    padding: 40px 80px 40px 80px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    background-color: #2e2925;
    color: #FFFFFF;
    @media (max-width: 768px) {
        padding: 20px 10px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 12px;
    }
}

.footer-bottom a {
    text-decoration: none;
    color: #eaeaea;
    font-weight: 700;
}

.copyright {
    margin-left: 24px;
}

@media (max-width: 768px) {
    .footer-left .logo {
        display: flex;
        justify-content: center;
    }

}
@media (min-width: 769px) {
    .footer-links {
        margin-left: auto;
        margin-right: 64px;
    }

    .footer-links ul {
        text-align: right;
    }
}
