#frmContact div {
    background: #25849c;
}
#containerContact{
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: space-evenly;
    -webkit-align-items: space-evenly;
    -ms-flex-align: start;
    align-items: flex-start;         
    height: 60vh;
    border: 1px solid black;
    padding: 10px 5px;
    height: auto;
    align-items: center;
}
#frmContact input {
    background: #fff; 
    border: 1px solid #fff;
    font: 300 1em 'Oswald';
    margin: 0 0 1em 0;
    padding: .5em 3%;
    resize: none;
    
	-webkit-transition: box-shadow .2s linear;
	-moz-transition:    box-shadow .2s linear;
	-ms-transition:     box-shadow .2s linear;
	-o-transition:      box-shadow .2s linear;
	transition:         box-shadow .2s linear;
	width: 40%;
        max-height: 67px;
        margin: 7px;
}
#frmContact textarea {
    background: #fff;
    border: 1px solid #fff;
    font: 300 1em 'Oswald';
    margin: 0 0 1em 0;
    padding: .5em 3%;
    resize: none;
    
	-webkit-transition: box-shadow .2s linear;
	-moz-transition:    box-shadow .2s linear;
	-ms-transition:     box-shadow .2s linear;
	-o-transition:      box-shadow .2s linear;
	transition:         box-shadow .2s linear;
        max-height: 67px;
        margin: 10px 22px;
        width: 100%;
}
.acceptRecBloc{
    margin: 10px;
    font-size: 0.9em;
}
.acceptRecBloc label{
    color: white;
}
.acceptRecBloc input{
    width:auto !important;
}
#frmContact input:focus, textarea:focus {
    box-shadow: 0 0 5px #c3b8b0;
}
#frmContact :valid {
    border-color: #0f0;
}
#frmContact :valid:focus {
    box-shadow: 0 0 5px #0f0;
}
label.error {display: none !important;}
.req {
	color: #8ead23;
}
#frmContact input.error, #frmContact textarea.error {
    border-color: red;
}
#cont_submit {
    background: url('../skins/img/fleche_droite.png') no-repeat 50% 50%;
    border: 0;
    cursor: pointer;
    float: none;
    font: 400 1em 'Oswald';
    padding-right: 25px;
    text-transform: uppercase;
    width: 150px;
    margin: 20px;
}
#cont_submit::before {
  right: 20%;
}
#cont_submit::after {
  right: 17%;
}
#formsend {
    background: #fff;
    box-shadow: 0 0 20px 20px rgba(0,0,0,.25);
    color: #212c30;
    left: 50%;
    margin-left: -150px;
    padding: 25px;
    position: fixed;
    text-align: center;
    top: 30%;
    width: 250px;
    z-index: 99;
}
@media screen and (max-width : 767px) {
 #frmContact div {
        width: 80%;
    }
@media screen and (max-width : 554px) {
    #containerContact{
        margin: 0 auto;
        padding: 2em;
        text-align: center;
    }
    #frmContact input{
        width: 100%;
    }
    #frmContact textarea{
        margin: 10px 8px;
    }
    .acceptRecBloc{
        padding: 2px !important;
    }
} 