h1 {
  font-size: var(--fs-5);
}

h2 {
  font-size: var(--fs-2);
}

h3 {
  font-size: var(--fs-3);
}

h4 {
  font-size: var(--fs-1);
}

p {
  font-size: var(--fs-0);
}

sup {
  vertical-align: top;
}

sub {
  line-height: 0;
}

@media screen and (width < 400px), (height < 500px) {
  h2 {
    font-size: var(--fs-1);
  }
  h3 {
    font-size: var(--fs-0);
  }
  h4 {
    font-size: var(--fs--0);
  }
  p {
    font-size: var(--fs--1);
  }
}
:root {
  --mainfont: Arial, sans-serif;
  --fs--2: clamp(0.6944rem, 0.6599rem + 0.1536vw, 0.8442rem);
  --fs--1: clamp(0.8333rem, 0.766rem + 0.2994vw, 1.1253rem);
  --fs-0: clamp(1rem, 0.8846rem + 0.5128vw, 1.5rem);
  --fs-1: clamp(1.2rem, 1.0155rem + 0.82vw, 1.9995rem);
  --fs-2: clamp(1.44rem, 1.1572rem + 1.2568vw, 2.6653rem);
  --fs-3: clamp(1.728rem, 1.3069rem + 1.8717vw, 3.5529rem);
  --fs-4: clamp(2.0736rem, 1.4592rem + 2.7307vw, 4.736rem);
  --fs-5: clamp(2.4883rem, 1.6057rem + 3.9228vw, 6.3131rem);
  --pdc-pink: oklch(0.54 0.19 345);
  --bg-clr-clair: oklch(0.94 0.01 248);
  --bg-clr-fonce: oklch(0.35 0.01 248);
  --bg-clr-tres-fonce: oklch(0.26 0.01 248);
  --gap-xs: max(8px, 1vmin);
  --gap-s: max(16px, 2vmin);
  --gap-m: max(32px, 5vmin);
  --gap-l: max(50px, 10vmin);
}
@media screen and (height < 450px), (width < 350px) {
  :root {
    --gap-s: max(8px, 1vmin);
    --gap-m: max(8px, 1vmin);
  }
}

@property --mission-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@view-transition {
  navigation: auto;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img, svg {
  max-width: 100%;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  color: light-dark(var(--bg-clr-tres-fonce), white);
  border: none;
  cursor: pointer;
}

a {
  text-decoration: underline;
  color: light-dark(var(--bg-clr-tres-fonce), white);
}

.pink {
  color: var(--pdc-pink);
}

body {
  background-color: light-dark(var(--bg-clr-clair), var(--bg-clr-tres-fonce));
  color: light-dark(var(--bg-clr-tres-fonce), white);
  font-family: var(--mainfont);
}

main {
  width: 100dvw;
  height: 100dvh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

section, header, footer {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  width: 100%;
  height: 100%;
}

section, footer {
  padding-top: clamp(40px, 10dvh, 60px);
}

.container {
  height: 100%;
  width: min(100%, 1200px);
  padding: var(--gap-m);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gap-s);
  overflow: hidden;
}

.section_title {
  padding: var(--gap-s);
  text-align: center;
}

.row {
  background-color: light-dark(white, var(--bg-clr-fonce));
  padding: var(--gap-m);
}

nav {
  background-color: inherit;
  height: clamp(40px, 10dvh, 60px);
  width: 100%;
  scrollbar-gutter: stable;
  position: fixed;
  padding: var(--gap-s) var(--gap-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
nav h2 {
  font-size: var(--fs-1);
}

nav h2 {
  padding-left: var(--gap-s);
}

nav:before {
  content: "";
  height: clamp(40px, 10dvh, 60px);
  width: 4px;
  background: var(--pdc-pink);
  position: absolute;
  top: 0;
  left: calc(var(--gap-m) - 2px);
}

nav:after {
  content: "";
  height: 4px;
  width: calc(30px + 5dvw);
  background: var(--pdc-pink);
  position: absolute;
  bottom: -2px;
  right: 0;
}

#main_nav {
  top: -10dvh;
}

#nav-btn-open, #burger-menu {
  height: 100%;
}

#nav-btn-open svg {
  height: 100%;
}

#burger-menu {
  display: flex;
  gap: var(--gap-s);
}

.burger-item {
  height: max(24px, 100%);
}

.burger-item > svg {
  height: 100%;
}

.nav_pic {
  fill: light-dark(var(--bg-clr-tres-fonce), white);
}

#home-pic, #hello-pic {
  fill: none;
  stroke: light-dark(var(--bg-clr-tres-fonce), white);
}

#nav-btn-open:focus .nav_pic, .burger-item:focus .nav_pic {
  fill: var(--pdc-pink);
}
#nav-btn-open:focus #hello-pic, #nav-btn-open:focus #home-pic, .burger-item:focus #hello-pic, .burger-item:focus #home-pic {
  stroke: var(--pdc-pink);
}

#nav-btn-open,
#nav-btn-close,
.burger-legende {
  display: none;
}

#nav-btn-open, .burger-item {
  position: relative;
}

.tooltip {
  position: absolute;
  background-color: white;
  border: 1px solid black;
  padding: 0.5vmin;
  border-radius: 10%;
  display: none;
  bottom: -200%;
  right: 0;
  color: black;
  font-size: var(--fs--2);
  z-index: 101;
}

@media screen and (width < 600px) {
  #nav-btn-open, #nav-btn-close, .burger-legende {
    display: flex;
  }
  #burger-menu {
    position: absolute;
    top: 0;
    right: calc(-100dvw - var(--gap-m));
    width: 100dvw;
    margin: 0;
    height: 100dvh;
    background-color: inherit;
    transition: right 0.5s ease-in;
    flex-direction: column;
    justify-content: center;
    z-index: 101;
  }
  #burger-menu a {
    text-decoration: none;
  }
  #burger-menu.nav-show {
    right: 0;
  }
  .burger-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--gap-s);
    overflow: hidden;
    padding: var(--gap-s) 0;
    font-weight: bold;
    border-bottom: 1px solid light-dark(white, var(--pdc-pink));
  }
  .burger-item svg {
    height: 2.5em;
  }
}
@media screen and (width < 600px) and (height < 600px) {
  .burger-item {
    flex-direction: row;
  }
}
#navBis a {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

#navBis p {
  align-self: center;
  text-align: end;
  padding-right: var(--gap-xs);
}

#navBis svg {
  fill: light-dark(black, white);
  height: max(24px, 100%);
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#main_logo {
  width: 30vmin;
  max-height: 250px;
}
#main_logo svg {
  height: 100%;
  width: 100%;
  fill: var(--pdc-pink);
}

#main_header h1 {
  margin-top: var(--gap-m);
  margin-bottom: var(--gap-s);
}

.type-wrap {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.typewriter {
  width: 0;
  margin: auto;
  overflow: hidden;
  border-right: 2px solid var(--pdc-pink);
  white-space: nowrap;
  animation: typing 2s 0.75s steps(34, end) forwards, blinking 0.75s step-end infinite;
}

#chevron_down {
  fill: none;
  stroke: var(--pdc-pink);
  width: min(5dvw, 60px);
  margin-top: var(--gap-s);
  opacity: 0;
}

#chevron_down.chevron_shown {
  transition: opacity 500ms 5s linear;
  opacity: 1;
}

#mission_top {
  position: relative;
}

#mission_top:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  padding: 0.6vmin;
  border-radius: 1vmin;
  z-index: -999;
  background-image: conic-gradient(from var(--mission-angle), var(--pdc-pink), transparent, var(--pdc-pink));
  opacity: 0;
}

#mission_top.shadow:before {
  animation: animShadow 1s 0.25s linear;
}

#moreInfo {
  width: 100%;
}
#moreInfo svg {
  height: 24px;
  width: auto;
  margin-inline: auto;
  fill: light-dark(black, white);
}

#moreInfo:focus svg {
  fill: var(--pdc-pink);
}

.detailA {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-in-out;
}
.detailA > div {
  overflow: hidden;
}

.detailText {
  text-wrap: pretty;
}

.detailShow {
  margin-top: var(--gap-m);
  grid-template-rows: 1fr;
}

#btnMoinsA {
  display: none;
}

#offre .row {
  height: 100%;
  max-height: 600px;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 0;
}

.btnB {
  container: btnB/size;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  border: none;
  padding: var(--gap-m);
  background-color: light-dark(white, var(--bg-clr-fonce));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap-s);
  height: 100%;
  transition: height 0.75s;
}

.tuileB + .btnB {
  margin-top: var(--gap-s);
}

@property --angleDepart {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --angleExpand {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.moreInfoB {
  height: clamp(18px, 8vmin, 40px);
  stroke: light-dark(black, white);
  fill: transparent;
  --angleDepart: 0deg;
  --angleExpand: 0deg;
  transform: rotate(calc(var(--angleDepart) + var(--angleExpand)));
  transition: transform 0.75s ease-out;
}

.chevronRot {
  --angleExpand: -180deg;
  stroke: var(--pdc-pink);
}

.tuileB {
  container: tuileB/size;
  display: flex;
  flex-direction: column;
  background-color: light-dark(white, var(--bg-clr-fonce));
  justify-content: space-evenly;
  height: 0;
  transition: height 0.75s ease-in;
  overflow: hidden;
  border-top: 1px solid var(--pdc-pink);
}
.tuileB h4, .tuileB p, .tuileB .vignetteB {
  opacity: 0;
  transition-delay: 0s;
  transition-duration: 0s;
}

.vignetteB {
  height: 30cqmin;
  fill: light-dark(black, white);
}

.tuileB[aria-hidden=false] {
  height: 100%;
  padding: var(--gap-m);
}
.tuileB[aria-hidden=false] h4, .tuileB[aria-hidden=false] p, .tuileB[aria-hidden=false] .vignetteB {
  opacity: 1;
  transition: opacity 0.75s 0.75s ease-in;
}

#offre .row:has(.tuileB[aria-hidden=false]) > .btnB {
  height: 20%;
  flex-direction: row;
}

@media screen and (orientation: landscape) {
  #offre .row {
    flex-direction: row;
  }
  .btnB {
    width: 100%;
    height: 100%;
    transition: width 0.75s ease-in;
  }
  .moreInfoB {
    --angleDepart: -90deg;
  }
  .tuileB + .btnB {
    margin-top: 0;
    margin-left: var(--gap-s);
  }
  .tuileB {
    width: 0;
    height: 100%;
    transition: width 0.75s ease-in;
    border-top: none;
    border-left: 1px solid var(--pdc-pink);
  }
  .tuileB[aria-hidden=false] {
    width: 100%;
  }
  #offre .row:has(.tuileB[aria-hidden=false]) > .btnB {
    writing-mode: sideways-lr;
    width: 20%;
    height: 100%;
  }
}
#clientele .row h3 {
  text-align: center;
}

.clientele_wrapper {
  margin-top: var(--gap-m);
  display: flex;
  flex-direction: column;
  gap: var(--gap-m);
}
@media screen and (orientation: landscape) {
  .clientele_wrapper {
    flex-direction: row;
  }
}

.clientele_wrapper .col {
  display: flex;
}

.clientele_illu {
  justify-content: center;
  flex: 1 1 30%;
}

#clientele_svg {
  height: auto;
  width: 100%;
  max-width: 50%;
  fill: light-dark(black, white);
}
@media screen and (orientation: landscape) and (width > 1000px) {
  #clientele_svg {
    max-width: 100%;
  }
}

.clientele_list {
  flex-direction: column;
  justify-content: space-between;
}

.liste-C {
  display: grid;
  grid-template-columns: min-content 1fr;
}

#female {
  --moveX: -10%;
  --moveY: 10%;
}

#male {
  --moveX: 10%;
  --moveY: -10%;
}

.plugAnim {
  fill: var(--pdc-pink);
  transition: fill 0.1s 2s;
  animation: plugin 1.5s 0.5s ease-in-out;
}

#production .row {
  height: 100%;
  padding: var(--gap-m) var(--gap-m) var(--gap-xs) var(--gap-m);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.carrousel {
  height: 100%;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carrousel::-webkit-scrollbar {
  display: none;
}

.carrousel.smooth-scroll {
  scroll-behavior: smooth;
}

.carrousel-navdots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap-xs);
  margin-block: var(--gap-xs);
}

.carrousel-navdots div {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 50%;
  height: clamp(6px, 1.5vmin, 12px);
  aspect-ratio: 1/1;
  background-color: light-dark(var(--bg-clr-clair), var(--bg-clr-tres-fonce));
}

.carrousel-navdots div.isActive {
  background-color: var(--pdc-pink);
}

.carrousel-cell {
  max-height: 100%;
  min-width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  grid-template-rows: 15% 25% 50% 10%;
  align-items: center;
  overflow: hidden;
}

.prod {
  grid-column: 1/4;
  grid-row: 1/2;
  text-align: center;
}

.prod_fleche {
  stroke: light-dark(black, white);
  grid-row: 2/3;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--gap-xs);
  height: 100%;
  width: 100%;
}
.prod_fleche svg {
  height: 50%;
  width: auto;
  min-width: 24px;
  max-width: 60px;
}

.prod_fleche.left {
  grid-column: 1/2;
  justify-content: flex-end;
}

.prod_fleche.right {
  grid-column: 3/4;
  justify-content: flex-start;
}

.prod-ico {
  grid-column: 2/3;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: var(--gap-xs);
}

.prod-ico svg {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  fill: var(--pdc-pink);
}

.prod-detail {
  grid-column: 1/4;
  grid-row: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gap-xs);
}
@media screen and (height < 400px) {
  .prod-detail {
    gap: 0;
  }
}

.liste-D {
  display: grid;
  grid-template-columns: min-content 1fr;
}

.prod-link {
  grid-column: 1/4;
  grid-row: 4/5;
  width: -moz-max-content;
  width: max-content;
  justify-self: end;
  padding: 4px 10px;
  border-radius: 999em;
  margin-right: 5px;
  display: flex;
  font-style: italic;
  text-decoration: none;
  background-color: light-dark(var(--bg-clr-clair), white);
  color: var(--bg-clr-tres-fonce);
}

.prod-link:focus {
  outline: 4px solid var(--pdc-pink);
}

.prod_link_svg {
  stroke: var(--pdc-pink);
  height: var(--fs-0);
  margin-left: 2px;
}
@media screen and (height < 500px) {
  .prod_link_svg {
    height: var(--fs--1);
  }
}

#contact .row {
  display: grid;
  height: 100%;
  max-height: 400px;
  grid-template-columns: 1fr;
  grid-template-rows: 50% 50%;
  overflow: hidden;
}
@media screen and (orientation: landscape) {
  #contact .row {
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr;
  }
}

.contact_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact_clic {
  margin-top: var(--gap-xs);
  font-weight: bold;
}

.contact_hello {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_hello_pic {
  height: 80%;
  width: 80%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B53389"><g id="_01_align_center" data-name="01 align center"><path d="M21,1H3A3,3,0,0,0,0,4V23H24V4A3,3,0,0,0,21,1ZM3,3H21a1,1,0,0,1,1,1v.667l-7.878,7.879a3.007,3.007,0,0,1-4.244,0L2,4.667V4A1,1,0,0,1,3,3ZM2,21V7.5L8.464,13.96a5.007,5.007,0,0,0,7.072,0L22,7.5V21Z"/></g></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

.contact_hello:focus .contact_hello_pic {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B53389"><path d="M22.769,9.343l-1.769-1.694V3c0-1.654-1.346-3-3-3H6c-1.654,0-3,1.346-3,3V7.651l-1.766,1.691C.451,10.093,.001,11.146,.001,12.231v11.769H24V12.231c0-1.086-.448-2.139-1.231-2.889ZM6,2h12c.552,0,1,.449,1,1V12.242l-4.879,4.879c-1.133,1.133-3.109,1.133-4.243,0l-4.878-4.879V3c0-.551,.449-1,1-1ZM22,22H2V12.231c.001-.051,.004-.102,.008-.153l6.456,6.457c.945,.944,2.2,1.464,3.536,1.464s2.591-.52,3.535-1.464l6.458-6.459c.004,.051,.007,.103,.007,.154v9.769Zm-5-15H7v-2h10v2Zm-2,4H7v-2H15v2Z"/></svg>');
}

.blog {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (orientation: landscape) {
  .blog {
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr;
  }
}

.blog_titre h3 {
  margin-block: var(--gap-s);
  font-size: var(--fs-2);
  font-style: italic;
}

.blog_titre a {
  text-decoration-thickness: 1px;
}

.blog_abo {
  font-size: var(--fs--1);
}

#substack {
  max-width: 30%;
  align-self: center;
  justify-self: center;
  padding: var(--gap-xs);
  fill: none;
  stroke: var(--pdc-pink);
  stroke-linecap: round;
  stroke-width: 2px;
  stroke-linejoin: round;
}

.blog:focus-within #substack {
  fill: var(--pdc-pink);
}

.social p {
  text-align: center;
}

.social_picto {
  margin-top: var(--gap-s);
  display: flex;
  justify-content: center;
  gap: var(--gap-m);
}

.social_picto a {
  text-decoration: none;
}

.social_picto svg {
  width: clamp(24px, 3vmin, 48px);
  fill: var(--pdc-pink);
}

footer {
  border-bottom: 5px solid var(--pdc-pink);
  text-align: center;
}

footer .container {
  justify-content: flex-end;
}

footer h3 {
  font-size: var(--fs--0);
}

footer p {
  font-size: var(--fs--1);
}

.mentions {
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}

@media screen and (width < 400px), (height < 500px) {
  footer h3 {
    font-size: var(--fs--1);
  }
  footer p {
    font-size: var(--fs--2);
  }
}
/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blinking {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--pdc-pink);
  }
}
@keyframes animShadow {
  0% {
    --mission-angle: 0deg;
    opacity: 0;
  }
  50% {
    --mission-angle: 180deg;
    opacity: 1;
  }
  to {
    --mission-angle: 360deg;
    opacity: 0;
  }
}
@keyframes plugin {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(var(--moveX), var(--moveY));
  }
}
@keyframes orbit {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}
@keyframes orbitBlip {
  0% {
    border: 0;
    border-top: 1px solid white;
  }
  35% {
    border: 0;
    border-right: 1px solid white;
  }
  70% {
    border: 0;
    border-bottom: 1px solid white;
  }
  100% {
    border: 0;
    border-left: 1px solid white;
  }
}
@keyframes eFade {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  37% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes shining {
  0% {
    box-shadow: 0 0 0 transparent;
  }
  50% {
    box-shadow: 0 0 40px white;
  }
  100% {
    box-shadow: 0 0 0 transparent;
  }
}
@keyframes fillup {
  to {
    stroke-dasharray: var(--donut-length) var(--donut-left);
  }
}
@keyframes legendShow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes growWid {
  to {
    width: var(--barLength);
  }
}
@keyframes growHei {
  to {
    height: var(--barLength);
  }
}
@media screen and (hover: hover) {
  #nav-btn-open:hover .nav_pic, .burger-item:hover .nav_pic {
    fill: oklch(from var(--pdc-pink) 90% c h);
  }
  #nav-btn-open:hover #hello-pic, #nav-btn-open:hover #home-pic, .burger-item:hover #hello-pic, .burger-item:hover #home-pic {
    stroke: oklch(from var(--pdc-pink) 90% c h);
  }
  #nav-btn-open:hover .tooltip, .burger-item:hover .tooltip {
    display: inline-block;
  }
  #navBis a:hover {
    color: var(--pdc-pink);
  }
  #navBis a:hover svg {
    stroke: var(--pdc-pink);
    scale: 1.1;
  }
  #mot1:hover, #mot2:hover, #mot3:hover {
    color: var(--pdc-pink);
    font-style: italic;
  }
  #moreInfo:hover svg {
    fill: oklch(from var(--pdc-pink) 90% c h);
    scale: 1.1;
  }
  .btnB:hover {
    background-color: light-dark(oklch(from white 95% c h), oklch(from var(--bg-clr-fonce) 50% c h));
  }
  .btnB:hover .moreInfoB {
    stroke: oklch(from var(--pdc-pink) 90% c h);
  }
  .prod_fleche:hover {
    stroke: oklch(from var(--pdc-pink) 90% c h);
    scale: 0.9;
  }
  .prod-link:hover {
    background-color: oklch(from var(--pdc-pink) 90% c h);
    scale: 0.9;
  }
  .contact_hello:hover .contact_hello_pic {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B53389"><path d="M22.769,9.343l-1.769-1.694V3c0-1.654-1.346-3-3-3H6c-1.654,0-3,1.346-3,3V7.651l-1.766,1.691C.451,10.093,.001,11.146,.001,12.231v11.769H24V12.231c0-1.086-.448-2.139-1.231-2.889ZM6,2h12c.552,0,1,.449,1,1V12.242l-4.879,4.879c-1.133,1.133-3.109,1.133-4.243,0l-4.878-4.879V3c0-.551,.449-1,1-1ZM22,22H2V12.231c.001-.051,.004-.102,.008-.153l6.456,6.457c.945,.944,2.2,1.464,3.536,1.464s2.591-.52,3.535-1.464l6.458-6.459c.004,.051,.007,.103,.007,.154v9.769Zm-5-15H7v-2h10v2Zm-2,4H7v-2H15v2Z"/></svg>');
  }
  .blog:has(a:hover) #substack {
    fill: var(--pdc-pink);
  }
  .social_picto a:hover svg {
    fill: oklch(from var(--pdc-pink) 90% c h);
    scale: 0.9;
  }
  .tl_year:hover:not(.date_active) {
    font-weight: bold;
    color: oklch(from var(--pdc-pink) 90% c h);
  }
  .tl_moreInfo:hover {
    fill: oklch(from var(--pdc-pink) 90% c h);
  }
  .pptBtn:hover {
    background-color: oklch(from var(--pdc-pink) 90% c h);
  }
  .switch:hover .checkmark, .switch:hover input:checked ~ .checkmark {
    background-color: oklch(from var(--pdc-pink) 90% c h);
  }
  .mixRadio:not(:has(input:checked)):hover {
    background-color: oklch(from var(--pdc-pink) 90% c h);
    scale: 0.8;
  }
  .btn_palette:hover {
    opacity: 0.5;
    scale: 0.9;
  }
  .transport_btn[aria-expanded=false]:hover {
    opacity: 0.5;
  }
  .transport_btn[aria-expanded=false]:hover svg {
    scale: 0.9;
  }
  #tu_moreInfo:hover {
    opacity: 0.75;
  }
  #tu_moreInfo:hover svg {
    fill: oklch(from var(--pdc-pink) 90% c h);
    scale: 0.9;
  }
  #coutSwitch:hover:after {
    opacity: 0.5;
  }
  .scenArc:hover {
    opacity: 0.5;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .typewriter {
    width: 100%;
  }
  #topVid {
    display: none;
  }
  #topPoster {
    display: block !important;
  }
  .orbitA .electron {
    opacity: 1;
  }
  .donutSegment.donut-anim {
    stroke-dasharray: var(--donut-length) var(--donut-left);
  }
  #rocketVid {
    display: none;
  }
  #rocketPoster {
    display: block !important;
  }
  #poussinVid {
    display: none;
  }
  #poussinPoster {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */