#footer{
  padding-top: 40px;
  padding-bottom: 60px;
}

.footer-logo{
  max-width: 365px;
  margin-bottom: 40px;
}

.copyright-links{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

#footer-navigation{
  & .nav-item{
    & .nav-link{
      color: var(--pnt--color--steel-gray);

      &:hover,
      &:focus{
        text-decoration: none;
        color: var(--pnt--color--steel-blue);
      }
    }

    &.back-to-top > a.nav-link{
      color: var(--pnt--color--steel-blue);
      font-weight: 600;
    
      &:after{
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        background-image: url("../images/arrow-up.svg");
        background-size: contain;
        background-repeat: no-repeat;
        margin-left: 5px;
    }
  }
}