body{
    overflow-y: scroll!important;
}
.content{
    flex-flow: row wrap;
    padding: 40px;
}
.content .title{
    margin-top: 10vh;
    margin-bottom: 50px;
    width: 80%;
    text-align: center;
    font-size: 1.5em;
    text-shadow: 1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    color: black;
}
.content .form{
    order:1;
}
.content .map{
    order:0;
}
.content .form, .content .map{
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    justify-content: space-evenly;
    height: 70vh;
}
.content .form form{
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    height: 100%;
}
.content .form form *{
    width: 100%;
}
.content .form form input, .content .form form textarea{
    background: rgba(255, 255, 255, 0.151);
    color: rgba(255, 255, 255, 0.856);
    border-radius: 2px;
    padding: 20px;
    outline: none;
    border: none;
    border-bottom: 3px solid rgba(255, 255, 255, 0);
    resize: none;
    margin: 10px auto 30px auto;
    font-weight: bold;
    transition: .2s ease;
}
.content .form form textarea{
    overflow: hidden;
}


.content form input[type=checkbox]{
    margin: 10px;
    width: 10%;
}
.content .form form input:focus, .content .form form textarea:focus{
    border-bottom: 3px solid rgb(255, 255, 255);
    
}
.content .form .button{
    padding: 10px 20px;
    text-transform: uppercase;
    color: white;
    background: black;
    border: 2px solid white;
    border-radius: 15px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    max-width: 30%;
    cursor: pointer;
    margin-top: 20px;
    margin-right: 0;
    max-width: 100px;
}
.content .form .button .box-plane{
    position: relative;
    height: 100%;
}
.content .form .button svg{
    width: 20px;
    margin: unset;
    transition: 0.3s ease all;
    position: absolute;
    left: 0;
    transform-origin: bottom;
}
.content .form .button.sending svg{
    /* animation: loading 4s ease 0s infinite normal none; */
    transform: translateX(-20%) rotate(-30deg);
}
/* @keyframes loading {
    100%{ transform: rotate(360deg);}
} */
.content .form label a{
    color: white;
}
.content .form .button.sent svg{
    transform: scale(2) translateX(50%);
}
.content .form .button:not(.sent) #scia{
    display: none;
}
.content .map *{
    font-size: 14px;
}
.content .map iframe{
    width: 100%;
    height: 40%;
}
.content .map p{
    margin: 15px 0 ;
    text-align: center;
}
.content .map a{
    color: white;
    text-decoration: none;
    margin-top: 10px;
}
.content .map a i{
    margin-right: 5px;
}

@media screen and (orientation:landscape){
    
    .content .title{
        width: 100%;
        font-size: 2em;
    }
    .content .form, .content .map{
        width: 50%;
        height: 65vh;
    }
    .content .form form{
        width: 45%;
        height: 100%;
        margin-right: 20%;
    }
    .content .form{
        order:0;
    }
    .content .map{
        order:1;
    }
    .content .map *{
        margin-left: 0;
    }
    .content .map iframe{
        width: 70%;
        height: 60%;
    }
    .content .map p{
        margin: 15px 0 ;
        text-align: left;
    }
    body{
        overflow: hidden!important;
    }
}