@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "josefin_slab";
  src: url("/assets/fonts/josefin-slab/josefinslab-bold-webfont.woff2") format("woff2"), url("/assets/fonts/josefin-slab/josefinslab-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: "josefin_slab";
  src: url("/assets/fonts/josefin-slab/josefinslab-semibold-webfont.woff2") format("woff2"), url("/assets/fonts/josefin-slab/josefinslab-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: "josefin_slab";
  src: url("/assets/fonts/josefin-slab/josefinslab-regular-webfont.woff2") format("woff2"), url("/assets/fonts/josefin-slab/josefinslab-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: "josefin_sans";
  src: url("/assets/fonts/josefin-sans/josefinsans-bold-webfont.woff2") format("woff2"), url("/assets/fonts/josefin-sans/josefinsans-bold-webfont.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-display: swap;
  font-family: "josefin_sans";
  src: url("/assets/fonts/josefin-sans/josefinsans-semibold-webfont.woff2") format("woff2"), url("/assets/fonts/josefin-sans/josefinsans-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: "josefin_sans";
  src: url("/assets/fonts/josefin-sans/josefinsans-regular-webfont.woff2") format("woff2"), url("/assets/fonts/josefin-sans/josefinsans-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
*, *:after, *:before {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *, *:after, *:before {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    background-attachment: scroll;
    scroll-behavior: auto;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
html {
  font: 400 1rem/1.5 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  background-color: #eeeaf4;
  font-family: josefin_slab, Helvetica, Arial, sans-serif;
}

h1, h2, .h1, .h2 {
  color: rgb(111, 82, 163);
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: 0.09rem;
}

h2, .h2 {
  line-height: 3.25rem;
}

h1.discret, h2.discret {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
}

h3 {
  font-size: 2.125rem;
  font-weight: 600;
}

h3, p {
  color: #262626;
}

p {
  font-family: josefin_sans, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  margin: 0 0 1rem;
}

ul {
  color: #262626;
}

a {
  cursor: pointer;
  color: rgb(111, 82, 163);
  text-decoration: none;
  touch-action: manipulation;
}

a:hover {
  text-decoration: none;
}

a:active, a:link, a:visited {
  outline: 0;
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid rgb(111, 82, 163);
  outline-offset: 3px;
  border-radius: 2px;
}

nav a {
  display: block;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  list-style: none;
  padding: 0;
}

nav li:before {
  content: "​";
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

svg {
  border: 0;
}

svg:not([fill]) {
  fill: currentColor;
}

:focus-visible {
  outline: 3px solid rgb(111, 82, 163);
  outline-offset: 2px;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid rgb(111, 82, 163);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.hidden {
  display: none;
}

.filter-white {
  filter: invert(100%) sepia(100%) saturate(14%) hue-rotate(212deg) brightness(104%) contrast(104%);
}

.filter-purple {
  filter: invert(34%) sepia(12%) saturate(2698%) hue-rotate(220deg) brightness(99%) contrast(85%);
}

address {
  font-style: normal;
  margin: 0;
}

.button {
  align-items: center;
  background-color: rgb(111, 82, 163);
  border-radius: 2em;
  color: #fff;
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.035rem;
  margin-top: 2rem;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  transition: all 0.2s;
}

.button:hover {
  background-color: rgba(111, 82, 163, 0.8);
  color: #fff;
}

.header-ctn {
  box-shadow: inset 0 30px 0 0 rgb(111, 82, 163), 0 2px 14px -4px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  display: grid;
  grid-template-columns: 107px 1fr auto auto auto auto;
  grid-template-rows: 30px 100px;
  gap: 0 0.6rem;
  height: 130px;
  padding: 0 1.6rem;
  text-align: center;
  z-index: 99;
  align-items: center;
  position: relative;
}
.header-ctn > a:first-child {
  grid-column: 1;
  grid-row: 1/span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  width: 107px;
  max-width: 107px;
  height: 100%;
  z-index: 1;
}
.header-ctn > a:first-child img {
  width: 60%;
  height: auto;
}
.header-ctn > div:first-of-type {
  grid-column: 2/span 5;
  grid-row: 1;
  color: #fff;
  font-size: 1.063rem;
  font-weight: 400;
  letter-spacing: 0.029rem;
  align-self: end;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.header-ctn > div:first-of-type .header-contact {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.header-ctn > div:first-of-type .header-contact-label {
  display: inline;
  white-space: nowrap;
}
.header-ctn > div:first-of-type .header-schedule-days,
.header-ctn > div:first-of-type .header-schedule-hours {
  white-space: nowrap;
}
.header-ctn > div:first-of-type .icon-calendar {
  width: 1.1em;
  height: 1.1em;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.header-ctn > div:first-of-type a, .header-ctn > div:first-of-type .header-phone {
  color: #fff;
  text-decoration: none;
}
.header-ctn > nav {
  grid-column: 2/span 4;
  grid-row: 2;
  font-size: 1.5rem;
  font-weight: 600;
  align-self: stretch;
}
.header-ctn > nav .nav-toggle {
  display: none;
}
.header-ctn > nav ul {
  display: flex;
  color: rgb(111, 82, 163);
  justify-content: space-around;
  height: 100%;
}
.header-ctn > nav li a {
  display: block;
  display: flex;
  color: rgb(111, 82, 163);
  position: relative;
  font-family: josefin_slab, Helvetica, Arial, sans-serif;
}
.header-ctn > nav li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(111, 82, 163);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
.header-ctn > nav li a:hover::before, .header-ctn > nav li a:focus-visible::before {
  visibility: visible;
  transform: scaleX(1);
}
.header-ctn > nav li a:focus-visible {
  outline: 3px solid rgb(111, 82, 163);
  outline-offset: 2px;
  border-radius: 2px;
}
.header-ctn > .hamburger-title, .header-ctn > .hamburger-subtitle {
  display: none;
}
.header-ctn .nav-close {
  display: none;
}
.header-ctn > a:last-child {
  grid-column: 6;
  grid-row: 2;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  margin: -0.625rem;
  padding-bottom: 0.4rem;
  position: relative;
}
.header-ctn > a:last-child::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: rgb(111, 82, 163);
  visibility: hidden;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: all 0.3s ease-in-out;
}
.header-ctn > a:last-child:hover::before, .header-ctn > a:last-child:focus-visible::before {
  visibility: visible;
  transform: translateX(-50%) scaleX(1);
}
.header-ctn > a:last-child img {
  width: 24px;
  height: 24px;
  filter: invert(34%) sepia(12%) saturate(2698%) hue-rotate(220deg) brightness(99%) contrast(85%);
}

.hero-ctn {
  align-items: center;
  background-image: url("/assets/images/header-bkg-logo.min.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 738px;
  padding: 1rem 1.6rem;
  text-align: center;
}
.hero-ctn > img {
  width: 276px;
  height: auto;
  margin-bottom: 2rem;
}
.hero-ctn h1 {
  color: #fff;
  font-weight: 700;
  font-size: 4rem;
  margin: 0;
}
.hero-ctn p {
  font-family: josefin_slab, Helvetica, Arial, sans-serif;
  color: #fff;
  font-size: 1.688rem;
  font-weight: 600;
}

.breadcrumb-ctn {
  background-color: rgba(111, 82, 163, 0.2);
  padding: 0 1.6rem;
}
.breadcrumb-ctn .breadcrumb {
  display: flex;
  align-items: center;
  height: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb-ctn .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  color: #262626;
}
.breadcrumb-ctn .breadcrumb-item:not(:first-child)::before {
  content: "•";
  margin: 0 0.6rem;
}
.breadcrumb-ctn .breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0;
  position: relative;
  color: #262626;
}
.breadcrumb-ctn .breadcrumb-item a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: calc(50% - 0.75em);
  left: 0;
  background-color: #262626;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.breadcrumb-ctn .breadcrumb-item a:hover::before {
  visibility: visible;
  width: 100%;
}
.breadcrumb-ctn .breadcrumb-item span {
  color: #262626;
}

.prefooter-ctn {
  background-color: #b19dd1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 80px auto auto;
  gap: 0 0.6rem;
  padding: 1.2rem 1.6rem 0;
  z-index: 99;
}
.prefooter-ctn > h2 {
  margin-block-start: 0.5em;
  justify-self: center;
  grid-column: 1/span 12;
  grid-row: 1;
  text-align: center;
  color: #fff;
}
.prefooter-ctn > ul {
  grid-column: 1/span 12;
  grid-row: 2;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  font-weight: 500;
  margin: 0;
  padding: 0.5rem 0 1.4rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  opacity: 0.85;
}
.prefooter-ctn > div {
  grid-column: 2/span 5;
  grid-row: 3;
  margin: auto;
}
.prefooter-ctn > div > div {
  margin-bottom: 1rem;
  cursor: pointer;
}
.prefooter-ctn > div > div:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}
.prefooter-ctn > div > div:hover ul, .prefooter-ctn > div > div:focus-within ul, .prefooter-ctn > div > div:first-of-type ul {
  max-height: 400px;
  padding: 0.6rem 1rem;
  opacity: 1;
}
.prefooter-ctn > div:has(> div:not(:first-of-type):hover) > div:first-of-type ul, .prefooter-ctn > div:has(> div:not(:first-of-type):focus-within) > div:first-of-type ul {
  max-height: 0;
  padding: 0 1rem;
  opacity: 0;
}
.prefooter-ctn > div h3 {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 1.8rem;
  margin: 0;
}
.prefooter-ctn > div ul {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.1);
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 1.8rem;
  padding: 0 1rem;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.8rem;
}
.prefooter-ctn > div ul li {
  white-space: nowrap;
}
.prefooter-ctn > div ul li::before {
  content: "•";
  margin-right: 0.2rem;
}
.prefooter-ctn > img {
  grid-column: 7/span 6;
  grid-row: 3;
  justify-self: end;
  align-self: end;
  margin-right: -1.6rem;
  max-width: 100%;
}

.footer-ctn {
  background-color: rgb(111, 82, 163);
  color: #fff;
  display: grid;
  grid-template-columns: 107px auto 1fr;
  grid-template-rows: 1fr;
  gap: 0 2rem;
  min-height: 180px;
  padding: 1.5rem 1.6rem;
  z-index: 99;
  align-items: center;
}
.footer-ctn > a:first-child {
  grid-column: 1;
  grid-row: 1;
  width: 107px;
  max-width: 107px;
}
.footer-ctn > a:first-child img {
  width: 100%;
}
.footer-ctn address {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-ctn address > span:first-child {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}
.footer-ctn address > span:nth-child(2) {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.footer-ctn address .footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-ctn address .footer-contact-line a[href^=tel] {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  position: relative;
}
.footer-ctn address .footer-contact-line a[href^=tel]::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -0.008rem;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.footer-ctn address .footer-contact-line a[href^=tel]:hover::before, .footer-ctn address .footer-contact-line a[href^=tel]:focus-visible::before {
  visibility: visible;
  width: 100%;
}
.footer-ctn address .footer-contact-line a[href*=linkedin] {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.4rem;
  position: relative;
}
.footer-ctn address .footer-contact-line a[href*=linkedin]::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.footer-ctn address .footer-contact-line a[href*=linkedin]:hover::before, .footer-ctn address .footer-contact-line a[href*=linkedin]:focus-visible::before {
  visibility: visible;
  width: 100%;
}
.footer-ctn address .footer-contact-line a[href*=linkedin] img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.footer-ctn > nav {
  grid-column: 3;
  grid-row: 1;
}
.footer-ctn > nav ul {
  display: flex;
  justify-content: space-evenly;
  font-weight: 600;
  font-size: 1rem;
  gap: 1rem;
}
.footer-ctn > nav ul li a {
  color: #fff;
  position: relative;
}
.footer-ctn > nav ul li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.footer-ctn > nav ul li a:hover::before {
  visibility: visible;
  width: 100%;
}

.site-main figure.content-image-right {
  float: right;
  margin: 0 0 1rem 2rem;
  max-width: 600px;
}
.site-main figure.content-image-right picture, .site-main figure.content-image-right img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.site-main h1.discret, .site-main h2.discret, .site-main h3.discret, .site-main p.discret {
  font-size: 1rem;
  color: rgb(111, 82, 163);
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: 0.09rem;
}

.site-main .content-bloc {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.site-main .content-bloc.content-bloc--reverse {
  flex-direction: row-reverse;
}
.site-main .content-bloc figure {
  flex: 0 0 40%;
  max-width: 40%;
  margin: 0;
  text-align: center;
}
.site-main .content-bloc figure img {
  max-width: 100%;
  border-radius: 4px;
}
.site-main .content-bloc figure figcaption {
  font-size: 0.875rem;
  color: #262626;
  margin-top: 0.5rem;
}
.site-main .content-bloc section {
  flex: 1;
  min-width: 0;
  max-width: 40%;
}
.site-main .content-bloc section h3 {
  color: rgb(111, 82, 163);
}
.site-main .btn-more {
  align-items: center;
  display: inline-flex;
  background-color: rgb(111, 82, 163);
  color: #fff;
  padding: 12px 1.5rem 15px;
  border-radius: 2em;
  font-family: josefin_sans, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  margin-top: 2rem;
  margin-left: 0.3rem;
  margin-bottom: 0.3rem;
  transition: background-color 0.2s ease;
}
.site-main .btn-more::after {
  content: "→";
  margin-left: 0.5rem;
}
.site-main .btn-more:hover, .site-main .btn-more:focus-visible {
  background-color: rgba(111, 82, 163, 0.8);
  color: #fff;
  outline: 3px solid rgb(111, 82, 163);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: rgb(111, 82, 163);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus, .skip-link:focus-visible {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.site-main {
  margin: 1.875rem 0;
  padding: 0 1.6rem;
}
.site-main section {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.site-main h2 {
  margin-bottom: 3.5rem;
}
.site-main figure {
  margin: 0;
  text-align: right;
}
.site-main figure img {
  max-width: 100%;
  border-radius: 4px;
}
.site-main figure figcaption {
  font-size: 0.875rem;
  color: #262626;
  margin-top: 0.5rem;
}
.site-main .subtitle {
  font-family: josefin_sans, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #262626;
  margin-bottom: 2rem;
}
.site-main .bloc-mentions-legales article {
  margin-bottom: 2rem;
}
.site-main .bloc-mentions-legales article > span {
  display: block;
  color: rgb(111, 82, 163);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-main .bloc-mentions-legales article ul {
  font-family: josefin_sans, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding-left: 1.5rem;
}
.site-main .bloc-mentions-legales article ul li {
  line-height: 1.6rem;
  margin-bottom: 0.4rem;
}

@keyframes navSlideIn {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0%);
  }
}
@keyframes navSlideOut {
  from {
    clip-path: inset(0 0 0 0%);
  }
  to {
    clip-path: inset(0 0 0 100%);
  }
}
@keyframes closeBar1 {
  from {
    transform: rotate(0deg) translateY(-5px);
  }
  to {
    transform: rotate(45deg) translateY(0);
  }
}
@keyframes closeBar2 {
  from {
    transform: rotate(0deg) translateY(5px);
  }
  to {
    transform: rotate(-45deg) translateY(0);
  }
}
@media (max-width: 991px) {
  .header-ctn {
    grid-template-columns: 107px 1fr auto;
    grid-template-rows: 60px minmax(100px, auto) auto auto;
    height: auto;
    box-shadow: inset 0 60px 0 0 rgb(111, 82, 163), 0 2px 14px -4px rgba(0, 0, 0, 0.5);
  }
  .header-ctn > a:first-child {
    grid-row: 1/span 4;
  }
  .header-ctn > div:first-of-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 0.2rem 0.8rem;
    grid-column: 2/-1;
    grid-row: 1;
    font-size: 1.063rem;
    align-self: center;
  }
  .header-ctn > div:first-of-type .header-schedule {
    flex-basis: 100%;
    text-align: right;
  }
  .header-ctn > div:first-of-type .header-contact {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .header-ctn > .hamburger-title {
    display: block;
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    padding-top: 0;
    color: rgb(111, 82, 163);
    font-family: josefin_slab, Helvetica, Arial, sans-serif;
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0;
  }
  .header-ctn > .hamburger-subtitle {
    display: block;
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    color: rgb(111, 82, 163);
    font-size: 0.95rem;
    margin: 0;
  }
  .header-ctn > .hamburger-subtitle + .hamburger-subtitle {
    grid-row: 4;
    margin-top: 0.2rem;
    margin-bottom: 1.2rem;
  }
  .header-ctn > nav {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
    align-self: center;
  }
  .header-ctn > nav .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }
  .header-ctn > nav .nav-toggle span {
    display: block;
    width: 33px;
    height: 4px;
    background: rgb(135, 111, 171);
    border-radius: 3px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  }
  .header-ctn > nav .nav-toggle[aria-expanded=true] span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
    background: #fff;
  }
  .header-ctn > nav .nav-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .header-ctn > nav .nav-toggle[aria-expanded=true] span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #fff;
  }
  .header-ctn > nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-height: 400px;
    height: 100vh;
    background-color: rgb(135, 111, 171);
    padding: 5rem 2rem 1rem;
    z-index: 100;
    overflow-y: auto;
  }
  .header-ctn > nav ul.is-open {
    display: flex;
    animation: navSlideIn 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header-ctn > nav ul.is-closing {
    display: flex;
    animation: navSlideOut 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  }
  .header-ctn > nav .nav-close {
    display: none;
    position: absolute;
    top: 110px;
    right: 1.6rem;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 102;
  }
  .header-ctn > nav .nav-close span {
    display: block;
    position: absolute;
    width: 33px;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    top: 50%;
    left: 50%;
    margin-left: -16.5px;
    margin-top: -2px;
  }
  .header-ctn > nav .nav-close span:first-child {
    transform: translateY(-5px) rotate(0deg);
  }
  .header-ctn > nav .nav-close span:last-child {
    transform: translateY(5px) rotate(0deg);
  }
  .header-ctn > nav #nav-main-menu.is-open + .nav-close {
    display: flex;
  }
  .header-ctn > nav #nav-main-menu.is-open + .nav-close span:first-child {
    animation: closeBar1 0.65s cubic-bezier(0.77, 0.2, 0.05, 1) forwards;
  }
  .header-ctn > nav #nav-main-menu.is-open + .nav-close span:last-child {
    animation: closeBar2 0.65s cubic-bezier(0.77, 0.2, 0.05, 1) forwards;
  }
  .header-ctn > nav li {
    display: flex;
    justify-content: center;
  }
  .header-ctn > nav li a {
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem 0;
    padding-bottom: 0.2rem;
    display: inline-block;
  }
  .header-ctn > nav li a::before {
    background-color: #fff;
  }
  .header-ctn > a:last-child {
    display: none;
  }
  .site-main figure.content-image-right {
    float: none;
    display: block;
    width: fit-content;
    margin: 0 auto 1.5rem;
    max-width: 100%;
  }
  .page-hypnose-humaniste .site-main figure.content-image-right,
  .page-relaxation .site-main figure.content-image-right {
    display: none;
  }
  .hero-ctn {
    min-height: 200px;
    padding: 2rem 1.6rem;
    position: relative;
  }
  .hero-ctn > img {
    display: block;
    margin-bottom: 0;
  }
  .hero-ctn h1,
  .hero-ctn p {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .prefooter-ctn {
    grid-template-columns: 1fr auto;
    padding: 2rem 1.6rem 0;
  }
  .prefooter-ctn > h2 {
    grid-column: 1/-1;
  }
  .prefooter-ctn > ul {
    grid-column: 1/-1;
  }
  .prefooter-ctn > div {
    grid-column: 1;
    grid-row: 3;
    margin-bottom: 1rem;
  }
  .prefooter-ctn > img {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: end;
    margin-right: -1.6rem;
    width: 50vw;
    max-width: 50vw;
  }
  .footer-ctn {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding: 1.5rem 1.6rem;
    gap: 1rem;
  }
  .footer-ctn > a:first-child {
    grid-column: 1;
    grid-row: 1/span 2;
    width: 120px;
    max-width: 120px;
  }
  .footer-ctn address {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-ctn > nav {
    grid-column: 2;
    grid-row: 2;
  }
  .footer-ctn > nav ul {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .header-ctn {
    grid-template-columns: 107px 1fr auto;
    grid-template-rows: 90px minmax(100px, auto) auto auto;
    height: auto;
    box-shadow: inset 0 90px 0 0 rgb(111, 82, 163), 0 2px 14px -4px rgba(0, 0, 0, 0.5);
  }
  .header-ctn > a:first-child {
    grid-row: 1/span 4;
  }
  .header-ctn > div:first-of-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 0.2rem 0.5rem;
    grid-column: 2/-1;
    grid-row: 1;
    font-size: 0.95rem;
    align-self: center;
  }
  .header-ctn > div:first-of-type .header-schedule {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
  }
  .header-ctn > div:first-of-type .header-contact {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .header-ctn > div:first-of-type .header-contact .icon-calendar {
    display: none;
  }
  .header-ctn > nav {
    grid-row: 2;
  }
  .header-ctn > nav .nav-close {
    top: 140px;
    right: 1rem;
  }
  .hero-ctn {
    min-height: 200px;
    padding: 1.5rem 1rem;
  }
  .hero-ctn > img {
    display: block;
    width: 150px;
    margin-bottom: 0;
  }
  .hero-ctn h1 {
    font-size: 2rem;
  }
  .hero-ctn p {
    font-size: 1rem;
  }
  .site-main {
    padding: 0 1rem;
    margin: 1rem 0;
  }
  .site-main h2 {
    margin-bottom: 2rem;
  }
  .site-main figure.content-image-right {
    float: none;
    margin: 0 auto 1.5rem;
    max-width: 100%;
  }
  .site-main .content-bloc {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .site-main .content-bloc.content-bloc--reverse {
    flex-direction: column;
  }
  .site-main .content-bloc figure {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .site-main .content-bloc section {
    width: 100%;
    max-width: 100%;
  }
  .page-homepage .content-bloc:first-of-type section {
    display: contents;
  }
  .page-homepage .content-bloc:first-of-type figure {
    order: 3;
    width: auto;
    align-self: center;
    margin: 0 auto 1.5rem;
  }
  .page-homepage .content-bloc:first-of-type h2 {
    order: 1;
  }
  .page-homepage .content-bloc:first-of-type p.discret {
    order: 2;
  }
  .page-homepage .content-bloc:first-of-type p:not(.discret) {
    order: 4;
  }
  .page-homepage .content-bloc:first-of-type a.btn-more {
    order: 5;
  }
  .page-homepage .content-bloc:nth-of-type(2) figure {
    display: none;
  }
  .page-homepage .content-bloc:nth-of-type(2) section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-homepage .content-bloc:nth-of-type(2) section .btn-more {
    align-self: center;
  }
  .page-hypnose-humaniste .site-main figure.content-image-right,
  .page-relaxation .site-main figure.content-image-right {
    display: none;
  }
  .page-outils-therapeutiques .site-main .content-bloc figure,
  .page-infos-pratiques .site-main .content-bloc figure {
    display: none;
  }
  .page-outils-therapeutiques .site-main .content-bloc section,
  .page-infos-pratiques .site-main .content-bloc section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-outils-therapeutiques .site-main .content-bloc section .btn-more,
  .page-infos-pratiques .site-main .content-bloc section .btn-more {
    align-self: center;
  }
  .prefooter-ctn {
    padding: 1.5rem 1rem 0;
  }
  .prefooter-ctn > h2 {
    font-size: 1.8rem;
  }
  .prefooter-ctn > img {
    max-width: 33vw;
  }
  .prefooter-ctn > div h3 {
    padding: 0.4rem 1rem;
  }
  .prefooter-ctn > div ul {
    margin: 0 1rem;
    font-size: 0.75rem;
  }
  .footer-ctn {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-ctn > a:first-child {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: 80px;
    max-width: 80px;
  }
  .footer-ctn address {
    grid-column: 1;
    grid-row: 2;
    align-items: center;
  }
  .footer-ctn > nav {
    grid-column: 1;
    grid-row: 3;
  }
  .footer-ctn > nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .header-ctn {
    grid-template-columns: 60px 1fr;
    grid-template-rows: 90px 100px;
    height: auto;
    box-shadow: inset 0 90px 0 0 rgb(111, 82, 163), 0 2px 14px -4px rgba(0, 0, 0, 0.5);
    padding: 0 0.8rem;
  }
  .header-ctn > div:first-of-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: center;
    gap: 0.2rem 0.4rem;
    grid-column: 2;
    grid-row: 1;
    font-size: 0.813rem;
    align-self: center;
  }
  .header-ctn > div:first-of-type .header-schedule {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
  }
  .header-ctn > div:first-of-type .header-contact {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .header-ctn > div:first-of-type .header-contact .icon-calendar {
    display: none;
  }
  .header-ctn > nav .nav-close {
    top: 140px;
    right: 0.8rem;
  }
  .header-ctn > a:first-child {
    width: 60px;
    max-width: 60px;
  }
  .header-ctn > nav {
    grid-column: 2;
  }
  .hero-ctn {
    min-height: 180px;
    padding: 1rem 0.8rem;
  }
  .hero-ctn > img {
    width: 120px;
  }
  .hero-ctn h1 {
    font-size: 1.6rem;
  }
  .hero-ctn p {
    font-size: 0.875rem;
  }
  .site-main {
    padding: 0 0.8rem;
  }
  .prefooter-ctn {
    grid-template-columns: 1fr;
  }
  .prefooter-ctn > img {
    display: none !important;
  }
  .prefooter-ctn > ul {
    display: none;
  }
  .prefooter-ctn > div {
    grid-column: 1/-1;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .prefooter-ctn > div > div {
    width: 100%;
    text-align: center;
  }
  .prefooter-ctn > div > div h3 {
    text-align: center;
    padding: 0 0.5rem;
  }
  .prefooter-ctn > div > div ul {
    justify-content: center;
  }
  .prefooter-ctn > div > div ul li {
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle span {
    transition: none;
  }
  .nav-close span {
    animation: none !important;
  }
  #nav-main-menu.is-open {
    animation: none;
  }
  #nav-main-menu.is-open .bloc-mentions-legales article > span {
    font-size: 1.2rem;
  }
  .footer-ctn {
    padding: 1rem 0.8rem;
  }
}
@media (pointer: none), (pointer: coarse) {
  .footer-ctn address > a[href^=tel] {
    text-decoration: underline;
  }
}