/*import ROBOTO*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*import BABAS NEUE*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "roboto";
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F5F5F5;
}


/*========================================   HEADER   ======================================*/
header{
    width: 100%;
    display: flex;
    justify-content: center;
}

header > .header-container-mobile {
    display: none;
}

header > .header-container{
    width: 100%;
    max-width: 1200px;
    height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Partie LOGO */
header > .header-container > .header-logo-link{
    height: 90%;
}
header > .header-container > .header-logo-link > img{
    height: 100%;
}

/*Partie icone et recherche*/
.header-search-reseau{
    height: 50px;
    width: 600px;
    
    display: flex;
    align-items: center;
    justify-content: end;
}
.header-don-button{
    background-color: hsl(245, 60%, 53%);
    margin: 0px 5px;
    font-size: 25px;
    font-weight: 600;
    width: 200px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    color: white;
    line-height: 40px;
    border-radius: 20px;
    border: 2px solid hsl(245, 60%, 53%);
    transition: 0.2s;
}
.header-don-button:hover{
    background-color: hsl(245, 60%, 53%);;
}

.header-search{
    height: 50px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px silver;
}
.header-search > input[type=text]{
    height: 100%;
    width: 250px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-family: "roboto";
}
.header-search > button{
    height: 100%;
    width: 50px;
    font-size: 20px;
    background-color: white;
    border: none;
    cursor: pointer;
    color: grey;
}
.header-icon-reseau{
    height: 50px;
    width: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.header-facebook{
    text-decoration: none;
    color: #DD412B;
    font-size: 30px;
}

.menu-mobile{
    display: none;
}

@media screen and (max-width: 1100px) {
    header > .header-container{
        display: none;
    }

    header > .header-container-mobile{
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        height: 80px;
        padding: 0px 10px;
    }
    .header-mobile-logo > a > img{
        height: 65px;
    }
    .header-mobile-buttonmenu{
        height: 70px;
        width: 150px;
        background-color: #DD412B;
        color: white;
        position: fixed;
        top: 5px;
        right: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 25px;
        border-radius: 3px;
        z-index: 100;
    }
    .header-mobile-buttonmenu > i{
        margin-right: 10px;
    }

    .menu-mobile{
        display: none;
        background-color: rgba(0, 0, 0, 0.6);
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 5000;
    }
    .button-close-menu-mobile{
        position: absolute;
        top: 5px;
        left: 5px;
        height: 70px;
        width: 70px;
        background-color: #DD412B;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 35px;
        cursor: pointer;
    }
    .container-menu-mobile{
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: calc(100% - 80px);
        background-color: white;
    }
    .header-search-mobile{
        height: 50px;
        width: calc(100% - 10px);
        display: flex;
        justify-content: center;
        align-items: center;
        border: solid 1px silver;
        margin: 25px 5px 5px 5px;
    }
    .header-search-mobile > input[type=text]{
        height: 100%;
        width: calc(100% - 50px);
        border: none;
        text-align: center;
        font-size: 16px;
        font-family: "roboto";
    }
    .header-search-mobile > button{
        height: 100%;
        width: 50px;
        font-size: 20px;
        background-color: white;
        border: none;
        cursor: pointer;
        color: grey;
    }
    .header-mobile-decouvrez-stop{
        margin: 5px;
        height: 50px;
        width: calc(100% - 10px);
        background-color: #DD412B;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 3px;
        text-decoration: none;
        text-align: center;
    }
    .header-mobile-semaine{
        height: 320px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .header-mobile-j-semaine{
        margin: 5px;
        width: calc(50% - 15px);
        height: 50px;
        display: flex;
        align-items: center;
        text-align: center;
        font-weight: 500;
        text-decoration: none;
        background-color: white;
        cursor: pointer;
    }
    .header-mobile-j-semaine > i{
        width: 30px;
    }

    .header-mobile-foot{
        height: auto;
        width: 100%;
    }
    .header-mobile-don-button{
        background-color: hsl(245, 60%, 53%);
        text-decoration: none;
        color: white;
        padding: 10px;
        width: calc(100% - 30px);
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        border-radius: 3px;
    }
    .header-mobile-don-button > i{
        padding-right:10px;
    }
    .reseau-s-mobile{
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: 50px;
        width: 100%;
    }

    .don-header-mobile{
        margin-right: 150px;
        width: 100px;
        background-color: hsl(245, 60%, 53%);
        color: white;
        text-align: center;
        text-decoration: none;
        height: 70px;
        border-radius: 3px;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/*==================================  Footer===================================*/
footer{
    width: 100%;
    background-color: #e4e4e4;
}
.footer-container{
    height: 100px;
    width: 100%;
    max-width: 1200px;
    margin:0 auto ;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sous-footer-container{
    background-color: #bdbdbd;
    height: 20px;
    width: 100%;
    text-align: center;
}
.footer-gauche{
    height: 100%;
    width: 400px;
    display: flex;
    align-items: center;
}
.footer-gauche > img{
    height: 100%;
    margin-right: 10px;
}
.footer-gauche > h2{
    font-size: 18px;
}
.footer-droit{
    height: 100%;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-droit > a{
    font-size: 18px;
    text-decoration: none;
    margin: 5px 0px;
    text-align: center;
    transition: 0.3s;
    color: black;
}
.footer-droit > a:hover{
    transform: scale(1.1);
}



/*======================================== main ====================================== */
main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titreArticles{
    font-family: 'Bebas Neue';
    font-size: 30px;
    letter-spacing: 2px;
}
.lineTitle{
    height: 3px;
    width: 180px;
    background-color: #DD412B;
}

/*Button*/
.container-button-article{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: end;
}
.button-rouge{
    background-color: #DD412B;
    color: white;
    height: 50px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}


/*=============== Articles ==================*/
.article{
    height: 280px;
    width: 280px;
    box-shadow: 0px 5px 10px silver;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: white;
    position: relative;
}
.article > div{
    width: 280px;
    height: 180px;
    overflow: hidden;
    position: relative;
}
.article > div > img{
    width: 280px;
    height: 180px;
    object-fit: cover;
    transition: 0.5s;
}
.article:hover > div > img{
    transform: scale(1.2);   
}
.article:hover > div > .iconPlayerVideo{
    display: none; 
}
.article > div > .iconPlayerVideo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    height: 40px;
    width: 40px;
    opacity: 0.6;
}


.article > h3{
    margin: 5px;
    color: rgb(49, 49, 49);
}
.article > .dateArticle{
    position: absolute;
    bottom: 0;
    left: 0;
    color: rgb(172, 172, 172);
    font-size: 12px;
}
.article > .vueArticle{
    position: absolute;
    bottom: 0;
    right: 0;
    color: rgb(172, 172, 172);
    font-size: 12px;
}
.article > .vueArticleNew{
    position: absolute;
    bottom: 0;
    right: 0;
    color: #DD412B;
    font-size: 12px;
}
/* ============== Ariane ==============*/
.ariane{
    margin: 10px 0px;
}
.ariane > a{
    color: black;
}

/*===============  LOADER ==============*/
.loader{
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    height: 100%;
    width: 100%;
}
.loader > .container-image
{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 350px;
    height: 350px;
}
.loader > .container-image > .loader-coeur-anim{
    width: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    animation: animation-loader-coeur 1s infinite;

}
.loader > .container-image > .loader-coeur-anim-text{
    width: 200px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50% , -50%);
}
.chargement{
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translate(-50% , -50%);
    font-size: 40px;
    
}
.point1 , .point2 , .point3{
    opacity: 0;
}
.chargement > .point1{
    animation: anim-chargement 2s infinite;
}
.chargement > .point2{
    animation: anim-chargement 2s 0.2s infinite;
}
.chargement > .point3{
    animation: anim-chargement 2s  0.4s infinite;
}

.createur{
    color: black;
}
@keyframes animation-loader-coeur {
    0%{
        transform: translate(-50% , -50%) scale(1);
    }
    50%{
        transform: translate(-50% , -50%) scale(1.1);
    }
    100%{
        transform: translate(-50% , -50%) scale(1);
    }
}
@keyframes anim-chargement {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}



@media screen and (max-width: 750px) {

    main{
        width: 95%;
    }

    .footer-container{
        flex-wrap: wrap;
        height: auto;
    }
    .footer-gauche{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .footer-droit{
        width: 100%;
    }


}

.sr-sb-left{
    left: 0 !important;
    top: 100% !important;
    transform: translateY(-100%) !important;
}

@media screen and (max-width: 1100px) {
    
    .titreArticles{
        font-family: 'Bebas Neue';
        font-size: 30px;
        letter-spacing: 2px;
        text-align: center;
    }
    .lineTitle{
        height: 3px;
        width: 180px;
        background-color: #DD412B;
        margin: 0 auto;
    }


    .article{
        width: 100%;
        max-width: 350px;
        height: auto;
        margin: 5px 0px;
        position: relative;
        background-color: white;
    }
    .article > div{
        width: 100%;
        height: 100%;
    }
    .article > div > img{
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    .article > h3{
        color: black;
        width: 100%;
        margin: 0;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .article > .dateArticle{
        display: none;
    }
    .article > .vueArticle{
        display: none;
    }
    .article > .vueArticleNew{
        display: none;
    }
    .container-button-article{
        margin-top: 10px;
        justify-content: center;
    }
}
