:root {
    --sombre: #3E454C;
    --bleusombre: #345B75;
    --bleuclair: #2185C5;
    --jaune: #FFF6E5;
}
body {
    background-color: #000;
    font-family: 'Oxygen', sans-serif;
    color: #FFF;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    font-family: Rufina;
    margin: 0;
    padding: 0;
    color: #ffffff;
}
.tm {
    max-width: 900px;
    padding-left: 0;
    padding-right: 0;
    width: 100vw;
    position: relative;
    box-sizing: border-box;
    /* overflow: hidden; */
}
h1 {
    font-size: 4rem;
    margin: 0;
    line-height: 1;
    padding: 0;
}

img {
    max-width: 100%;
}
.sticky {
    position: sticky;
    top: 0;
}

.projet-cont {
    display: flex;
}
a {
    color: currentColor;
}
.tcentre {
    text-align: center;
}
.projet:not(:last-child) {margin-right: 50px;}
.bouton {
    display: flex;
    text-decoration: none;
    background: rgba(255,255,255,0.14);
    border: 1px solid #979797;
    border-radius: 0.7em;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0.3em 0.8em;
    color: #FFF;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all ease .2s;
}
.bouton:hover {
    background-image: linear-gradient(85deg, #444450, #313138);
    border-color: #7b7b7d;
    box-shadow: 5px 3px 5px 0px #0f0f18;
    transform: scale(2);
}
h2 {
    font-size: 3.7rem;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid;
    padding-bottom: 0.3em;
    margin-top: .6em;
    position: relative;
}
.tm {
    max-width: 1900px;
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}
@keyframes animbtn {
    0%,100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
  }
  .animation {
    animation: animbtn ease-in-out 1.1s infinite;
  }
  .transformer-txt span span {
    opacity: .3;
    transition: all ease .2s;
}

.methode {
    background: #345B75;
    padding-top: 100px;
}

.methode .item {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.methode .tm.col2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.pitch {
    width: 100%;
    height: 100%;
    top: 0px;
    object-fit: cover;
}

.cont {
    position: absolute;
}

.methode .droite .cont {
    height: 100vh;
    height: 100dvh;
    position: sticky;
    display: flex;
    align-items: center;
    top: 0;
}


.controller-video {
    color: #FFF;
    font-size: 1rem;
}

.video-cont {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
}

.projets {
    background-color: var(--sombre);
    height: 250vh;
}
.projets {
    padding: 100px 0;
    box-sizing: border-box;
    width: 100vw;
    position: relative;
  }
  
  .projets-cont {
    display: flex;
    flex-wrap: nowrap;
    width: 250vw;
    gap: 70px;
  }
  .projet-overflow {
    width: 100vw;
    overflow: hidden;
    position: sticky;
    top: 40px;
    margin-top: 80px;
  }
  
  .projet-item {
    padding: 0;
    width: 333px;
    margin-right: 0px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 333/585;
  }
  
  .projet-item img {
    width: 100%;
    aspect-ratio: 333/445;
    object-fit: cover;
    position: relative;
    box-shadow: 8px 8px 37px 0 rgba(0,0,0,0.50);
  }
  
  .voir-tout {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .projet-item.vide {
    border-color: transparent;
  }
  
@media (max-width:700px) {
    .methode .tm {display: flex;flex-direction: column-reverse;padding-bottom: 20px;}  
    .methode .droite .cont {
        /*height: auto;*/
        
    }
    .methode .droite {
        /*position: sticky;*/
        /*top:20px;*/
        /*margin-top:20px;*/
    }
    .video-cont {
        aspect-ratio: 1 / 1.5;
    }

}

@keyframes scrollbas {
    0%, 100% {
        transform: translate(0, 0);
    }
    
    50% {
        transform: translate(0, -10px);
    }
}
.flechebas {
    animation: scrollbas ease 1.5s infinite;
}

.test2 {
    background: red;
    position: sticky;
    top: 20px;
    width: 100px;
    height: 50px;
}

.test1 {
    height: 1240px;
    position: relative;
}

.projet-en-cours {
    position: sticky;
    top: 210px;
    width: 100px;
    height: 100px;
    background: red;
}

.equipe-items {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
    margin-top: 60px;
}
@media (max-width:700px) {
    .equipe-items {
        grid-template-columns: repeat(3,1fr);
}
}

.equipe-item span {
    display: block;
}

.equipe-item {
    text-align: center;
    font-size: 0.6em;
    text-decoration: none;
}

.equipe-item img {
    transition: all ease .3s;
    margin-bottom: 1em;
}

.histoire {
    background: var(--jaune);
    padding: 100px 0 100px 0;
    min-height: 50vh;
    color: var(--sombre);
}

p {
    font-size: 1.2em;
}

.histoire h2 {
    color: var(--sombre);
}

.histoire strong {
    color: #e56147;
}

.equipe {
    background: var(--bleusombre);
    padding: 100px 0 100px 0;
}
@media (max-width:600px) {
    h1 {font-size: 3rem}
    h2 {font-size: 3rem}
}
@media (max-width:400px) {
    h1, h2 {font-size: 2rem}
}

h3 {
    font-size: 1.7rem;
}

.methode li {
    list-style-type: none;
    display: flex;
    gap: 10px;
    margin-bottom: 1em;
    font-size: 1.3em;
}

.methode ul {
    padding: 0;
}

.methode h3 {
    margin-bottom: 1em;
    font-size: 2em;
}
.methode, .methode h3 {
color: var(--jaune);
}
.methode .contenu strong {
    color: #ff9682;
}
.methode .petit {
  font-size: .8em;
}

.mentions-legales {
    background: var(--bleusombre);
    padding-top: 100px;
    padding-bottom: 100px;
}

.mentions-legales h2 {
    font-size: 2rem;
}

.ml {
    font-size: .8em;
    padding-top: 1em;
    padding-bottom: 1em;
    text-align: center;
    position: relative;
    z-index: 99999999999;
    background: #2b3035;
}

.projet-item:not(.vide) {
    /* background: var(--bleusombre); */
}
.projet-titre {
    font-family: 'Rufina', serif;
    line-height: 1.1;
    margin-bottom: 0.6em;
    font-size: 1.3em;
}

.projet-desc {
    font-size: 1.1em;
    margin-top: 1em;
}   
@media (max-width: 500px) {
    .tm {
        padding-left: 20px;
        padding-right: 20px;
    }
    .methode h3 {
        font-size:1.5em
    }
    .methode li {
        font-size: 1em;
    }
    .methode .tm.col2 {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }
}

.curseur-cont {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    /* overflow: hidden; */
}

.curseur-cont2 {
    position: sticky;
    top: 40px;
    background: red;
    width: 100vw;
    height: 660px;
}

.legales {position: relative;z-index: 999999;}
.logointro svg {
    width: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
}
.logointro {
    font-size:180px;
}
.logointrocont {
    transform: translate3d(0,0,0) scale(0);
    /* opacity:0; */
}
.logointrocont.active {
    transform: translate3d(0%,0%,0) scale(1);
    transition: all cubic-bezier(0.25, 0.1, 0.28, 1.61) .5s;
    opacity:1;
    position: absolute;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

a.equipe-item:hover img {transform: translate(-10px, -10px);box-shadow: 10px 10px 1px rgb(30 25 25);transition: all ease .3s;}