@media (min-width: 961px) {

    h1 {
        font-size: 12pt;
        font-weight: normal;
        letter-spacing: 1px;
    }

    #header {
        position: fixed;
        top: 0;
        width: 100%;
        height: 60px;
    }

    #title {
        float: left;
        text-align: center;
        text-transform: uppercase;
        height: 60px;
        line-height: 60px;
        user-select: none;
        pointer-events: none;
        padding: 0 20px;
    }

    #logo {
        height: 60px;
        width: 60px;
        background-image: url('../img/favicon.png');
        background-position: right center;
        background-repeat: no-repeat;
        float: left;
        opacity: 0.5;
        cursor: pointer;
        transition: opacity 0.3s;
    }

    #logo:hover {
        opacity: 0.8;
    }

    #menu {
        position: absolute;
        right: 0;
        user-select: none;
    }

    #footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 400px;
        margin-bottom: -370px;
        transition: margin-bottom 0.5s;
        z-index: 100;
    }

    #footer-up {
        position: absolute;
        width: 100%;
        height: 30px;
        text-align: center;
    }

    #footer:hover {
        margin-bottom: 0;
        box-shadow: 0 -3px 5px rgba(0,0,0,0.1);
    }

    #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:hover #footer-map {
        opacity: 1;
        display: block;
        margin: 30px;
    }

    #footer-addresses {
        width: 100%;
        margin: 8px 0 7px 0;
    }

    #footer:hover #footer-addresses {
        float: left;
        width: auto;
        margin: 38px 0 0 50px;
    }

    .footer-address {
        display: none;

        line-height: 15px;
        text-transform: uppercase;
        color: white;
    }

    .footer-address-short {
        width: 100%;
        display: block;

        position: absolute;
        text-align: left;
        left: 5px;
        font-size: 7pt;
        line-height: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    #footer:hover .footer-address {
        width: auto;
        display: block;
        padding: 30px 0 0 0;

        text-align: left;
    }

    #footer:hover .footer-address:first-child {
        border-bottom: 1px solid rgba(255,255,255,0.8);
        padding: 0 0 30px 0;
    }

    #footer:hover .footer-address-short {
        display: none;
    }


    .footer-address-short p {
        display: inline-block;
        margin: 0 5px;
        font-size: 8pt;
    }

    #footer:hover .footer-address p {
        display: block;
        margin: 5px 0 0 0;

        font-size: 8pt;
        letter-spacing: 1px;
    }

    #footer:hover .footer-address h1 {
        display: block;
        margin: 0 0 20px 0;
        padding: 0;

        font-size: 9pt;
        letter-spacing: 1px;
    }

    .footer-address:first-child h1 {
        display: none;
    }

    #footer-copyright {
        display: none;
    }

    #footer-copyright-short {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        margin: 8px 5px 7px 0;
        font-size: 8pt;
        line-height: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    #content {
        position: absolute;
        top: 60px;
        width: 100%;
        height: calc(100% - 90px);
    }

    #services {
        height: 100%;
        width: 100%;
        max-width: 900px;
        margin: 0 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;
    }

    .service {
        display: inline-block;
        width: 200px;
        height: 200px;
        border-radius: 100px;
        color: white;
        margin: 0 50px;
        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;
    }

}