/* defaults */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* background-color: black; */
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    text-rendering: optimizeLegibility;
    font-family: 'Roboto Mono', monospace;
}

body::-webkit-scrollbar {
    display: none;
  }

::selection {
    background-color: rgba(0, 0, 0, 0.25);
    color: whitesmoke;
}

::-moz-selection {
    background-color: rgba(0, 0, 0, 0.25);
    color: whitesmoke;
}

ol, ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

a :hover {
    z-index: 10000000;
}

.hidden {
    display: none;
}

/* */

.home {
    color: whitesmoke;
    background: url("../images/19.jpg") no-repeat center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
    width: 100%;
    cursor: url(../img/Sans\ titre-2.png), url(../img/Sans\ titre-2.png), auto;
}


.herocontainer {
    height: 300vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
}
    
.test{
    color: whitesmoke;
    /* position: absolute; */
    font-family: 'Roboto Mono', monospace;
}

.history {
    position: fixed;
    text-align: center;
    margin-top: 45%;
    font-family: 'Roboto Mono', monospace;
}

.title {
    /* width: 100%; */
   
    position: absolute;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    
  
    color: rgb(0, 0, 0);
    /* margin-top: 2rem; */
    font-size: 10em;
    /* height: 0.9em; */
    text-align: center;
}

.title h1 {
    /* position: absolute; */
    transition: opacity 3s ease-in-out;
    margin: 0;
    font-size: 15vw;
    line-height: 0.7;
    grid-column: 1;
    grid-row:1;
}

.title h1:nth-child(1) {
    opacity: 1;
}

.title h1:nth-child(2),
.title h1:nth-child(3),
.title h1:nth-child(4) {
    opacity: 0;
}

.title:hover h1:nth-child(1) {
    animation-name: base1;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease;
    animation-duration: 4s;
}

.title:hover h1:nth-child(2) {
    animation-name: base2;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease;
    animation-duration: 4s;

}
.title:hover h1:nth-child(3) {
    animation-name: base3;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease;

    animation-duration: 4s;

}
.title:hover h1:nth-child(4) {
    animation-name: base4;
    animation-iteration-count: infinite;

    animation-direction: alternate;

    animation-timing-function: ease;

    animation-duration: 4s;


}


@keyframes base1 {
    0% {
        opacity:1;
    }
    33.33% {
        opacity:0;
    }
    66.66%{
        opacity:0;
    }
    100%{
        opacity:0;
    }
    
    
}

@keyframes base2 {
    0% {
        opacity:0;
    }
    33.33% {
        opacity:1;
    }
    66.66%{
        opacity:0;
    }
    100%{
        opacity:0;
    }
    
    
}
@keyframes base3 {
    0% {
        opacity:0;
    }
    33.33% {
        opacity:0;
    }
    66.66%{
        opacity:1;
    }
    100%{
        opacity:0;
    }
    
    
}
@keyframes base4 {
    0% {
        opacity:0;
    }
    33.33% {
        opacity:0;
    }
    66.66%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
    
    
}


.herotexte {
    color: black;
    position: absolute;
    margin-top: 95%;
    z-index: 2;
    text-align: center;
    justify-content: center;
    font-size: 5rem;
}

@-webkit-keyframes fadeout {
    0%   { opacity: 1; filter: blur(0);}
    100% { opacity: 0; filter: blur(16px);}
}

@-moz-keyframes fadeout {
    0%   { opacity: 1; filter: blur(0);}
    100% { opacity: 0; filter: blur(16px);}
}

@keyframes fadeout {
    0%   { opacity: 1; filter: blur(0);}
    100% { opacity: 0; filter: blur(16px);}
}

@-webkit-keyframes fadein {
    0% { opacity: 0; filter: blur(16px);}
    100%   { opacity: 1; filter: blur(0);}
}

@-moz-keyframes fadein {
    0% { opacity: 0; filter: blur(16px);}
    100%   { opacity: 1; filter: blur(0);}
}

@keyframes fadein {
    0% { opacity: 0; filter: blur(16px);}
    100%   { opacity: 1; filter: blur(0);}
}

#fadeout {
    -webkit-animation: fadeout 9s ease-in;
       -moz-animation: fadeout 9s ease-in;
            animation: fadeout 9s ease-in;
    -webkit-animation-fill-mode: forwards;
}


.heroimage {
        width: 100%;
        height: 100%;
}

#heroimage1 img {
    position: absolute;
    max-width: 70%;
    z-index: 2;
    margin-top: 110%;
    margin-left: 00%;

    -webkit-animation: fadein 7s ease-in;
    -moz-animation: fadein 7s ease-in;
         animation: fadein 7s ease-in;
 -webkit-animation-fill-mode: forwards;
}

#heroimage2 img {
    position: absolute;
    max-width: 40%;
    z-index: 3;
    margin-top: 69%;
    margin-left: 35%;

    -webkit-animation: fadein 6s ease-in;
    -moz-animation: fadein 6s ease-in;
         animation: fadein 6s ease-in;
 -webkit-animation-fill-mode: forwards;
}

#heroimage3 img {
    position: absolute;
    max-width: 45%;
    z-index: 4;
    margin-top: 7%;
    margin-left: 15%;

    -webkit-animation: fadein 11s ease-in;
    -moz-animation: fadein 11s ease-in;
         animation: fadein 11s ease-in;
 -webkit-animation-fill-mode: forwards;
}

#heroimage4 img {
    position: absolute;
    max-width: 50%;
    z-index: 5;
    margin-left: -60%;
    margin-top: 60%;
    opacity: 0;

    animation-delay: 4s;
    -webkit-animation: fadein 8s ease-in;
    -moz-animation: fadein 8s ease-in;
         animation: fadein 8s ease-in;
 -webkit-animation-fill-mode: forwards;
}

#heroimage5 img {
    position: absolute;
    max-width: 27%;
    z-index: 6;
    margin-left: -72%;
    margin-top: 74%;
    opacity: 0;

    animation-delay: 7s;
    -webkit-animation: fadein 11s ease-in;
    -moz-animation: fadein 11s ease-in;
         animation: fadein 11s ease-in;
 -webkit-animation-fill-mode: forwards;
}


.fish-text1 {
    font-size: 3rem;
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: 35%;
    opacity: 0;
}


.fish-text-reveal {
    opacity: 1;
    transition: 3s;
    animation-delay: 2s;
}

.fish-selection {
    height: 100vh;
    background-color: whitesmoke;
}

.fish-list {
    height: 100vh;
    background-color: whitesmoke;
}


#fish-1 {
    position: relative;
    color: rgb(0, 0, 0);
    z-index: 4;
    left: 50%;
    top: 0%;
    -webkit-animation: wiggle 13s ease-in-out alternate infinite;
    -moz-animation: wiggle 13s ease-in-out alternate infinite;
         animation: wiggle 13s ease-in-out alternate infinite;
         
}

#fish-1:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
     cursor: none;
}

#fish-2{
    position: relative;
    z-index: 4;
    left: 30%;
    top: 10%;
    -webkit-animation: wiggle 8s ease-in-out alternate infinite;
    -moz-animation: wiggle 8s ease-in-out alternate infinite;
         animation: wiggle 8s ease-in-out alternate infinite;
}

#fish-2:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
     cursor: none;
}

#fish-3{
    position: relative;
    z-index: 4;
    left: 20%;
    top: 20%;
    -webkit-animation: wiggle 9s ease-in-out alternate infinite;
    -moz-animation: wiggle 9s ease-in-out alternate infinite;
         animation: wiggle 9s ease-in-out alternate infinite;
}

#fish-3:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
     cursor: none;
}

#fish-4{
    position: relative;
    z-index: 4;
    left: 40%;
    top: 30%;
    -webkit-animation: wiggle 11s ease-in-out alternate infinite;
    -moz-animation: wiggle 11s ease-in-out alternate infinite;
         animation: wiggle 11s ease-in-out alternate infinite;
}

#fish-4:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
     cursor: none;
}

#fish-5 {
    position: relative;
    color: rgb(0, 0, 0);
    z-index: 4;
    left: 20%;
    top: 40%;
    -webkit-animation: wiggle 7s ease-in-out alternate infinite;
    -moz-animation: wiggle 7s ease-in-out alternate infinite;
         animation: wiggle 7s ease-in-out alternate infinite;
         
}

#fish-5:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
     cursor: none;
}

#fish-6 {
    position: relative;
    color: rgb(0, 0, 0);
    z-index: 4;
    left: 40%;
    top: 50%;
    -webkit-animation: wiggle 10s ease-in-out alternate infinite;
    -moz-animation: wiggle 10s ease-in-out alternate infinite;
         animation: wiggle 10s ease-in-out alternate infinite;
         
}

#fish6:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
     cursor: none;
}


@keyframes wiggle {
    0% { transform: translate3d(0px, 0px, 0px);} 
    
    100% { transform: translate3d(1000px, 0px, 0px); }
 } 



.panel {
    position: relative;
    width: 100%;
    font-size: 1.7rem;
}
.panel1 {
    height: 600vh;
    background-color: whitesmoke;
}



#step1 {
    position: absolute;
    padding-top: 290%;
    padding-left: 50%;
    width: 100%;
}

#step2 {
    position: absolute;
    padding-top: 250%;
    padding-left: 10%;
    width: 100%;
}

#step3 {
    position: absolute;
    padding-top: 215%;
    padding-left: 60%;
    width: 100%;
}

#step4 {
    position: absolute;
    padding-top: 175%;
    padding-left: 30%;
    width: 100%;
}

#step5 {
    position: absolute;
    padding-top: 135%;
    padding-left: 10%;
    width: 100%;
}

#step6 {
    position: absolute;
    padding-top: 115%;
    padding-left: 55%;
    width: 100%;
}

#step7 {
    position: absolute;
    padding-top: 85%;
    padding-left: 30%;
    width: 100%;
}

#step8 {
    position: absolute;
    padding-top: 45%;
    padding-left: 05%;
    width: 100%;
} 

#step9 {
    position: absolute;
    padding-top: 10%;
    padding-left: 65%;
    width: 100%;
} 



.panel2 {
    height: 500vh;
    background-color: whitesmoke;
}

#ingredient1 {
    position: absolute;
    padding-top: 20%;
    padding-left: 20%;
    width: 100%;
}

#ingredient2 {
    position: absolute;
    padding-top: 30%;
    padding-left: 65%;
    width: 100%;
}

#ingredient3 {
    position: absolute;
    padding-top: 140%;
    padding-left: 30%;
    width: 100%;
}

#ingredient4 {
    position: absolute;
    padding-top: 225%;
    padding-left: 70%;
    width: 100%;
}

#ingredient5 {
    position: absolute;
    padding-top: 180%;
    padding-left: 50%;
    width: 100%;
}

#ingredient6 {
    position: absolute;
    padding-top: 210%;
    padding-left: 15%;
    width: 100%;
}

#ingredient7 {
    position: absolute;
    padding-top: 90%;
    padding-left: 65%;
    width: 100%;
}

#ingredient8 {
    position: absolute;
    padding-top: 70%;
    padding-left: 15%;
    width: 100%;
}

.images-ingredients {
    position: absolute;
    width: 100%;
}


.image-ingredient-14 img {
    position: absolute;
    max-width: 40%;
    padding-top: 60%;
    padding-left: 5%;
    -webkit-animation: fadein 1s ease-in;
    -moz-animation: fadein 1s ease-in;
         animation: fadein 1s ease-in;
     animation-fill-mode: forwards;
}

.image-ingredient-14 img:hover{
    -webkit-animation: fadeout 1s ease-in;
       -moz-animation: fadeout 1s ease-in;
            animation: fadeout 1s ease-in;
        animation-fill-mode: forwards;
}



.image-ingredient-1 img {
    position: absolute;
    max-width: 40%;
    padding-top: 0%;
    padding-left: 5%;
    -webkit-animation: fadein 1s ease-in;
    -moz-animation: fadein 1s ease-in;
         animation: fadein 1s ease-in;
     animation-fill-mode: forwards;
}

.image-ingredient-1 img:hover{
    -webkit-animation: fadeout 1s ease-in;
       -moz-animation: fadeout 1s ease-in;
            animation: fadeout 1s ease-in;
        animation-fill-mode: forwards;
}


.image-ingredient-17 img {
    position: absolute;
    max-width: 40%;
    padding-top: 80%;
    padding-left: 60%;
    -webkit-animation: fadein 1s ease-in;
    -moz-animation: fadein 1s ease-in;
         animation: fadein 1s ease-in;
     animation-fill-mode: forwards;
}

.image-ingredient-17 img:hover{
    -webkit-animation: fadeout 1s ease-in;
       -moz-animation: fadeout 1s ease-in;
            animation: fadeout 1s ease-in;
        animation-fill-mode: forwards;
}


.image-ingredient-12 img {
    position: absolute;
    width: 35%;
    padding-top: 190%;
    padding-left:11%;
    -webkit-animation: fadein 1s ease-in;
    -moz-animation: fadein 1s ease-in;
         animation: fadein 1s ease-in;
     animation-fill-mode: forwards;
}

.image-ingredient-12 img:hover{
    -webkit-animation: fadeout 1s ease-in;
       -moz-animation: fadeout 1s ease-in;
            animation: fadeout 1s ease-in;
        animation-fill-mode: forwards;
}



.image-ingredient-8 img {
    position: absolute;
    width: 30%;
    padding-top: 105%;
    padding-left: 20%;
    -webkit-animation: fadein 1s ease-in;
    -moz-animation: fadein 1s ease-in;
         animation: fadein 1s ease-in;
     animation-fill-mode: forwards;
}

.image-ingredient-8 img:hover{
    -webkit-animation: fadeout 1s ease-in;
       -moz-animation: fadeout 1s ease-in;
            animation: fadeout 1s ease-in;
        animation-fill-mode: forwards;
}



.image-ingredient-2 img {
    position: absolute;
    padding-top: 15%;
    padding-left: 50%;
    width: 800px;
}

.image-ingredient-2-reveal {
    transform: translateX(500px);
    transition: 4s ease-in-out;
}










.panelCon{
    bottom: 0;
    left:0;
    width: 100%;
    overflow: hidden;
}

#bubble-wrap {
    position: absolute;
    width: 100%;
    height: 1610vh;
    top: 0px;
    overflow: hidden;
    pointer-events: none;
}

.navigation {
    top:0%;
    height: 10vh;
    width: 100vw;
    display :flex;
    left:50%;
    background-color: whitesmoke;
    align-items: center;
    justify-content: center;
    z-index:100;
}

.nav{
    width:300px;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* .video {
    position: absolute;

} */

    #videosList {
    max-width: 60%; 
    overflow: hidden;
   }
   
   .thevideo1 {
     height: 30vw;
    width: 15wv;
     position: absolute;
     margin-bottom: 30%;
     margin-left: 5%;

     animation-delay: 10s;
     -webkit-animation: fadein 6s ease-in;
     -moz-animation: fadein 6s ease-in;
     animation: fadein 6s ease-in;
     -webkit-animation-fill-mode: forwards;
    }
   
    .video{
    height: 20vw;
    max-width:80vw;
   }
   
   /* Hide Play button + controls on iOS */
   video::-webkit-media-controls {
       display:none !important;
   }

   .thevideo2 {
    height: 54vw;
    width: 27wv;
    position: absolute;
    margin-top: 40%;
    margin-left: 3%;
    z-index: 8;

    animation-delay: 10s;
    -webkit-animation: fadein 9s ease-in;
    -moz-animation: fadein 9s ease-in;
    animation: fadein 9s ease-in;
    -webkit-animation-fill-mode: forwards;

   }

   .thevideo3 {
    height: 54vw;
    width: 27wv;
    position: absolute;
    margin-top: -10%;
    margin-left: 70%;

    animation-delay: 10s;
    -webkit-animation: fadein 6s ease-in;
    -moz-animation: fadein 6s ease-in;
    animation: fadein 6s ease-in;
    -webkit-animation-fill-mode: forwards;
   }