.footer {
    background-color: #000;
    color: #fff;
    margin-top: 80px;
    height: 100px;
    bottom: 0;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    font-family: Raleway;
    height: 100%;
}


.footer-content .footer-left {
    flex: 1 0 26%;
}

.footer-content .footer-logo img {
    height: 100px;
}


.footer-content .footer-social {
    flex: 1 0 26%;
    text-align: end;
}

.footer-social svg {
    height: 18px;
    fill: #fff;
}

.footer-social p {
    font-size: 0.8rem;
}

.footer-social a {
    color: fff;
    text-decoration: none;
}

.email:hover {
    text-decoration: underline;
}

.copyright {
    color: gray;
    font-size: 1.2rem;
}

.copyright-name {
    font-size: 1rem;
}

@media only screen and (hover: none) and (pointer: coarse) {

    .footer {
        height: 6vh;
    }

    .footer-logo {
        display: none;
    }

    .footer-left {
        display: none;
    }

    .footer-content .footer-social {
        text-align: center;
    }

    .footer-social svg {
        height: 40px;
        padding-left: 3rem;
    }

    .footer-social svg:first {
        padding-left: 0;
    }

    .footer .email {
        display: none;
    }

}