.footer {
    background-color: white;
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 10vh;
    overflow: hidden;
    padding: 4vh 4vw;
}

.footer-download {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vh;
}

.footer-download-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4vh;
}

.footer-download-header-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vh;
}

.footer-download-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vh;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vh;

    width: 30%;
}

.footer-contact-image {
    overflow: visible;
    width: 40%;
}

.footer-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4vh;
    padding: 1vh 0;
}

.footer-contact-header-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vh;
}


@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        padding: 10vw;
        gap: 1vh;
    }

    .footer-download {
        width: 100%;
        align-items: flex-start;
    }

    .footer-contact {
        width: 100%;
        align-items: flex-start;
    }

    .footer-download-header {
        flex-direction: row;
        align-items: center;
        gap: 1vh;
    }

    .footer-contact-header {
        flex-direction: row;
        align-items: center;
        gap: 1vh;
    }

    .footer-download-link {
        width: 50%;
    }

    .footer-contact-icon {
        width: 8%;
    }

    .footer-contact-image {
        width: 15%;
    }
    
}