.side-logo{
    position: fixed;
    right: 0;
    bottom: 136px;
    z-index: 99;
}
.side-logo.low{
    bottom: 65px;
}

a.to-top{
    position: fixed;
    right: 12px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1E0013 url(../images/icons/top.svg) 50% 50% no-repeat;
    z-index: 99;
    transition: background-color 0.5s, opacity 0.5s;
    opacity: 0;
    display: none;
}
a.to-top.on{
    opacity: 1;
    display: block;
}
a.to-top span{
    position: absolute;
    top: 4px;
    right: 53px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s;
    background-color: #1E0013;
    color: #fff;
    font-size: 0.6875em; /* 11px */
    font-weight: bold;
    line-height: 2.18; /* 24px */
    padding: 4px 10px;
    white-space: nowrap;
}
a.to-top span:after{
    content: '';
    position: absolute;
    top: 0;
    right: -13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 0 16px 13px;
    border-color: transparent transparent transparent #1E0013;
}
a.to-top:hover{
    background-color: #1E0013;
}
a.to-top:hover span{
    opacity: 1;
    visibility: visible;
}

footer#footer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
}

.footer-nav a{
    display: flex;
    color: #D9D9D9;
    text-transform: uppercase;
    font-size: 0.875em; /* 14px */
    font-weight: bold;
    line-height: 1.71; /* 24px */
    float: left;
    width: 50%;
    text-align: center;
    text-decoration: none;
    padding: 30px 20px;
    background: #000;
}
.footer-nav a div{
    display: flex;
    margin: 0 auto;
}
 .footer-nav a i.arrow{
    width: 33px;
    height: 24px;
    display: inline-block;
    margin: 0 10px;
}
.footer-nav a.prev i.arrow{
    background: url(../images/arrow-prev.svg) 50% 50% no-repeat;
}
.footer-nav a.next i.arrow{
    background: url(../images/arrow-next.svg) 50% 50% no-repeat;
}
#footer .copyright{
    background: #4E444E;
    font-size: 0.75em; /* 12px */
    font-weight: bold;
    line-height: 1.25; /* 15px */
    text-align: center;
    color: #fff;
    padding: 12px 20px;
    clear: both;
}
#footer .copyright a {color: #fff; text-decoration: underline;}

/* Clear footer */
footer#footer.clear{
    background: none;
}
#footer.clear .copyright{
    background: none;
}