#map {
    height: 30rem;
    width: 70rem;
    margin: 3rem auto;
}

@media screen and (max-width: 1096px){
    #map{
        width: 90vw;
        height: 20rem;
    }
}

.form_container{
    width: 70rem;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: space-between;
}

@media screen and (max-width: 1096px){
    .form_container{
        padding: 1rem;
        width: 90vw;
    }
}

.form_container h3{
    justify-self: flex-start;
    font-size: 2.4rem;
    font-weight: bold;
    font-family: 'Raleway', 'Montserrat', 'Roboto Condensed', 'Courier New', Courier, monospace;
}

@media screen and (max-width: 1096px){
    .form_container h3{
        font-size: 2.2rem;
        margin-left: 1rem;
    }
}

.form_container :last-child{
    width: 100%;
}

@media screen and (max-width: 1096px){
    .form_container :last-child{
        padding: 1rem;
    }
}

.form_container :last-child form{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 60%;
}

@media screen and (max-width: 1096px){
    .form_container :last-child form{
        width: 100%;
    }
}


.form_container :last-child form textarea{
    width: 100%;
    height: 10rem;
    margin-top: 2rem;
}

.form_container :last-child form :nth-child(2), 
.form_container :last-child form :nth-child(3){
    width: 45%;
    height: 2rem;
    margin-top: 2rem;
}

.form_container :last-child form :nth-child(4){
    width: 100%;
    height: 2rem;
    margin-top: 2rem;

}

.form_container :last-child form button{
    margin-top: 2rem;
    width: 33%;
    height: 3rem;
    border: 1px solid #ff8c00;
    background: none;
    color: #ff8c00;
    cursor: pointer;
    font-family: 'Poppins', 'Raleway', 'Montserrat', 'Roboto Condensed', 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    transition: background .2s linear,
    color .2s linear;
}

.form_container :last-child form button:hover{
    background: #ff8c00;
    color: #ffffff;
}

.form_container :last-child form input, .form_container :last-child form textarea{

    font-size: 1rem;
    font-family: 'Poppins', 'Raleway', 'Montserrat', 'Roboto Condensed', 'Courier New', Courier, monospace;

}