body{
    font-family: "Comic Sans MS";
}


section#contact{
    padding: 100px 0px;
}

section#contact .container{
    max-width: 900px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10px;
    border-radius: 15px;
    box-shadow: 0px 10px 50px -10px #35A7D9;
}
section#contact .container .titre{
    text-align: center;
    margin-bottom: 20px;
}

section#contact .container .titre h1{
    font-size: 2em;
}

section#contact .container .titre p{
    font-size: 1em;
}

section#contact .container form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 600px;
}

section#contact .container form input{
    width: 47%;
    margin: 15px 0;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    outline: none;
    border-bottom: 2px solid blue;
    transition: 0.2s;
}


section#contact .container form textarea {
    width: 100%;
    resize: none;
    height: 100px;
    margin-bottom: 35px;
}

header{
    height: 150px;
    background-color: #35A7D9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo{
    width: 140px;

}


.m-link{
    text-decoration: none;  /*enlever les soulignements des liens*/
    color: black;
    font-weight: 700;    /* taille police */
    padding-right: 30px;
}


#wrap {
    width: 11%;
    position: relative;
    background-color: #444444;
    margin-top: 128%;
}

nav.menu ul li.btn a{

    color: #35A7D9;
    background-color: black;
    text-decoration: none;

}

nav.menu ul li.btn:hover a{

    color: black;
    background-color: #35A7D9;
    transition: 0.3s all;
}



.navbar {
    height: 50px;
    padding: 0;
    margin: 0;
    position: absolute;
}


.navbar li {
    height: auto;
    width: 135.8px;
    float: left;
    text-align: center;
    list-style: none;
    font: normal bold 13px/1em Arial, Verdana, Helvetica;
    padding: 0;
    margin: 0;
}

.navbar a {
    padding: 28px 0;
    border-left: 1px solid #ccc9c9;
    text-decoration: none;
    color: white;
    display: block;
}



.navbar li ul {
    display: none;
    height: auto;
    margin: 0;
    padding: 0;
}


.navbar li:hover ul {
    display: block;
}

@media screen and (min-width: 1980px){
    /*grand ecran*/
    #wrap {
        width: 28.6%;
        margin-bottom: 50px;
    }

    .text{
        margin-right: 90px;
        margin-bottom: 20px;
    }
}