/* Footer */

.global-footer{
    width: 100%;
    margin: 0 auto;
    font-size: 13px !important;
}

.global-footer-data{
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px 12px 24px;
    background: url("../images/footer-bg.svg") center bottom no-repeat;
    background-size: cover;
}

.global-footer-data-top{
    
    display: flex;
}

.copyright{
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid #BDC1C3;
    padding: 12px 0;
}

.footer-shp{
    width: 42%;
    padding: 0 60px 0 0;
}

.shp-logo-footer{
    width: 178px;
    height: 32px;
    display: block;
    background: url("../images/shp-logo.svg") left top no-repeat;
}

.quick-links{
    width: 20%;
    padding: 0 36px 0 24px;
}

.contact-information{
    width: 30%;
    padding: 0 36px 0 0;
}

.follow-us{
    width: 18%;
    padding: 0 36px 0 0;
}

.follow-us ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.follow-us ul li{
    width: 38px;
    height: 38px;
    margin: 0 3px 0 0;
    padding: 0;
    display: inline-block;
    cursor: pointer;
}

.follow-us ul li.facebook{
    background: url("../images/facebook.png") left top no-repeat;
}

.follow-us ul li.facebook:hover{
    background: url("../images/facebook.png") left -38px no-repeat;
}

.follow-us ul li.twitter{
    background: url("../images/twitter.png") left top no-repeat;
}

.follow-us ul li.twitter:hover{
    background: url("../images/twitter.png") left -38px no-repeat;
}

.follow-us ul li.insta{
    background: url("../images/insta.png") left top no-repeat;
}

.follow-us ul li.insta:hover{
    background: url("../images/insta.png") left -38px no-repeat;
}

.follow-us ul li.linkdein {
    background: url("../images/lindein.png") left top no-repeat;
}

.follow-us ul li.linkdein:hover{
    background: url("../images/lindein.png") left -38px no-repeat;
}


.follow-us ul li a{
    width: 38px;
    height: 38px;
    display: block;
}

.title-text{
    font-weight: bold;
    margin: 0 0 12px 0;
}

.quick-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.quick-links ul li{
    list-style-type: none;
    margin: 0 0 12px 0;
}

.phone-data{
    background: url("../images/icons/call.svg") left top no-repeat;
    padding: 0 0 18px 36px;
}

.mail-data{
    background: url("../images/icons/mail.svg") left top no-repeat;
    padding: 0 0 18px 36px;
}

.locaion-data{
    background: url("../images/icons/location.svg") left top no-repeat;
    padding: 0 0 18px 36px;
}

.footer-shp .footer-text{
    padding: 12px 0 0 0;
    line-height: 28px;
}


.link-hover {
    position: relative;
    
    &:after {
      content: '';
      position: absolute;
      bottom: -.4em;
      left: 50%;
      right: 50%;
      height: 1px;
      background: #333333; 
      transition: all ease .2s;
    } 
    
    &:hover:after {
      left: 0;
      right: 0;
      height: 2px;
    } 
    
    &:before {
      position: absolute;
      transform: translateX(-100%);
      left: -10px;
      color: #eee;
      opacity: .3;
      font-weight: 100;
      font-size: .8em;
    }
  }

  .link-text{
    color: #1358D0;
   text-decoration: underline;
  }

  .link-text:hover{
    text-decoration: none;
  }


@media (max-width: 1023px) {

    .global-footer-data{
        width: 100%;
        max-width: 100%;
        background-size: contain;
    }

    .global-footer-data-top{
        display: flex;
        flex-wrap: wrap;
    }

    .footer-shp{
        width: 100%;
        padding: 0 0 24px 0;
    }
    
    .quick-links{
        width: 48%;
        padding: 0 2% 24px 0;
    }
    
    .contact-information{
        width: 48%;
        padding: 0 2% 0 0;
    }
    
    .follow-us{
        width: 100%;
        padding: 0 36px 0 0;
    }

}