main.no-pt {
    padding-top: 0 !important;
}

html,
body {
    height: 100% !important;

}

.charte-graphique-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 150px;
    padding-right: 20px;
    width: 100%;
    height: 100%;
}

.titre.active {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 100%;
}

.titre {
    display: none;
}

.line {
    background-color: #FFFFFF;
    width: 40%;
    height: 4px;
    border-radius: 1px;
    box-shadow: 5px 5px 7px black;
}

.line.top {
    transform: translateX(-40px);
    animation: linetop 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) forwards;
    opacity: 0;
    filter: blur(10px);
}

@keyframes linetop {
    to {
        transform: translateX(25px);
        filter: blur(0);
        opacity: 1;
    }
}

.line.bot {
    transform: translateX(40px);
    animation: linebot 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) forwards;
    opacity: 0;
    filter: blur(10px);
}

@keyframes linebot {
    to {
        transform: translateX(-25px);
        filter: blur(0);
        opacity: 1;
    }
}

#yanis {
    color: white;
    animation: yanisanime 1s cubic-bezier(0.25, 0.5, 0.5, 1) 0.7s forwards;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
}

@keyframes yanisanime {

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0px);

    }
}

#singer {
    color: #E0752D;
    animation-delay: 1s;
    animation: singeranime 1s cubic-bezier(0.25, 0.5, 0.5, 1) 0.7s forwards;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-30px);
}

@keyframes singeranime {

    to {
        opacity: 1;
        transform: translateY(0px);
        filter: blur(0);

    }
}


/**********************            Logo                ***********************************/



.logo-container.active {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.logo-container {
    display: none;
}

.logo-container div {
    width: 100%;
}

.logo-container h2 {
    width: 100%;
    text-align: left;
}

.logo-container .logo-charte {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    animation: logos 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) forwards;
    transform: translateX(-80px);
    opacity: 0;
}

.logo-container .logo-charte img {
    width: 100%;
    height: auto;
}

@keyframes logos {
    to {
        transform: translateX(0);
        filter: blur(0);
        opacity: 1;
    }
}


.minia-charte {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    animation: logos 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) forwards;
    transform: translateX(80px);
    opacity: 0;
    filter: blur(10px);
}

@keyframes logos {
    to {
        transform: translateX(0);
        filter: blur(0);
        opacity: 1;
    }
}

.minia-charte img {
    height: 90%;
}


@media (max-width:950px) {

    html,
    body {
        height: auto !important;
        min-height: 100vh;
    }

    main {
        min-height: 100vh;
    }


    .charte-graphique-container {
        margin-bottom: 0;
    }

    .logo-container.active {
        flex-direction: column;
    }

    .logo-container .logo-charte img {
        width: 70%;
    }

    .minia-charte img {
        height: 300px;
    }


    .identite-container .couleurs {
        flex-direction: row;
    }

    .slider-progress {
        right: -128px !important;
    }

}


/**********************            Identité                ***********************************/

.identite-container {
    display: none;
}

.identite-container.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100%;

}


.identite-container .couleurs-container {

    animation: couleurs 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) forwards;
    transform: translateX(-80px);
    opacity: 0;
    filter: blur(10px);
}

@keyframes couleurs {
    to {
        transform: none;
        opacity: 1;
        filter: none;
    }
}

.identite-container .typo-container {

    animation: typo 1.5s cubic-bezier(0.25, 0.5, 0.5, 1) forwards;
    transform: translateX(80px);
    opacity: 0;
    filter: blur(10px);
}

@keyframes typo {
    to {
        transform: none;
        opacity: 1;
        filter: none;
    }
}

.identite-container .couleurs-container h2,
.identite-container .typo-container h2 {
    margin-bottom: 30px;
}

.identite-container .couleurs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.identite-container .couleurs div {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    text-align: center;
    transition: all .3s cubic-bezier(0.9, 0, 0.3, 1);
}

.identite-container .couleurs div:hover {
    transform: translateY(-20px);
    box-shadow: black 0px 3px 10px;
    transition: all .3s cubic-bezier(0.9, 0, 0.3, 1);
}

.identite-container .couleurs .noir {
    background-color: black;
}

.identite-container .couleurs .violet-sombre {
    background-color: #291C59;
}

.identite-container .couleurs .violet {
    background-color: #613ABF;
}

.identite-container .couleurs .orange {
    background-color: #E0752D;
}

.identite-container .couleurs .orange-clair {
    background-color: #EFA434;
}

.identite-container .couleurs .blanc {
    background-color: white;
}

.identite-container .couleurs .blanc p {
    color: black;
}

.identite-container .couleurs p {
    opacity: 0;
    transition: all .3s cubic-bezier(0.9, 0, 0.3, 1);
}

.identite-container .couleurs div:hover p {
    opacity: 1;
    transform: translateY(-10px);
    transition: all .3s cubic-bezier(0.9, 0, 0.3, 1);
    transition-delay: .3s;
}

.identite-container .typo {
    display: flex;
    justify-content: space-between;
    gap: 120px;
}


.identite-container .typo .typo1 {
    font-family: aw-conqueror-inline, sans-serif !important;
    font-weight: 400;
    font-style: normal;
}

.identite-container .typo p {
    font-size: 35px;
}

@media (max-width:1120px) {


    .titre {
        margin-top: 70px;
    }

    h1 {
        font-size: 70px;
        height: 80px;
    }

    .line {
        width: 60%;
    }


    .identite-container {
        flex-direction: row;
    }

    .identite-container>div {
        padding: 15px;
    }

    .identite-container .typo-container {
        height: 100%;
    }

    .identite-container .typo {
        flex-direction: column;
        gap: 50px;
    }


    .identite-container .couleurs div {
        width: 55px;
        height: 55px;
    }

    .identite-container .couleurs div:hover {
        transform: translateY(0px);
        box-shadow: black 0px 3px 10px;
        transition: all .3s cubic-bezier(0.9, 0, 0.3, 1);
    }

    .couleurs div p {
        font-size: 12px !important;
    }

}



/**********************            slider                ***********************************/

.slider-progress {
    position: fixed;
    right: -115px;
    top: 50%;
    transform: translateY(-50%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Barre */
#sliderRange {
    -webkit-appearance: none;
    appearance: none;
    width: 300px;
    /* longueur avant rotation */
    height: 10px;
    /* épaisseur */
    transform: rotate(90deg);
    background-color: #ffffff28;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all .15s cubic-bezier(0.9, 0, 0.3, 1);
}

#sliderRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 25px;
    background: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 0 5px rgb(0, 0, 0);
    transform: rotate(90deg);
    transition: all .3s cubic-bezier(0.9, 0, 0.3, 1);
}

#sliderRange.thumb-active::-webkit-slider-thumb {
    background: #ffffff0d;
    backdrop-filter: blur(50px);
    width: 20px;
    height: 35px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgb(0, 0, 0), inset 0 0 8px rgb(255, 255, 255);
}

#sliderRange:focus {
    outline: none;
}

/* Points */
.slider-marks {
    position: absolute;
    top: 0;
    right: 140px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    justify-content: space-between;
    pointer-events: none;
    transform: translateX(-50%);
}

.slider-mark {
    width: 10px;
    height: 2px;
    background-color: #ffffff46;
}