/*------------Hero Ban----------------*/

.heroban {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

.spaceHero {
    height: 70px;
}

.heroinfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #F6F6F6;
}

.heroinfo h1 {
    font-family: 'Righteous', cursive;
    text-transform: uppercase;
    font-size: 6em;
    margin: 0;
}

.heroinfo p {
    font-size: 1.25em;
    font-weight: 600;
    width: 460px;
}

.herologo {
    display: flex;
    align-items: center;
}

.herologo img {
    width: 100px;
    margin-right: 20px;
}

.divarrow {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.arrowgif {
    width: 50px;
    margin-bottom: 30%;
}

.imgprofgroupe{ 
    width: 150px;
    border-radius: 100px;
}

/*--------------------GRILLE LISTE -------------------*/

#Liste {
    background-color: rgba(30, 30, 30, 0.80);
    padding: 20px;
}

#Liste h2 {
    color: white;
    font-size: 2.4em;
    margin: 20px;
    font-family: 'Righteous', cursive;
}

.grilleListe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.divgroupe {
    padding: 50px;
    margin: 0px 10px;
}

.liendivgroupe {
    display: block;
    background: #1e1e1e;
    border-radius: 20px;
    width: 500px;
    height: 320px;
    color: white;
    padding-bottom: 20px;
    transition: 0.3s;
}

.liendivgroupe:hover {
    scale: 1.1;
    transform: rotateZ(0deg);
    animation: wiz 0.3s;
}


.bangroupe {
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    width: 100%;
    height: 150px;
    background: blue;
    border-radius: 20px 20px 0px 0px;
    align-items: flex-end;
}

#cem_liste .bangroupe {
    background-image: url(../img/cem/cem_ban2.webp);
    background-size: 100%;
    background-position: 0% 20%;
}

#psy_liste .bangroupe {
    background-image: url(../img/psy/psy_ban.webp);
    background-size: 102%;
    background-position: 25% 40%;
}

#tip_liste .bangroupe {
    background-image: url(../img/tip/tip_ban.jpg);
    background-size: 100%;
    background-position: 0% 10%;
}

#ski_liste .bangroupe {
    background-image: url(../img/ski/ski_ban.webp);
    background-size: 100%;
    background-position: 0% 0%;
}

#cey_liste .bangroupe {
    background-image: url(../img/cey/cey_ban3.jpg);
    background-size: 100%;
    background-position: 0% 50%;
}

#ko_liste .bangroupe {
    background-image: url(../img/ko/ko_ban.jpg);
    background-size: 100%;
    background-position: 0% 70%;
}

#las_liste .bangroupe {
    background-image: url(../img/las/las_ban.jpg);
    background-size: 100%;
    background-position: 0% 20%;
}

#blo_liste .bangroupe {
    background-image: url(../img/blo/blo_ban.jpg);
    background-size: 100%;
    background-position: 0% 50%;
}

#str_liste .bangroupe {
    background-image: url(../img/str/str_ban.jpg);
    background-size: 100%;
    background-position: 0% 70%;
}

#bal_liste .bangroupe {
    background-image: url(../img/bal/bal_ban.jpg);
    background-size: 100%;
    background-position: 0% 40%;
}

#bla_liste .bangroupe {
    background-image: url(../img/bla/bla_ban.jpg);
    background-size: 100%;
    background-position: 0% 20%;
}

#gre_liste .bangroupe {
    background-image: url(../img/gre/gre_ban.jpg);
    background-size: 100%;
    background-position: 0% 20%;
}

.genregroupe {
    padding: 5px 5px 10px 5px;
}

.divRGroupe {
    margin-top: -50px;
}

.ContentGroupe {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.infogroupe {
    padding: 0px 20px;
    text-align: left;
    width: 300px;
}

.infogroupe h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6em;
    margin-bottom: 5px;
    margin-top: 10px;
}

.accroche {
    margin-top: 5px;
}

.button_arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #F6F6F6;
    color: black;
    border-radius: 50px;
    width: fit-content;
    padding: 10px 15px;
    margin-left: auto;
    margin-top: 20px;
    margin-right: 10px;
}

.button_arrow p {
    margin: 0px;
    font-weight: 600;
}

.arrow {
    transform: rotateZ(180deg);
    height: 25px;
    margin-left: 10px;
    transition: 0.3s;
}

.liendivgroupe:hover .arrow { 
    transform: rotateZ(135deg);
}

/*--------------RESPONSIVE--------------*/
@media screen and (max-width: 1023px) and (min-width: 768px){

    .liendivgroupe:hover {
        scale: 1;
        animation: inherit;
    }
}

@media screen and (max-width: 767px){

    .herologo img {
        width: 70px;
        margin-right: 10px;
    }

    .heroinfo h1 {
        font-size: 4em;
    }

    .heroinfo p {
        width: 300px;
    }

    .arrowgif {
        margin-bottom: 150%;
    }

    .divgroupe {
        padding: 10px;
    }

    .liendivgroupe {
        width: 350px;
        height: fit-content;
        padding-bottom: 10px;
    }

    .liendivgroupe:hover {
        scale: 1;
        animation: inherit;
    }

    .divRGroupe {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 15px;
    }

    .imgprofgroupe {
        width: 120px;
        border-radius: 100px;
    }

    .button_arrow {
        padding: 5px 10px;
        margin-right: auto;
    }

}

/*   _____     _____
    |  _  |   |  _  |
   -| | | |---| | | |-
    |_____| 7 |_____|  ~B!nro~
*/