@import url("https://use.typekit.net/uar5anb.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d7e4f4;
    --secondary: #505050;
    --tertiary: #ececec;
}

::-webkit-scrollbar {
    width: 1.2rem;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    margin-block-start: 2.5rem;
    border-radius: 100vw;
}

::-webkit-scrollbar-thumb {
    background-color: #cecece;
    border-radius: 100vw;
    border: rgb(250, 250, 250) solid 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #808080;
}

h1 {
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.1rem;
    line-height: 1.5em;
    color: var(--secondary);
    text-align: right;
    margin-bottom: 2rem;
}

h2 {
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.2rem;
    color: var(--secondary);
    line-height: 1.3em;
    margin-bottom: 2rem;
}

h3 {
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    color: var(--secondary);
    font-weight: 700;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5em;
    margin-bottom: 2rem;
}

p {
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5em;
}

body {
    background-color: #F5F5F5;
    position: relative;
}

.container {
    position: relative;
    padding: 2rem 6rem;
    top: calc(2.5rem + 0rem);
    padding-bottom: 0;
    width: 100%;
    max-width: 2560px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px){
    .container {
        position: relative;
        padding: 2rem 2rem;
    }
}

.menu-hamburger {
    display: none;
    width: 3rem;
    position: fixed;
    top: 1.5em;
    transform: translateY(-50%);
    left: calc(100% - 3em);
    cursor: pointer;
}

.nav-block.mobile-menu {
    margin-left: 0vw;
    transition: ease-out 0.2s;
}

nav {
    position: fixed;
    width: 100%;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 3px 60px -1.2px inset, rgba(0, 0, 0, 0.3) 0px 8px 3.6px -18px inset, rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    top: 0%;
    height: 3rem;
    max-width: 2560px;
    left: 50%;
    transform: translateX(-50%);
}

nav ul {
    display: flex;
    justify-content: center;
}

nav li {
    margin: .75rem 2rem .5rem 2rem;
    list-style: none;
}

nav a {
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

#AccesIndex {
    position: absolute;
    left: 2rem;
}

#AccesIndex img {
    position: absolute;
    left: -2px;
    transform: translateX(-100%);
    width: 1rem;
    height: auto;
}

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

    .menu-hamburger {
        display: block;
    }

    nav {
        position: fixed;
        height: 3rem;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.70);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 100;
    }

    .nav-block {
        position: absolute;
        margin-top: 3rem;
        width: 100%;
        height: calc(100vh - 3rem);
        margin-left: -100vw;
        background-color: rgba(0, 0, 0, 0.90);
        transition: ease-out 0.3s;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    nav ul {
        display: flex;
        flex-direction: column;
        top: 0vh;
        transform: translateY(-0%);
    }

    nav li {
        margin: 1.5em .5em 1.5em .5em;
    }
}

a {
    text-decoration: underline;
    color: black;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5em;
}

a:hover {
    text-decoration: none;
}

strong{
    color: var(--secondary);
}

.section {
    margin: 10rem 0;
}

.section:nth-child(2) {
    margin: 0 0 10rem 0;
}

footer {
    background-color: var(--tertiary);
    margin: 0 -4rem;
    border-start-start-radius: 24px;
    border-start-end-radius: 24px;
    margin-top: 2rem;
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

@media screen and (max-width: 768px){
    footer {
        background-color: var(--tertiary);
        margin: 0 -1rem;
        border-start-start-radius: 24px;
        border-start-end-radius: 24px;
        margin-top: 2rem;
        margin-bottom: -2rem;
        padding: 2rem;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
}

.iconLogo {
    margin: 0 auto;
    height: 3rem;
    width: 15rem;
    background-color: #505050;
    margin-bottom: 1rem;
}

.link {
    margin-bottom: 1rem;
}

.link a {
    margin: 0 1rem;
    font-style: italic;
}

.linkRS {
    display: flex;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.unRS {
    margin: 0 1rem;
    width: 4rem;
    height: 4rem;
    border: var(--secondary) 2px solid;
    border-radius: 50%;
    padding: .3rem;
}

.bloc {
    position: relative;
    background-color: #f4f4f4;
    border-radius: 24px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 1.5rem;
    height: 25rem;
    margin: 0 1rem 1rem 0;
    display: flex;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .bloc {
        max-width: 100%;
        margin: 1rem;
    }
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bloc:nth-last-child(1) {
    margin: 0 0rem 1rem 0;
}

.bloc:first-child {
    margin: 0 1rem 1rem 0;
}

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

    .bloc:nth-last-child(1) {
        margin: 1rem;
    }

    .bloc:first-child {
        margin: 1rem;
    }
}

.bloc h3 {
    margin-bottom: 3rem;
}

.blocUnique {
    padding-top: 7rem;
    height: 17rem;
    width: 15rem;
}

.blocUnique h3 {
    margin-bottom: 1rem;
}

.blocDeux {
    height: 20rem;
    width: 17rem;
}

.blocDeux h3 {
    margin-bottom: 2rem;
    text-align: right;
}

.bottomBloc {
    position: absolute;
    width: calc(100% - 1.4rem);
    top: calc(100% - .7rem);
    left: 50%;
    transform: translate(-50%, -100%);
}

.bottomBloc img {
    margin-top: .4rem;
    margin-bottom: -0.8rem;
    height: 2rem;
}

.blocDeux button {
    height: 2.5rem;
    width: calc(100% - 0rem);
    border-radius: 12px;
    border: 0;
    background-color: var(--primary);
    cursor: pointer;
    transition: .3s;
    z-index: 5;
}

.buttonDeux button{
    background-color: #cecece;
}

.blocDemi {
    height: 18rem;
    width: calc(50% - 2rem);
    z-index: -2;
}

.blocDemi button {
    position: absolute;
    height: 2.5rem;
    top: calc(100% - 1rem);
    left: calc(100% - 1rem);
    transform: translate(-100%, -100%);
    width: 10rem;
    border-radius: 12px;
    border: 0;
    background-color: var(--primary);
    cursor: pointer;
    transition: .3s;
}

.blocDemi .time{
    position: absolute;
    top: calc(100% - .5rem);
    left: calc(0% + 1rem);
    transform: translate(-0%, -100%);
    transition: .3s;
    color: #cecece;
    text-align: left;
}

.blocDemi .time p:nth-child(1){
    font-size: .8rem;
}

.teasEvent .theName{
    font-size: 1rem;
}

.teasEvent .theDate{
    font-size: 1.9rem;
    font-weight: 700;
}
.visuTeasEvent {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    width: 20rem;
    height: 8rem;
    margin-top: -1.5rem;
    background-color: var(--tertiary);
    z-index: -1;
}

#countdownFestivalUn{
    display: flex;
}

#countdownFestivalUn p{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -2px;
}

#countdown{
    display: flex;
}

#countdown p{
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -2px;
}

.buttonNav:hover{
    text-decoration: none;
}

.buttonNav button{
    position: relative;
    padding: .3rem 1.5rem;
    top: -0.3rem;
    border-radius: 12px;
    border: 1px solid #fff;
    background-color: var(--tertiary);
    box-shadow: #cecece 0px 0px 5px, inset #fff 0px 0px 0px;
    cursor: pointer;
    color: var(--secondary);
    transition: .2s;
}

.buttonNav button:hover{
    box-shadow: #505050 0px 0px 5px, inset #fff 0px 0px 0px;
}

.buttonNav button p{
    font-style: italic;
    font-size: .9rem;
    padding: .1rem;
}

.visuBloc {
    position: absolute;
    width: 3rem;
    top: .5rem;
    left: .5rem;
    z-index: 1;
}

.visuBloc img {
    width: 100%;
}

.visuBloc p {
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    font-size: 5rem;
    color: var(--secondary);
    font-weight: 700;
    opacity: .2;
    letter-spacing: -12px;
}

.blocUnique button {
    position: absolute;
    height: 2.5rem;
    top: calc(100% - .7rem);
    left: 50%;
    transform: translate(-50%, -100%);
    width: calc(100% - 1.4rem);
    border-radius: 12px;
    border: 0;
    background-color: var(--primary);
    cursor: pointer;
    transition: .3s;
    z-index: 5;
}

.bloc button:hover {
    border-radius: 6px;
}

.bloc a {
    text-decoration: none;
}

#solutionParents {
    width: 28rem;
}

#connexion {
    width: 100%;
}

.blocFull{
    width: 100%;
    height: auto;
}

.blocFull h3, .blocFull p{
    margin-bottom: 1em;
}

.blocFull button {
    position: relative;
    height: 2.5rem;
    left: 50%;
    transform: translate(-50%, -0%);
    width: calc(50% - 1.4rem);
    border-radius: 12px;
    border: 0;
    background-color: var(--primary);
    cursor: pointer;
    transition: .3s;
    z-index: 5;
}

.blocFull button p{
    margin-bottom: 0;
}

.blocFull button:hover {
    border-radius: 6px;
}

.blocAuto{
    width: fit-content;
    height: auto;
}

.blocAuto button {
    position: relative;
    height: 2.5rem;
    left: 50%;
    transform: translate(-50%, -0%);
    width: calc(100% - 1.4rem);
    border-radius: 12px;
    border: 0;
    background-color: var(--primary);
    cursor: pointer;
    transition: .3s;
    z-index: 5;
}

.blocAuto button:hover {
    border-radius: 6px;
}

@media screen and (max-width: 768px) {
    #solutionParents {
        width: 100%;
        height: auto;
    }

    #connexion {
        width: 100%;
        height: auto;
    }
}

.respecterPhotos {
    text-align: center;
    margin-bottom: 2rem;
}

#connexion p {
    margin-bottom: 3rem;
}

.flexbloc {
    display: flex;
    margin-bottom: 2rem;
    justify-content: center;
}

.flexwrap{
    flex-wrap: wrap;
}

.gold {
    box-shadow: inset rgba(100, 100, 111, 0.5) 0px 7px 15px 0px;

}

.flexline {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: left;
}

.flexline h3{
    margin-bottom: 1rem;
}

.flexline div:nth-child(2) {
    width: calc(50% - 2rem);
    margin: 0 2rem;
}

@media screen and (max-width: 768px) {
    .flexbloc {
        display: flex;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.avanceTemps {
    display: flex;
    justify-content: space-between;
    margin-top: calc(1rem + 5rem);
    border-top: var(--primary) 2px solid;
    margin-bottom: 2rem;
}

.unTemps {
    position: relative;
    padding-top: 2rem;
    margin-right: 4rem;
    max-width: 17rem;
}

.unTemps:nth-last-child(1) {
    margin-right: 0rem;
}

.pointRepere {
    position: absolute;
    width: 1.5rem;
    top: 0%;
    left: 2.5rem;
    transform: translate(-50%, -50%);
}

.visuAvancer {
    position: absolute;
    width: 3rem;
    top: -3rem;
    left: 2.5rem;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .avanceTemps {
        display: flex;
        flex-direction: column;
        justify-content: left;
        margin-top: 0;
        border-top: none;
        border-left: var(--primary) 2px solid;
        margin-bottom: 2rem;
    }

    .unTemps {
        position: relative;
        padding-top: 0rem;
        margin-right: 0rem;
        margin-bottom: 4rem;
        padding-left: 5rem;
        max-width: 100%;
    }

    .unTemps:nth-last-child(1) {
        margin-right: 0rem;
        margin-bottom: 0rem;
    }

    .pointRepere {
        position: absolute;
        width: 1.5rem;
        top: 50%;
        left: 0%;
        transform: translate(-50%, -50%);
    }

    .visuAvancer {
        position: absolute;
        width: 3rem;
        top: 50%;
        left: 2.5rem;
        transform: translate(-50%, -50%);
    }

}

.lineSerpent{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.unSerpent {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 2rem;
}

.blocSerpent {
    padding: 2rem;
    width: 40rem;
    max-width: 100%;
}

.blocSerpentar {
    padding: 0rem;
    width: 15rem;
    margin: 1rem;
    max-width: 100%;
}

.visuEnvironement {
    position: sticky;
    top: 4rem;
}

.blocGros {
    height: 30rem;
    width: 25rem;
}

.visuEnvironement img {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .unSerpent {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        margin-bottom: 2rem;
    }

    .blocSerpent {
        padding: 0;
        width: 100%;
    }

    .blocSerpentar {
        text-align: center;
        margin: 1rem auto;
    }
    
    .visuEnvironement {
        position: sticky;
        top: 4rem;
    }
    
    .blocGros {
        height: 20rem;
        width: 100%;
    }

    .visuEnvironement .blocGros {
        margin: 1rem auto;
    }

}

.blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blobs video {
    position: absolute;
    width: 20rem;
    z-index: -200;
}

.blobs video:nth-child(1) {
    top: 10vh;
    left: 10vw;
    transform: translate(-50%, -50%);
}

.blobs video:nth-child(2) {
    top: 35vh;
    left: 90vw;
    transform: translate(-50%, -50%);
}

.blobs video:nth-child(3) {
    top: 95vh;
    left: 20vw;
    transform: translate(-50%, -50%);
}

.blobs video:nth-child(4) {
    top: 110vh;
    left: 10vw;
    transform: translate(-50%, -50%);
}

.blobs video:nth-child(5) {
    top: 180vh;
    left: 95vw;
    transform: translate(-50%, -50%);
}

input {
    margin-bottom: .5rem;
    text-align: center;
    border-radius: 12px;
    border: 0;
    background-color: var(--primary);
    margin-top: 0rem;
    font-family: "itc-avant-garde-gothic-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    color: var(--secondary);
}

input:hover {
    transition: .1s;
    opacity: .8;
}

input:checked {
    border: solid 1px var(--secondary);
    border: 1px var(--secondary) solid;
}

input[type="submit"] {
    cursor: pointer;
}

.bloc input {
    height: 3rem;
    width: 20rem;
}

.bloc input[type="submit"] {
    height: 3rem;
    width: 5rem;
}

.userEleves #idForm {
    position: relative;
    display: flex;
    width: 100%;
}

/*VosPhotos*/

#nophotos {
    position: absolute;
    display: block;
    opacity: 0;
    z-index: 20;
    height: 100%;
    width: 100%;
    border: solid 0em #bd8e4969;
}

#nophotos img {
    position: absolute;
    width: 100%;
    min-height: 100%;
}

.InsertImagesEleves {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.InsertImagesEleves img {
    height: 20rem;
    min-width: 15rem;
    border-radius: 24px;
    border: #f4f4f4 1rem solid;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-image: url('/img/noimg.jpg');
    background-size: cover, contain;
background-position: center, right bottom;
background-repeat: no-repeat, no-repeat;
}


.InsertImagesEleves img:nth-child(1) {
    height: 20rem;
    border-radius: 24px;
    border: 0;
    box-shadow: none;
}

.InsertImagesEleves img:nth-child(2) {
    position: relative;
}

.InsertImagesEleves img:nth-child(3) {
    position: relative;
}

.InsertImagesEleves img:nth-child(4) {
    filter: saturate(0%) contrast(1.1);
}

.pack {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
}

.nomdespack {
    position: relative;
    left: 2rem;
    width: auto;
    margin: 1rem;
    border: gold 2px solid;
    width: 20rem;
}

.nomdespack video {
    width: 10rem;
    position: absolute;
    top: .7rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.formulaireeleve {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;

}

.formueleve {
    position: relative;
    margin: 2rem;
}

.choixpack {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 3rem;
}

.lespack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
    width: 6rem;
    transition: .2s;
    margin-right: .5rem;
    margin-left: .5rem;
    border-radius: 10px;
    background-color: #d0f1dd00;
}

.lespack input[type="radio"] {
    position: absolute;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    border: solid 1.5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lesetapes {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.etape {
    position: relative;
    width: 20rem;
    margin: 2rem 1rem;
}

.first {
    position: absolute;
    font-size: 7rem;
    font-weight: 700;
    z-index: 10;
    top: -3rem;
    transform: translateX(-50%);
    color: var(--secondary);
}

.etape img {
    position: relative;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 24px;
}

.linkpaiement {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.linkpack {
    width: 20rem;
    margin: 2rem;
}


.pinterest {
    width: calc(100vw - 4rem);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.pinterest .gallery {
    column-gap: 1rem;
    margin: 0 auto;
    column-count: 4;
    margin-bottom: 2rem;
}

.achatImage .gallery {
    column-gap: 1rem;
    margin: 0 auto;
    column-count: 5;
    margin-bottom: 2rem;
}

.achatImage label {
    cursor: pointer;
}

.pinterest .image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.achatImage .image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}

.plusImage{
    display: flex;
    justify-content: space-around;
}

.pinterest img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #fff;
}

.achatImage img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #fff;
}

@media screen and (max-width: 768px) {
    .pinterest {
        width: calc(100vw - 2rem);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .pinterest .gallery {
        column-gap: 1rem;
        margin: 0 auto;
        column-count: 2;
    }
}

.formImage input {
    margin: .5rem;
}

.formImage input[type="radio"] {
    height: 3rem;
    width: 20rem;
}

.inputFormat{
    position: relative;
    width: calc(50% - 2rem);
    height: 3rem;
    margin: 0 1rem;
    margin-bottom: 1rem;
}

.inputFormat input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    border: solid 3px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: .2s;
}

.inputFormat input[type="radio"]:hover {
    transition: .1s;
    background-color: rgba(0, 0, 0, 0.03);
}

.inputFormat input[type="radio"]:checked {
    transition: .2s;
    border: solid 3px var(--primary);
    background-color: rgba(235, 135, 135, 0.2);
}

.formImage input[type="submit"] {
    height: 3rem;
    width: 20rem;
}
