footer {
    background-color: var(--white);
    padding-top: 50px;
    padding-bottom:0px;
    z-index: 100;
    position:relative;
    border-top: 1px solid var(--dark);
}
footer section:first-child {
    padding-bottom: 30px;
}

footer .subfooter {
    background-color: var(--footer);
}
footer .subfooter a {
    color: var(--gray-light);
}
footer h4 {
    color: var(--dark);
    text-align: center;
}


/* Go To Top */
.go-to-top {
    
}
a.go-to-top {
    display: inline-block;
    background-color: var(--yellow);
    border: 1px solid var(--dark);
    transition: all 0.3s ease;
    padding: 5px 10px;
    z-index: 999;
    position: fixed;
    bottom: 50px;
    right: 50px;
}
a.go-to-top .uk-icon:not(.uk-preserve) [stroke*='#']:not(.uk-preserve) {
    stroke: var(--dark);
}

a.go-to-top:hover {
    position: fixed;
}

