@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800');

p, form, h1, h2, h3, ul, li{
    margin: 0;
    padding: 0;
}

form{
    width: 100%;
    margin-top: 50px;
}

form label{
    display: block;
    margin-bottom: 10px;
}

form label.warning::after{
    content: ' *';
    color: #FF0000;
}

form input[type="text"]{
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 10px;
    font-size: 1.2vw;
}

form input[type="text"]:focus{
    background-color: #F8F8F8;
}

body{
    margin: 0;
    padding: 0;
    background: url('../img/fond.png') repeat center center #70c0bb;
    overflow: auto;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    font-family: "Open Sans";
    font-size: 1.2vw;
}

body>h2{
    margin-top: calc(3vw + 70px);
    color: #E1E1E1;
    font-size: 1em;
    margin-bottom: 20px;
}

body>h1{
    width: 80%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 50px;
}

body>img{
    width: 80%;
    border-radius: 30px 30px 0px 0px;
}

#wrapper{
    background-color: #FFFFFF;
    width: 80%;
    display: flex;
    flex-flow: row;
    margin-bottom: 50px;
}



#wrapper>div{
    width: 50%;
    padding: 50px;
    box-sizing: border-box;
    text-align: justify;
}

#wrapper>div:last-child{
    width: 50%;
    padding-left: 0
}

.justif{
    text-align: justify;
    font-size: 1.12vw;
}


.tagline{
    font-family: 'Open Sans';
    font-weight: 700;
    font-size: 2vw;
}

.small{
    font-weight: 600;
    font-size: 1.2vw;
}

.yellowButton{
    background-color: #ffd200;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-family: 'Open Sans';
    font-weight: 800;
    font-size: 1.7vw;
    text-transform: uppercase;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    width: 32.6%;
    margin-top: 5%;
    transition: 0.2s;
}

.yellowButton:hover{
    background-color: #70c0bb;
    color: #FFFFFF;
}

#nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

#nav img{
    width: 4.5%;
}

#nav .don{
    background-color: #ffd200;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-decoration: none;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
}

.reponseQuestion{
    width: 100%;
}

.lastOne{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.reponseQuestion li{
    list-style-type: none;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Open Sans';
    font-size: 1.3vw;
    margin-bottom: 2%;
    cursor: pointer;
}

.pattoune{
    width: 10%;
    margin-right: 10px;
}

.pattoune img{
    width: 100%;
}

.lastOne .pattoune{
    width: 10%;
}

@media only screen and (max-width: 800px) {
    body{
    margin: 0;
    padding: 0;
    background: url('../img/fond.png') repeat center center #70c0bb;
    overflow: auto;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    font-family: "Open Sans";
    font-size: 2vw;
}
    
    #wrapper{
    background-color: #FFFFFF;
    width: 98%;
    display: flex;
    flex-flow: column;
    margin-bottom: 50px;
    }



    #wrapper>div{
        width: 100%;
        padding: 50px;
        box-sizing: border-box;
        text-align: justify;
    }

    #wrapper>div:last-child{
        width: 100%;
        padding-left: 50px;
        padding-top: 0px;
    }
    
    body>img{
    width: 98%;
    border-radius: 30px 30px 0px 0px;
    }
    
    .justif{
    text-align: justify;
    font-size: 3.5vw;
    }
    
    
.yellowButton{
    background-color: #ffd200;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-family: 'Open Sans';
    font-weight: 800;
    font-size: 4vw;
    text-transform: uppercase;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    width: 32.6%;
    margin-top: 5%;
    transition: 0.2s;
    }
    
    .reponseQuestion li{
    list-style-type: none;
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Open Sans';
    font-size: 3vw;
    margin-bottom: 2%;
    cursor: pointer;
}
    
    form input[type="text"]{
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 10px;
    font-size: 3vw;
}
    
    label{
        font-size: 3vw;
    }
    
    h3{
        font-size: 4vw;
        text-align: center;
    }
    
    #nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #FFFFFF;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

#nav img{
    width: 15%;
}
    
    #nav .don{
    background-color: #ffd200;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    text-decoration: none;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
        font-size: 4vw;
}

}