/*---------------------
  Footer
-----------------------*/
.footer {
  padding-top: 55px;
}

.footer__about {
  margin-bottom: 30px;

  p {
    margin-bottom: 20px;
  }
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__payment {

  a {
    margin-right: 6px;
    margin-bottom: 10px;
    display: inline-block;

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

.footer__widget {
  margin-bottom: 30px;

  h6 {
    color: $heading-color;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  ul {

    li {
      list-style: none;

      a {
        font-size: 14px;
        color: #666666;
        line-height: 30px;
      }
    }
  }
}

.footer__newslatter {
  margin-bottom: 30px;

  h6 {
    color: $heading-color;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
  }

  form {
    position: relative;
    margin-bottom: 30px;

    input {
      height: 52px;
      width: 100%;
      border: 1px solid #e1e1e1;
      border-radius: 50px;
      padding-left: 30px;
      font-size: 14px;
      color: #666666;

      &::placeholder {
        color: #666666;
      }
    }

    button {
      position: absolute;
      right: 4px;
      top: 4px;
    }
  }
}

.footer__social {

  a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: #e1e1e1;
    font-size: 15px;
    color: $heading-color;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 6px;
    margin-bottom: 5px;

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

.footer__copyright__text {
  border-top: 1px solid #e1e1e1;
  padding: 18px 0 25px;
  text-align: center;
  margin-top: 35px;

  p {
    margin-bottom: 0;
  }

  a {
    color: $para-color;
  }

  i {
    color: $primary-color;
  }

  a:hover {
      color: $primary-color;
    }
}