.no-transition * {
  transition: none !important;
}

.statut{
    font-family: var(--font-script);
    text-transform: uppercase;
       font-size: 2rem;

    background-color: var(--blue);
    padding: 0.75rem 1ch 0.25rem 1ch;


}


.statut[data-statut="creations.futur"]{
    transform: rotate(-12deg);
}
.statut[data-statut="creations.present"]{
    transform: rotate(14deg);
}
.statut[data-statut="creations.passe"]{
     transform: rotate(-34deg);
}
     

/* LINKS GROUP --------------------------------------------- */


.links-group{
    font-family: var(--font-title);
    font-size: var(--fs-title-small);
    list-style: none;
    margin-bottom: 2rem;
}


.links-group a,
.links-group a:hover{
    text-decoration: none!important;
    position: relative;

}
.links-group li a::after{
    content: '↗';
    font-weight: 600;
    padding-left: 0.5rem;
    font-family: inherit;
    position: absolute;

}

.links-group li a[download]::after{
    content: '⤓';
}    


.links-group li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.2px;
    background: currentColor;
    /* transition: width 0.3s ease; */
}

.links-group li a:hover::before {
    width: 100%;
}





/* BANNER ANIMATION --------------------------------------------- */

.banner-animation{
    background-color: var(--blue);
    border-top: var(--border);
    width: 100vw;
    overflow: hidden;
    --duration: 30s;

    font-family: var(--font-title);
    font-size: var(--fs-title-medium);
    text-align: center;
    text-transform: uppercase;
    /* padding-bottom: 2rem; */
}


.page-content .banner-animation{
     position: fixed;
    bottom: var(--footer-h);
    left: 0;
}



@keyframes deplacementbis {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}


.banner-animation ul{

    display: flex;
    width: max-content;
    list-style: none;
    padding-block: 0.25rem;
    /* min-height: 3rem;   */

    flex-wrap: nowrap;
    animation-name: deplacementbis;
    animation-duration: var(--duration);
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;

    cursor: pointer;


}


.banner-animation ul li{
    flex-shrink: 0;
    display: flex;
    flex-wrap: nowrap;
}

.banner-animation li::after{
    content: " — ";
    padding-left: 0.5ch;
    padding-right: 0.5ch;
}

.banner-animation li a{
      text-decoration: none;
}




