/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: $white;
  padding: 0 0 30px 0;
  color: $default;
  font-size: 14px;
  background: lighten($primary, 48);

  .footer-newsletter {
    padding: 50px 0;
    background: lighten($primary, 48);
    text-align: center;
    font-size: 15px;

    h4 {
      font-size: 24px;
      margin: 0 0 20px 0;
      padding: 0;
      line-height: 1;
      font-weight: 600;
    }

    form {
      margin-top: 30px;
      background: #cac5c5;
      padding: 6px 10px;
      position: relative;
      border-radius: 4px;
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
      text-align: left;

      input[type="email"] {
        border: 0;
        padding: 4px 8px;
        width: calc(100% - 100px);
      }

      input[type="submit"] {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        border: 0;
        background: none;
        font-size: 16px;
        padding: 0 20px;
        background: $primary;
        color: $white;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.10);
        &:hover {
          background: darken($primary, 10%);
        }
      }
    }
  }

  .footer-top {
    padding: 60px 0 30px 0;
    background: $white;

    .footer-contact {
      h3 {
        font-size: 24px;
        margin: 0 0 15px 0;
        padding: 2px 0 2px 0;
        line-height: 1;
        font-weight: 700;
        span {
          color: $primary;
        }
      }

      p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 0;
        font-family: $font-primary;
        color: lighten($default, 20);
      }
      margin-bottom: 30px;
    }

    h4 {
      font-size: 16px;
      font-weight: bold;
      color: $default;
      position: relative;
      padding-bottom: 12px;
    }

    .footer-links {
      margin-bottom: 30px;
      ul{
        list-style: none;
        padding: 0;
        margin: 0;

        i {
          padding-right: 2px;
          color: $primary;
          font-size: 18px;
          line-height: 1;
        }

        li {
          padding: 10px 0;
          &:first-child {
            padding-top: 0;
          }
          display: flex;
          align-items: center;
        }

        a {
          color: lighten($default, 20);
          transition: 0.3s;
          display: inline-block;
          line-height: 1;
          &:hover {
            text-decoration: none;
            color: $primary;
          }
        }
      }
    }

    .social-links {
      a {
        font-size: 18px;
        display: inline-block;
        background: $primary;
        color: $white;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 4px;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
        &:hover {
          background: lighten($primary, 10);
          color: #fff;
          text-decoration: none;
        }
      }
    }

  }

  .copyright {
    text-align: center;
    float: left;
  }

  .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: $default;
  }

  @media (max-width: 768px) {
    .copyright, .credits {
      float: none;
      text-align: center;
      padding: 2px 0;
    }
  }
}
