@import url('_global.css');

footer {
    background-color: #000000;
    width: 100%;
    color: white;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 85%;
}

.footer {
    width: 23%;
    padding-top: 20px;
}

.newsletter{
    padding: 2% 4% 0 0;
}

.title-footer {
    display: flex;
    align-items: center;
    height: 15vh;
}

#logo-footer {
    width: 14em;
    height: auto;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.footer a:hover {
    text-decoration: underline;
    color: #cccccc;
}

.icon-footer {
    width: 2em;
    height: auto;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.footer a u,
.footer a span {
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

@media (max-width: 1075px){
    .footer {
        width: 40%;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        flex: 1 1 100%;
        padding: 1.5rem 1rem;
    }

    #logo-footer {
        width: 10em;
    }

    .title-footer {
        justify-content: center;
    }

    .footer a {
        text-align: center;
    }
}
