@media (min-width: 321px) {
    h1 {
        font-size: 11pt;
        font-weight: normal;
        letter-spacing: 1px;
    }

    #header {
        position: fixed;
        width: 100%;
        height: 50px;
    }

    #title {
        float: right;
        text-align: center;
        text-transform: uppercase;
        height: 50px;
        line-height: 50px;
        user-select: none;
        pointer-events: none;
        padding: 0px 20px;
    }

    #logo {
        display: none;
    }


    #menu {
        position: absolute;
        left: 0;
        user-select: none;
    }


    #footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 30px;
        transition: margin-bottom 0.5s;
    }

    #footer-map {
        width: 500px;
        height: 340px;
        margin: 30px -400px 30px 0px;
        opacity: 0;
        transition: opacity 0.3s, margin 0.3s;
        float: left;
        border: 3px solid rgba(255,255,255, 0.7);
    }

    #footer-addresses {
        width: 100%;
        margin: 8px 0 7px 0;
    }

    .footer-address {
        display: none;
    }

    .footer-address-short {
        width: 100%;
        display: block;
        position: absolute;
        text-align: center;
        font-size: 6pt;
        line-height: 15px;
        text-transform: uppercase;
        color: white;
        letter-spacing: 1px;
    }

    .footer-address-short p {
        display: inline-block;
        margin: 0 5px;
        font-size: 7pt;
    }

    #footer-copyright {
        display: none;
    }

    #footer-copyright-short {
        display: none;
    }

    #content {
        position: absolute;
        top: 60px;
        width: 100%;
        height: calc(100% - 90px);
    }

    #services {
        height: 100%;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .service {
        display: block;
        width: 200px;
        height: 200px;
        border-radius: 100px;
        margin: 50px auto;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 -3px 2px rgba(0,0,0,0.2);
    }

    .service:hover {
        transform: scale(1.1);

    }

    .service-name {
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .service-description {
        display: none;
    }

}