@charset "UTF-8";
/* Reset CSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}
a:hover {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

input, textarea, select {
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif;
}

h2 {
  line-height: 3.75rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.header {
  position: relative;
}

body {
  cursor: none;
  background-color: #FFFCF2;
}
body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,                            <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'>                            <filter id='n'>                            <feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/>                            </filter>                            <rect width='100%' height='100%' filter='url(%23n)' opacity='1'/>                            </svg>");
}

.nav {
  position: fixed;
  top: 2rem;
  left: 6rem;
  right: 6rem;
  z-index: 1000;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFCF2;
  /*backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
  border-radius: 20px;
  transition: all 0.3s ease;
}
.nav__left {
  display: flex;
  align-items: center;
}
.nav__logo img {
  padding-left: 2rem;
  height: 32px;
}
.nav__right {
  padding-right: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-right: 1.5rem;
  font-family: "Poppins", sans-serif;
}
.nav-menu a {
  text-transform: uppercase;
  color: #232323;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  line-height: 1;
}
.nav-menu a:hover, .nav-menu a.active {
  color: #F7AA1C;
}
.nav-menu a::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  width: 16px;
  height: 16px;
  background-image: url("../images/picto-soleil.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-menu a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.nav__social {
  color: #232323;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}
.nav__social:hover {
  opacity: 0.7;
}
.nav__social img {
  width: 20px;
  height: 20px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.nav__burger span {
  width: 25px;
  height: 3px;
  background: #FFFCF2;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.nav__burger.active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav--stuck {
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  background-color: #F5F1E3;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 8rem 2rem 3rem 2rem;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__header {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}
.mobile-menu__logo img {
  height: 48px;
}
.mobile-menu__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.mobile-menu .nav-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .nav-menu li a {
  text-transform: uppercase;
  color: #FFFCF2;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}
.mobile-menu .nav-menu li a:hover, .mobile-menu .nav-menu li a.active {
  color: #F7AA1C;
}
.mobile-menu__footer {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 2rem;
  width: 100%;
  fill: #FFFCF2;
}
.mobile-menu__footer svg path {
  fill: #FFFCF2;
}
.mobile-menu__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.mobile-menu__footer a:hover {
  opacity: 0.7;
}
.mobile-menu__footer a img {
  width: 28px;
  height: 28px;
}

@media (max-width: 850px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 1.5rem;
    justify-content: space-between;
  }
  .nav__right {
    display: none;
  }
  .nav__burger {
    display: flex;
    padding-right: 1rem;
  }
}
.site-footer {
  padding: 15rem 3rem 3rem 0;
  background: #FFFCF2;
  color: #232323;
}
.site-footer .footer-col h3 {
  padding-bottom: 1.5rem;
}
.site-footer .footer-container {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.9fr 0.9fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li {
  margin-bottom: 10px;
}
.site-footer ul li a {
  color: #232323;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}
.site-footer ul li a:hover, .site-footer ul li a.active {
  color: #F7AA1C;
}
.site-footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-nav li a {
  color: #232323;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}
.site-footer .footer-nav li a:hover, .site-footer .footer-nav li a.active {
  color: #F7AA1C;
}
.site-footer .footer-logo {
  max-width: 180px;
}
.site-footer .footer-socials {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  padding-bottom: 1.5rem;
}
.site-footer .footer-text {
  font-weight: bold;
}
.site-footer .footer-bottom {
  margin-top: 7.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}
.site-footer .nav__social svg path {
  width: 20px;
  height: 20px;
  fill: #232323;
}
.site-footer .nav__social {
  background: #FFFCF2;
}

@media (max-width: 1080px) {
  .site-footer {
    padding: 8rem 1.5rem 3rem 1.5rem;
  }
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    margin: 0 auto;
    gap: 40px;
    text-align: center;
  }
  .site-footer .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .site-footer ul {
    padding: 0;
  }
  .site-footer .footer-nav {
    align-items: center;
  }
  .site-footer .footer-socials {
    justify-content: center;
  }
  .site-footer .footer-logo {
    margin: 0 auto;
  }
}
.header-page {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #CF4504 0%, #E66A10 35%, #F7AA1C 80%);
  border-radius: 0 0 72px 72px;
  padding-top: 15rem;
  color: #FFFCF2;
}
.header-page__container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10rem;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.header-page__left {
  align-self: center;
}
.header-page__right {
  align-self: end;
}
.header-page .photo {
  position: absolute;
  overflow: hidden;
}
.header-page .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-page .photo1 {
  bottom: 0;
  right: 20rem;
  width: 30rem;
  height: 33.75rem;
  z-index: 2;
  border-radius: 1.5rem;
}
.header-page .photo2 {
  width: 30rem;
  height: 33.75rem;
  z-index: 1;
  border-radius: 1.5rem 0 0 1.5rem;
  position: absolute;
  right: 0;
  top: 13.375rem;
}
.header-page__title {
  position: relative;
  display: inline-block;
  align-items: center;
  gap: 1rem;
  line-height: 5rem;
  padding-bottom: 1.5rem;
}
.header-page__title::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 131px;
  background: url("../svg/etoiles-titre.svg") no-repeat center;
  background-size: contain;
  right: -80px;
  top: -40px;
}
.header-page__subtitle {
  padding-bottom: 7.5rem;
}

@media (max-width: 1200px) {
  .header-page {
    position: relative;
    overflow: hidden;
  }
  .header-page__title {
    line-height: 3rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--btn-hover-bg);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.btn > * {
  position: relative;
  z-index: 1;
}
.btn__icon {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform 0.5s ease;
}
.btn:hover::before {
  transform: translateX(0);
}
.btn:hover .btn__icon {
  transform: rotate(180deg);
}
.btn {
  background-color: var(--btn-bg);
  color: var(--btn-color);
}
.btn::before {
  background: var(--btn-hover-bg);
}
.btn__icon svg path {
  fill: var(--btn-etoile);
  transition: fill 0.5s ease;
}
.btn:hover .btn__icon svg path {
  fill: #F7AA1C;
}

.btn--white {
  --btn-bg: #FFFCF2;
  --btn-color: #232323;
  --btn-hover-bg: #F5F1E3;
  --btn-etoile: #F7AA1C;
}

.btn--primary {
  --btn-bg: #F7AA1C;
  --btn-color: #232323;
  --btn-hover-bg: #F5F1E3;
  --btn-etoile: #FFFCF2;
}

.cards-section {
  margin-top: 15rem;
}

:root {
  --cards: 3;
  --cardHeight: 60rem;
  --cardTopPadding: 1.5em;
  --cardMargin: 4vw;
}

.container {
  width: 100%;
  margin: 0 auto;
}

#cards {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: var(--cardMargin);
  color: #FFFCF2;
}

#card1 {
  --index: 1;
}

#card2 {
  --index: 2;
}

#card3 {
  --index: 3;
}

.card {
  position: sticky;
  top: 0;
}

#card1 .card-body {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #CF4504 0%, #E66A10 35%, #F7AA1C 80%);
}
#card1 .card-body .card-polaroid-1 {
  rotate: -6deg;
  top: -44rem;
  right: -12rem;
}
#card1 .card-body .card-polaroid-2 {
  rotate: 9deg;
  top: -25rem;
  right: -60rem;
}

#card2 .card-body {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #232323 0%, #1B2F3B 35%, #12304A 80%);
}
#card2 .card-body .card-polaroid-1 {
  rotate: 9deg;
  top: -37rem;
  right: -80rem;
}
#card2 .card-body .card-polaroid-2 {
  rotate: -6deg;
  top: -25rem;
  right: 2rem;
}

#card3 .card-body {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #F7AA1C 0%, #E67611 35%, #CF4504 80%);
}
#card3 .card-body .card-polaroid-1 {
  rotate: 9deg;
  top: -33rem;
  right: -87rem;
}
#card3 .card-body .card-polaroid-2 {
  rotate: -12deg;
  top: -25rem;
  right: -12rem;
}
#card3 .card-body .cta-arrow {
  transform: scaleX(-1);
  left: 60%;
}
#card3 .card-body {
  max-height: 200rem;
}

.card-body {
  position: relative;
  box-sizing: border-box;
  border-radius: 4.5rem 4.5rem 0 0;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.3);
  height: var(--cardHeight);
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.card-content {
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.card-title {
  padding-top: 7.5rem;
  text-align: center;
}

.card-title h2 {
  padding-bottom: 1.5rem;
}

.card-description {
  max-width: 40%;
  margin: 0 auto;
  font-size: 0.875rem;
}

.cards-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 1.25rem;
}

.card-item {
  padding: 2.5rem 3.125rem;
  color: #232323;
  background-color: #FFFCF2;
  border-radius: 1.5rem;
}
.card-item .star {
  color: #F7AA1C;
}

.card-polaroid {
  position: relative;
  width: 12.75rem;
  aspect-ratio: 1/1.2;
  background: url("../images/polaroid.png") no-repeat center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-polaroid img {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 11.25rem;
  height: 11.25rem;
  object-fit: cover;
}

.card-text ol {
  list-style: decimal;
}

.card-text ul {
  list-style: disc;
  padding-left: 1rem;
}

.card-text li {
  line-height: 1.5rem;
}

.card__cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.cta-arrow {
  position: absolute;
  left: 27%;
  bottom: -7rem;
  width: 200px;
  rotate: 180deg;
}

.cta-arrow svg {
  width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .card {
    position: relative;
    top: auto;
  }
  .card-description {
    max-width: 80%;
  }
  .card-body {
    height: auto;
    margin-top: -5rem;
    padding-bottom: 15em;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    margin: 0 1.5rem;
  }
  .card-polaroid {
    display: none;
  }
  #card3 .card-body .cta-arrow {
    left: 40%;
  }
}
.faq {
  border-radius: 72px 72px 0 0;
  background-color: #232323;
  padding-bottom: var(--faq-padding-bottom, 22rem);
}
.faq .faq__container {
  width: 100%;
  max-width: 1300px;
  display: grid;
  margin: 0 auto;
  padding-top: var(--faq-padding-top, 22rem);
  gap: 10rem;
  grid-template-columns: 0.8fr 1.2fr;
  color: #FFFCF2;
}
.faq .faq__container .faq__intro h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.faq .faq__container .faq__item {
  align-self: end;
  border-bottom: 1px solid #FFFCF2;
}
.faq .faq__container .faq__list {
  border-top: 1px solid #FFFCF2;
}
.faq .faq__container .faq__question {
  width: 100%;
  background: none;
  border: none;
  color: #FFFCF2;
  text-align: left;
  padding: 1.5rem 0;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  font-size: 1.1rem;
}
.faq .faq__container .faq__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  flex-grow: 0;
  background-image: url("../images/plus.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.faq .faq__container .faq__icon:hover {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.faq .faq__container .faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq .faq__container .faq__item.is-open .faq__icon {
  background-image: url("../images/moins.png");
}
.faq .faq__answer ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.faq .faq__answer ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.faq .faq__answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.faq .faq__answer p:last-child,
.faq .faq__answer li:last-child {
  padding-bottom: 1.5rem;
}

@media (max-width: 1080px) {
  .faq .faq__container {
    padding: 6rem 3rem 0 3rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.section-partenaires {
  padding: 40px 0;
  overflow: hidden;
}

.partenaires-carousel {
  display: flex;
  gap: 40px;
  align-items: center;
  user-select: none;
}

.partenaires-carousel img {
  pointer-events: none;
}

.partenaire-item {
  flex: 0 0 auto;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partenaire-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.partenaire-logo:hover {
  opacity: 0.8;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.cta-contact {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #CF4504 0%, #E66A10 35%, #F7AA1C 80%);
  margin: 0 clamp(1.5rem, 5vw, 7.5rem);
  text-align: center;
  border-radius: 48px;
  padding: 6rem clamp(1.5rem, 4vw, 4rem);
  color: #FFFCF2;
}
.cta-contact .question {
  text-transform: uppercase;
}
.cta-contact h2 {
  padding: 1.5rem 0 1.5rem 0;
}
.cta-contact .baseline {
  padding-bottom: 3rem;
}

.sun-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FDB813;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: background 0.3s ease, transform 0.1s ease;
  box-shadow: 0 0 15px rgba(255, 200, 0, 0.6);
}

body:has(a:hover) .sun-cursor,
body:has(button:hover) .sun-cursor {
  transform: translate(-50%, -50%) scale(0.5);
  background: #f56505;
}

.sun-cursor--drag {
  transform: translate(-50%, -50%) scale(0.75);
  background: #f56505;
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.9);
}

body.is-dragging .sun-cursor {
  transform: translate(-50%, -50%) scale(0.75);
  background: #f56505;
  box-shadow: 0 0 25px rgba(255, 120, 0, 0.9);
}

@media (max-width: 1200px) {
  .sun-cursor {
    display: none;
  }
  body,
  a,
  button,
  input,
  textarea,
  select,
  label,
  .nav,
  .navbar,
  .menu {
    cursor: auto !important;
  }
}
.testimonials {
  padding: 6rem 0;
  background: var(--color-cream);
  overflow-x: hidden;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials {
  /*
    .title-highlight {
      position: relative;
      display: inline-block;
    }

    .title-highlight img {
      position: absolute;
      left: -16%;
      bottom: -20px;
      width: 125%;
      height: auto;
      z-index: -1;
      pointer-events: none;
      max-width: none;
    }
  */
}
.testimonials__subtitle {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.testimonials__grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(365px, 1fr));
  gap: 0.1rem;
  justify-items: center;
}

.testimonial {
  transform: rotate(var(--base-rotate));
  transition: transform 0.2s linear;
  will-change: transform;
  max-height: 546px;
  padding: 2rem;
  border-radius: 16px;
  color: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 365px;
}
.testimonial__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.testimonial__photo {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial__name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.testimonial__role {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}
.testimonial__text {
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial__text p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.testimonial__text p:last-child {
  margin-bottom: 0;
}
.testimonial:nth-child(1) {
  transform: rotate(-4deg);
  margin-top: 0;
}
.testimonial:nth-child(2) {
  transform: rotate(2deg);
  margin-top: 60px;
}
.testimonial:nth-child(3) {
  transform: rotate(-2deg);
  margin-top: 20px;
}
.testimonial:nth-child(4) {
  transform: rotate(4deg);
  margin-top: 90px;
}
.testimonial--yellow {
  background: #F7AA1C;
}
.testimonial--orange {
  background: #CF4504;
}
.testimonial--blue {
  background: #12304A;
}

@media (max-width: 1500px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1080px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }
  .testimonial {
    transition: none;
  }
  .testimonial:nth-child(odd) {
    transform: rotate(-2deg) !important;
  }
  .testimonial:nth-child(even) {
    transform: rotate(2deg) !important;
  }
  .testimonial:nth-child(1),
  .testimonial:nth-child(2),
  .testimonial:nth-child(3),
  .testimonial:nth-child(4) {
    margin-top: -1rem !important;
  }
}
.liste {
  max-width: 1500px;
  margin: 0 auto;
}
.liste__container {
  margin: 7.5rem 0 15rem;
  display: grid;
  gap: 6rem;
  grid-template-columns: 0.8fr 1.2fr;
}
.liste__left {
  align-items: start;
}
.liste__right {
  align-items: end;
}
.liste__baseline {
  text-transform: uppercase;
}
.liste__title {
  padding: 1.5rem 0;
  width: 100%;
}
.liste__description {
  width: 100%;
}
.liste__separator {
  display: block;
  opacity: 0.5;
  width: 100%;
  height: 1px;
  border-top: 1px solid #232323;
  margin: 1.5rem 0;
}
.liste__separator:first-child {
  margin-top: 15rem;
}
.liste__star {
  color: #F7AA1C;
}
.liste__item_title {
  padding-bottom: 1.5rem;
}

@media (max-width: 1200px) {
  .liste__container {
    grid-template-columns: 1fr;
    gap: 0rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .liste__title {
    width: 100%;
  }
  .liste__separator:first-child {
    margin-top: 0px;
  }
}
.homepage .hero {
  min-height: 80svh;
  display: flex;
  background-image: url("../images/hero-homepage.png");
  background-size: cover;
  background-position: center;
  position: relative;
}
.homepage .hero__title {
  line-height: 5rem;
}
.homepage .hero__container {
  width: 100%;
  margin: 0 auto;
  padding: 6rem;
  color: #FFFCF2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "punchline ." ". laius";
  gap: 20rem;
}
.homepage .hero__left {
  padding-top: 6rem;
  align-self: center;
  grid-area: punchline;
}
.homepage .hero__right {
  align-self: end;
  text-align: right;
  grid-area: laius;
}
.homepage .homepage__cta-overlap {
  position: relative;
  margin-top: -244px;
  z-index: 10;
}
.homepage .homepage__testimonials-overlap {
  position: relative;
  z-index: 10;
}
.homepage .homepage__faq-overlap {
  position: relative;
  margin-top: -200px;
  z-index: 1;
}
.homepage .baseline {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.homepage .services {
  text-align: center;
  padding-bottom: 15rem;
}
.homepage .services__content {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 7.5rem;
}
.homepage .services__title {
  max-width: 650px;
  margin: 0 auto;
  line-height: 3.75rem;
  padding-bottom: 1.5rem;
}
.homepage .services__description {
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.homepage .services__items {
  color: #FFFCF2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}
.homepage .services__item {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.homepage .services__item__image {
  /*aspect-ratio: 16 / 9;*/
  height: 15rem;
  overflow: hidden;
}
.homepage .services__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.homepage .services__item__image:hover img {
  transform: scale(1.05);
}
.homepage .services__item h3 {
  padding-bottom: 0.75rem;
}
.homepage .services__item__content {
  padding: 1.5rem 4rem;
  color: #FFFCF2;
  flex: 1;
}
.homepage .services__item--communication {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #CF4504 0%, #E66A10 35%, #F7AA1C 80%);
}
.homepage .services__item--photo {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #232323 0%, #1B2F3B 35%, #12304A 80%);
}
.homepage .services__item--reseaux {
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #F7AA1C 0%, #E67611 35%, #CF4504 80%);
}
.homepage .services__cta {
  margin-top: auto;
  /*padding-top: 3rem;*/
  padding-bottom: 2.5rem;
}
.homepage .about {
  overflow: hidden;
  color: #FFFCF2;
  border-radius: 72px 72px 0px 0px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #CF4504 0%, #E66A10 35%, #F7AA1C 80%);
}
.homepage .about__polaroid {
  position: relative;
  width: 400px;
  rotate: -6deg;
  background: url("../images/polaroid.png") no-repeat center;
  background-size: contain;
  aspect-ratio: 1/1.2;
  top: -80px;
  right: -84px;
}
.homepage .about__portrait {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 352px;
  height: 350px;
  object-fit: cover;
}
.homepage .about__sticker {
  position: absolute;
  bottom: 130px;
  left: 155px;
  width: 240px;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.25));
}
.homepage .about__arrow {
  position: absolute;
  top: -100px;
  right: -75px;
  width: 200px;
}
.homepage .about__content {
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 15rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.homepage .about__baseline {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.homepage .about__right {
  align-items: end;
  width: 550px;
}
.homepage .about__left {
  display: grid;
  place-items: center;
  position: relative;
}
.homepage .about__title {
  position: relative;
  display: inline-block;
  padding: 0 1rem 1.5rem 1rem;
  line-height: 3.75rem;
}
.homepage .about__title::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 131px;
  background: url("../svg/etoiles-titre.svg") no-repeat center;
  background-size: contain;
  right: -80px;
  top: -40px;
}
.homepage .about__cta {
  padding-top: 3rem;
  padding-bottom: 15rem;
}
.homepage .projets {
  background-color: #232323;
  color: #FFFCF2;
}
.homepage .projets__content {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 7.5rem;
  text-align: left;
}
.homepage .projets__baseline {
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.homepage .projets__title {
  padding-bottom: 3rem;
}
.homepage .projets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-bottom: 7.5rem;
}
.homepage .projets__item {
  display: flex;
  flex-direction: column;
  border: solid 1px #FFFCF2;
  border-radius: 1.5rem;
  overflow: hidden;
}
.homepage .projets__item-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.homepage .projets__description {
  display: flex;
  flex-direction: column;
  margin: 0 2.5rem 1.5rem 2.5rem;
  flex: 1;
  align-items: flex-start;
}
.homepage .projets__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.homepage .projets__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.homepage .projets__image:hover img {
  transform: scale(1.05);
}
.homepage .projets__cta {
  margin-top: auto;
  align-self: flex-end;
  padding-bottom: 2.5rem;
}
.homepage .projets__tag {
  position: relative;
  display: inline-block;
  border: 1px solid #F7AA1C;
  border-radius: 12px;
  padding: 0.3rem 0.8rem;
  overflow: hidden;
  color: #F7AA1C;
  transition: color 0.3s ease;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px #F7AA1C;
}
.homepage .projets__tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F7AA1C;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}
.homepage .projets__tag:hover {
  color: #FFFCF2;
}
.homepage .projets__tag:hover::before {
  transform: translateX(0);
}

@media (max-width: 1200px) {
  body {
    cursor: auto;
  }
  .hero .hero__container {
    padding: 4rem 2rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "punchline" "laius";
    gap: 3rem;
  }
  .hero .hero__left {
    padding-top: 0;
    text-align: left;
  }
  .hero .hero__right {
    text-align: right;
    align-self: center;
  }
  .projets .projets__content {
    margin: 0 2rem;
  }
  .projets .projets__grid {
    grid-template-columns: 1fr;
  }
  .services .services__items {
    margin: 0 2rem;
    grid-template-columns: 1fr;
  }
  .services .services__description {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .about .about__content {
    padding: 5rem 2rem 5rem 2rem;
    grid-template-columns: 1fr;
  }
  .about .about__right {
    width: 100%;
    order: 1;
  }
  .about .about__left {
    order: 2;
  }
  .about .about__polaroid {
    width: 100%;
    max-width: 320px;
    right: 0;
  }
  .about .about__portrait {
    top: 1.3rem;
    left: 1.3rem;
    max-width: 278px;
    max-height: 280px;
  }
  .about .about__sticker {
    bottom: 0px;
    left: 10px;
  }
  .about .about__arrow {
    display: none;
  }
  .about .about__title::after {
    right: -20px;
    top: -20px;
    width: 40px;
    height: auto;
  }
}
.contact {
  --faq-padding-top: 7.5rem;
  --faq-padding-bottom: 7.5rem;
  margin-top: 8.75rem;
}
.contact .header-page {
  border-radius: 72px 72px 0 0;
  padding-top: 7.5rem;
}
.contact .header-page__container {
  display: grid;
  grid-template-columns: 40% 60%;
}
.contact .header-page__left {
  align-self: start;
}
.contact .header-page__right {
  min-width: 0;
  padding-bottom: 7.5rem;
}
.contact .header-page__right .wpcf7 {
  width: 100%;
}
.contact .header-page__right .wpcf7-form p {
  min-width: 0;
}
.contact .header-page__right .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}
.contact .header-page__right .wpcf7-form-control-wrap input, .contact .header-page__right .wpcf7-form-control-wrap textarea {
  padding-left: 1rem;
}
.contact .header-page__right .wpcf7-form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  cursor: none;
}
.contact .header-page__right .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 1.25rem;
  justify-content: start;
  width: 100%;
}
.contact .header-page__right .wpcf7-form p {
  margin: 0;
  min-width: 0;
  padding-bottom: 1.5rem;
}
.contact .header-page__right .wpcf7-form p:has(.contact-company),
.contact .header-page__right .wpcf7-form p:has(.contact-subject),
.contact .header-page__right .wpcf7-form p:has(.contact-message),
.contact .header-page__right .wpcf7-form p:has(.btn) {
  grid-column: 1/-1;
}
.contact .header-page__right .wpcf7-form p:has(.btn) {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-end;
}
.contact__faq-overlap {
  margin-top: -5rem;
}
.contact .hidden-fields-container {
  display: none;
}
.contact .contact-email, .contact .contact-name, .contact .contact-surname,
.contact .contact-phone, .contact .contact-email, .contact .contact-subject,
.contact .contact-company, .contact .contact-message {
  border: 2px solid #F7AA1C;
  border-radius: 0.75rem;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #FFFCF2;
}

body:has(a:hover,
button:hover,
input:hover,
textarea:hover,
select:hover) .sun-cursor {
  transform: translate(-50%, -50%) scale(0.5);
  background: #f56505;
}

label {
  cursor: none;
}

button,
input[type=submit],
.wpcf7-submit {
  cursor: none !important;
}

@media (max-width: 1200px) {
  .contact .header-page__container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact .header-page__right {
    padding: 0 2rem 5rem 2rem;
    display: block;
  }
  .contact .wpcf7-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact .wpcf7-form-control,
  .contact .wpcf7-form-control-wrap {
    width: 100%;
    max-width: 100%;
  }
  .contact .wpcf7-form p:has(.btn) {
    justify-content: center;
  }
  .contact .wpcf7-form p:has(.contact-name),
  .contact .wpcf7-form p:has(.contact-surname),
  .contact .wpcf7-form p:has(.contact-phone),
  .contact .wpcf7-form p:has(.contact-email) {
    grid-column: 1/-1;
  }
}
.ml-content {
  padding-top: 7.5rem;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.6fr;
  gap: 1rem;
}
.ml-content__text {
  align-items: left;
}

.about__liste-overlap .liste__title {
  width: 50%;
}

.services__partenaires-overlap {
  margin-bottom: 15rem;
}

.about-header-overlap .header-page__container {
  grid-template-columns: 1.2fr 0.8fr;
}
.about-header-overlap .header-page__title::after {
  right: 0px;
}

.services-header-overlap .header-page__container {
  grid-template-columns: 1.2fr 0.8fr;
}
.services-header-overlap .header-page__title::after {
  right: 45px;
}

.title-highlight {
  position: relative;
  display: inline-block;
}
.title-highlight img {
  position: absolute;
  left: -16%;
  bottom: -20px;
  width: 125%;
  height: auto;
  z-index: -1;
  pointer-events: none;
  max-width: none;
}

/* Pour les pages services et à propos */
.page__content {
  max-width: 1500px;
  margin: 7.5rem auto 0;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
.page__left {
  align-self: start;
}
.page__right {
  padding-top: 10rem;
  padding-left: 8rem;
  align-self: center;
  justify-self: center;
}
.page__title {
  margin-bottom: 1.5rem;
}
.page__description {
  max-width: 70%;
}
.page__arrow {
  position: absolute;
  left: 50%;
  bottom: -7rem;
  width: 200px;
  rotate: 270deg;
}
.page__arrow svg {
  width: 100%;
  height: auto;
  filter: invert(1);
}
.page .word-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2rem;
  max-width: 70%;
}
.page .word-cloud__item {
  font-size: 0.8rem;
  text-transform: uppercase;
  opacity: 0.7;
  max-width: 12.5rem;
  text-align: center;
}

.story {
  margin: 7.5rem auto 0;
  background-color: #232323;
  border-radius: 72px 72px 0 0;
  color: #FFFCF2;
  text-align: center;
  padding-bottom: 7.5rem;
}
.story__mobile {
  display: none;
}
.story__title {
  padding-top: 7.5rem;
}
.story__header {
  max-width: 620px;
  margin: 0 auto 80px;
}
.story__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
.story__description {
  padding: 1.5rem 0 0;
  margin: 0 auto;
}
.story__scroll {
  position: relative;
}
.story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story__left {
  position: relative;
  height: 500px;
  justify-self: right;
}
.story__right {
  align-self: center;
  text-align: left;
  max-width: 50%;
  transition: opacity 0.25s ease;
}
.story__polaroids {
  position: relative;
  width: 400px;
  height: 480px;
}
.story__polaroid {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  aspect-ratio: 1/1.2;
  background: url("../images/polaroid.png") center/contain no-repeat;
  transform-origin: center;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.story__polaroid.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.story__portrait {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 352px;
  height: 350px;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .ml-content .header-page__container {
    grid-template-columns: 1fr;
  }
  .services-header-overlap .header-page__container,
  .about-header-overlap .header-page__container {
    grid-template-columns: 1fr;
  }
  .services-header-overlap .header-page__right,
  .about-header-overlap .header-page__right {
    display: none;
  }
  .services-header-overlap .header-page__left,
  .about-header-overlap .header-page__left {
    padding: 0 2rem;
  }
  .about__liste-overlap .liste__title {
    width: 100%;
  }
  .liste__container {
    margin-bottom: 0;
  }
  .page__content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 2rem;
  }
  .page__description {
    max-width: 100%;
  }
  .page__arrow {
    display: none;
  }
  .page__right, .page__left {
    padding: 0;
    min-width: 0;
  }
  .page__title {
    min-width: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    overflow-wrap: break-word;
  }
  .page .word-cloud {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 auto;
    max-width: 100%;
  }
  .page .word-cloud .word-cloud__item {
    padding: 1rem;
  }
  .page .page__content .title-highlight {
    overflow: hidden;
  }
  .page .page__content .title-highlight img {
    top: 1rem;
    left: 0;
    width: 100%;
  }
  .story__container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 1.5rem;
  }
  .story__polaroid {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    right: 0;
  }
  .story__portrait {
    width: 88%;
    height: auto;
    left: 6%;
    top: 1rem;
  }
  .story__right {
    padding: 5rem 0;
    max-width: 100%;
  }
  .story__description {
    max-width: 80%;
  }
  .header-page__title::after {
    top: 0;
    right: 0;
    transform: translate(0%, -100%);
  }
  .services-header-overlap {
    overflow: hidden;
  }
  .ml-header-overlap .header-page__container {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
  .ml-content {
    padding: 7.5rem 2rem;
    width: 100%;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .story__scroll {
    display: none;
  }
  .story__mobile {
    display: block;
    max-width: 420px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
  }
  .story__mobile_item {
    margin-bottom: 4rem;
    text-align: left;
  }
  .story__mobile_polaroid {
    width: 100%;
    aspect-ratio: 1/1.2;
    background: url("../images/polaroid.png") center/contain no-repeat;
    position: relative;
    margin-bottom: 1.5rem;
  }
  .story__mobile_polaroid img {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 3.5rem);
    object-fit: cover;
  }
  .story__mobile_separator {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 3rem 0 0;
  }
  .story__mobile_separator:last-child {
    display: none;
  }
}

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