footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    background-color: black;
}

.footer-logo {
    width: 100%;
    display: flex;
    align-items: center;

    @media (max-width: 1200px) {
        padding: 30px 5%;
    }

    @media (min-width: 1200px) {
        padding: 40px 5%;
    }

    @media (min-width: 870px) {
        justify-content: start;
    }

    @media (max-width: 870px) {
        justify-content: center;
    }
}

.footer-logo img {
    width: 100%;
    max-width: 400px;
}

.footer-permalinks {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    gap: 50px;

    @media (max-width: 1200px) {
        padding: 30px 5%;
    }

    @media (min-width: 1200px) {
        padding: 10px 5%;
    }

    @media (max-width: 870px) {
        flex-direction: column-reverse;
    }
}

.footer-permalinks .permalinks {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: center;
    gap: 20px;
}

.footer-permalinks .permalinks a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    align-items: center;
}

@media (max-width: 870px) {
    
    .footer-permalinks h2 {
        margin-top: 50px;
        align-self: self-start;
    }
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;

    @media (max-width: 1200px) {
        padding: 30px 5%;
    }

    @media (min-width: 1200px) {
        padding: 40px 5%;
    }

    @media (min-width: 750px) {
        align-items: end;
    }

    @media (max-width: 750px) {
        flex-direction: column;
        align-items: start;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    color: white;

    @media (min-width: 750px) {
        max-width: 500px;
    }

    @media (max-width: 750px) {
        width: 100%;
        max-width: 100%;
    }
}

.footer-left p {
    font-size: 20px;
}
.footer-left .newsletter-fil {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.newsletter-fil .form {
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-left .newsletter-fil .form {
    display: flex;
    gap: 10px;
}

.footer-left .newsletter-fil button {
    background-color: #FACB01;
    color: black;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 120px;
    color: white;
    
    @media (min-width: 750px) {
        max-width: 500px;
        align-items: end;
    }

    @media (max-width: 750px) {
        max-width: 100%;
        width: 100%;
        align-items: center;
    }
}

.footer-right .list-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.footer-right .list-info .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: white;
    font-size: 17px;
    text-align: end;
}

.footer-right .list-info .info img{
    width: 40px;
}
    
@media (min-width: 750px) {

    .footer-right .list-info {
        align-items: end;
    }
}

@media (max-width: 750px) {

    .footer-right .list-info {
        align-items: center;
    }
}

.copyright {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: #FACB01;
    padding: 10px 5%;

    @media (max-width: 550px) {
        align-items: center;
        gap: 30px;
        flex-direction: column-reverse;
    }

    @media (min-width: 550px) {
        align-items: end;
    }
}

.copyright h6 {
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    font-style: italic;
    text-align: center;
}

.copyright h6 img {
    width: 20px;
}

.copyright .socials {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
}

.copyright .socials img {
    width: 40px;
}