/*---------------------
  Footer
-----------------------*/
.footer {
  background: #070720;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
}

.page-up {
  position: absolute;
  left: 50%;
  top: -25px;
  margin-left: -25px;

  a {
    display: inline-block;
    font-size: 36px;
    color: $white-color;
    height: 50px;
    width: 50px;
    background: $primary-color;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;

    span {
      position: relative;
      top: 2px;
      left: -1px;
    }
  }
}

.footer__nav {
  text-align: center;

  ul {

    li {
      list-style: none;
      display: inline-block;
      position: relative;
      margin-right: 40px;

      &:last-child {
        margin-right: 0;
      }

      a {
        font-size: 15px;
        color: #b7b7b7;
        display: block;
        font-weight: 700;
      }
    }
  }
}

.footer__copyright__text {
  color: #b7b7b7;
  margin-bottom: 0;
  text-align: right;

  a {
    color: $primary-color;
  }
}