#orchard-footer {
    position: absolute;
    background-color: $footer-background;
    bottom: 0; left: 0; right: 0;
    color: $footer-color;
    font-size: $footer-font-size;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;

    a {
        color: $footer-color;
        text-decoration: none;
        font-weight: 300;
    }

    nav {
        display: inline-block;
        margin-bottom: 20px;
    }

    .pipe {
        margin-left: 5px;
        margin-right: 5px;
    }

    .social-media {
        padding-top: 20px;
        padding-bottom: 30px;

        a {
            background-position: center center;
            background-repeat: no-repeat;
            display: inline-block;
            height: 15px;
            margin-left: 5px;
            margin-right: 5px;
            width: 15px;

            &.fb {
                background-image: url('/img/icons_v1/icon-social_facebook.svg');

                &:hover {
                    background-image: url('/img/icons_v1/icon-social_facebook-hover.svg');
                }
            }

            &.ig {
                background-image: url('/img/icons_v1/icon-social_instagram.svg');

                &:hover {
                    background-image: url('/img/icons_v1/icon-social_instagram-hover.svg');
                }
            }

            &.tw {
                background-image: url('/img/icons_v1/icon-social_twitter.svg');

                &:hover {
                    background-image: url('/img/icons_v1/icon-social_twitter-hover.svg');
                }
            }
        }
    }
}

@media(max-width: 780px) {
    #orchard-footer {
        position: relative;
        clear: both;
    }
}
