html,
body{
    overflow: hidden;
    overflow-y: auto;
}

.row.map_and_info{
    padding: 0;
    margin: 0;
    min-height:200px

}

body{
    padding-top: 80px;
}

header + .row.map_and_info{
    top: 80px;
    height: calc(80vh - 90px);
    overflow: hidden;
}

body > section{
    padding-top: 1em;
}

.row.map_and_info [data-model="covers-wrapper"]{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.row.map_and_info .column{
    padding-left: 0;
    padding-right: 0;
    position: relative;
    height: 100%;
}

.row.contactus:before{
    display: none;
}


.row.map_and_info [data-model="info"]{
    display: flex;
    align-items: center;
    height: 100%;
}


.row.map_and_info .address,
.row.map_and_info .numbers{
    margin-top: 16px;
    font-size: 1.6rem;
}

.row.map_and_info .numbers{
    margin-top: 1em;
    font-size: 1.2rem;
    line-height: 1.2em;
}

.row.map_and_info h1{
    display: none;
}

.row.map_and_info h2{
    display: none;
}

.row.map_and_info .logo {
    width: 100%;
    height: auto;
    display: inline-block;
    margin-top: 10px;
    max-width: 300px;
    margin-left: -16px;
}


.col-xs.separator{
    width: 1px;
    background: #f0f0f0;
    flex: 0 0 1px;
    padding: 0;
}

/********
** FORM
**********/



section.contact-form{
    border-top: 1px solid #f0f0f0;
    background: #fffdf6;
    min-height: 300px;
    padding: 64px 0;
    position: relative;
    box-sizing: border-box;
}

.error{
    display: none;
}


form .row > div{
    margin-bottom: 32px;
    position: relative;
}

input, textarea, select{
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #d0d0d0;
    padding: 8px;
    background-color: #fff!important;
}

:disabled{
    opacity: 0.2;
    pointer-events: none;
}

label{
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    margin-bottom: 8px;
    display: inline-block;
}

label sup{
    padding-left: 8px;
    color: var(--main-text-accented-color);
    color: #f00;
}

textarea{
    min-height: 100px;
}
input{
    line-height: 32px;
}

textarea.invalid,
input.invalid{
    border-color: #ff5722;
}

textarea + .error,
input + .error{
    background: #ff5722;
    color: #fff;
    position: absolute;
    padding: 2px 6px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    max-width: 100%;
    margin-top: 8px;
}

.error:after{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    z-index: 1;
    border-style: solid;
    border-color: #ff5722 transparent;
    border-width: 0 8px 8px;
    top: -8px;
    left: 32px;
    margin-left: -8px;
}

input.invalid + .error{
    display: block;
}

input[name="privacy"]{
    display: inline;
    position: relative;
    left: 0;
    width: auto;
    margin-right: 6px;
}



.icon{
    width: 1.4em;
    height: 1.4em;
    display: inline-block;
    -webkit-transform: translate(0, 0.4em);
    -moz-transform: translate(0, 0.4em);
    transform: translate(0, 0.4em);
}

.icon.as-block{
    display: block;
    margin: 0 auto 0.5em;
}

.icon img{
    width: 100%;
    height: auto;
}

h1{
    color: var(--accented-color-2);
    line-height: 1;
}

h2{
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 1em;
}

.info-block {
    font-size: 1.4rem;
}

.info-block strong{
    color: var(--text-color);
}



.contact-form h3 {
    color: var(--text-color);
}

.challenge .numbers,
.contact-form h4{
    color: var(--accented-color-2);
}



.contact-form h3 + p{
    font-size: 1.4rem;
    margin-bottom: 2em;
}

.contact-form::before {
    content: ' ';
    position: absolute;
    width: 200%;
    height: 64px;
    -webkit-transform: translate(-50%, -50%) rotate(2deg);
    -moz-transform: translate(-50%, -50%) rotate(2deg);
    transform: translate(-50%, -50%) rotate(2deg);
    background: #fff;
    top: 0;
    left: 50%;
}

.thank-you strong{
    display: inline-block;
    background: #2bb531;
    padding: 4px 8px;
    margin-top: 0;
    color: #fff;
}

footer::before {
    content: ' ';
    position: absolute;
    width: 200%;
    height: 64px;
    -webkit-transform: translate(-50%, -50%) rotate(-2deg);
    -moz-transform: translate(-50%, -50%) rotate(-2deg);
    transform: translate(-50%, -50%) rotate(-2deg);
    background: var(--accented-bg-color);
    top: 0;
    left: 50%;
    opacity: 1;
    max-width: none;
}

footer .where-we-are{
    display: none;
}

@media all and (max-width: 640px) {

    body{
        padding-top: 65px;
    }

    .info-block .col-xs{
        width: 100%;
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 32px;
    }
}

@media all and (max-width: 500px){
    form .row > .col-xs{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

@media all and (max-width: 900px){
    .row.map_and_info .logo{
        width: 80%;
    }
    .row.map_and_info .address,
    .row.map_and_info .numbers{
        font-size: 1.4rem;
    }
}

@media all and (max-width: 760px){

    [data-model="info"]{
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .map_and_info .column{
        max-width: 100%;
        flex-basis: 100%;
    }
    .row.contactus:before{
        display: block;
        border-color: #ffffff transparent transparent transparent
    }
}