


/* Global Minimum Size */
* {
    min-height: 0;
    min-width: 0;
}

/* Footer Container */
#footer {
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Social Media Section */
.footer-social {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 80px;
}

.footer-social-title {
    color: #4C5356;
    line-height: 1.6;
    font-weight: 700;
    font-size: 12px;
}

.footer-social ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -6px;
    font-size: 0;
}

.footer-social li {
    display: inline-block;
}

.footer-social a {
    display: block;
    padding: 8px;
}

.footer-social svg {
    fill: #C4C4C4;
    transition: all .4s cubic-bezier(.19, 1, .22, 1);
}

/* Social Media Icons */
.footer-social-facebook {
    margin-left: 23px;
    margin-top: -2px;
}

.footer-social-facebook .icon {
    width: 11px;
    height: 20px;
}

.footer-social-twitter {
    margin-left: 10px;
}

.footer-social-twitter .icon {
    width: 20px;
    height: 17px;
}

.footer-social-instagram {
    margin-left: 6px;
    margin-top: -1px;
}

.footer-social-instagram .icon {
    width: 18px;
    height: 18px;
}

.footer-social-youtube {
    margin-left: 6px;
    margin-top: -1px;
}

.footer-social-youtube .icon {
    width: 22px;
    height: 16px;
}

/* Language Selector */
.footer-lang {
    position: absolute;
    right: 72px;
    top: -5px;
}

.footer-lang li {
    float: left;
}

.footer-lang a {
    display: block;
    padding: 8px;
    color: #4C5356;
    font-weight: bold;
    opacity: .3;
}

.footer-lang a:hover {
    opacity: 1;
}

.footer-lang .-current a {
    cursor: default;
    opacity: 1;
}

/* Copyright */
.footer-copyright {
    position: absolute;
    left: 50%;
    top: 0;
    color: #8F8F8F;
    letter-spacing: .01em;
    line-height: 1.6;
    font-size: 12px;
    opacity: .5;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .footer-social a:hover svg {
        fill: #232323;
    }

    .footer-lang a {
        transition: opacity .3s cubic-bezier(.25, .46, .45, .94);
    }
    
    .footer-lang a:hover {
        transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
    }
}
