body, html {
    margin:0;
    height: 100%;
    font-family:"Montserrat";
    background-color: #fafafa;
}

/*-------- NavBar --------*/
.acceuil {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 100%; 
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*-------- Fin de la NavBar --------*/

/*-------- Map --------*/
.container_map{
    display: flex;
    justify-content: center;
    margin: 60px;
}

#map{
    height: 670px; 
    width: 1280px;
}
/*-------- Contenu principal ---------*/

.main_contact {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: 0px 60px 60px 60px;
}

.contact_message {
    display: flex;
    flex-direction: column;
}

.contact_message input{
    height: 15px;
    padding: 10px 15px 10px 15px;
}

.contact_message textarea{
    padding: 10px 15px 10px 15px;
}

.contact_message .space_ctc_msg {
    margin: 15px 0px;
}

.Name_and_phone {
    display: flex;
    flex-direction: row;
}

.Name_and_phone input {
    width: 100%;
}

.Name_and_phone #nameContact {
    margin-right: 15px;
}

.Name_and_phone #phoneNumberContact {
    margin-left: 15px;
}

input[type=submit]{
    width: 100%;
    height: 40px;
    color: white;
    border-radius: 5px;
    border: 1px solid transparent;
    padding: 7px 15px;
    font-size: 16px;
    font-family: Arial;
    background: linear-gradient(transparent,rgba(0, 0, 0, 0.1)) top/100% 800%;
    transition: 0.3s
}

input[type=submit].green{
    font-weight: 600;
    text-transform: uppercase;
    --class-item-bg: #50a556;
    background-color: #50a556;
}

input[type=submit]:hover{
    background-position:bottom;
    cursor: pointer;
}

@media screen and (min-width:1400px) {
    .main_contact{
        margin: 0px auto 60px auto;
        width: 1280px;
    }
}

@media screen and (max-width:850px) {
    .adresse {
        margin-bottom: 15px;
    }

    .main_contact{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width:700px) {
    
    .Name_and_phone {
        flex-direction: column;
    }

    .Name_and_phone #phoneNumberContact,.Name_and_phone #nameContact {
        width: auto;
        margin: 15px 0px;
    }
}
/* pop up */

.alert {
    position: relative;
    opacity: 0.8;
    transition: opacity 0.6s; /* 600ms to fade out */
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
  }

.success {
    padding: 20px;
    background-color:#04AA6D;
    color: white;
}

.echec {
    padding: 20px;
    background-color:#f44336;
    color: white;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

/* Marker */

img.huechange { 
    filter: hue-rotate(270deg); 
}