:root {
  font-size: 16px;
}
@media (min-width: 1000px) {
  :root {
    font-size: 20px;
  }
}

body {
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #0B1215;
  margin: 0px;
  background-color: #F0F8FF;
}

h1 {
  width: 80%;
  font-size: 49px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 90%;
}
@media (min-width: 500px) {
  h1 {
    font-size: clamp(49px, 13vw, 105px);
  }
}

h2 {
  font-size: 23px;
  text-transform: uppercase;
}

h3 {
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 110%;
}

@media (min-width: 500px) {
  p {
    max-width: 75ch;
  }
}

.col1 {
  grid-column: 1;
}

.col2 {
  grid-column: 2;
}

.scrollSpyContainer {
  background-color: #F0F8FF;
  z-index: 100;
  position: fixed;
  right: 25px;
  top: 25px;
  width: 60vw;
  height: 10px;
  border: 3px solid;
  border-color: #0B1215;
  border-radius: 8px;
  padding: 10px;
}
@media (min-width: 500px) {
  .scrollSpyContainer {
    width: clamp(200px, 60vw, 500px);
    right: 30px;
  }
}

.scrollSpy {
  width: 100%;
  height: 10px;
  background-color: #D9D9D9;
  border-radius: 16px;
}

.scrollSpy__progress {
  --scrollPercent: 1% ;
  width: var(--scrollPercent);
  height: 100%;
  background-color: #0B1215;
  border-radius: 16px;
}

header {
  position: fixed;
  top: 15px;
  z-index: -1;
  padding-top: 25px;
  margin: 0 15px;
}
@media (min-width: 1000px) {
  header {
    display: grid;
    grid-template: fit-content(60px) 1fr/2fr 3fr;
    padding: 30px 15px;
  }
}
@media (min-width: 500px) {
  header {
    margin: 0 30px;
  }
}
header span {
  display: block;
}
@media (min-width: 1000px) {
  header span {
    grid-column: 2;
  }
}
header .img__header {
  background-image: url(../assets/images/fish.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: clamp(100px, 25vw, 400px);
  left: 200px;
  rotate: 290deg;
  height: 800px;
  width: 400px;
}
@media (min-width: 1000px) {
  header .img__header {
    position: unset;
    rotate: 0deg;
    height: 250%;
    grid-column: 1;
    grid-row: 2;
  }
}

.header__prux {
  font-family: "Geist Mono", monospace;
  color: #F30000;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  font-weight: 600;
  grid-row: 1;
  grid-column: 1;
}

@media (min-width: 1000px) {
  .title__span--1 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    grid-row: 1;
    grid-column: 1/-1;
  }
}

@media (min-width: 1000px) {
  .title__span--2 {
    grid-row: 2;
    grid-column: 1;
  }
}

@media (min-width: 1000px) {
  .title__span--3 {
    grid-row: 3;
    grid-column: 1/-1;
  }
}

.title__span--p {
  grid-column: 2;
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  text-transform: none;
  font-weight: 400;
  max-width: 75ch;
}

@media (min-width: 1000px) {
  h1 {
    grid-row: 2;
    grid-column: 2;
    font-size: clamp(87px, 8vw, 185px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: grid;
    grid-template: 1fr 1fr 1fr/1fr 3fr 1fr;
    gap: 20px;
  }
}

.contexte {
  z-index: 0;
  margin-top: 55vh;
  padding: 20px 20px;
  background-color: #0B1215;
  color: #F0F8FF;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}
@media (min-width: 500px) {
  .contexte {
    margin-top: clamp(500px, 80vw, 650px);
  }
}
@media (min-width: 1000px) {
  .contexte {
    display: grid;
    grid-template: repeat(3, fit-content(30px))/4fr 3fr 2fr 1fr;
    margin-top: 80vh;
    gap: 1rem 2rem;
    padding: 60px 100px;
  }
  .contexte p {
    margin: 0;
    max-width: 75ch;
  }
}

.contexte__col1 {
  grid-column: 1;
}

.contexte__col2 {
  grid-column: 2/4;
  grid-row: 2/-1;
}

.contexte__row1 {
  grid-row: 2;
}

.contexte__row2 {
  grid-row: 3;
}

.contexte__row3 {
  grid-row: 4;
}

.reflexion {
  z-index: 0;
  background: #F0F8FF;
  padding: 20px 20px;
}
@media (min-width: 1000px) {
  .reflexion {
    display: grid;
    grid-template-column: 4fr 3fr 2fr 1fr;
    gap: 1rem 2rem;
    padding: 20px 100px;
  }
}

.reflexion__graphique .reflexion__img {
  background-color: #F0F8FF;
  position: absolute;
  height: 250px;
  transform: translateX(-100%);
  width: auto;
  transition: transform 0.3s ease;
}
@media (min-width: 500px) {
  .reflexion__graphique .reflexion__img {
    width: clamp(100px, 100%, 650px);
  }
}
@media (min-width: 1000px) {
  .reflexion__graphique .reflexion__img {
    width: 100%;
  }
}
.reflexion__graphique .reflexion__img--active {
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.reflexion__img__container {
  position: relative;
  border: 2px solid #0B1215;
  height: 250px;
  overflow: hidden;
  margin: 1rem 0;
}

.reflexion__cmds {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 500px) {
  .reflexion__cmds {
    width: clamp(100px, 100%, 650px);
  }
}
@media (min-width: 1000px) {
  .reflexion__cmds {
    width: 100%;
  }
}
.reflexion__cmds .reflexion__btn {
  cursor: pointer;
  height: 40px;
  width: 80px;
  background-color: #F0F8FF;
  border-radius: 50px;
  border: 2px solid;
  border-color: #0B1215;
  overflow: hidden;
  transition: all 0.3s ease;
}
.reflexion__cmds .reflexion__btn svg {
  height: 24px;
  width: 24px;
}
.reflexion__cmds .reflexion__btn:hover {
  background-color: #0B1215;
}
.reflexion__cmds .reflexion__btn:hover svg {
  fill: #F0F8FF;
}

.reflexion__nav {
  height: 40px;
  margin: 13px 0;
  display: flex;
  gap: 10px;
  flex-direction: row;
  list-style: none;
  padding: 0;
  align-items: center;
  height: 100%;
}
.reflexion__nav .reflexion__nav__element {
  margin: none;
  text-indent: 400px;
  text-wrap: nowrap;
  overflow: hidden;
  width: 5px;
  border-radius: 25px;
  height: 15px;
  background: rgba(0, 0, 0, 0.137);
  transition: all 0.3s ease;
}
.reflexion__nav .reflexion__nav__element--active {
  height: 30px;
  background: #0B1215;
}

.reflexion__row1 {
  grid-row: 1;
}

.reflexion__row2 {
  grid-row: 2;
}

.idees {
  z-index: 0;
  background: #F0F8FF;
  padding: 20px 20px;
}
@media (min-width: 1000px) {
  .idees {
    display: grid;
    grid-template: repeat(3, fit-content(30px))/4fr 3fr 2fr 1fr;
    gap: 1rem 2rem;
    padding: 20px 100px;
  }
}

.idees__ul {
  list-style: disc outside none;
  margin-left: 0;
  padding-left: 16px;
}
.idees__ul .idees__li {
  font-weight: 500;
}
.idees__ul .idees__li--title {
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
}

.idees__ul--col2 {
  grid-column: 2/-1;
}

.filler__container {
  background-color: #F0F8FF;
  z-index: 5;
  isolation: isolate;
  height: 3px;
  width: 100%;
}
.filler__container .filler {
  border: 1px rgba(0, 0, 0, 0.3) solid;
  width: 250px;
  justify-self: center;
}

.mise_commun {
  z-index: 0;
  background: #F0F8FF;
  padding: 20px 0 180px 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
@media (min-width: 500px) {
  .mise_commun {
    padding-bottom: clamp(180px, 30vw, 1000px);
  }
}
@media (min-width: 1000px) {
  .mise_commun {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.concepts_finaux_1 {
  position: relative;
  background-color: #0B1215;
  z-index: 5;
  padding: 40px 40px;
  box-sizing: border-box;
  color: #F0F8FF;
  margin-top: -20px;
  isolation: isolate;
}
.concepts_finaux_1 h2 {
  padding: 0;
  margin: 0;
}
.concepts_finaux_1 .concepts_finaux_1__1element {
  grid-column: 1;
  grid-row: 2;
}
.concepts_finaux_1 .concepts_finaux_1__2element {
  grid-column: 2/-2;
  grid-row: 2;
}
.concepts_finaux_1 .concepts_finaux_1__3element {
  grid-column: 1/-3;
  grid-row: 3;
}
.concepts_finaux_1 .concepts_finaux_1__4element {
  grid-column: 1/2;
  grid-row: 4;
}
.concepts_finaux_1 .concepts_finaux_1__5element {
  grid-column: 1/3;
  grid-row: 5;
}
@media (min-width: 1000px) {
  .concepts_finaux_1 {
    display: grid;
    padding: 40px 100px;
    grid-template: repeat(3, fit-content(30px))/4fr 3fr 2fr 1fr;
    gap: 1rem 2rem;
  }
}
.concepts_finaux_1 .concepts_finaux_img_1 {
  height: auto;
  width: 100vw;
  margin-left: -40px;
  margin-right: -40px;
  box-sizing: border-box;
}
@media (min-width: 500px) {
  .concepts_finaux_1 .concepts_finaux_img_1 {
    margin: 10px;
    max-width: 400px;
    align-self: center;
  }
}
@media (min-width: 1000px) {
  .concepts_finaux_1 .concepts_finaux_img_1 {
    width: auto;
    max-height: 300px;
    max-width: none;
    margin: 0px;
    height: auto;
  }
}

.concepts_finaux_1::before {
  content: "";
  z-index: 100;
  background-image: url(../assets/images/boat.webp);
  background-size: cover;
  display: block;
  position: absolute;
  top: -300px;
  right: 50px;
  height: 300px;
  width: 45%;
  background-position: 0;
}
@media (max-width: 1000px) {
  .concepts_finaux_1::before {
    top: -200px;
    height: 200px;
  }
}
@media (max-width: 500px) {
  .concepts_finaux_1::before {
    top: -150px;
    height: 200px;
    width: 300px;
  }
}

.concepts_finaux_1__container {
  z-index: 101;
  width: 100%;
  position: absolute;
  top: -110px;
  overflow-x: hidden;
  margin: 0 -40px;
}
@media (min-width: 1000px) {
  .concepts_finaux_1__container {
    margin: 0;
  }
}
@media (min-width: 500px) {
  .concepts_finaux_1__container {
    top: -35vw;
  }
}
.concepts_finaux_1__container svg .path-0 {
  fill: #0B1215;
  width: 100%;
  -webkit-animation: pathAnim-0 12s;
          animation: pathAnim-0 12s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes pathAnim-0 {
  0% {
    d: path("M 0,500 L 0,187 C 214.2666666666667,155.13333333333333 428.5333333333334,123.26666666666668 560,133 C 691.4666666666666,142.73333333333332 740.1333333333333,194.06666666666666 873,210 C 1005.8666666666667,225.93333333333334 1222.9333333333334,206.46666666666667 1440,187 L 1440,500 L 0,500 Z");
  }
  25% {
    d: path("M 0,500 L 0,187 C 135.7333333333333,153.39999999999998 271.4666666666666,119.79999999999998 427,110 C 582.5333333333334,100.20000000000002 757.8666666666668,114.20000000000002 930,131 C 1102.1333333333332,147.79999999999998 1271.0666666666666,167.39999999999998 1440,187 L 1440,500 L 0,500 Z");
  }
  50% {
    d: path("M 0,500 L 0,187 C 139.86666666666667,216.46666666666667 279.73333333333335,245.93333333333334 448,236 C 616.2666666666667,226.06666666666666 812.9333333333334,176.73333333333332 983,162 C 1153.0666666666666,147.26666666666668 1296.5333333333333,167.13333333333333 1440,187 L 1440,500 L 0,500 Z");
  }
  75% {
    d: path("M 0,500 L 0,187 C 149.86666666666667,213.13333333333333 299.73333333333335,239.26666666666668 471,228 C 642.2666666666667,216.73333333333332 834.9333333333334,168.06666666666666 1000,155 C 1165.0666666666666,141.93333333333334 1302.5333333333333,164.46666666666667 1440,187 L 1440,500 L 0,500 Z");
  }
  100% {
    d: path("M 0,500 L 0,187 C 214.2666666666667,155.13333333333333 428.5333333333334,123.26666666666668 560,133 C 691.4666666666666,142.73333333333332 740.1333333333333,194.06666666666666 873,210 C 1005.8666666666667,225.93333333333334 1222.9333333333334,206.46666666666667 1440,187 L 1440,500 L 0,500 Z");
  }
}
@keyframes pathAnim-0 {
  0% {
    d: path("M 0,500 L 0,187 C 214.2666666666667,155.13333333333333 428.5333333333334,123.26666666666668 560,133 C 691.4666666666666,142.73333333333332 740.1333333333333,194.06666666666666 873,210 C 1005.8666666666667,225.93333333333334 1222.9333333333334,206.46666666666667 1440,187 L 1440,500 L 0,500 Z");
  }
  25% {
    d: path("M 0,500 L 0,187 C 135.7333333333333,153.39999999999998 271.4666666666666,119.79999999999998 427,110 C 582.5333333333334,100.20000000000002 757.8666666666668,114.20000000000002 930,131 C 1102.1333333333332,147.79999999999998 1271.0666666666666,167.39999999999998 1440,187 L 1440,500 L 0,500 Z");
  }
  50% {
    d: path("M 0,500 L 0,187 C 139.86666666666667,216.46666666666667 279.73333333333335,245.93333333333334 448,236 C 616.2666666666667,226.06666666666666 812.9333333333334,176.73333333333332 983,162 C 1153.0666666666666,147.26666666666668 1296.5333333333333,167.13333333333333 1440,187 L 1440,500 L 0,500 Z");
  }
  75% {
    d: path("M 0,500 L 0,187 C 149.86666666666667,213.13333333333333 299.73333333333335,239.26666666666668 471,228 C 642.2666666666667,216.73333333333332 834.9333333333334,168.06666666666666 1000,155 C 1165.0666666666666,141.93333333333334 1302.5333333333333,164.46666666666667 1440,187 L 1440,500 L 0,500 Z");
  }
  100% {
    d: path("M 0,500 L 0,187 C 214.2666666666667,155.13333333333333 428.5333333333334,123.26666666666668 560,133 C 691.4666666666666,142.73333333333332 740.1333333333333,194.06666666666666 873,210 C 1005.8666666666667,225.93333333333334 1222.9333333333334,206.46666666666667 1440,187 L 1440,500 L 0,500 Z");
  }
}

.concepts_finaux_2 {
  background-color: #F0F8FF;
  z-index: 5;
  padding: 40px 40px;
  color: #0B1215;
  margin-top: -20px;
  isolation: isolate;
}
@media (min-width: 1000px) {
  .concepts_finaux_2 {
    display: grid;
    padding: 40px 100px;
    grid-template: repeat(4, fit-content(30px))/4fr 3fr 2fr 1fr;
    gap: 1rem 2rem;
  }
}
.concepts_finaux_2 .concepts_finaux__1element {
  grid-column: 1/-1;
  grid-row: 2;
}
.concepts_finaux_2 .concepts_finaux__2element {
  grid-column: 3/-1;
  grid-row: 3;
}
.concepts_finaux_2 .concepts_finaux__3element {
  grid-column: 1;
  grid-row: 3 -1;
}
.concepts_finaux_2 .concepts_finaux__4element {
  grid-column: 3/-1;
  grid-row: 4;
}
.concepts_finaux_2 .concepts_finaux_img_2 {
  height: 200px;
  width: auto;
}
@media (min-width: 500px) {
  .concepts_finaux_2 .concepts_finaux_img_2 {
    max-width: 600px;
    align-self: center;
  }
}
@media (min-width: 1000px) {
  .concepts_finaux_2 .concepts_finaux_img_2 {
    height: auto;
    width: 100%;
  }
}

.caroussel__groupe {
  isolation: isolate;
  z-index: 5;
  background: #F0F8FF;
  padding: 20px 20px 100px 20px;
}
@media (min-width: 500px) {
  .caroussel__groupe {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.carroussel__img {
  background-size: cover;
  height: 100px;
  aspect-ratio: 1/1;
  border-radius: 100px;
}
@media (min-width: 1000px) {
  .carroussel__img {
    height: 200px;
  }
}

.caroussel__caroussel {
  display: flex;
  gap: 60px;
  overflow-x: auto;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 30px;
  -ms-scroll-snap-type: x proximity;
      scroll-snap-type: x proximity;
}

.carroussel__element {
  display: flex;
  flex-direction: column;
  align-content: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  scroll-snap-align: center;
}
.carroussel__element h3 {
  text-align: center;
}

.footer {
  isolation: isolate;
  z-index: 5;
  background: #0B1215;
  color: #F0F8FF;
  padding: 20px 20px 250px 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.footer h2 {
  font-size: 49px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 90%;
}
@media (min-width: 500px) {
  .footer h2 {
    font-size: clamp(49px, 8vw, 105px);
  }
}
@media (min-width: 1000px) {
  .footer h2 {
    font-size: clamp(105px, 8vw, 223px);
  }
}

.footer__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: 23px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-content: center;
  margin: 10px 0;
}
.footer__btn svg {
  align-self: center;
  height: 24px;
  aspect-ratio: 1/1;
}
.footer__btn::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #F0F8FF;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0%);
  transform-origin: left;
  transition: all 0.3s ease;
}
.footer__btn::after svg {
  transition: all 0.3s ease;
}
.footer__btn:hover::after {
  transform: scaleX(100%);
}
.footer__btn:hover svg {
  rotate: 10deg;
}

/*# sourceMappingURL=app.css.map*/