body, html{
    height: calc(100% - 2em);
    margin: 0;
    font-family: "Montserrat";
    font-weight: bold;
}

body{
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h2{
    text-align: center;
    font-size: 1.5em;
    color: #fff;
    background-color: #F7002A;
    margin: 0;
    padding: 25px 0;
    text-transform: uppercase;
    border-top: solid #000 3px;
    border-bottom: solid #000 3px;
}

#map{
    height: 400px;
    width: 100%;
    background-color: rgba(0,0,0,0.08);
}

#contact_infos_holder{
    padding-bottom: 30px;
}

#contact_infos{
    font-weight: normal;
    font-size: 100%;
    margin-top: 50px;
    text-align: center;
}

bold {
    font-weight: 600;
    font-size: 120%;
}

#contact_infos img{
    width: 20px;
    height: auto;
    margin: 0 5px 0 5px;
    position: relative;
    top: 5px;
}

#separation{
    border-top: 1px black solid;
    width: 250px;
    border-radius: 10px;
    margin: 30px auto;
}

#contact_infos span{
    display: block;
}

form{
    text-align: center;
    margin-bottom: 70px;
}

input, textarea{
    width: calc(100% - 2.4em);
    padding: 0.8em;
    margin: 5px 0;
    background-color: rgba(0,0,0,0.08);
}

textarea{
    height: 100px;
}

#cf_submit{
    background-color: #F7002A;
    color: #fff;
    font-weight: bold;
    transition-duration: 0.1s;
    transition-property: transform;
    max-width: 300px;
    cursor: pointer;
}

#cf_submit:hover{
    transform: scale(1.02);
}

input, textarea{
    border: 0;
    outline: 0;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0 1px 1px rgba(#000, 0.1);
}

#form_cta{
    text-align: center;
    font-weight: 600;
    font-size: 1.2em;
}

@media only screen and (min-width: 809px){
    #cf_container{
        max-width: 800px;
        display: grid;
        grid-template-columns: 40% 60%;
        margin: 0 auto;
    }

    textarea{
        height: calc(100% - 2.4em);
    }

    #contact_infos_holder{
        display: grid;
        grid-template-columns: auto 400px;
        max-width: 1200px;
        margin: 70px auto;
        padding: 0 25px;
        grid-gap: 50px;
    }

    #contact_infos{
        text-align: left;
    }

    #separation{
        margin: 30px 0;
    }
}