/* Footer */
footer {
    background-color: #292929;
    color: white;
    min-height: 19vh;
}

.credit {
    text-align: center;
    padding: 1rem 0;
}

footer section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3% 6%;
}

footer section .contact p {
    margin: 1rem 0;
    font-weight: 500;
}

footer section .contact a {
    text-decoration: none;
    padding: 0.2rem;
    color: white;
}

/* footer section .contact a img {
    max-width: 2.5rem;
} */

.footer-logo img {
    width: 10rem;
}

.logo-x, .logo-line, .logo-linkedin{
    max-width: 2.3rem;
}
.logo-yt, .logo-ig{
    max-width: 2.8rem;
}

.icon-contact{
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

@media screen and (max-width: 639px) {
    footer {
        height: 100%;
        min-height: 25vh;
    }

    footer section {
        display: flex;
        flex-direction: column;
        padding: 3rem 3rem;
    }

    .contact {
        align-items: center;
        margin-top: 2rem;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo img {
        width: 8rem;
    }

    .credit{
        font-size: 80%;
    }

    .logo-x, .logo-line, .logo-linkedin{
        max-width: 1.8rem !important;
    }
    .logo-yt, .logo-ig{
        width: 2.1rem !important;
    }
    .icon-contact{
        gap: 0.5em;
    }
}

@media (max-width: 768px){
    .footer-logo img {
        width: 7rem;
    }

    .logo-x, .logo-line, .logo-linkedin{
        max-width: 1.5rem;
    }
    .logo-yt, .logo-ig{
        width: 1.8rem;
    }
}