/*==========================
// start footer
===========================*/
.footer {
  background-color: var(--dark);
}
.newsletter {
  h3 {
    font-size: 20px;
    line-height: 20px;
    color: var(--white);
  }
  &-form {
    position: relative;
    .form-group {
      .form-control {
        background-color: rgba(255,255,255, 0.1);
        color: var(--white);
        font-size: 16px;
        border-color: transparent;
        border-radius: 0;
        height: 52px;
        padding: 0 25px;
        &:focus{
          box-shadow: none;
          outline-style: none;
        }
      }
    }
    .btn {
      position: absolute;
      right: 0;
      top: 0;
      cursor: pointer;
      height: 52px;
      padding: 0 35px;
    }
  }
}
// footer widget
.footer-logo {
  margin: 0 0 25px;
  img{
    max-width: 180px;
  }
}

.footer-social {
  li {
    margin-right: 18px;
    display: inline-block;
    &.list-text {
      font-weight: 600;
      margin-right: 20px;
      font-family: $sofia;
    }
    a {
      color: #9B9B9B;
      display: inline-block;
      &:hover {
        color: $primary-color;
      }
    }
  }
}
.footer-gap {
  border: 1px solid rgba(255,255,255, 0.2);
  margin: 45px 0;
}
.widget-text {
  margin: 0 0 30px;
}

.widget-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 40px;
  position: relative;
  text-transform: uppercase;
}

.widget-list {
  li {
    margin-bottom: 10px;
    a {
      color: #9B9B9B;
      position: relative;
      display: inline-block;
      span {
        display: inline-block;
        transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      }
      &:before {
        top: 0;
        left: 0;
        opacity: 0;
        font-size: 15px;
        font-weight: 500;
        content: '\f105';
        position: absolute;
        font-family: $font-awesome;
        transform: translateX(-8px);
        transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      }
      &:hover {
        color: $primary-color;
        span {
          transform: translateX(12px);
        }
        &:before {
          opacity: 1;
          transform: translateX(0);
        }
      }
    }
  }
}

@media (min-width: 992px) {
  .form-group {
    padding-right: 170px;
  }
}

/* Footer Section - End */