#footer {
  background: #292f2d;
  ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
  }
}

.ft-top{
 padding: 35px 0 15px 0;
 text-align: center;
}

.copy-right{
  background: #292f2d;
  text-align: center; 
  border-top: 1px solid #484d4b;
  font-size: 13px;
}

.footerlink-block{
  ul {
    margin-left: -15px;
    li {
      display: inline-block;
      margin: 0 15px 10px;
      @include media-breakpoint-down(sm) { margin-bottom: 8px; }
      a{
        color: #7e7e7e;
        font-size: 14px;
        &:hover{
          color: $green;
          color: $white;
        }
      }
      ul {
        display: none;
      }
    }
  }
}


.subscribe-block{
  position: relative;
  margin-bottom: 15px;
  .message_validation{
    position: absolute;
    bottom: -30px;
    left:0;
    color: $danger;
    width: 100%;
    text-align: left;
    @include media-breakpoint-down(sm) { bottom: -25px; }
  }
  .hide {
    display: none;
  }
  h6 {
    color: $white;
    text-transform: uppercase;
    font-weight: $font-weight-normal;
    font-size: 14px;
  }
  .input-group{
    .form-control{
      border-radius: 25px 0 0 25px;
      height: 45px;
      color: $gray-500;
      font-size: 13px;
      padding-left: 30px;
    }
    .btn-primary{
      border-radius: 0 25px 25px 0;
      text-transform: uppercase;
      font-weight: $font-weight-light;
      padding: 0 25px;
    }
 }
}

.social-networks{
  a{
    width: 25px;
    height: 25px;
    line-height: 30px;
    border-radius: 50%;
    background: #dadada;
    display: inline-block;
    margin-right: 6px;
    font-size: 12px;
    text-align: center;
    &:hover{
      background: $green;
      i{
        color: $white;
      }
    }
    i{
      color: #292f2d;
      line-height: 25px;
      &.icon-google-plus{
        font-size: 18px;
        line-height: 25px; 
      }
    }
    &:last-child {
      margin-right: 0;
    }
  }
}

.Quick-contact{
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 995;
  @include media-breakpoint-down(sm) { bottom: 20px; }
  .round-box{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    display: block;
    margin-bottom: 7px;
    color: $white;
    font-size: 18px;
    text-align: center;
    right: 0;
    @include transition(all .5s cubic-bezier(0.165, 0.84, 0.44, 1));
    position: relative;
    &:hover {
      @include media-breakpoint-up(md) { right: 10px; }
    }
    @include media-breakpoint-down(sm) { display: inline-block; margin-bottom: 0; margin-right: 5px;}
    i {
      line-height: 40px;
    }
    &.callNow{
      background: #77649f;
    }
    &.liveChat{
      background: #00bc6f;
    }
    &.emailBlock{
      background: #0498ba;
    }        
  }
}

.home-page .Quick-contact{
  display: none;
}