@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

body, p, h1, h2, form, label, ul, li{
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1.2vw;
}

body{
    min-height: 120vh;
    display: flex;
    justify-content: center;
}

#wrapper{
    width: 90%;
    background: url('img/bg.jpg') no-repeat center top;
    background-size: 100%;
    min-height: 120vh;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.7);
}

.logo{
    position: relative;
}

.logo img{
    width: 37.11vw;
}

.link-logo{
    display: block;
    position: absolute;
    width: 28vw;
    height: 50%;
    top: 0;
    left: 0;
}

#tchatte{
    width: 50vw;
    margin-left: 3vw;
    margin-top: -15vh;
    height: 200px;
    z-index: 999;

}

#tchatte>div{
    display: flex;
}

#tchatte>div:first-child{
    justify-content: flex-start;
}

#tchatte>div:last-child{
    margin-top: 6.5vh;
    justify-content: flex-start;
}

#bulle1{
    position: relative;
    background-color: #d7d944;
    padding: 4vh;
    box-sizing: border-box;
    width: 74%;
    transition: 0.2s;
}

#bulle2{
    position: relative;
    background-color: #f8b03b;
    padding: 4vh;
    box-sizing: border-box;
    width: 74%;
    margin-bottom: 6.5vh;
}

input[type="text"]{
    width: 100%;
    bakcground-color: #FFFFFF;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    padding: 15px;
    font-size: 1em;
}

#bulle1anim{
    position: absolute;
    right: -4vw;
    width: 4vw;
    top: 30%
}

#bulle1anim img{
    width: 100%;
}

#bulle2anim{
    position: absolute;
    left: -4vw;
    width: 4vw;
    top: 30%
}

#bulle2anim img{
    width: 100%;
}

.containerInput{
    position: relative;
}

.validInput{
    position: absolute;
    right: 20px;
    padding-left: 20px;
    border-left: 1px solid #E1E1E1;
    top: 2px;
    height: calc(100% - 4px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#bouton_don{
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    left: 0;
    bottom: -100px;
}

#bouton_don a{
    display: inline-block;
    background-color: #e30613;
    color: #FFFFFF;
    font-size: 1.5em;
    padding: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

#bouton_don a:hover{
    background-color: #f8b03b;
}

#other{
    margin-top: 10vh;
}

.chiffres{
    background-color: #009ee0;
    padding-left: 18%;
    padding-right: 18%;
    margin-top: -5px;
    color: #FFFFFF;
    padding-bottom: 10vh;
    position: relative;
}

.chiffres-content{
    padding-top: -30vh;
}

ul{
    padding: 20px;
    font-size: 2vw;
    position: relative;
}

h1, ul li{
    font-size: 1.8vw;
}

.footer{
    background-color: #FFFFFF;
    padding-left: 18%;
    padding-right: 18%;
    color: #00000;
    padding-bottom: 5vw;
    padding-top: 5vw;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}

.footer>div:first-child{
    width: 50%;
}

.footer>div:last-child{
    width: 40%;
}

#more{
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    right: -20%;
    top: 30%;
    z-index: 99;
}

#more a{
    display: inline-block;
    background-color: #e30613;
    color: #FFFFFF;
    font-size: 1.5em;
    padding: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

#more a:hover{
    background-color: #f8b03b;
}

.networks{
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin-bottom: 2vw;
}

.networks img{
    width: 3vw;
    margin-right: 10px;
}

#link-contact{
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
    padding-right: 3vw;
    padding-left: 3vw;
    padding-top: 1vw;
    padding-bottom: 1vw;
    border: 1px solid #009ee0;
    border-radius: 10px;
    color: #009ee0;
    text-decoration: none;
}

.optin{
    font-size: 0.8em
}
@media only screen and (max-width: 700px) {
    body{
        font-size: 3vw;
    }
   #tchatte{
    width: 97vw;
    margin-left: 3vw;
    margin-top: 15vh;
    height: 200px;
    z-index: 999;
    }
    #bulle1{
    position: relative;
    background-color: #d7d944;
    padding: 4vh;
    box-sizing: border-box;
    width: 80%;
    transition: 0.2s;
    }

    #bulle2{
        position: relative;
        background-color: #f8b03b;
        padding: 4vh;
        box-sizing: border-box;
        width: 80%;
        margin-bottom: 6.5vh;
    }
    
    input[type="text"]{
        width: 100%;
        bakcground-color: #FFFFFF;
        border-radius: 5px;
        border: none;
        box-sizing: border-box;
        padding: 15px;
        font-size: 3em;
    }
    
    #bouton_don{
    width: 80%;
        position: absolute;
        display: flex;
        justify-content: center;
        left: 0;
        bottom: -100px;
    }
    
    #more{
        width: 100%;
        position: absolute;
        display: flex;
        justify-content: center;
        right: -20%;
        top: 40%;
        z-index: 99;
    }
    
    .footer{
    background-color: #FFFFFF;
    padding-left: 18%;
    padding-right: 18%;
    color: #00000;
    padding-bottom: 5vw;
    padding-top: 5vw;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.footer>div:first-child{
    width: 100%;
}

.footer>div:last-child{
    width: 100%;
}
    
    .validInput{
    position: absolute;
    right: 20px;
    padding-left: 20px;
    border-left: 1px solid #E1E1E1;
    top: 2px;
    height: calc(100% - 4px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
        font-size: 2em;
}
    .optin{
    font-size: 1.5em
}
}