@charset "UTF-8";
/*
.form-panel{
  @include form-field;
  .form-label{
    line-height: 40px !important;
    padding-right: 40px;
  }
  .form-input{
    .form-input-wrapper{
      position: relative;

      i{
        position: absolute;
        bottom: 100%;
        right: 10px;
        color: #555;
        font-size: 12px;
        line-height: 40px;
        border: 0;
      }

    }
  }

  .filter-panel{
    $header-height: 60px;

    position: fixed;
    top: 100%;
    left: 50%;
    //bottom: 0;
    max-height: 600px;
    height: 80vh;
    width: 80vw;
    max-width: 600px;
    background: rgba(255,255,255,1);
    z-index: 20000;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    flex-direction: column;
    justify-content: stretch;
    transform: translateX(-50%) translateY(50%);
    display: flex;
    overflow: hidden;
    @include rem(font-size, 16px);

    .form-panel.active &{
      //display: block;
    }

    > *{
      padding: var(--gutter);
      position: relative;
    }

    header{
      padding: 0;
      border-bottom: 1px solid #eee;
      h6{
        text-transform: uppercase;
        @include rem(font-size, 14px);
        line-height: $header-height;
        padding-left: var(--gutter);
        @include animate;
      }

      .bt-close{
        @include animate;
        position: absolute;
        top: 0;
        right: 0;
        background: none;
        border: 0;
        @include rem(font-size, 20px);
        line-height: $header-height;
        width: $header-height;
      }

      .bt-back{
        @include animate;
        position: absolute;
        top: 0;
        left: 0;
        background: none;
        border: 0;
        @include rem(font-size, 20px);
        line-height: $header-height;
        width: $header-height;
      }
    }

    footer{
      button{
        @extend %button;
      }
    }

    label{
      padding: calc(var(--gutter)/4);
      display: block;
      &:hover{
        background: #eee;
      }
    }

    &[data-index="0"]{
      [data-index="0"]{
        left: 0%;
      }
      [data-index="1"]{
        left: 100%;
      }
      .bt-back{
        transform: translateX(-100%);
      }
      h6{
        transform: translateX(0px);
      }
    }

    &[data-index="1"]{
      [data-index="0"]{
        left: -100%;
      }
      [data-index="1"]{
        left: 0%;
      }
      .bt-back{
        transform: translateX(0%);
      }
      h6{
        transform: translateX($header-height/2);
      }
    }

    .wrapper-main{
      height: 100%;
      max-height: 100%;
      min-width: 100%;
      position: relative;
    }

    .wrapper{
      @include animate;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      overflow: auto;

      &[data-index="0"]{
        > div{
          > ul{
            display: none;
          }
        }
      }

      &[data-index="1"]{
        > div{
          > label{
            display: none;
          }
          > ul{
            display: block;
          }
        }
      }

      > div{
        label{
          font-weight: 300;
          padding: 0 calc(2 * var(--gutter));
          border-bottom: 1px solid #eee;
          position: relative;
          display: flex;
          align-items: center;
          min-height: 60px;
          i.color{
            display: inline-block;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            margin-right: 0.5em;
            transform: translateY(4px);
            border: 2px solid #fff;
            box-shadow: 0px 0px 2px #aaa;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            overflow: hidden;
          }
          figure{
            width: 80px;
            display: block;
            margin-right: 1em;
            img{
              width: 100%;
            }
          }
          span{
            display: block;
          }
          i.tick{
            opacity: 0.1;
            float: left;
            margin-right: 1em;
          }
          input{
            position: absolute;
            visibility: hidden;
            opacity: 0;

            &:checked ~ i{
              opacity: 1;
            }
            &:checked ~ span{
              font-weight: bold;
            }
          }
        }
        > label{
          font-weight: 600;
          .count{
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 1em;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background: rgba(0,0,0,0.05);
            font-size: 13px;
            font-style: normal;
            opacity: 1;

            &[rel="0"]{
              opacity: 0;
            }
          }
        }
        ul{
          @include clearlist;
          li{
            &.all{
              background: #f7f7f7;
              label{
                border-color: #aaa;
                i.tick{
                  position: relative;
                  &:after{
                    content:"";
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translateY(-50%) translateX(-50%);
                    width: 24px;
                    height: 24px;
                    border: 1px solid #000;
                  }
                }
              }
            }
          }
          &.has-all{
            li{
              input ~ .tick{
                opacity: 1;
              }
            }
          }
        }
        &.active ul{
          display: block;
        }
      }
    }
  }
}
*/
/* BREAKPOINTS */
/* MEDIA QUERIES */
/*
$lt-smartphone: only screen and (max-device-width: 576px);
*/
.is-xs, .is-s, .is-m, .is-l, .is-xl {
  display: none;
}

@media only screen and (min-width: 576px) {
  .is-xs {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .is-s {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
  .is-m {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  .is-l {
    display: block;
  }
}

@media only screen and (min-width: 1600px) {
  .is-xl {
    display: block;
  }
}

.only-xs, .only-s, .only-m, .only-l, .only-xl {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 576px) {
  .only-xs {
    display: block;
  }
}

@media only screen and (min-width: 577px) and (max-width: 768px) {
  .only-s {
    display: block;
  }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .only-m {
    display: block;
  }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
  .only-l {
    display: block;
  }
}

@media only screen and (min-width: 1201px) {
  .only-xl {
    display: block;
  }
}

.section-header > .wrapper, section > .wrapper, .navigation .header > .wrapper, #page-header > .wrapper, #page-footer > .wrapper {
  width: var(--wrapper-width);
  max-width: var(--wrapper-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 5vw;
}

[data-scroll-animation] {
  transition: all 200ms ease-in-out;
  transform: translateY(20%);
  opacity: 0;
}
[data-scroll-animation].fade-up {
  opacity: 1;
  transform: translateY(0);
}

@font-face {
  font-family: "GT Standard L Extended";
  src: url("../fonts/gt/GT-Standard-L-Extended-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "GT Standard L Extended";
  src: url("../fonts/gt/GT-Standard-L-Extended-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "GT Standard L Extended";
  src: url("../fonts/gt/GT-Standard-L-Extended-Semibold-Oblique.woff2") format("woff2");
  font-weight: 600;
  font-style: oblique;
}
@font-face {
  font-family: "GT Standard L Extended";
  src: url("../fonts/gt/GT-Standard-L-Extended-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "GT Standard L Extended";
  src: url("../fonts/gt/GT-Standard-L-Extended-Bold-Oblique.woff2") format("woff2");
  font-weight: bold;
  font-style: oblique;
}
@font-face {
  font-family: "GT Standard L Narrow";
  src: url("../fonts/gt/GT-Standard-L-Narrow-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "GT Standard L Narrow";
  src: url("../fonts/gt/GT-Standard-L-Narrow-Bold-Oblique.woff2") format("woff2");
  font-weight: bold;
  font-style: oblique;
}
@font-face {
  font-family: "GT Standard L Narrow";
  src: url("../fonts/gt/GT-Standard-L-Narrow-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "GT Standard L Narrow";
  src: url("../fonts/gt/GT-Standard-L-Narrow-Semibold-Oblique.woff2") format("woff2");
  font-weight: 600;
  font-style: oblique;
}
@font-face {
  font-family: "GT Standard L Standard";
  src: url("../fonts/gt/GT-Standard-L-Standard-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "GT Standard L Standard";
  src: url("../fonts/gt/GT-Standard-L-Standard-Bold-Oblique.woff2") format("woff2");
  font-weight: bold;
  font-style: oblique;
}
@font-face {
  font-family: "GT Standard Mono Standard";
  src: url("../fonts/gt/GT-Standard-Mono-Standard-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "GT Standard Mono Standard";
  src: url("../fonts/gt/GT-Standard-Mono-Standard-Bold-Oblique.woff2") format("woff2");
  font-weight: bold;
  font-style: oblique;
}
@font-face {
  font-family: "GT Standard Mono Narrow";
  src: url("../fonts/gt/GT-Standard-Mono-Narrow-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "GT Standard Mono Narrow";
  src: url("../fonts/gt/GT-Standard-Mono-Narrow-Semibold-Oblique.woff2") format("woff2");
  font-weight: 600;
  font-style: oblique;
}
:root {
  --x: 50vw;
  --y: 50vw;
  --wrapper-width: 100%;
  --wrapper-max-width: 1400px;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-purple: #D5D1FF;
  --color-green: #C8F81D;
  --color-pink: #FF99FF;
  --color-blue: #3C1AE1;
  --font-title: "GT Standard L Extended";
  --font-content: "GT Standard L Standard";
  --color-link: 30, 110, 160;
  --gutter-grid: 2em;
  --gutter: 2rem;
  --gutter-w: clamp(1rem, 20vw, 4rem);
  --gutter-h: clamp(1rem, 20vh, 6rem);
  --gutter-padding: clamp(1em, var(--gutter-h), 4em) clamp(1em, var(--gutter-w), 4em);
}
@media only screen and (max-width: 992px) {
  :root {
    --gutter: 1rem;
  }
}

.theme-default #page {
  background: linear-gradient(165deg, var(--color-purple) 0%, var(--color-green) 31%, var(--color-pink) 67%, var(--color-blue) 100%);
}
.theme-default .form-success {
  color: var(--color-pink);
}
.theme-default h1, .theme-default h2, .theme-default h3 {
  color: var(--color-blue);
}
.theme-default h1 strong, .theme-default h2 strong, .theme-default h3 strong {
  color: var(--color-black);
}
.theme-default .form-text, .theme-default .form-textarea {
  background: var(--color-pink);
}
.theme-default #animatedPath {
  stroke: var(--color-pink);
}
.theme-default .section-presentation h2 {
  color: var(--color-black);
}
.theme-default .marquee-container .marquee li:nth-child(even) {
  background: var(--color-pink);
}
.theme-default #page-footer .logo svg path {
  fill: var(--color-green);
}
.theme-default #page-footer [fill="#D5D1FF"] {
  fill: var(--color-green);
}
.theme-default .cta-find-us {
  background: var(--color-green);
  color: var(--color-blue);
}

.theme-pink #page {
  background: var(--color-pink);
}
.theme-pink h1, .theme-pink h2, .theme-pink h3 {
  color: var(--color-black);
}
.theme-pink h1 strong, .theme-pink h2 strong, .theme-pink h3 strong {
  color: var(--color-black);
}
.theme-pink .field {
  background: var(--color-pink);
}
.theme-pink .section-presentation h2 {
  color: var(--color-black);
}
.theme-pink .section-presentation p {
  color: var(--color-black);
}
.theme-pink #animatedPath {
  stroke: var(--color-green);
}
.theme-pink .marquee-container .marquee li:nth-child(even) {
  background: var(--color-green);
}

#navigation-open {
  visibility: hidden;
  position: fixed;
  top: -100px;
  left: -100px;
}

html {
  height: 100vh;
  width: 100vw;
}

body {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font-content);
  font-weight: bold;
}
.navigation-open body {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: bold;
  font-size: clamp(16px, 10vw, 96px);
  margin: 0;
  padding: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  padding: 0;
  margin-bottom: 0.5em;
}
p.email a, p.phone a {
  color: inherit;
  text-decoration: none;
}

#page {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
  background-size: 1290px auto;
}
#page-footer {
  min-height: 200px;
  background: var(--color-blue);
}
#page-footer > .wrapper {
  padding-top: var(--gutter);
  padding-bottom: var(--gutter);
  display: flex;
  gap: var(--gutter);
  align-items: center;
  color: var(--color-purple);
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  #page-footer > .wrapper {
    flex-direction: column;
    align-items: inherit;
    padding-bottom: calc(var(--gutter) * 2);
  }
}
#page-footer .cta-find-us {
  margin-bottom: 1rem;
}
#page-footer .information {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 992px) {
  #page-footer .information {
    flex-direction: column;
    margin-top: -50px;
    margin-bottom: 2rem;
  }
}
#page-footer .information .marker {
  flex: inherit;
  margin: auto;
}
#page-footer .information .marker svg {
  width: 100px;
}
@media only screen and (max-width: 992px) {
  #page-footer .information .marker {
    margin: 0;
  }
}
#page-footer .information .logo {
  margin-bottom: 0.25em;
}
#page-footer .information .logo svg {
  height: 38px;
  width: auto;
}
#page-footer .information .address {
  display: flex;
  flex-direction: column;
  font-family: "GT Standard L Extended";
  font-weight: 500;
  font-size: 12px;
}
#page-footer .information .address p {
  margin-bottom: 0.25em;
}
#page-footer .schedules {
  font-family: "GT Standard L Extended";
  font-weight: 500;
  font-size: 12px;
}

.navigation .header > .wrapper, #page-header > .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.navigation .header .logo, #page-header .logo {
  width: 200px;
  position: relative;
  overflow: hidden;
}
.navigation .header .logo a, #page-header .logo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 10;
}
.navigation .header .logo h1, #page-header .logo h1 {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none;
}
.navigation .header .logo svg, #page-header .logo svg {
  width: 100%;
  height: auto;
}
.navigation .header .logo svg path, #page-header .logo svg path {
  fill: var(--color-blue);
}

#page-header {
  position: relative;
  z-index: 1000;
}

section {
  position: relative;
  z-index: 10;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  section {
    min-height: 10vh;
  }
}
section > .wrapper {
  display: flex;
}
section > .wrapper > * {
  flex: 1;
}
@media only screen and (max-width: 992px) {
  section > .wrapper {
    flex-wrap: wrap !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  section > .wrapper > * {
    flex: inherit !important;
    width: 100% !important;
  }
}

.section-header {
  overflow: hidden;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
}
@media only screen and (max-width: 992px) {
  .section-header {
    min-height: 10vh;
  }
}
.section-header > .wrapper {
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.section-presentation {
  position: relative;
}
@media only screen and (max-width: 992px) {
  .section-presentation {
    margin-bottom: 25vw;
  }
}
.section-presentation .content {
  position: relative;
  width: 50%;
  flex: inherit;
  z-index: 10;
}
@media only screen and (max-width: 992px) {
  .section-presentation .content {
    margin-top: 80vh;
  }
}
.section-presentation h2 {
  font-size: 64px;
  margin-bottom: 0.25em;
}
.section-presentation p {
  font-family: "GT Standard L Standard";
  color: var(--color-blue);
  font-weight: bold;
  font-size: 36px;
}
.section-presentation figure {
  position: absolute;
  top: 0%;
  left: calc(50vw + var(--gutter-w));
  width: calc(100vw - var(--gutter-w));
  padding: 0;
  margin: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 992px) {
  .section-presentation figure {
    top: 0%;
    left: 0;
    width: 100vw;
    padding: 0 20px;
  }
}
.section-presentation figure img {
  display: block;
  width: 150%;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .section-presentation figure img {
    left: 0;
    width: 300%;
  }
}

.section-contact {
  min-height: 0;
  margin: var(--gutter-h) auto;
}
.section-contact > .wrapper {
  gap: var(--gutter);
  display: flex;
  color: var(--color-blue);
}
.section-contact > .wrapper * {
  flex: 1;
}
.section-contact h2 {
  color: inherit;
}
.section-contact p {
  font-size: 24px;
}
.section-contact p.email, .section-contact p.phone {
  font-family: "GT Standard L Extended";
  font-weight: 600;
  font-size: 12px;
}

.section-prestations {
  height: 100px;
  min-height: 0px;
  position: relative;
}
.section-prestations > .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  padding: 0;
}

.section-team .wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .section-team .wrapper {
    padding: 0 20px;
  }
}
.section-team .card {
  flex: 1;
  background: var(--color-white);
  position: relative;
  border-radius: 6px;
  color: var(--color-black);
  filter: drop-shadow(20px 40px 80px rgba(0, 0, 0, 0.3));
  /*
  &::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    filter: blur(20px);
    mix-blend-mode: screen;
    pointer-events: none;
    border-radius: 40px;
    filter: drop-shadow(20px 40px 80px rgba(0, 0, 0, 0.1));
  }*/
  transition: all 250ms ease-in-out;
  background: var(--color-bg);
}
.section-team .card:nth-child(1) {
  --color-bg: var(--color-green);
  transform: rotate(-6deg);
  z-index: 300;
}
.section-team .card:nth-child(1) .bg rect {
  fill: var(--color-black);
}
.section-team .card:nth-child(2) {
  --color-bg: var(--color-pink);
  transform: rotate(4deg);
  z-index: 200;
}
.section-team .card:nth-child(2) .bg rect {
  fill: var(--color-green);
}
.section-team .card:nth-child(3) {
  --color-bg: var(--color-purple);
  transform: rotate(-5deg);
  z-index: 100;
}
.section-team .card:nth-child(3) .bg rect {
  fill: var(--color-blue);
}
.section-team .card:hover {
  z-index: 500;
  transform: scale(1.05);
}
.section-team .card .content {
  position: relative;
  z-index: 10;
  padding: var(--gutter);
}
.section-team .card figure {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  margin: 0;
  padding: 0;
}
.section-team .card figure img {
  object-fit: cover;
  width: 65%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 15px solid var(--color-bg);
  transform: rotate(45deg);
}
.section-team .card h3 {
  color: inherit;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 0.5em;
}
.section-team .card h4 {
  color: inherit;
  font-size: 24px;
  margin-bottom: 0.25em;
}
.section-team .card p {
  color: inherit;
  font-size: 18px;
}
.section-team .card p:first-of-type {
  margin-bottom: 1em;
}
.section-team .card p.email, .section-team .card p.phone {
  color: var(--color-blue);
}
.section-team .card p.email a, .section-team .card p.phone a {
  color: inherit;
  text-decoration: none;
}
.section-team .card .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.section-team .card .bg svg {
  width: 110%;
  height: auto;
}

.socials {
  list-style: none;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 1em;
  padding: 0.5em 0;
}
.socials li {
  padding: 0;
  margin: 0;
}
.socials svg {
  width: 30px;
  aspect-ratio: 1/1;
  transition: all 200ms ease-in-out;
}
.socials svg path {
  fill: var(--color-blue);
  transition: all 200ms ease-in-out;
}
.socials svg:hover {
  transform: scale(1.3);
}
.socials svg:hover path {
  fill: var(--color-green);
}

.animated-image {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  height: clamp(80vh, 100vw, 90vh);
  pointer-events: none;
  display: block;
  transform: translateX(-25%);
}
@media only screen and (max-width: 992px) {
  .animated-image {
    left: 25%;
  }
}
.animated-image svg {
  height: 100%;
  width: auto;
}

#animatedPath {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawLine 2s cubic-bezier(0.695, 0.375, 0, 0.995) forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
.marquee-container {
  width: 100%;
  white-space: nowrap;
  transform: rotate(-5deg);
  font-size: 0;
}
.marquee-container .marquee {
  display: inline-block;
  animation: scroll 15s linear infinite;
  margin: 0;
  padding: 0;
  list-style: none;
}
.marquee-container .marquee li {
  margin: 0;
  padding: 0.25em 1em;
  display: inline-block;
  font-weight: bold;
  font-size: 2rem;
  color: var(--color-white);
  font-family: "GT Standard Mono Narrow";
  background: var(--color-blue);
  transition: all 250ms ease-in-out;
}
.marquee-container .marquee li:nth-child(even) {
  background: var(--color-pink);
}
.marquee-container .marquee li:hover {
  transform: scale(1.2) rotate(5deg);
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.button {
  outline: none !important;
  border-radius: 20px;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: bold;
  font-size: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 2em;
  font-family: "GT Standard L Extended";
  text-decoration: none;
  transition: all 200ms ease-in-out;
}
.button:hover {
  background: var(--color-green);
  color: var(--color-blue);
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: inherit !important;
  background-color: transparent !important;
}

.form-text,
.form-textarea {
  border-radius: 20px;
  margin-bottom: 0.75em;
}
.form-text input, .form-text textarea,
.form-textarea input,
.form-textarea textarea {
  background: transparent;
  border: none;
  padding: 1em 1em;
  color: var(--color-blue);
  width: 100%;
  font-family: "GT Standard L Standard";
  font-weight: 600;
  -webkit-appearance: none;
  outline: none !important;
}
.form-text input::placeholder, .form-text textarea::placeholder,
.form-textarea input::placeholder,
.form-textarea textarea::placeholder {
  color: var(--color-blue);
}

#navigation-toggle-menu {
  --burger-color: var(--color-blue);
  --burger-color-active: var(--color-green);
  --burger-width: 4px;
  position: relative;
  z-index: 2000;
  width: 60px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#navigation-toggle-menu > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50px;
  height: 22px;
}
#navigation-toggle-menu span {
  position: absolute;
  height: var(--burger-width);
  width: 100%;
  background: var(--burger-color);
  border-radius: 0px;
  transition: all 250ms ease-in-out;
  transform-origin: center;
}
#navigation-toggle-menu span:nth-child(1) {
  top: 0;
}
#navigation-toggle-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
#navigation-toggle-menu span:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.navigation-open #navigation-toggle-menu {
  color: #fff;
}
.navigation-open #navigation-toggle-menu span {
  background: var(--burger-color-active);
}
.navigation-open #navigation-toggle-menu span:nth-child(1) {
  top: calc(50% - var(--burger-width) / 2);
  transform: rotate(45deg) translateY(0%);
}
.navigation-open #navigation-toggle-menu span:nth-child(2) {
  opacity: 0;
}
.navigation-open #navigation-toggle-menu span:nth-child(3) {
  top: calc(50% - var(--burger-width) / 2);
  transform: rotate(-45deg) translateY(0%);
}

/* nav masquée par défaut */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: var(--color-blue);
  clip-path: circle(0% at var(--x) var(--y));
  transition: clip-path 0.5s ease-in-out;
  z-index: 2000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.navigation .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.navigation .animated-image #animatedPath {
  stroke: #000;
}
.navigation > .wrapper {
  width: 100%;
  max-width: 600px;
  padding: 0 var(--gutter);
}
.navigation .navigation-container {
  position: relative;
  z-index: 10;
}
.navigation h6 {
  color: var(--color-purple);
  font-size: clamp(17px, 5vw, 24px);
  padding: 0;
  margin: 0;
}

.navigation-open .navigation {
  clip-path: circle(150% at var(--x) var(--y));
  pointer-events: auto;
}

.navigation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.navigation-container > div {
  width: 100%;
}
.navigation-container > div:nth-child(1) {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 992px) {
  .navigation-container > div {
    width: 60%;
  }
}

/* menu */
.nav-menu {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0.5rem;
  list-style: none;
  padding: 1em 0;
  margin: 0;
}
@media only screen and (max-width: 992px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
  }
}
.nav-menu li {
  width: 100%;
}
.nav-menu li a {
  display: block;
  color: var(--color-green);
  font-size: clamp(2rem, 10vw, 48px);
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-menu li a:hover {
  color: #ff66cc;
}

.parallax {
  will-change: transform;
  transition: transform 0ms linear;
}

.animate-right-to-left {
  opacity: 0;
  transform: translateX(20%);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.animate-right-to-left.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.grecaptcha-logo {
  opacity: 0;
}

.form-success {
  text-align: center;
}
.form-success .icon {
  font-size: 128px;
  margin: auto;
}
@media only screen and (max-width: 992px) {
  .form-success .icon {
    font-size: 80px;
  }
}
.form-success div {
  font-size: 24px;
  max-width: 400px;
  margin: auto;
}
@media only screen and (max-width: 992px) {
  .form-success div {
    font-size: 18px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}