/*
orange : #CD8131

bleu : #27558D
*/



body{
    margin: 0;
    padding: 0;
    font-family: 'Poiret One', cursive;
    width: 100%;
    
}
h1{
    font-size: 45px;
    font-family: 'Poiret One', cursive;
}
h2{
    font-family: 'Poiret One', cursive;
}
h3{
    font-family: 'Poiret One', cursive;
}
h4{
    font-family: 'Poiret One', cursive;
}
h5{
    font-family: 'Poiret One', cursive;
}
h6{
    font-family: 'Poiret One', cursive;
}
.headermobile{
    display: none;
}
header{
    background-color: white;
    width: 100%;
    padding-top: 250px;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    box-shadow: 0px 0px 5px grey;
    font-family: 'Poiret One', cursive;
    font-size: 24px;
    font-weight: bold;
}
header > .drsoul-Button{
    position: absolute;
    display: block;
    top: 150px;
    right: 30px;
    width: 300px;
    animation: animButtonDrSoul 2s infinite;
}
header > .drsoul-Button > img{
    width: 100%;
}
@keyframes animButtonDrSoul{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.05);
    }
    100%{
        transform: scale(1);
    }
}
header> img{
    width: 100%;
    height: 250px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
header > .menu1{
    width: 600px;
    display: flex;
    justify-content: space-around;
}
header > .menu2{
    width: 600px;
    display: flex;
    justify-content: space-around;
}
header > .logo{
    height: 280px;
    width: auto;
    transform: translateY(-70%);
}
header > .logo > img{
    height: 100%;
}
header a{
    line-height: 50px;
    text-decoration: none;
    cursor: pointer;
    color: #27558D;
    text-shadow: 0px 0px 2px #C7C7C7;
    transition: .3s;
}
header a:hover{
    color: #CD8131;
    transition: .3s;
}
.logo > img{
    transform: scale(1);
    transition: 0.5s;
}
.logo > img:hover{
    transform: scale(1.2);
    transition: 0.5s;
}

.rs-header{
    display: flex;
    justify-content: center;
    align-items: center;
}
.rs-header > a{
    display: block;
    margin: 0;
    padding: 0;
    height: 48px;
}
.rs-header img{
    height: 48px;
    margin: 0px 5px;
}


@media screen and (max-width: 1200px) {
    header{
        display: none;
    }
    .headermobile{
        display: block;
        height: 600px;
        width: 100%;
        position: relative;
    }
    .headermobile > img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .headermobile > .logo-mobile{
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50% , -50%);
        width: 350px;
        height: auto;
    }
    .headermobile > .logo-mobile > img{
        width: 100%;
    }
    .burger{
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        opacity: 0;
        height: 100%;
        z-index: 1000;
        background-color:rgba(0, 0, 0, 0.5);
        overflow: hidden;
        display: none;
    }
    .burger > .menuburger{
        width: 80%;
        height: 100%;
        background-color: white;
        top: 0;
        left: 0;
        box-shadow: 0px 0px 10px black;
    }
    .burger > .menuburger > img {
        width: 150px;
        margin: 0px auto;
        display: block;
    }
    .burger > .menuburger > div > a {
        display: block;
        text-decoration: none;
        text-align: center;
        margin: 15px auto;
        font-size: 25px;
        font-weight: bold;
        color: #27558D;;
    }
    .burger > .menuburger > div > .separ{
        height: 1px;
        width: 80%;
        background-color: silver;
        margin: 0 auto;
    }
    .closeBurger{
        position: absolute;
        top: 10px;
        left: 75%;
        height: 70px;
        width: 70px;
        background-color: #143052;
        box-shadow: 0px 0px 5px black;
    }
    .closeBurger > img{
        width: 30px;
        height: 30px;
        margin: 20px;
    }
    .iconBurger{
        position: fixed;
        z-index: 500;
        top: 5px;
        left: 5px;
        height: 70px;
        width: 70px;
        background-color: #143052;
        box-shadow: 0px 0px 5px black; 
    }
    .iconBurger > img{
        width: 40px;
        height: 40px;
        margin: 15px;
    }
    .drsoul-Button{
        display: none;
    }
    .headermobile > .drsoul-Button-mobile{
        position: absolute;
        display: block;
        bottom: 10px;
        left: 10px;
        width: 200px;
        transform: rotate(30deg);
        animation: animButtonDrSoul 2s infinite;
    }
    .headermobile > .drsoul-Button-mobile > img{
        width: 100%;
    }
    @keyframes closemenu {
        0%{
            opacity: 1;
            width: 100%;
        }
        100%{
            opacity: 0;
            width: 0%;
        }
    }
    @keyframes openmenu {
        0%{
            opacity: 0;
            width: 0%;
        }
        100%{
            opacity: 1;
            width: 100%;
        }
    }
  }
  @media screen and (max-width: 600px) {
    .headermobile > .logo-mobile{
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50% , -50%);
        width: 300px;
        height: auto;
    }
  }


/*=================footer=======================*/

footer{
    width: 100%;
    background-color: #27558D;
    height: auto;
    color: white;
    margin-top: 40px;
}
footer h5{
    font-size: 22px;
}
.div-Footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0px 0px 20px 0px;
}
.div-page-footer{
    text-align: left;
}
.div-page-footer h5{
    padding: 0px 20px;
    margin-bottom: 0;
}
.div-page-footer > div{
    display: flex;
}
.div-page-footer > div > div{
    padding: 5px 20px;
}

.div-page-footer a{
    display: block;
    color: white;
    text-decoration: none;
    font-size: 18px;
    background-color: #143052;
    box-shadow: 0px 0px 0px black;
    margin: 5px 0px;
    text-align: center;
    padding: 3px 5px;
    transition: 0.2s;
    border-radius: 2px;
}
.div-page-footer a:hover{
    transform: scale(1.1);
    transition: 0.2s;
    box-shadow: 0px 6px 6px black;
}

.div-logo-footer > img{
    height: 150px;
    padding: 30px;
}
.div-radio-footer{
    display: flex;
}
.div-radio-footer > a > img {
    height: 100px;
    margin: 60px 10px;
    display: block;
} 





.footer-case-dev{
    width: 100%;
    text-align: center;
    background-color: #143052;
}
.footer-case-dev a{
    color: white;
}




/*==================general======================*/
.titre-page{
    font-family: 'Lobster', cursive;
    width: 80%;
    color: #27558D;
    margin: 30px auto;
}
.titre-page h1{
    margin-bottom: 5px;
}
.titre-page div{
    height: 3px;
    width: 80px;
    background-color: #CD8131;
}


.divDon{
    width: 300px;
    height: 140px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 5px 10px black;
    margin: 0 10px 30px 10px;
    position: relative;
    padding-bottom: 40px;
}
.divDon:hover a{
    height: 100%;
    transition: 0.5s;
}
.titredivDon{
    font-size: 20px;
    font-weight: bold;
    color: #143052;
    display: block;
    margin: 5px auto;
    text-align: center;
}
.textdivDon{
    display: flex;
    justify-content: center;
    height: 100px;
}
.textdivDon > span{
    line-height: 100px;
    font-size: 25px;
    font-weight: bolder;
}
.textdivDon > img{
    height: 100px;
}
.divDon > a{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #CD8131;
    color: white;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
    height: 40px;
    font-size: 20px;
    border-radius: 5px;
    transition: 0.5s;
    overflow: hidden;
}
.animationClick{
    justify-content: center;
    display: flex;
    height: 40px;
    width: 100%;
    line-height: 40px;
}
.imgDonAnim > img{
    height: 140px;
    width: 180px;
    object-fit: cover;
}

.divDon > a > .animationClick > img{
    height: 30px;
    margin: 5px;
}
.divDon .donleft{
    animation: alimLeft 1s infinite;
}
.divDon .donright{
    animation: alimRight 1s infinite;
}

@keyframes alimRight{
    0%{
        transform: translateX(0%);
    }
    50%{
        transform: translateX(50%);
    }
    100%{
        transform: translateX(0%);
    }
}
@keyframes alimLeft{
    0%{
        transform: translateX(0%);
    }
    50%{
        transform: translateX(-50%);
    }
    100%{
        transform: translateX(0%);
    }
}


@media screen and (max-width: 550px) {
    .titre-page h1{
        font-size: 30px !important;
    }
}
@media screen and (max-width: 500px) {
    .titre-page h1{
        font-size: 25px !important;
        
    }
    .divDon{
        width: 100%;
        font-size: 15px;
        padding: 2px 0px;
    }
}

.validationDon{
    text-align: center;
    margin-bottom: 500px;
}

.buttonDon{
    background-color: #27558D;
    color: white;
    padding: 5px 20px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s;
}
.buttonDon:hover{
    background-color: #143052;
    transition: 0.3s;
}

.mention{
    width: 1024px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin: 50px auto;
    padding: 10px
}
@media screen and (max-width: 1024px) {
    .mention{
        width: 95%;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        margin: 50px auto;
        padding: 10px
    }
}

.buttonPageDon{
    background-color: white;
    color: #27558D;
    padding: 5px 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
    border: solid 2px #27558D;
    cursor: pointer;
    font-size: 25px;
    font-family: 'Poiret One', cursive;
    letter-spacing: 2px;
}
.buttonPageDon:hover{
    background-color: #143052;
    color: white;
    transition: 0.3s;
}
.titreButtonDon{
    color: #143052;
    font-weight: bold;
    display: block;
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 0px;
}
.infodon{
    font-size: 13px;
    text-align: center;
}
.tinytextdon{
    font-size: 18px;
}

/*==================connexion===================*/

.buttonConnxion{
    position: fixed;
    top: 10px;
    right: 20px;
    background-color: white;
    display: block;
    height: 35px;
    line-height: 35px;
    width: 200px;
    text-align: center;
    font-size: 25px;
    text-decoration: none;
    color: #27558D;
    border-radius: 18px;
    box-shadow: 0px 0px 5px black;
    font-weight: 900;
    transition: 0.3s;
    z-index: 300;
}
.buttonConnxion:hover{
    transform: scale(1.1);
    box-shadow: 0px 10px 10px black;
    transition: 0.3s;
}

.buttonUsername{
    position: fixed;
    top: 10px;
    right: 20px;
    background-color: white;
    display: block;
    height: 35px;
    line-height: 35px;
    width: 150px;
    text-align: center;
    font-size: 25px;
    text-decoration: none;
    color: #27558D;
    border-radius: 18px;
    box-shadow: 0px 0px 5px black;
    font-weight: 900;
    transition: 0.3s;
}
.buttonUsername:hover{
    transform: scale(1.1);
    box-shadow: 0px 10px 10px black;
    transition: 0.3s;
}

/*=============================Barre notification======================*/
.containerConnexion{
    position: fixed;
    top: 10px;
    right: 20px;
    height: 40px;
    width: 100px;
    z-index: 300;

}
.buttonNotification{
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background-color: white;
    position: absolute;
    top: 0;
    right: 60px;
    color: #27558D;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    box-shadow: 0px 0px 5px black;
    overflow: hidden;
    transition: 0.5s;
}
.buttonNotification:hover{
    transition: 0.5s;
    width: 300px;
    height: 400px;
}
.Allnotif{
    width: 300px;
    background-color: white;
    height: 340px;
    overflow-y: scroll;
}
.Allnotif > a{
    width: 100%;
    background-color: white;
    height: 100px;
    border-bottom: solid 1px silver;
    display: block;
    text-decoration: none;
    overflow: hidden;
}
.Allnotif > a:hover {
    background-color: rgb(221, 221, 221);
}
.Allnotif > a > .titrenotif{
    padding: 5px 5px;
    height: 12px;
    font-size: 12px;
    font-weight: 900;
    margin: 0;
    color: #27558D;
}
.Allnotif > a > .textnotif{
    padding: 5px 5px;
    height: 15px;
    font-size: 15px;
    font-weight: 900;
    margin: 0;
    color: #27558D;
}
.Allnotif > a > .datenotif{
    padding: 5px 5px;
    height: 12px;
    font-size: 12px;
    font-weight: 900;
    margin: 0;
    text-align: right;
    color: #27558D;
}
@keyframes notifAnim{
    0%{
        background-color: white;
    }
    50%{
        background-color: #FFB8B0;
    }
    100%{
        background-color: white;
    }
}



.UserHeader{
    position: absolute;
    top: 0;
    right: 0;
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background-color: white;
    text-decoration: none;
    color: #27558D;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    box-shadow: 0px 0px 5px black;
    overflow: hidden;
    transition: 0.5s;
}
.UserHeader:hover{
    height: 90px;
    transition: 0.5s;
}
.buttonUserHeader{
    text-decoration: none;
    color: #27558D;
}
.buttonDeco{
    display: block;
    height: 40px;
    width: 40px;
    background-color: red;
    border-radius: 20px;
    margin-top: 10px;
    text-decoration: none;
    color: white;
}








.cookie-box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 1rem 2rem;
    background: #fff;
    transition: all .75s cubic-bezier(.19,1,.22,1);
    box-shadow: 0px 0px 10px grey;
    font-weight: bolder;
    
    &--hide {
      opacity: 0;
      bottom: -100%;
    }
  }
  
  .cookie-button {
    display: inline-block;
    cursor: pointer;
    padding: 0.65rem 0.85rem;
    margin-left: 0.45rem;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 1px;
    background-image: linear-gradient(62deg, #fbab7E 0%, #f7ce68 100%);
  }
  #checkcookie{
    width:15px;
    height:15px;
  }

  @media screen and (max-width: 900px) {
    .cookie-box{
        bottom: 50px;
    }
}

  