* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #3674d0;
    margin: 0px;
    position: absolute;
    top: -20px;
    height: 2000px;
    width: 100%;
    color: white;
    font-family: 'chewy', sans-serif;
    font-size: 1.5vw;
}

@font-face {
    font-family: Shion-Regular; src: url('Shion-Regular.otf'); 
} 

a {
    color: white;
}

.sepa_cinq {
    height: 5vh;
}

.center {
    text-align: center;
    font-family: 'Chewy', sans-serif;
}

nav {
    position: fixed;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 25px;
    box-shadow: inset 0px -0px 0px;
}

nav.scrolled {
    background: rgba(0, 60, 149, 0.73);
    transition: 0.3s;
}

.hamburger {
    display: none;
    top: 6px;
    left: -7px;
}

.navlinks-container a {
    text-transform: uppercase;
    margin: 22px 33px 3px 33px;
    font-size: 23px;
    font-weight: 500;
    text-decoration: none;
    color: grey;
    font-family: 'Chewy', sans-serif;;
    display: inline-block;
    position: relative;
}

nav.scrolled a {
    color: white;
}

.navlinks-container a:hover {
    color: white;
}

.navlinks-container a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: rgb(255, 255, 255);
    transition: transform 0.3s ease-out;
}

.navlinks-container a:hover::after {
    transform: scaleX(1);
}

.othersNav a {
    color: white;
}

.nav-reseaux {
	position: absolute;
	right: 0;
	margin-right: 72px;
	margin-top: 12px;
    display: flex;
	width: 75px;
	justify-content: space-between;
	color: white;
}

.autres {
    background: rgba(54, 116, 208, 0.75);
}

.autres .navlinks-container a{
    color: white;
}

@media (max-width: 950px) {
    nav {
        padding: 25px 20px;
        position: absolute;
        width: 4%;
        background: #3674d0;
        border-bottom-right-radius: 50px;
    }

    .hamburger {
        width: 20px;
        height: 20px;
        cursor: pointer;
        border: none;
        display: flex;
        background: #3674d0;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: white;
        position: absolute;
        pointer-events: none;
        transition: opacity 0.3s 0.15s ease-out;
    }
    
    .hamburger span:nth-child(1),
    .hamburger span:nth-child(3) {
        transition: transform 0.3s ease-out;
    }

    .hamburger span:nth-child(1) {
        transform: translateY(7px);
    }

    .hamburger span:nth-child(3) {
        transform: translateY(-7px);
    }

    .hamburger.open span:nth-child(1) {
        transform: translate(0) rotate(135deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transition: opacity 0s ease-out;
    }
    .hamburger.open span:nth-child(3) {
        transform: translate(0) rotate(-135deg);
    }


    .navlinks-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: absolute;
        top: 28%;
        left: -43%;
        height: 100vh;
        padding: 55px 28px 15px 50px;
        border-right: 1px solid #c5c5c6;
        background: rgba(54, 116, 208, 1);
        transform: translate(-100%);
        transition: transform 0.3s ease-out;
        z-index: 0;
    }

    .navlinks-container:nth-child(5) {
        width: 20px;
    }

    .open {
        transform: translate(0%);
    }
    .navlinks-container a {
        font-size: 20px;
        margin: 10px 0;
    }
}

@media (max-width: 500px) {
    nav {
        padding: 25px 20px;
        position: absolute;
        width: 8%;
        background: #3674d0;
        border-bottom-right-radius: 50px;
    }

    .navlinks-container a {
        font-size: 17px;
    }
}

.svg {
    position: absolute;
    right: 20px;
    top: 10px;
    fill: white;
    z-index: 2;
    display: flex;
    justify-content: space-around;
    width: 5%;
    max-width: 10%;
    min-width: 5%;
}

.imgprincipale {
    width: 100%;
    top: 0%;
    z-index: -2;
    position: relative;
} 

.imgPrincipaleForPhone {
    display: none;
}

.imgprincipale_2 {
    width: 100%;
    z-index: -2;
    position: relative;
    top: 102px;
}

@media (max-width: 950px) {
    .imgprincipale_2 {
        top: 20px;
    }
}


.iframeYT {
    width: 560px;
    height: 315px;
}

.flexteaser {
    margin: 140px 20px 130px 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.flexteaser h4 {
    font-size: 50px;
    margin: 5px 0 40px 0;
}

.flexteaser img {
    width: 500px;
}

.flexteaser button {
    margin: 26px 0 10px 0;
    padding: 18px 50px;
    color: #3674d0;
    background-color: white;
    border: 1px solid white;
    border-radius: 3px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 18px;
    cursor: pointer;
}

.flexteaser button:hover {
    color: white;
    background-color: #3674d0;
}








h1 {
    color: white;
    position: sticky;
    top: 582px;
    left: 132px;
    font-family: 'chewy', sans-serif;
    font-size: 12vw;
    font-weight: normal;
    z-index: 0;
}

.sec {
    color: white;
    /*position: sticky;*/
    top: 150px;
    font-family: 'Shion-Regular', sans-serif;
    font-size: 4vw;
    margin: 0;
}

.test h3 {
    color: white;
    position: sticky;
    top: 136px;
    font-family: 'Shion-Regular', sans-serif;
    font-size: 2vw;
    margin: -19px 0 60px 55px;
    text-align: center;
    font-weight: normal;
}

.test {
    position: absolute;
    width: auto;
    height: 42%;
    left: 13%;
}

.test2 {
    position: absolute;
    top: 35%;
    height: 720px;
    left: 20%;
    font-weight: normal;
}

.test2 a {
    text-decoration: none;
}

.since {
    display: none;
    position: none;
    top: 40%;
    height: 350px;
    left: 20%;
    font-weight: normal;
}

.since p {
    color: white;
    position: sticky;
    top: 200px;
    font-family: 'Chewy', sans-serif;
    font-size: 4vw;
    margin: 0;
}

.since p + p {
    color: white;
    position: sticky;
    top: 186px;
    font-family: 'Shion-Regular', sans-serif;
    font-size: 2vw;
    margin: -19px 0 60px 55px;
    text-align: center;
}

/*
main {
    margin-top: 1200px;
}
*/

.btnDates {
    display: none;
}

.contain_index_1 {
    display: flex;
    flex-direction: row;
    height: auto;
    margin: 100px 50px 0 50px;
    margin-top: 100px;
}

.index_1 {
    width: 58%;
}

.index_1_sepa {
    width: 50px;
}

.index_1_2 {
    width: 54%;
    margin: 160px 0px 0 0px;
    text-align: left;
}

.special1 {
    font-size: 32px;
    margin-top: 0;
    align-self: center;
    font-family: 'Libre Franklin', sans-serif;
    text-align: center; /*
    background: rgba(0, 60, 149, 0.73);
    border-radius: 25px;*/
}

.special1 p {
    line-height: 1.4;
}

.imgpublic {
    width: 100%;
}

main p {
    line-height: 1.2;
}

.sepa {
    height: 0vh;
}

.sepa_album {
    position: relative;
    bottom: -50px;
}

.sepa_dix {
    height: 10vh;
}


.contain_index_2 {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    height: 500px;
    margin: 60px 50px 0 50px;
}

.index_2 {
    width: 46%;
}

.index_2_sepa {
    width: 50px;
}

.index_2_2 {
    width: 54%;
    text-align: center;
}


.photoPublicPourPhone {
    display: none;
}

.nvSpectacle {
    height: 200px;
    width: 100%;
    margin: 60px 0px 160px 0px;
}


.organique {
    position: relative;
    top: 39%;
    text-align: left;
    font-size: 3vw;
    z-index: 0;
}

.organique p::first-line {
    font-size: 1.5vw;
    right: 10px;
}

.organique p{
    line-height: 1;
    position: relative;
    width: 500px;
    right: -120px;
}

.orga {
    position: relative;
    top: -18%;
    font-size: 34px;
    right: 0%;
    z-index: 0;
}

.joyeux {
    color: #d90505;
    position: absolute;
    right: 57%;

}

.frais {
    color: #0926a5bf;
    position: absolute;
    left: 47%;
}

.débordant {
    color: #2ccc00;
    position: absolute;
    left: 60%;
    top: -10px;
}

.décalé {
    color: #ffea00;
    position: absolute;
    left: 80%;
    top: 25px;
}

.index_2_2_p {
    position: relative;
    top: -20%;
    z-index: -1;
    font-family: 'Libre Franklin', sans-serif;
}

.index_2_2 p {
    line-height: 1.5;
    font-family: 'Libre Franklin', sans-serif;
}


.contain_index_3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    margin: 60px 50px 0 50px;
}

.index_3 {
    width: 46%;
}

.index_3_sepa {
    width: 50px;
}

.index_3_2 {
    width: 54%;
    text-align: center;
}

.index_3_2 p {   
    font-family: 'Libre Franklin', sans-serif;
    line-height: 1.4;
}

.contain_index_4 h5 {
    font-weight: normal;
    text-align: center;
    font-size: 20px;
    margin: 0 0 10px 0;
}

.contain_index_4 p {
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    margin: 0 0 20px 0;
    font-family: 'Libre Franklin', sans-serif;
}

.contain_index{
    height: auto;
    margin: 1.5vw 5% 0 5%;
}

.contain_index_4 {
    margin: 150px 0 40px 0;
    padding-bottom: 200px;
}

.lien_skill {
    color: white;
    transition: 0.2s;
}

.lien_skill:hover {
    color: rgb(28, 97, 194);
}




/* couleur d'avant :   background-color: #82b3d0;  */


footer {
    opacity: 0;
    position: fixed;
    height: auto;
    width: 25%;
    left: 37%;
    bottom: 0;
    margin: 125px 0 20px 0;
    padding: 25px 0 25px 0;
    background-color: rgba(0, 60, 149);
    text-align: center;
    font-family: 'chewy', sans-serif;
    color: white;
    font-size: 2vw;
    border-radius: 25px;
}

footer.scrolled {
    opacity: 100;
    transition: 0.3s;
}


footer p {
    font-weight: normal;
}

footer a {
    text-decoration: none;
}

.footer_titre {
    font-size: 30px;
    margin-top: 10px;
}

.contact {
    font-size: 1.5vw;
}

.numTel {
    display: block;
}

.DeuxnumTel {
    display: none;
}

.autre {
    display: flex;
    justify-content: space-around;
    font-size: 20px;
    flex-wrap: wrap;
}

.fin {
    border-top: 1px solid grey;
    margin: 20px 320px 0 320px;
    font-size: 1vw;
    text-decoration: none;
    line-height: 2;
}

.fin a {
    text-decoration: none;
}





.prochainement {
    text-align: center;
    position: relative;
    top: 140px;
    z-index: -1;
}

.prochainement h4 {
    font-family: "Chewy", sans-serif;
    font-size: 4vw;
    font-weight: 500;
    font-style: normal;
}

.sepaSpecialDates {
    height: 180px;
}

.lot2PhotoDatesFlex {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 1500px;
}

h4 {
    font-size: 4vw;
    font-weight: normal;
}

.marqueurDate {
    font-size: 4vw;
}

.index_2_2_specialdates {
    height: auto;
    align-self: flex-start;
    margin-top: 50px;
    font-family: "Barlow", sans-serif;
    font-size: 1.7vw;
    text-align: left;
    font-weight: 200;
    font-style: normal;
}

.datespassees {
    font-family: "Barlow", sans-serif;
    font-size: 1.7vw;
    text-align: left;
    font-weight: 200;
    font-style: normal;
}

.datespassees :nth-child(2) {
    font-size: 15px;
}

.datespassees :nth-child(1) {
    font-size: 25px;
}

@media (max-width: 950px) {

    .prochainement {
        top: 100px;
    }

    .prochainement h4 {
        font-size: 10vw;
    }

    .sepaSpecialDates {
        height: 150px;
    }

    .contain_index_2 {
        flex-direction: column-reverse;
    }

    .contain_index_2 .imgpublic {
        display: flex;
    }

    .index_2 {
        width: 75%;
        margin-top: 50px;
    }

    .index_2_2 {
        width: 100%;
    }

    .index_2_2_specialdates {
        margin-top: 0;
        font-size: 3vw;
    }

    .marqueurDate {
        font-size: 9vw;
    }

    .lot2PhotoDatesFlex {
        display: none;
    }

    .datespassees {
        font-size: 2.5vw;
    }
}




/*PAGE 3*/

.test p {
    color: white;
    position: relative;
    top: 126px;
    left: 0;
    font-family: 'Chewy', sans-serif;
    font-size: 4vw;
    font-weight: normal;
    z-index: 0;
}

.test :nth-child(2) {
    color: white;
    position: relative;
    top: 500px;
    left: -27px;
    font-family: 'Chewy', sans-serif;
    font-size: 8vw;
    font-weight: normal;
    z-index: 0;
    animation-duration: 3s;
    animation-name: fadeIn;
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
 } 

 .test :nth-child(3) {
    color: white;
    position: absolute;
    font-family: 'Chewy', sans-serif;
    font-size: 2vw;
    top: 114%;
    left: 709px;
}

.p3_par1 {
    text-align: center;
    margin-top: 130px;
}

.p3_partie2 {
    margin: 20px 5% 0 5%;
    font-size: 24px;
    font-family: 'Libre Franklin', sans-serif;
}

.p3_partie2 p {
    line-height: 1.5;
}


.p3_partie2 .center {
    font-size: 40px;
    margin: 0 0 15px 0;
}

.flex_p1_mouv {
    flex-direction: row-reverse;
    margin-top: 5vw;
}

.flex_p1_mouv .index_3_2 p {
    font-size: 22px;
}

.flex_p1_mouv .index_3_2 p::first-line {
    font-size: 28px;
}

.p3_partie3 .center {
    font-size: 30px;
}

.flex {
    display: flex;
    margin: 0 5% 0 5%;
}

.flex div img {
    width: 100%;
    height: auto;
}

.item {
    flex-basis: auto;
}

.image {
    flex-grow: 1;
    flex-basis: 74%;
}

.two {
    flex-grow: 0;
    flex-basis: 5%;
}

.text {
    flex-grow: 1;
    flex-shrink: 2;
}

.px{
    font-size: 33px;
    margin: 0 0 14px 0;
    font-family: 'Chewy', sans-serif;
}

.cercles {
    flex-direction: row-reverse;
    margin-top: 70px;
}

.cercles .image {
    flex-basis: 54%;

}

.cercles .two {
    flex-grow: 0;
    flex-basis: 5%;
}

.cercles .text {
    flex-grow: 0;
}

.cercles p:nth-child(2) {
    font-family: 'Libre Franklin', sans-serif;
    line-height: 1.5;
}

.respirales {
    margin: 50px 5% 0 5%;
}

.respirales .image {
    flex-basis: 50%;
    align-self: flex-end;
}

.fleximg{
    display: flex;
    justify-content: space-between;
}

.fleximg img {
    width: 32%;
    height: 100%;
    margin: 10px 0 0 0;
}

.deux {
    align-self: flex-end;
}

.finaltxt {
    text-align: center;
    font-size: 30px;
    margin: 6% 6% 6% 6%;
}

.finaltxt p::first-line {
    font-size: 27px;
}

.casepasse {
    margin: 100px 5% 70px 5%;
}

.casepasse p:nth-child(1){
    margin: 0 0 12px 0;
}

.casepasse p:nth-child(2){
    font-family: 'Libre Franklin', sans-serif;
    line-height: 1.45;
}

.p3_par1 p {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 23px;
    line-height: 1.4;
}

.p3_par1 p:nth-child(1){
    font-size: 1.5vw;
}

.p3_par1 a {
    text-decoration: none;
}

.p3_par1 a:hover {
    color: #d8dee9;
}


/* PAGE 4*/ 

.bio {
    font-size: 5vw;
    position: relative;
    top: 80%;
    left: -3%;
}

.partie1_bio {
    margin: 10% 5% 5% 5%;
    text-align: center;
    font-size: 30px;
}

.partie1_bio p{
    line-height: 1.5;
}

.special2 {
    height: auto;
}

.iframe {
    margin: 10% 0% 0 0%;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
}

.iframe img {
    width: 360px;
}

.ep {
    width: 20%;
    margin: 0 0 0 40%;
}

.biographie {
    color: white;
    left: 500px;
    width: fit-content;
}

.sliderbio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    height: auto;
    margin: 20px 0 0px 0;
}

.sliderbio p {
    font-family: 'Libre Franklin', sans-serif;
    line-height: 1.5;
}

.slidbio img {
    width: 28%;
    height: 100%;
    background-position: center top;
    transition: all 2s ease-in-out;
}

.slidbio img:hover {
    width: 14%;
}

.containerasliderbio {
    max-width: 80%;
    margin: 0 auto;
    padding: 50px;
}

.sliderbio img {
    height: 100%;
    margin: 0 0 0 20px;
}

.sliderbio p {
    font-size: 1.2vw;
}

.sliderbio h3 {
    font-size: 2vw;
    position: relative;
    margin: 0;
}

.slide {
    max-width: 100%;
    display: none;
}

.flexaslide {
    display: flex;
    height: 570px;
}


div.active {
    display: block;
    animation: fade 1.2s;
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cont-btn {
    width: 100%;
    height: auto;
    border: 1px solid rgb(255, 255, 255);
    box-shadow: 10px -10px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
}

.btn-nav {
    font-size: 50px;
    margin: 0 15px;
    cursor: pointer;
}



/*PAGE 5*/

.bodyDatesFlex {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.footerDates {
    flex-shrink: 0;
    margin: 0;
}

.titre_pro h2 {
        top: 150px;
        font-family: 'Chewy', sans-serif;
        font-size: 5vw;
        font-weight: normal;
        z-index: 0;
        margin: 0;
        position: relative;
}

.prop {
    color: #1e5ebe;
    left: 180px;
}

.flexpro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 180px 100px 0px 100px;
    font-family: 'Libre Franklin', sans-serif;
}

.flexpro .txt p {
    font-size: 1.8vw;
    line-height: 1.5;
    margin: 0;
}

.txtpetit {
    margin: 22px 0px 6px 0px;
}

.txtpetit p {
    font-size: 20px;
    text-align: center;
}

.flexpro .txt p::first-line {
    font-size: 3vw;
    margin: 0;
}

.pro {
    margin: 30px 0 0 0;
    padding: 26px 40px;
    font-size: 20px;
    background-color: white;
    border-radius: 0px;
    border: 1px solid white;
    color: #3674d0;
    font-family: 'Libre Franklin', sans-serif;
    transition-duration: 0.2s;
}

.pro:hover {
    color: white;
    background-color: #3674d0;
    border: 1px solid white;
}


.ep_2021 {
    font-family: 'Shion-Regular', sans-serif;
}



@media (max-width: 600px) {
    h1 {
        position: static;
        margin: 21% 8px 0 8px;
        font-size: 16vw;
        text-align: center;
    }

    .test {
        width: inherit;
        left: 0%;
        height: 0%;
    }

    .test2 {
        display: none;
    }

    .test h3 {
        display: none;
    }

    .imgprincipale {
        display: none;
    }

    .imgPrincipaleForPhone {
        display: block;
        width: 135%;
        top: 20px;
        left: -50px;
    }

    .flexteaser h4 {
        text-align: center;
        font-size: 30px;
    }

    .iframeYT {
        width: 300px;
        height: 168px;
    }

    .imgpublic {
        display: none;
    }

    .special1 {
        font-size: 25px;
        position: relative;
        left: -25%;
    }

    .YT {
        display: none;
    }

    .flexteaser_img {
        width: 80%;
    }

    .flexteaser img {
        width: 100%;
    }

    .index_2_2 {
        width: 100%;
    }

    .index_2_2 p {
        font-size: 20px;
    }

    .photoPublicPourPhone {
        display: block;
    }

    .photoPublicPourPhone img {
        width: 80%;
        left: 10%;
        position: relative;
        margin: 80px 0;
    }

    .nvSpectacle {
        display: none;
    }

    .index_3_2 {
        width: 100%;
    }

    .index_3_2 p {
        font-size: 20px;
    }

    .contain_index_4 p {
        font-size: 16px;
        margin: 15px 12px 0 12px;
    }

    footer {
        width: 60%;
        left: 13%;
        padding: 0 0 25px 0;
        /*
        margin: 60px 0 0 0;
        font-family: 'Libre Franklin', sans-serif;
        */
    }

    .footer_titre {
        font-family: 'Shion-Regular', sans-serif;
    }

    footer p {
        margin: 40px 20px 0 20px;
    }
    
    .contact {
        line-height: 1.5;
        font-size: 5vw;
    }

    .numTel {
        display: none;
    }

    .DeuxnumTel {
        display: block;
    }

    .autre {
        display: none;
    }

    .item {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    .btnDates {
        display: flex;    
        margin: 26px 0 10px 0;
            padding: 18px 50px;
            color: #3674d0;
            background-color: white;
            border: 1px solid white;
            border-radius: 3px;
            font-family: 'Libre Franklin', sans-serif;
            font-size: 18px;
            cursor: pointer;
        }
        
        .btnDates:hover {
            color: white;
            background-color: #3674d0;
        }
    }






@media (max-width: 600px) {
    .contain_index {
        display: flex;
        flex-wrap: wrap;
    }

    .contain_index_1_page1 {
        display: none;
    }

    .contain_index_4 {
        display: block;
    }

    .special1 {
        left: 25%;
    }
}
