*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

header{
    position: fixed;
    top: 0%;
    left: 0%;
    padding: 20px 10px;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: 0.5s;
    background-color: #000;
    /*border-radius: 50% / 20%;*/
}


header>img{
    height: 50px;
    width: 50px;
    border-radius: 70%;
}

.carousel{
    z-index: -1;
    margin-top: 200px;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 50px;
}

.logo{
    color: #fff;
    font-weight: bold;
    font-size: 2em;
    text-decoration: none;
}

.logo span{
    color: #1e90ff;
}

.navbar{
    display: flex;
    position: relative;
}

.navbar li{
    list-style: none;
}

.navbar a{
    color: #fff;
    /*color: #00008B;*/
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
}

.bouton-don{
    padding: 10px 20px;
    background: #1e90ff;
    margin-top: -10px;
    text-transform: uppercase;
}

.bouton-don:hover{
    background: #1e90ff;
    transition: ease-in-out;
}

header .navbar li a:hover{
    color: #1e90ff;
    border-bottom: 2px solid #1e90ff;

}


.contact {
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: cover;
}

.contact .contenu{
    max-width: 800px;
    text-align: center;
}

.contact .contenu h2{
    margin-top: 100px;
    font-size: 36px;
    font-weight: 500;
}

.contact .contenu p{
    font-weight: 300;
}

.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.container .contact-info{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.container .contact-info .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}

.container .contact-info .box .icon{
    min-width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.container .contact-info .box .text{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    flex-direction: column;
    color: #111;
    font-weight: 300;
}

.container .contact-info .box .text h3{
    font-weight: 500;
    color: #111;
}

.contact-Form{
    width: 40%;
    padding: 40px;
}

.contact-Form h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}

.contact-Form .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contact-Form .inputBox input,
.contact-Form .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contact-Form .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contact-Form .inputBox input:focus ~ span,
.contact-Form .inputBox input:valid ~ span,
.contact-Form .inputBox textarea:focus ~ span,
.contact-Form .inputBox textarea:valid ~ span{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}

.contact-Form .inputBox input[type="submit"]{
    width: 100px;
    color: #111;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

footer{
    background-color: #111;
}

.footer-contenu{
    margin-top: 40px;
    width: 100%;
    padding: 70px 30px 20px;
}

.media{
    display: flex;
    justify-content: center;
}

.media a{
    text-decoration: none;
    padding: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 50%;
}

.media a i{
    font-size: 2em;
    color: #111;
    opacity: 0.9;
}

.media a:hover{
    background-color: #111;
    transition: 0.5s;
}

.media a:hover i{
    color: #fff;
    transition: 0.5s;
}

.footerNav{
    margin: 30px 0;
}

.footerNav ul{
    display: flex;
    justify-content: center;
}

.footerNav ul li a{
    color: #fff;
    margin: 20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity: 0.7;
    transition: 0.5s;

}

.footerNav ul li a:hover{
    opacity: 1;
}

.signature{
    background-color: #111;
    padding: 20px;
    text-align: center;
}


.signature p{
    color: #fff;
}

.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}


@media (max-width: 991px){
    .contact{
        padding: 50px;
    }
    .container{
        flex-direction: column;
    }
    .container .contact-info{
        margin-bottom: 40px;
    }
    .container .contact-info .contact-Form{
        width: 100%;
    }
}