footer {
    position: relative;
    margin-top: 3.2rem;
    color: white;
}

#footer-bg {
    width: 100vw;
}

#footer-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

#footer-links a {
    color: white;
    text-decoration: none;
}

.link-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Desktop Style */
@media screen and (min-width: 769px) {

    #footer-bg.mobile {
        display: none;
    }

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

    #footer-links {
        display: flex;
        flex-direction: row;
        margin-bottom: 3.5rem;
        line-height: 1.35;
    }
    #footer-links .link-item:first-child {
        margin-right: 3.5rem;
    }

    .link-item .icon {
        width: 3rem;
        margin-right: 0.5rem;
    }

    #copyright {
        margin-bottom: 3.5rem;
        text-align: center;
    }

}

/* Mobile Style */
@media only screen and (max-width: 768px) {

    #footer-bg.desktop,
    .link-item .icon,
    .link-item .link {
        display: none;
    }

    #footer-content {
        width: 70%;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 0 auto;
    }

    #footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.35;
    }

    .link-item {
        margin-top: 1rem;
    }

    #copyright {
        margin-top: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.35;
        text-align: center;
    }

}
