*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background-color: #f2f2f2;
    /*font-family: 'Montserrat', sans-serif;*/
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}
/* CSS END RESET */

nav {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 10;
    display: none;

    background-color: #00759c;
}

nav > a {
    margin-right: 30px;

    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 1.0em;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

nav > img {
    margin: auto;
}

.btn-contacts {
    margin-left: auto;
}

header > h1 {
    display: none;
}

.banner {
    height: 100%;

    background-image: url(../images/piscina.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bannerLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 92%;
}

.arrow {
    text-align: center;
    color: white;
}

.contacts-map {
    background-color: #29a7d2;
}

.contacts-wrapper > h2 {
    padding: 60px 0 60px 40px;

    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 3em;
    font-weight: 100;
}

.contacts {
    padding-bottom: 40px;
    padding-top: 20px;
    margin: 0 40px 40px 40px;
    
    border-top: 2px solid white;
    border-bottom: 2px solid white;
}

.contacts a{
    margin-top: 20px;
    color: white;
    font-size: 1.5em;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.contacts .ctcWeb {
    font-size: 1.2em;
}

.ctc {
    display: block;
}

.contacts span {
    font-weight: 700;
}

.icon img {
    margin-top: 20px;
    border-radius: 5px;
    background-color: white;
}
.booking {margin-left: 20px;}
.map {
    background-color:white;
}

footer {
    height: 80px;
    background-color: #44454a;
}

@media screen and (min-width: 730px) {
    .contacts-map {
        display: flex;
        flex-wrap: wrap;
    }
    .contacts-wrapper{
        flex: 1;
    }
    .map {
        flex: 1;
        background-color:white;
    }
}

/*
* {
    outline: 1px solid salmon;
}*/