/* ------ Reset ------ */

* {
    border: 0;
    margin: 0;
    padding: 0;
}


html {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background: #ffffff;
    height: 100%;
    margin: 0;
    min-width: 320px;
    padding: 0;
    width: 100%;
}

table { 
    border-spacing: 0;
    border-collapse: collapse;
}

ul {
    list-style: none;
}

input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-outline: none;
    -moz-outline: none;
    outline: none;
}

/* ------ Header ------ */

.header {
    height: 50%;
    min-height: 350px;
    position: relative;
    width: 100%;
}

.header__logo {
    background: url(../images/logo-sprite.png) no-repeat 0 0;
    background-size: 277px 220px;
    display: block;
    height: 120px;
    left: 50%;
    margin: -60px 0 0 -138px;
    position: absolute;
    top: 50%;
    width: 277px;
}

@media screen and (max-width: 500px) {

    .header {
        height: 40%;
        min-height: 200px;
    }

    .header__logo {
        background: url(../images/logo-sprite.png) no-repeat 0 -120px;
        background-size: 277px 220px;
        height: 100px;
        margin: -50px 0 0 -115px;
        width: 231px;
    }

}

/* ------ Map ------ */

.map {
    height: 50%;
    min-height: 350px;
    position: relative;
    width: 100%;
}

.map__contact {
    background: url(../images/map-sprite.png) no-repeat 0 0;
    background-size: 400px 584px;
    height: 334px;
    left: 50%;
    margin: -240px 0 0 -200px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 400px;
    z-index: 9999;
}

.map__contact h1 {
    color: #ffffff;
    font: normal normal 14px/20px 'Quatro W05 Regular', Arial, Tahoma, sans-serif;
    padding: 35px 0 0 0;
}

.map__contact h2 {
    color: #c2e0cd;
    font: normal normal 12px/18px 'Quatro W05 Regular', Arial, Tahoma, sans-serif;
}

.map__contact p {
    color: #ffffff;
    font: normal normal 14px/20px 'Quatro W05 Regular', Arial, Tahoma, sans-serif;
    padding: 20px 0 0 0;
}

.map__contact p a,
.map__contact p a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.map__contact p a:hover {
    text-decoration: none;
}

.map__wrapper {
    background: #f5f5f5;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 500px) {

    .map {
        height: 60%;
        min-height: 300px;
    }

    .map__contact {
        background: url(../images/map-sprite.png) no-repeat 0 -334px;
        background-size: 400px 584px;
        height: 250px;
        margin: -160px 0 0 -150px;
        width: 300px;
    }

    .map__contact h1 {
        font: normal normal 11px/17px 'Quatro W05 Regular', Arial, Tahoma, sans-serif;
        padding: 21px 0 0 0;
    }
    
    .map__contact h2 {
        font: normal normal 9px/15px 'Quatro W05 Regular', Arial, Tahoma, sans-serif;
    }
    
    .map__contact p {
        font: normal normal 11px/17px 'Quatro W05 Regular', Arial, Tahoma, sans-serif;
        padding: 17px 0 0 0;
    }

}