/* defaults */
* {
    box-sizing: border-box;
}

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;
    background-color: rgb(233, 233, 233);
}

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

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

ol, ul {
    list-style: none;
}

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

a :hover {
    z-index: 10000000;
}

.hidden {
    display: none;
}

.header {
    background-color: rgb(233, 233, 233);
    width: 100%;
    height: 6.5%;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 2000;
    /* border-bottom: 2px blue solid; */
    /* border-bottom: 1px rgb(0, 0, 0) solid; */
}
.superposition-simple {
    position: relative;
    width: 100%;
    top: 50%;
}  
.superposition-simple .texte-original {
    color: rgb(0, 0, 0);
    font-size: 30px;
    line-height: 0em;
    text-align: center;
    position: relative;
    
    
    /* transform: translate(0%, -50%); */
    width: 100%;
    font-family: times;
    
}
.superposition-simple .texte-original-2 {
    color:rgb(0, 0, 0);
    font-size: 30px;
    line-height: 0em;
    text-align: center;
    position: relative;
    
    
    /* transform: translate(0%, -50%); */
    width: 100%;
    font-family: times;
    z-index: 200;
    
    
}
.superposition-simple .texte-hover {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 1s ease;
    
}
.header:hover .texte-normal {
    opacity: 0;
}
.header:hover .texte-hover {
    opacity: 1;
}
.superposition-simple .texte-normal {
    transition: 1s ease;
}

.header:hover {
    cursor: none;  
}

.leftbar {
    width: 1%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgb(233, 233, 233);
    z-index: 2000;
}

.rightbar {
    width: 1%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background-color: rgb(233, 233, 233);
    z-index: 2000;
}

.container-1 {
    width: 100%;
    height: 100%;
    position: fixed;
    padding-left: 1%;
    padding-right: 1%;
    padding-top: 3.5%;
    padding-bottom: 3.5%;
    background-color: rgba (0, 0, 0, 0);
    z-index: 500;
}

.info-1 {
    width: 30%;
    position: absolute;
    
    left: 3%;
    top: 9%;
    text-align: left;
    font-size: 2.5vw;
    color: rgb(233, 233, 233);
    /* z-index: 200; */
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;
}

.info-2 {
    width: 45%;
    font-weight: bolder;
    font-family: 'Times New Roman', Times, serif;
    left: 3%;
    text-align: left;
    bottom: 9%;
    font-size: 2.5vw;
    color: rgb(233, 233, 233);
    position: absolute;
    /* z-index: 200; */
}

.info-3 {
    width: 32.5%;
    height: 81.9%;
    
    right: 2.5%;
    float: right;
    bottom: 9%;
    
    position: absolute;
    /* z-index: 200; */
    
}

img {
    position: absolute;
    color: rgb(233, 233, 233);

    /* height: 100%; */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gif {
    width: 100%;
    height: 100%;
    flex: wrap;
    object-fit: cover;

}

.dotsgrid {
    width: 100%;
    height: 100%;
    /* border: black 1px solid; */
    padding: 1%;
    display: flex;
    flex-wrap: wrap;
    z-index: 450;
}

.dotsgrid:hover {
    cursor: none;
}

.dot {
    width: 2px;
    height: 2px;
    border-radius: 100%;
    background-color: rgb(233, 233, 233);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: transform 10s ease-in-out;
    z-index: 500;
}

/* .dot-big {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: rgb(0, 0, 255) 1px solid;
    background-color: rgb(233, 233, 233);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: transform .5s ease-in-out;
    z-index: 350;
} */

.cell-2 {
    width: calc(100%/60);
    height: calc(100%/32);
    position: relative;
    z-index: 500;
}

.cell-2:hover .dot-big {
    transition: transform 5s ease-in-out;
    transform: scale(50);
}

.cell-2:hover .dot {
    transition: transform 0s ease-in-out;
    transform: scale(10);
}


.footer {
    bottom: 0;
    left: 0;
    position: fixed;
    height: 6.5%;
    width: 100%;
    background-color: rgb(233, 233, 233);
    /* border-top: black 1px solid; */
    z-index: 1500;
    display: flex;
}

.footer:hover {
    cursor: pointer;
}

.text-footer-right {
    text-align: left;
    font-size: 20px;
    color: black;
    font-family: times;
    position: absolute;
    left: 20px;
    top: 30%;
}

.text-footer-left {
    text-align: right;
    font-size: 20px;
    color: black;
    font-family: times;
    position: absolute;
    right: 20px;
    top: 30%;
    width: 100%;
}

.container-2 {
    background-color: blue;
    height: 100%;
    width: 100%;
    /* padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px; */
    position: relative;
    display: flex;
}



.container-3 {
    background-color: blue;
    height: 9500px;
    width: 100%;
    /* padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px; */
    position: relative;
    display: flex;
    
   
    
}
  
  .bulles {
    width: 63.6%;
    height: 9500px;
    background-color: blue;
    float: left;
    text-align: center;
  }
  
  .color-head {
    
    margin-top: -9500px;
    width: 36.4%;
    height:9500px;
    float: left;
    text-align: centeR;
    /* z-index: 8000; */
    z-index: 400;
  }

    .cache{
        background-color: blue;
        height: 52%;
        position: fixed;
        bottom:0px;
        width: 100%;
        z-index: 450;
        
    }

.color-1 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 400;
    background-color: blue;
    display: flex;
    
}

.color-2 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 401;
    background-color: blue;
    display: flex;
    
}

.color-3 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 401;
    background-color:blue;
    display: flex;
    
}

.color-4 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 401;
    background-color: blue;
    display: flex;
    
}

.color-5 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 401;
    background-color:blue;
    display: flex;
    
}

.color-6 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 401;
    background-color: blue;
    display: flex;
    
}

.color-7 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 401;
    background-color:blue;
    display: flex;
    
}

.color-8 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 401;
    background-color: blue;
    display: flex;
    
}

.color-9 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 401;
    background-color: blue;
    display: flex;
    
}

.color-10 {
    width: 100%;
    height: calc(100%/10);
    position: relative;
    z-index: 401;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    
}

/* .color-1 {
    background-color: blue;
}

.color-2 {
    background-color: blue;
}

.color-3 {
    background-color: blue;
}

.color-4 {
    background-color: blue;
}

.color-5 {
    background-color: blue;
}

.color-6 {
    background-color: blue;
}

.color-7 {
    background-color: blue;
}

.color-8 {
    background-color: blue;
}

.color-9 {
    background-color: blue;
}

.color-10 {
    background-color: blue;
} */


.bulle-1 {
    /* margin: 20px; */
    width: 50%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 1%;
    position: sticky;
    top: 9%;
    float: right;
    z-index: 1000;
    /* background-color: blueviolet; */
}

.bulle-1-res {
    /* margin: 20px; */
    width: 50%;
    margin-left: 1%;
    margin-right: 30%;
    margin-bottom: 1%;
    position: sticky;
    top: 48%;
    float: right;
    z-index: 1000;
    display: none;
    /* background-color: blueviolet; */
}

/* .annee-1 {
    font-size: 10em;
    font-family: times;
    color: rgb(233, 233, 233);
    margin-left: 1%;
    margin-right: -40%;
    margin-bottom: 1%;
    position: sticky;
    top: 9%;
    float: right;
    z-index: 1000;
} */


.bulle-2 {
    /* padding-top:650px ; */
    width: 55.5%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top: 4%;
    
    position: sticky;
    top: 25%;
    
    z-index: 1000;
    /* background-color: chocolate; */
}

.bulle-2-res {
    /* padding-top:650px ; */
    width: 55.5%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-right: 10%;
    margin-top: 4%;
    position: sticky;
    top: 53%;
    display: none;
    z-index: 1000;
    /* background-color: chocolate; */
}


.bulle-3 {
    /* padding-top:650px ; */
    width: 69%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top: 9%;
    position: sticky;
    top: 17%;
    
    z-index: 1000;
    /* background-color: chocolate; */
}

.bulle-3-res {
    /* padding-top:650px ; */
    width: 61%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top: 9%;
    margin-right: 28%;
    position: sticky;
    top: 84%;
    display: none;
    z-index: 1000;
    /* background-color: chocolate; */
}


.bulle-4 {
    /* padding-top:650px ; */
    width: 49%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top: 13.5%;
    position: sticky;
    top: 73.6%;
    
    z-index: 1000;
    /* background-color: chocolate; */
}

.bulle-4-res {
    /* padding-top:650px ; */
    width: 69%;
    float: left;
    margin: 1%;
    margin-left: 3.5%;
    margin-top: 13.5%;
    position: sticky;
    top: 63%;
    display: none;
    z-index: 1000;
    /* background-color: chocolate; */
}


.bulle-5 {
    /* padding-top:650px ; */
    width: 59%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top:18%;
    position: sticky;
    top: 15%;
    
    z-index: 1000;
    /* background-color: chocolate; */
}


.bulle-5-res {
    /* padding-top:650px ; */
    width: 50%;
    float: right;
    
    margin-top:18%;
    margin-right: 3.5%;
    position: sticky;
    top: 60%;
    display: none;
    z-index: 1000;
    /* background-color: chocolate; */
}


.bulle-6 {
    /* padding-top:650px ; */
    width: 96%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top:22%;
    position: sticky;
    top: 45%;
    
    z-index: 1000;
    /* background-color: chocolate; */
}

.bulle-6-res {
    /* padding-top:650px ; */
    width: 63%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top:22%;
    margin-right: 20%;
    position: sticky;
    top: 66%;
    display: none;
    
    z-index: 1000;
    /* background-color: chocolate; */
}


.bulle-7 {
    /* padding-top:650px ; */
    width: 78%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top:22%;
    position: sticky;
    top: 55%;
    
    z-index: 1000;
    /* background-color: chocolate; */
}

.bulle-7-res {
    /* padding-top:650px ; */
    width: 48%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top:22%;
    margin-right: 40%;
    position: sticky;
    top: 51%;
    display: none;
    z-index: 1000;
    /* background-color: chocolate; */
}


.bulle-8 {
    /* padding-top:650px ; */
    width: 59%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top:22%;
    position: sticky;
    top: 70%;
    
    z-index: 1000;
    /* background-color: chocolate; */
}

.bulle-8-res {
    /* padding-top:650px ; */
    width: 48%;
    float: left;
    margin: 1%;
    margin-left: 3.5%;
    margin-top:22%;
    position: sticky;
    top: 77.3%;
    display: none;
    z-index: 1000;
    /* background-color: chocolate; */
}



.bulle-9 {
    /* padding-top:650px ; */
    width: 82%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top:22%;
    position: sticky;
    top: 40%;
    
    z-index: 1000;
    /* background-color: chocolate; */
}

.bulle-9-res {
    /* padding-top:650px ; */
    width: 58%;
    float: left;
    margin: 1%;
    margin-left: 3.5%;
    margin-top:22%;
    position: sticky;
    top: 48%;
    display: none;
    z-index: 1000;
    /* background-color: chocolate; */
}



.bulle-10 {
    /* padding-top:650px ; */
    width: 48%;
    float: right;
    margin: 1%;
    margin-left: 1%;
    margin-top:22%;
    position: sticky;
    top: 50%;
    
    z-index: 1000;
    /* background-color: chocolate; */
}

.bulle-10-res {
    /* padding-top:650px ; */
    width: 67%;
    float: right;
    margin: 1%;
    margin-right: 3.5%;
    margin-left: 1%;
    margin-top:22%;
    position: sticky;
    top: 48%;
    display: none;
    z-index: 1000;
    /* background-color: chocolate; */
}


.zone-vide {
        height: 850px;
        width: 100%;
        z-index: 1;
}

.container-4 {
    background-color: blue;
    height: 100%;
    width: 100%;
    /* padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px; */
    position: relative;
    display: flex;
    z-index: 100000;
    
}

.text-final {
    position: absolute;
    top: 45%;
    color: rgb(233, 233, 233);
    width: 100%;
    text-align: center;
    font-size: 60px;
    font-family: times;
    font-weight: bolder;

}