.footer{
  padding: $section-space 0;
  background-color: $white;
  border-top: 4px solid $primary-color;
  .footer-logo{
    padding-bottom: calc(#{$section-space} - 10px);
    img{
      max-width: 230px;
      max-height: 50px;
    }
    
  }
  .footer-menu{
    position: relative;
    li{     
      &:last-child{
        a{
          margin-bottom: 0;
        }
      } 
      a{
        display: inline-block;
        margin: 0px 0 15px 0;
        font-size: 15px;
        position: relative;
        // min-height: 12px;
        color: $base-color;
        &:hover{
          color: $primary-color;
        }
      }
    }
  }
  .contact-us{
    .contact-media{
      min-height: 40px;
      padding-left: 55px;
      position: relative;
      margin-bottom: 30px;
      word-break: break-word;
      &:last-child{
        margin-bottom: 0;
      }
      .contact-icon{
        width: 40px;
        height: 40px;
        background-color: #E2F1FD;
        @include border-radius(9px);
        justify-content: center;
        align-items: center;
        display: flex;
        position: absolute;
        left: 0;
      }
      a{
        color: $base-color;
        &:hover{
          color: $primary-color;
        }
      }
    }
  }
  
  .footer-heading{
    font-size: 15px;
    @extend .f-semibold;
    margin-bottom: 0.35rem;
  }
  p{
    font-size: 15px;
    margin-bottom: 0;
  }
  
  .copy-rights{
    padding-top: 50px;
    font-size: 15px;
    margin: 0;
    text-align: center;
  }
  .app-button{
    margin-top: 1rem;
  }
}
.subscription{
  margin-top: 1rem;
}

$soc-dime: 35px;
.social-icons{
  margin-top: 1rem;
    ul{
      margin: 0;
      li{
        display: inline-block;
        margin-right: 5px;
        vertical-align: top;
        .social-links{
          width: $soc-dime;
          height: $soc-dime;
          padding: 0;
          display: flex;
          justify-content: center;
          align-items: center;
          padding: 5px;
          // @include border-radius($round-radius);
          img{
            max-width: 20px;
            max-height: 20px;
          }
        }
      }
    }
}
