/* ========================================
   Footer Styles
   ======================================== */

.footer {
    width: 75vw;
    height: 38vw;
    display: flex;
    padding-left: 12.5vw;
    padding-right: 12.5vw;
    background-color: grey;
}

/* Footer Section */
.footer__section {
    max-width: 20vw;
    flex: 1;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
}

/* Footer Heading */
.footer__heading {
    height: 5vw;
    line-height: 5vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
    font-weight: bold;
    color: black;
}

/* Footer Link */
a.footer__link {
    display: block;
    width: 100%;
    height: 3vw;
    padding: 1.5vw 0;
    margin: 0;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5vw;
    border-left: none;
    border-right: none;
    transition: background-color 0.3s, color 0.3s;
}

.footer__link:hover {
    background-color: black;
    color: white;
}

.footer__link-text {
    display: block;
    font-size: 1.5vw;
    margin: 0;
}

/* Footer Logo */
.footer__logo {
    width: 20vw;
    margin-top: 11.8vw;
    margin-bottom: 2vw;
}