.sheet__footer {
    text-align: center;
    margin:105px 0 5px 0; /*top right bottom left*/
    padding:80px 0;
    position: relative
}

@media screen and (min-width: 48em) {
    .footie-mobile {
        display: none;
    }
  }

  @media (max-width: 48em) {
    .footie {
        display: none;
    }
  }

.footie > a, .footie > span {
    color: inherit;
    margin:28px 4px
}

.footie > a {
    position:relative;
    font-weight: normal
}

.footie > a:after {
    content: "";
    display: block;
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #000;
    transition:width .3s ease 0s, left .3s ease 0s
}

.footie > a:hover:after {
    width: 100%;
    left: 0
}

.footie-mobile > a, .footie-mobile > span {
    color: inherit;
    margin:28px 4px
}

.footie-mobile > a {
    position:relative;
    font-weight: normal
}

.footie-mobile > a:after {
    content: "";
    display: block;
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #000;
    transition:width .3s ease 0s, left .3s ease 0s
}

.footie-mobile > a:hover:after {
    width: 100%;
    left: 0
}

.contact p, .footie a, .footie-mobile a {
    line-height: 1.8rem
}

.contact-logo {
    width: 50px;
    padding: 0 0 14px 0; /*top right bottom left*/
    display: block;
    margin: 0px auto;
}

.contact-logo img {
    width: 100%;
}

@media (max-width: 1023px) {
    .contact-logo-wrap {
        flex-basis: 100%;
        max-width: 100%;
    }

    .contact-logo {
        width: 50px;
        padding: 0 0 14px 0; /*top right bottom left*/
    }
}