footer {
    background-color: white;
    box-shadow: 0 0 12px rgba( 0,0,0,.3 );
    padding: 25px 15px 20px 15px;
}

#LogoFooter {
    width: 160px;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#Copyright {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    line-height: 1.1rem;
    font-size: 0.8rem;
    font-weight: 300;
}

#BackToTop a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
}

#BackToTop svg {
    fill: #e8660e;
    width: 45px;
    filter: drop-shadow( 0 0 10px rgba( 0, 0, 0, .2 ) );
    transition: all 150ms linear;
    margin-bottom: 10px;
}

#BackToTop a:hover svg {
    filter: drop-shadow( 0 0 15px rgba( 0, 0, 0, .4 ) );
}

#BackToTop a:active svg {
    filter: none;
}

@media (min-width: 992px) {/* LG+ */
    footer { padding: 30px 15px; }
    #LogoFooter { width: 200px; }
    #BackToTop svg { width: 60px; }
    
    footer .container > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex: 1 1 auto;
    }
    #Copyright {
        margin-top: 0;
        line-height: 1.5rem;
        font-size: 1rem;
        font-weight: normal;
        text-align: center;
    }
    #BackToTop {
        display: flex;
        justify-content: right;
    }
}
@media (min-width: 1200px) {/* XL+ */
    footer {
        
    }
}
@media (min-width: 1400px) {/* XXL+ */
    footer {
        
    }
}