/*FOOTER*/
#site-footer { background-color: var(--green); }
#site-footer p { color: var(--white) !important; font-size: 1.7rem; font-family: Accurrat, sans-serif !important;}
#site-footer .section-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
}
#site-footer .footer-widgets { text-align: left; margin-left: 0;}
#site-footer ul {list-style: none; padding: 0; margin: 0;}
#site-footer ul li {display: inline-block;}
#site-footer .footer-img {
  width: 120px;
}
#site-end-footer {padding-bottom: 15px;}
#site-end-footer .footer-menu {
  align-items: center;
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0;
  font-size: 1.8rem;
}
#site-end-footer .footer-menu a {color: var(--text-color) !important; font-size: 1.5rem;}

/*UP*/
.footer-credits {
  position: fixed;
  right: 4px;
  bottom: 5%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark-green);
  opacity: 0;
  transition: all .5s ease-out;
  z-index: 100;
  
}
.footer-credits .to-the-top {
  text-decoration: none;
  color: var(--white);
}
.footer-credits:hover {
  transform: scale(1.2);
  transition: all .5s ease-out;
}
#sm-visible-feed.sm-fade-in {
  opacity: 1;
  transition: all .5s ease-out;
}