/* <------------------------------------> */
/* ---------- VARIBLES POUR LES COULEURS  ---------- */
/* <------------------------------------> */
:root {
    --ice: #11ccee;
    --black: #000000;
    --white: #ffffff;
    --dark-blue: #004A80;
    --light-blue: #DAF3FF;
    --light-light-blue: #edf7fa;
    --yellow: #eae1c4;
    --backcolor : #F2FAFE;
}


/* <------------------------------------> */
/* ---------- FONT SILKA  ---------- */
/* <------------------------------------> */

@font-face {
    font-family: 'silka';
    src: url('../assets/fonts/silka-regular-webfont.woff2') format('woff2'),
        url('../assets/fonts/silka-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'silka';
    src: url('../assets/fonts/silka-regularitalic-webfont.woff2') format('woff2'),
        url('../assets/fonts/silka-regularitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'silka';
    src: url('../assets/fonts/silka-medium-webfont.woff2') format('woff2'),
        url('../assets/fonts/silka-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'silka';
    src: url('../assets/fonts/silka-bold-webfont.woff2') format('woff2'),
        url('../assets/fonts/silka-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: bold;
}


/* <------------------------------------------------------------------> */
/* --------------------- POUR TOUT LE SITE ------------------- */
/* <------------------------------------------------------------------> */
html {
    scroll-behavior: smooth;
  }

*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "silka";
    font-size: 1rem;
    line-height: 1.3;
    overflow-x: hidden;
}

h2 {
    text-align: right;
    padding: 20px 10vw;
    color: var(--dark-blue);
    font-size: 2rem;
    margin: 0;
    padding: 30px 10vw 0 10vw;
    }
    
a {
    text-decoration: none;
    color: var(--dark-blue);
}

::-webkit-scrollbar-track {
        background-color: var(--white);
        scroll-behavior: smooth;
    }
    
::-webkit-scrollbar {
        height: 6px;
        margin-left: 100px;
        background-color: white;
        scroll-behavior: smooth;
    }
    
::-webkit-scrollbar-thumb {
        background-color: var(--dark-blue);
        border-radius: 3px;
    }
    


/* <------------------------------------------------------------------> */
/* --------------------- PREMIERE SECTION - ACCUEIL ------------------- */
/* <------------------------------------------------------------------> */
.section1 {
    background-image: linear-gradient(190deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.107) 80%, #4c8cb1 100%), url(../assets/images/fond-mobile.svg);
    background-position: center;
    background-size: cover;
    height: 100vh;
}


/* <-----------------------------------BARRE DE NAVIGATION -----------------------------> */

/* <-----------------BARRE DE NAVIGATION - VERSION MOBILE -----------------> */
nav {
    margin: 0;
    height: 10%;
    width: 55%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

/*logo */
nav img {
    height: 60%;
    width: auto;
}

/* Nom site */
nav span {
    display: none;
}


/* <-----------------BARRE DE NAVIGATION - VERSION DESKTOP -----------------> */
nav .menu_desktop {
    display: none;
}

nav .menu_desktop a {
    text-decoration: none;
    padding-right: 2vw;
    color: var(--black);
    font-weight: 600;
}


/* <----------------------------------- TEXTE DE LA PAGE D'ACCUEIL -----------------------------> */

.container {
    display: flex;
    flex-direction: column;
    height: 85%;
    justify-content: flex-end;
}

.contenu_accueil {
    display: flex;
    height: 65vh;
    flex-direction: column;
    padding: 5px 20px;
    background: linear-gradient(180deg, rgba(70, 79, 85, 0) 0%, #4482A7 58.21%);;
}

.contenu_accueil .titre h1 span::before {
    content: "#11CCEE ";
    -webkit-animation: animate infinite 6s;
            animation: animate infinite 6s;
}


/* Titre "save the ice" */
.titre h1 {
    font-size: 2rem;
    background-color: var(--white);
    display: inline-block;
    border-radius: 20px;
    color: var(--dark-blue);
    padding: 10px 20px;
}

/* Terme "ice" dans le titre */
.titre h1 span {
    color: var(--ice);
        font-size: 2rem;
}
/* Vague en version desktop sous le titre */
.titre img {
    display: none;
}

/* Texte description  */
.contenu_accueil p {
    text-align: justify;
    font-size: 1.2rem;
    color: var(--white);
    line-height: 28px;
    font-weight: bold;
  
}

.voirplus {
    background-color: var(--ice);
    width: 12vw;
    text-align: center;
    padding: 2vh 2vw;
    border-radius: 50px; 
    display: none;
}

.voirplus a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
}



/* <------------------------------- BOUTON VIDEO - PAGE D'ACCUEIL -----------------------------> */
.contenu_accueil .video {
    color: var(--white);
    font-weight: 200;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

/* "watch the video" */
.video div:nth-child(1) {
    background-color: var(--ice);
    padding: 20px;
    border-radius: 30px 0 0 30px;
}

/* bouton play */
.video div:nth-child(2) {
    padding: 20px;
    background-color: var(--dark-blue);
    border-radius: 0 30px 30px 0;
}





/* <------------------------------------------------------------------> */
/* ------------------------- MENU DE GAUCHE ----------- --------------- */
/* <------------------------------------------------------------------> */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color:var(--light-blue);
    overflow-y: hidden;
    /* transition: 0.5s; */
    padding-top: 100px;
    line-height: 50px;
    transition: 1s;
}

/* Liens du menu de gauche */
.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: var(--ice) ;
    display: block;
    transition: 0.3s;
    font-weight: 600;
}

/* Icone du menu de gauche */
.sidebar .fas,
.sidebar .far {
    margin-right: 15px;
}

.sidebar a:hover {
    color: var(--dark-blue);
}

/* Bouton fermer  */
.sidebar .closebtn {
    position: absolute;
    top: 3%;
    right: 25px;
    font-size: 36px;
}

/* Bouton ouvrir  */
.openbtn {
    font-size: 32px;
    cursor: pointer;
    background-color: transparent;
    color: var(--light-blue);
    padding: 10px 15px;
    border: none;
    font-weight: 700;
    /* width: 10%; */
}

/*Bouton ouvrir au survol */
.openbtn:hover {
    color: var(--dark-blue);
}





/* <------------------------------------------------------------------> */
/* ---------------- DEUXIEME SECTION - GLOBAL WARMING ----------------- */
/* <------------------------------------------------------------------> */

.section2 {
    height: 100vh;
    width: 100%;
    position: relative;
    background: var(--backcolor);
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    background-position: -40% 15%;
}

/* <-------------------- CAROUSSEL : CAUSES DU RECHAUFFEMENT CLIMATIQUE ------------------------> */
main {
    position: relative;
}

.carousel ul {
    margin: 0 0 1.5rem;
    padding: 0;
}

.carousel li {
    display: inline-block;
}

.image_changement {
    height: auto;
    width: 50%;
    position: relative;
    display: inline-block;
    margin: auto;
}

.titre_changement {
    font-size: 1.3rem;
    color: var(--ice);
    margin: 10px 0;
}

.texte_changement {
    font-size: 1.1rem;
    font-style: normal;
}

.changement {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-blue);
    background-color: var(--white);
    border-radius: 20px;
    padding: 5vh 8vw;
    width: 80vw;
    margin: 30px;
    
}

.carousel-items {
    display: flex;
    overflow-x: scroll;
    padding: 1rem 0;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}

.carousel-item {
    flex: 1 0 250px;
    margin-left: 1rem;
    scroll-snap-align: start;
}

.direction {
    width: 100px;
            -webkit-animation: decale 3s infinite;
                    animation: decale 3s infinite;
    display: block;
    margin: auto ;
    position: relative;
    bottom: 5vh;
    right: 5vw;
}

/* 
BLOB VERSION DESKTOP */
.blob1 {
    width: 70vh;
    height: 60vh;
    top:10vh;
    left: -20vw;
}

.blob2 {
    width: 70vh;
    height: 60vh;
    top:60vh;
    left: 90vw;
}

.blob3 {
    width: 70vh;
    height: 60vh;
    top:370vh;
    left: -30vw;
}
  
.blob{
    background: var(--light-blue) ;
     position: absolute;
     z-index: -1;

    border-radius: 10% 60% 54% 46%;
    -webkit-animation: 
    angleMove 10s ease-in-out infinite both,
    movement 15s ease infinite
    ;
            animation: 
    angleMove 10s ease-in-out infinite both,
    movement 15s ease infinite
    ;
    display: none;
}

/* <------------------------------------------------------------------> */
/* ---------------- TROISIEME SECTION - EFFECTS ----------------- */
/* <------------------------------------------------------------------> */

.section3 {
    height: 100vh;
    width: 100%;
    background: var(--light-blue);
    display: flex;
    flex-direction: column;
}

/* titre section 3 */
.meteo {
    text-align: left;
    padding: 30px 10vw 10px 10vw;
    color: var(--dark-blue);
}
.meteo h3 {
    font-size: 1.2rem;
}

.meteoimage {
    width: 50vw;
}


/* <-------------------- CARTE METEO ------------------------> */

.effet_planete {
    display: flex;
    flex-direction: column;
    margin: 0px 10vw;
    background-color: var(--white);
    border-radius: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    justify-content: center;
}

.image_meteo {
    height: auto;
    width: 100%;
    display: block;
    margin: 0px auto;
}

.effet_planete h3 {
    text-align: center;
    margin: 1px;
    font-size: 1.5rem;
}

.jour_meteo {
    display: inline-flex;
    justify-content: space-around;
    text-align: center;
    font-size: 0.8rem;
}

.ontheplanet {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}



/* <-------------------- BOUTON POUR LA POPUP ------------------------> */

.btn_plus {
    color: var(--white);
    font-weight: 200;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.btn_plus span {
    background-color: var(--ice);
    font-size: 1.2rem;
    padding: 20px;
    border-radius: 40px;
    margin-top: 20px;
}


/* <-------------------- POPUP ------------------------> */
.popup {
    color: var(--black);
    font-family: "silka";
    height: 85vh;
    width: 90vw;
    border-radius: 50px;
    z-index: 3;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5vh 10vw;
    flex-direction: column;
    margin: auto;
    background-color: var(--white);
    font-size: 0.8rem;
}

/* BOUTON POUR QUITTER LA POPUP */
.popup .exit {
    color: var(--ice);
    cursor: pointer;
}


.effets {
    display: flex;
    width: 100%;
    font-size: 14px;
    text-align: center;
    margin: 5vh 0 0 0;
}
.gauche div, .droite div {
    width: 100%;
    height: 50%;
}

.effets img {
    width: 50%;
    background-color: var(--light-blue);
    border-radius: 30px;
}


/* <------------------------------------------------------------------> */
/* ---------------- 4EME SECTION - FAUNE ET FLORE  ----------------- */
/* <------------------------------------------------------------------> */
.section4 {
    height: 100vh;
    width: 100%;
    padding: 30px 10vw;
    background: var(--backcolor);
}

.contenu_section4 {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.contenu_section4 div:nth-child(2) {
    display: flex;
    justify-content: flex-end;
}

.contenu_section4 div:nth-child(3) {
   text-align: right;
}

.contenu_section4 div:nth-child(4) img {
    display: none;
}

.section4 h3 {
    text-align: left;
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.section4 img {
    width: 50vw;
    margin-right: 0;
}

/* <------------------------------------------------------------------> */
/* ---------------- 5EME SECTION - SOLUTIONS  ----------------- */
/* <------------------------------------------------------------------> */
.section5 {
    /* height: 200vh; */
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    padding: 30px 10vw;
    background: var(--light-blue);
    display: flex;
    flex-direction: column;
}


.section5 h5 {
    text-align: right;
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    padding: 0 10vw;
    color: var(--dark-blue);
}

.solution_mobile {
    background-color: white;
    padding: 5vh 0;
    margin-top: 2vh;
    border-radius: 10px;
}

.projetCheck{
    cursor: pointer;
}



/*Carousel*/
/* RECTANGLE POUR LE CARROUSSEL */
.carrousel {
    background: var(--white);
    text-align: center;
    padding: 5vh 0;
    padding-bottom: 10vh;
    height: 60vh;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: inline-block;
    display: none;
}


/* H2 EST LE NOM DU DOMAINE  */
.carrousel h2 {
    margin-left: 1.5vw;
    padding: 0.5vh 1.5vw 0vh 1.5vw;
    margin-top: -1vh;
    font-size: 2rem;
    text-align: left;
    color: var(--black);
}

/* TOUTES LES DIAPOS  : 4 DIAPOS DONC 400%*/
.carrousel .diapos {
    width: 400%;
    left: 0;
    padding-left: 0;
    overflow: hidden;
    list-style: none;
    position: relative;
    transition: transform .5s;
}

.carrousel .diapos .diapo {
    width: 80vw;
    height: 60vh;
}

.carrousel .diapos li {
    width: 25%;
    position: relative;
    float: left;
}


.carrousel .diaposNavigation {
    display: block;
    list-style: none;
    text-align: center;
    bottom: 1vw;
    position: absolute;
    width: 104px;
    left: 50%;
    margin-left: -52px;
}

.carrousel input {
    /* display: flex; */
    position: relative;
    top: 50vh;
} 

.carrousel .diaposNavigation label {
    float: left;
    margin: 6px;
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    font-size: 0;
}

#radio-1:checked~.diapos {
    transform: translateX(0%);
}

#radio-2:checked~.diapos {
    transform: translateX(-25%);
}

#radio-3:checked~.diapos {
    transform: translateX(-50%);
}

#radio-4:checked~.diapos {
    transform: translateX(-75%);
}

.carrousel .diaposNavigation label:hover {
    cursor: pointer;
} 


.projetCheck{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
}

.projetCheckLast:hover{
    transform: scale(1.1) scaleX(-1);
}

.projetCheckNext:hover{
    transform: scale(1.1);
}

.projetCheckLast{
    transform: scaleX(-1);
    margin-right: 10px;
}


/* ANIMATION */
.tremble{
    -webkit-animation: 0.5s linear tremble;
            animation: 0.5s linear tremble;
}


.solution {
    /* display: flex; */
    width: 100%;
    justify-content: center;
    height: 70%;
}


.solu1, .solu2 {
    display: flex;
    flex-direction: column;
    margin: 6vh 1vw;
    padding: 20px 20px;
    height: 100%;
    text-align: center;
}

.solu1 div:nth-child(1) img, .solu2 div:nth-child(1) img {
    width: 80%;
    margin-top: 10px;

}

.solu1 div:nth-child(1), .solu2 div:nth-child(1) {
    background-color: var(--light-blue);
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-bottom: 20px; 
}

.solu1 div:nth-child(1) {
    display: block;
    margin-left: auto;
}


.solu1 div:nth-child(2), .solu2 div:nth-child(2) {
    background-color: var(--light-blue);
    padding: 10px 30px;
    width: 50vw;
}

.solu1 div:nth-child(2):nth-child(2) {
    margin-left: auto;
}

.solu1 div:nth-child(2) {
    border-radius: 45px 0px 45px 45px;
}

.solu2 div:nth-child(2) {
    border-radius: 0px 45px 45px 45px;
}

/* <------------------------------------------------------------------> */
/* ---------------- 6EME SECTION - ABOUT  ----------------- */
/* <------------------------------------------------------------------> */
.section6 {
    height: 130vh;
    width: 100%;
    padding: 30px 10vw;
    background: var(--backcolor);
    display: flex;
    flex-direction: column;
}

.section6 h2 {
    text-align: center;
}

/* CARTES FLIP */
.boite, .boite2 {
        margin: 1vh auto;
        width: 100%;
        height: 40%;
        position: relative;
        -o-perspective: 800px;
        perspective: 800px;
        font-family: 'silka';
        font-size: 0.9rem;
        display: flex;
    }
    
    .card, .card2 {
        width: 80vw;
        height: 50vh;
        position: absolute;
        transition: transform 1s;
        transform-style: preserve-3d;
        transform-origin: 50% 50%;
        -webkit-transform-origin: 50% 50%;
    }


    .card div, .card2 div {
        display: block;
        padding: 5vh 3vw;
        height: 100%;
        width: 100%;
        color: var(--black);
        border: var(--white) 10px solid;
        border-radius: 30px;
        text-align: justify;
        position: absolute;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .card .front, .card2 .front2 {
      background-color: var(--light-blue);
      display: flex;
    }


    .card2 .front2 {
        justify-content: center;
    }

    .front2 span {
        color: var(--ice);
        font-size: 2rem;
        border-radius: 20px;
        font-weight: 900;
        display: block;
        position: relative;
        top: 45%;
    }

    .front2 span:hover {
        color: var(--white);
    }

    .card .front img{ 
    width: 40%;
    margin: 2vh auto;
      }
      
    .card .back, .card2 .back2 {
        transform: rotateY( 180deg );
        background-color: var(--light-blue);
        display: flex;
        width: 100%;
        justify-content: center;
        height: 100%;
        align-items: center;
          padding: 30px;
    }
    .card.flipped, .card2.flipped {
        transform: rotateY( 180deg );
    }

    .back p, .back2 p {
        padding: 0;
    }



/* <------------------------------------------------------------------> */
/* ---------------- FOOTER ----------------- */
/* <------------------------------------------------------------------> */
footer {
    padding: 0;
    margin: 0;
    background-color: var(--white);
    width: 100%;
    height: 20vh;
    text-align: center;
}


footer .icones {
    width: 100%;
    justify-content: center;
    display: flex;
    color: var(--dark-blue);
    margin: 3vh 0 0 0;
}

.icones .fab {
    margin: 2vh 3vw 0 3vw;
    cursor: pointer;
    background-color: var(--light-blue);
    padding: 3vh 3vw;
    border-radius: 50px;
}

.icones a {
    text-decoration: none;
    color:var(--dark-blue)
}

.icones a:hover {
    color:var(--ice)
}

footer .titre {
    margin: 0;
}

footer .titre h1 {
    font-size: 1.4rem;
    margin: 4vh 0;
}





/* <------------------------------------------------------------------> */
/* ---------------- POINTS DE RUPTURE ----------------- */
/* <------------------------------------------------------------------> */


/* POINT DE RUPTURE EN HAUTEUR POUR LES PETITS TELEPHONES */
@media(max-height:670px){
    
    h2 {
        font-size: 1.7rem;
    }

    /* SECTION 1*/
    .contenu_accueil {
        height: auto;
    }

    .contenu_accueil p {
        font-size: 1rem;
        line-height: 20px;
    }

    .contenu_accueil .video {
        display: none;
    }

    /* SECTION 2*/
    .section2 {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
        
    
    /* SECTION 3 - Effects */
    .section3 {
        height: 110vh;
    }

    img.meteoimage{
        width: auto;
        height: 30vh;
        text-align: center
    }

    .popup {
        height: 95vh;
    }

    /*SECTION 6 - ABOUT */
    .boite, .boite2 {
        font-size: 0.7rem;
    }

    /* AUTRES */
    .section4 {
        height: 130vh;
    }

    .section6 {
        height: 150vh;
    }

    .card, .card2 {
        height: 50vh;
    }

    .boite, .boite2 {
        font-size: 0.8rem;
    }
}


/* POINT DE RUPTURE : A PARTIR DE 300PX */
@media(min-width:300px){
    /* SECTION 3 - Effects */
    .meteoimage {
        width: 65vw;
    }

    /* SECTION 4 - On fauba and flora  */
    .section4 img {
        width: 35vw;
    }

    /* SECTION 6 - About */
    .section6 h2 {
         font-size: 1.6rem;
    }  
}


/* POINT DE RUPTURE : A PARTIR DE 400PX */
@media(min-width:430px){
    .container {
        height: 90%;
    }

    /* SECTION 2 */
    img.direction  {
        display: none;
    }

    /* SECTION 3 */
     .meteoimage {
        width: 50vw ;
    }

    /* SECTION 6 - About */
    .section6 h2 {
        font-size: 2rem;
    } 

    .boite, .boite2 {
        font-size: 1rem;
    }
}



@media(min-width:500px){
    .openbtn {
        color: var(--dark-blue);
    }

    /* SECTION 2 */
    img.direction  {
        display: none;
    }

    .changement {
        width: 60vw;
        margin: 30px 0vw;
    }

    .changement:nth-child(1){
        margin-left: 15vw;
    }

    /* SECTION 3 */
    .meteoimage {
        width: 40vw;
        }

    .popup {
            width: 80vw;
    }

    .boite, .boite2 {
        font-size: 1rem;
    }

    .card, .card2 {
        height: 50vh;
    }

}


@media(min-width:650px){
     /* SECTION 1 */
     .contenu_accueil {
        height: 60vh;
    }


    /* SECTION 3 */

    .meteoimage {
        width: 30vw;
        }

        .popup {
            font-size: 1rem;
            height: auto;
        }

    /* SECTION 4 */
    .section4 img {
        width: 25vw;
    }

    .card, .card2 {
        height: 40vh;
    }

    .boite, .boite2 {
        height: 35%;
    }
}



@media(min-width:768px){
    /* MENU */
    .openbtn {
        color: var(--light-blue)
    }   
    
    /* SECTION 1 */
    .contenu_accueil {
        height: 80vh;
        width: 60vw;
    background: none;
    }

    .contenu_accueil p {
        font-weight: bold;
        background-color: #4483a775;
        padding : 2vh 3vw;
        border-radius: 10px;
        font-size: 1.2rem;
        text-align: left;
    }

    /* SECTION 3 */
    .meteoimage {
        width: 25vw;
    }

      /* SECTION 6 */
     .card {
    margin-top: 5vh;
    }

    .boite, .boite2 {
        height: 40%;
    }
}









/* POINTS DE RUPTURE POUR LA VERSION DESKTOP */
@media screen and (min-width: 992px) {

    nav {
        background-color: var(--backcolor);
        width: 100%;
        height: 7%;
        justify-content: flex-start;
        border-bottom: var(--dark-blue) 2px solid;
    }

    nav img {
        margin-left: 20px;
    }

    nav .menu_desktop {
        display: flex;
        width: 100%;
        justify-content: flex-end;
    }

    .menu_desktop a[href="#about"] {
        border: var(--black) 1px solid;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        padding: 0 10px;
        margin-right: 30px;
    }

    nav span {
        margin-left: 10px;
        font-weight: bold;
        font-size: 1.3rem;
        color: var(--dark-blue);
        display: flex;
        flex-wrap: nowrap;
    }

    /* SECTION 1 */

    .contenu_accueil {
        margin :0 5vw 0 5vw;
        width: 38vw;
    }

    .voirplus {
        display: inline-block;
    }

    .section1 {
        background-image: url(../assets/images/fond-desktop.svg);
        background-position: right;
        background-attachment: scroll;
        background-color: var(--backcolor);
    }

    .titre h1 {
        background-color: transparent;
        font-size: 3.5rem;
        position: relative;
        top: 20%;
        margin: 0 0 5vh 0;
        width: -webkit-fit-content;
        width: -moz-fit-content;
    }

    .titre span {
        font-size: 2.5rem;
    }


    .titre img {
        display: block;
    }

    .container {
        justify-content: start;
    }

    .openbtn {
        display: none;
    }
    
    .contenu_accueil p {
        color: var(--dark-blue);
        font-weight: bold;
        background-color: transparent;
        padding : 0;
        font-size: 1.1rem;
    }

    .carousel {
        padding: 5vh 0 0 0 ;
    }

    .carousel-items {
        display: block;
        overflow-x: hidden;
        text-align: center;
    }

    .contenu_accueil .video {
        flex-direction: row-reverse;
        margin: 5vh 0 0 0 ;
        justify-content: start;
    }
    
    .video div:nth-child(1) {
        background-color: transparent;
        color: black;
        font-weight: 900;
        font-size: 1.4rem;
        border-radius: 0;
    }
    
    .video div:nth-child(2) {
        width: 70px;
        background-color: var(--ice);
        border-radius: 50%;
        text-align: center;
    }

    .video .fas {
        color: var(--yellow);
        margin: 5px 0 0 5px;
    }

    /* SECTION 2 */
    .changement {
        width: 40vw;
        background-color: transparent;
        border: none;
        flex-direction: row;
        margin: 30px;
        padding: 0;
    }

    .changement:nth-child(1){
        margin-left: 0;
    }

    .image_changement {
        width: 25%;
        position: relative;
        bottom: 20px;
        margin: 4vh 3vw 0 0;
    }

    .contenu_changement {
        font-size: 16px;
        text-align: justify;
    }

    .titre_changement h3 {
        font-size: 20px;
    }

    .titre_changement {
        text-align: left;
    }


    .texte_changement {
        display: flex;
        flex-direction: row;
    }

    .blob {
        z-index: 0;
        display: flex;
    }


    /* SECTION 3 */
    .btn_plus {
        display: none;
    }

    .popup {
        display: flex;
        background-color: transparent;
        position: absolute;
        top: 252vh;
        left: 70vw;
        height: 50vh;
        width: 50vw;
        font-size: 1.1rem;
        padding: 0;
    }

    .popup p {
        margin: 0;
    }
    
    .exit {
        display: none;
    }

    .effets img {
        width: 40%;
    }

    .ontheplanet {
        display: block;
    }

    .meteoimage {
        width: 25vw;
    }

    /* SECTION 4 */
    .contenu_section4 div:nth-child(2) img {
        display: none;
    }

    .contenu_section4 div:nth-child(4) {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .contenu_section4 div:nth-child(4) img {
       display: flex;
        width: 20vw;
        
    }

    .contenu_section4 div:nth-child(3)  {
        text-align: left;
    }

    /* SECTION 5 */
    .section5 {
        height: 100vh;
    }

    .solu1 div:nth-child(2), .solu2 div:nth-child(2) {
        width: 30vw;
    }

    .solution {
    display: flex;
    }

    .solution_mobile {
        display: none;
    }

    .carrousel {
        display: block;
    }

    /* SECTION 6 */
    .section6 {
    height: 110vh;
    }
    .boite2 {
        justify-content: flex-end;
    }

    .card, .card2 {
        width: 50vw;
    }

    .boite, .boite2 {
        height: 48%;
    }

}



/* <------------------------------------> */
/* ---------- ANIMATIONS  ---------- */
/* <------------------------------------> */

/* FAIRE TREMBLER LE SLIDE */

@-webkit-keyframes tremble {
    0%{
        transform: scale(1) rotate(-5deg);
    }
    25%{
        transform: scale(1.03) rotate(5deg);
    }
    50%{
        transform: scale(1.03) rotate(-5deg);
    }
    75%{
        transform: scale(1.03) rotate(5deg);
    }
    100%{
        transform: scale(1) rotate(0deg);
    }
}

@keyframes tremble {
    0%{
        transform: scale(1) rotate(-5deg);
    }
    25%{
        transform: scale(1.03) rotate(5deg);
    }
    50%{
        transform: scale(1.03) rotate(-5deg);
    }
    75%{
        transform: scale(1.03) rotate(5deg);
    }
    100%{
        transform: scale(1) rotate(0deg);
    }
}

@-webkit-keyframes tourne { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes tourne { 
    100% { 
        transform:rotate(360deg); 
    } 
}


/* BLOB */
@-webkit-keyframes angleMove {
    0%,
    14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
    28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
   42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
   56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
   70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
   84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
  100% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
   
}
@-webkit-keyframes angleMove {
    0%,
    14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
    28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
   42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
   56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
   70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
   84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
  100% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
   
}
@keyframes angleMove {
    0%,
    14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
    28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; } 
   42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; } 
   56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; } 
   70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; } 
   84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; } 
  100% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; } 
   
}
@-webkit-keyframes movement {
    0%,
   75% { transform: scale(1) rotate(0deg); }
   50%{transform: scale(1,0.75) rotate(360deg);}
   100% { transform: none; }
}
@keyframes movement {
    0%,
   75% { transform: scale(1) rotate(0deg); }
   50%{transform: scale(1,0.75) rotate(360deg);}
   100% { transform: none; }
}
    

/* DIRECTION */
    @-webkit-keyframes decale {
        0% {
        transform: translate(50, 0);    
        }
        100% {
        transform: translate(40px, 0px);
        }
    }
    
    @-webkit-keyframes decale {
        0% {
        transform: translate(50, 0);    
        }
        100% {
        transform: translate(40px, 0px);
        }
    }
    
    @keyframes decale {
        0% {
        transform: translate(50, 0);    
        }
        100% {
        transform: translate(40px, 0px);
        }
    }

/* ANIMATION DU TITRE  */
    @-webkit-keyframes animate {
  
        0% {
            content: "ice ";
        }
    
        50% {
            content: "#11CCEE ";
        }
    
        75% {
            content: "ice ";
        }
    }
    
    @-webkit-keyframes animate  {
      
            0% {
                content: "ice ";
            }
        
            50% {
                content: "#11CCEE ";
            }
        
            75% {
                content: "ice ";
            }
    }
    
    @keyframes animate  {
      
            0% {
                content: "ice ";
            }
        
            50% {
                content: "#11CCEE ";
            }
        
            75% {
                content: "ice ";
            }
    }
    


