@charset "UTF-8";
@font-face {
  font-family: "Catchye";
  src: url("../fonts/Catchye.otf") format("opentype");
}
@font-face {
  font-family: "Wellingtons-bold";
  src: url("../fonts/TT Wellingtons Trial Bold.otf") format("opentype");
}
@font-face {
  font-family: "Wellingtons-light";
  src: url("../fonts/TT Wellingtons Trial Light.otf") format("opentype");
}
@font-face {
  font-family: "Wellingtons-medium";
  src: url("../fonts/TT Wellingtons Trial Medium.otf") format("opentype");
}
@font-face {
  font-family: "Wellingtons-reg";
  src: url("../fonts/TT Wellingtons Trial Regular.otf") format("opentype");
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir.ttc") format("Truetype");
}
@font-face {
  font-family: "Avenir-light";
  src: url("../fonts/AvenirLTStd-Light.otf") format("Truetype");
}
@font-face {
  font-family: "Avenir-med";
  src: url("../fonts/AvenirLTStd-medium.otf") format("Truetype");
}
@font-face {
  font-family: "Avenir-heavy";
  src: url("../fonts/AvenirLTStd-Heavy.otf") format("Truetype");
}
@font-face {
  font-family: "Avenir-black";
  src: url("../fonts/AvenirLTStd-Black.otf") format("Truetype");
}
body {
  color: #6f6f6f;
  font-family: "Arial", sans-serif;
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

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

.main-container {
  margin: 0 auto;
  background-color: #ffffff;
  position: relative;
  width: 100%;
  max-width: 1450px;
}

header {
  position: fixed;
  top: 0;
  left: 50%; /* Le centre du header est positionné au milieu de l'écran */
  transform: translateX(-50%); /* Centre le header lui-même */
  z-index: 5;
  color: #978554;
  width: 100%; /* Assure qu'il prend toute la largeur désirée */
  max-width: 1450px; /* Optionnel : limite la largeur maximale si nécessaire */
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.85);
}

nav {
  font-family: "Avenir-light";
  font-size: 16px;
  width: 100%;
  display: flex;
  justify-content: end;
  align-self: flex-start;
  align-items: start;
  padding: 30px 0 0 0;
}

.brand {
  font-family: "Wellingtons-light";
  font-size: 1.7rem;
  line-height: 1.7rem;
  font-weight: 100;
  color: rgba(151, 133, 84, 0.7647058824);
}

.slider h2 {
  font-family: "Catchye";
  color: #ffffff;
  font-weight: normal;
}

button {
  font-family: "Wellingtons-reg";
  color: #ffffff;
  font-weight: 100;
  font-size: 1.5rem;
}

nav h1 {
  font-weight: 100;
}

.nav-icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 20px;
}

.nav-icon span {
  font-family: Roboto Flex, sans-serif;
  font-size: 25px;
  margin-left: 10px;
  font-weight: 400;
  color: #333;
}

.nav-icon img {
  width: 40px;
  transform: rotate(-17deg) translateX(5px);
}

.hamburger {
  display: none;
}

.navlinks-container a {
  margin: 0 36px;
  text-decoration: none;
  color: #978554;
  position: relative;
  display: inline-block;
}
.navlinks-container a.active::after {
  height: 1px;
  transform: scaleX(1);
  transition: 0s;
}

.navlinks-container a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px;
  width: 100%;
  height: 1px;
  transform: scale(0);
  transform-origin: center;
  background: #978554;
  transition: transform 0.3s ease-out;
}

.navlinks-container a:hover::after {
  transform: scaleX(1);
}

.logo-mini {
  display: none;
  margin: 0 0 10px 10px;
}

.logo {
  display: flex;
  align-items: center;
  margin: -30px 0 20px 50px;
}

.brand {
  transform: translate(-15px, 30px);
}

.brand-mini {
  display: none;
  transform: translate(-15px, 10px);
}

.fade {
  opacity: 30%;
  transition: opacity 0.3s;
}

.head-section {
  padding: 205px 0 0 0;
}

@media screen and (max-width: 1280px) {
  .logo img {
    height: 120px;
    width: 150px;
  }
  .brand {
    font-size: 20px;
  }
  .head-section {
    padding-top: 160px;
  }
  nav {
    padding: 30px 0 0 0;
    font-size: 15px;
  }
}
@media screen and (max-width: 1100px) {
  nav {
    font-size: 14px;
  }
  .navlinks-container a {
    margin: 0 25px;
  }
}
@media screen and (max-width: 900px) {
  header {
    padding-top: 15px;
  }
  nav {
    padding: 0;
    display: block;
    position: relative;
    justify-content: center;
  }
  /* nav */
  .nav-icon {
    order: 2;
    margin: 0 auto;
  }
  .nav-icon span {
    font-size: 22px;
  }
  .main-navlinks {
    order: 1;
    width: auto;
  }
  /* hamburger */
  .hamburger {
    width: 30px;
    height: 30px;
    margin-right: 60px;
    cursor: pointer;
    border: none;
    display: flex;
    background: #ffffff;
    align-items: center;
    position: relative;
  }
  .navlinks-container a.active::after {
    height: 0;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #978554;
    position: absolute;
    pointer-events: none;
    transition: opacity 0.3s 0.15s ease-out;
  }
  .hamburger span:nth-child(1),
  .hamburger span:nth-child(3) {
    transition: transform 0.3s ease-out;
  }
  .hamburger span:nth-child(1) {
    transform: translateY(12px);
  }
  .hamburger span:nth-child(3) {
    transform: translateY(-12px);
  }
  .hamburger.open span:nth-child(1) {
    transform: translate(0) rotate(135deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transition: opacity 0s ease-out;
  }
  .hamburger.open span:nth-child(3) {
    transform: translate(0) rotate(-135deg);
  }
  .main-navlinks {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navlinks-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-100%);
    height: 100vh;
    padding: 15px 50px 15px 20px;
  }
  .navlinks-container a::after {
    bottom: -2px;
  }
  .open {
    transform: translate(0%);
  }
  .navlinks-container a {
    font-size: 24px;
    margin: 8px 0px;
  }
  .navlinks-container a::after {
    bottom: -3px;
  }
  .brand,
  .logo {
    display: none;
  }
  .logo-mini {
    width: 300px;
    height: 200px;
    display: flex;
  }
  .brand-mini {
    font-size: 1.78rem;
    display: flex;
    align-items: center;
    transform: translate(-25px, 30px);
    font-family: "Avenir-Light";
  }
}
@media screen and (max-width: 500px) {
  .nav-icon img {
    width: 30px;
  }
  .nav-icon span {
    font-size: 20px;
  }
  .hamburger {
    width: 20px;
    height: 20px;
  }
  .hamburger span {
    height: 2px;
  }
  .hamburger span:nth-child(1) {
    transform: translateY(7px);
  }
  .hamburger span:nth-child(3) {
    transform: translateY(-7px);
  }
  .navlinks-container a {
    font-size: 16px;
    margin: 10px 0px;
  }
  .logo-mini {
    margin: 10px;
    width: 200px;
    height: 140px;
    display: flex;
  }
  .brand-mini {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
  }
}
.button-grey, .button-gold {
  text-decoration: none;
  color: #fff;
  padding: 14px 28px;
}

.button-grey {
  background-color: #3e494e;
}

.button-grey:hover {
  cursor: pointer;
  background-color: rgba(62, 73, 78, 0.5411764706);
  transition: 0.3s ease-in-out;
}

.button-gold {
  background-color: #978554;
}

.button-gold:hover {
  cursor: pointer;
  background-color: rgba(151, 133, 84, 0.7647058824);
  transition: 0.3s ease-in-out;
}

.slider {
  width: 100%;
  max-width: 1450px;
  height: 780px;
  overflow: hidden;
  margin: auto;
  position: relative;
}

.slider-wrapper {
  display: flex;
  width: 300%; /* 200% pour 2 images, +100% pour le clone */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 33.33%; /* 33.33% pour chaque slide car on a 3 images au total (2 images + 1 clone) */
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider h2 {
  position: absolute;
}

.pave1 h2 {
  top: 14%;
  left: 13%;
  font-size: 6rem;
  line-height: 5.5rem;
}

.pave2 h2 {
  top: 8%;
  left: 10%;
  font-size: 5rem;
  line-height: 5rem;
}

.slide .button-grey, .slide .button-gold {
  position: absolute;
  bottom: 22%;
  right: 14%;
  padding: 14px 28px;
}

.fleche-g, .fleche-d {
  position: absolute;
  top: calc(50% - 2.5rem);
}

.fleche-g:hover {
  cursor: pointer;
  left: 2.5%;
  transition: 0.2s ease-in-out;
}

.fleche-d:hover {
  cursor: pointer;
  right: 2.5%;
  transition: 0.2s ease-in-out;
}

.fleche-g {
  left: 3%;
}

.fleche-d {
  transform: scaleX(-1);
  right: 3%;
}

.pave1, .pave2 {
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.pave1.active, .pave2.active {
  opacity: 1;
  transition: 0.5s ease-in-out;
}

@media screen and (max-width: 1280px) {
  .slider {
    height: 580px;
  }
}
#description {
  display: flex;
  margin: 150px 0;
}

.description-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.description-container__cards {
  border-left: 2px solid #978554;
}
.description-container__card {
  margin-block-start: 40px;
  padding: 0 60px;
}

.description-container h2 {
  margin-bottom: 10px;
  color: #978554;
  font-size: 3rem;
  line-height: 2.9rem;
  margin-block-end: 10px;
}

.description-container p {
  color: #6f6f6f;
  font-family: "Avenir-light";
  font-size: 1.4rem;
}

.cards .card:first-child {
  margin-bottom: 60px;
}

.description-visuel {
  flex: 1;
}

.description-visuel img {
  max-width: 100%;
  height: auto;
}

.button-grey.video {
  display: flex;
  margin: 0 auto;
  margin-top: 50px;
  justify-content: space-evenly;
  align-items: center;
}

.button-grey.video span {
  margin-right: 15px;
}

.separator {
  height: 150px;
}

/*VIDEO */
video {
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  width: 100%;
  max-width: 1250px;
  position: relative;
  text-align: center;
}

.close-btn {
  font-family: "Wellingtons-light";
  background: rgba(0, 0, 0, 0);
  color: #fff;
  position: absolute;
  top: -30px;
  right: 0;
  width: 30px;
  height: 30px;
  font-size: 50px;
  line-height: 30px;
  cursor: pointer;
}

/* MEDIAQUERY */
@media screen and (max-width: 900px) {
  .head-section {
    padding-top: 210px;
  }
  .fleche-g,
  .fleche-d {
    top: calc(50% - 2rem);
    width: 4rem;
    height: 4rem;
  }
  .button-slider {
    position: absolute;
    bottom: 10%;
    right: 14%;
    color: #fff;
    background-color: #3e494e;
    width: 250px;
    height: 55px;
  }
  #description {
    flex-direction: column;
    margin: 100px 0;
  }
  #description img {
    display: none;
  }
  .cards .card {
    margin-bottom: 60px;
  }
  .separator {
    height: 100px;
  }
}
@media screen and (max-width: 500px) {
  .head-section {
    padding-top: 175px;
  }
  .slider {
    height: 80vh;
  }
  .pave1 h2 {
    top: 15%;
    left: 5%;
    font-size: 3.7rem;
    line-height: 3.7rem;
  }
  .pave2 h2 {
    top: 8%;
    left: 6%;
    font-size: 3rem;
    line-height: 3rem;
  }
  .slide .button-grey,
  .slide .button-gold {
    bottom: 10%;
  }
  .fleche-g,
  .fleche-d {
    display: none;
    top: calc(50% - 1.2rem);
    width: 2.4rem;
    height: 2.4rem;
  }
  .button-grey,
  .button-gold {
    color: #fff;
    background-color: #3e494e;
    font-size: 1.3rem;
  }
  #description {
    flex-direction: column;
    margin: 50px 0;
  }
  .cards .card {
    margin-bottom: 30px;
  }
  .description-container h2 {
    font-size: 10vw;
    line-height: 2.6rem;
  }
  .description-container p {
    font-size: 1.4rem;
  }
  .description-container__card {
    margin-block-start: 20px;
    padding: 0 20px;
  }
  .separator {
    height: 50px;
  }
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-block-end: 10px;
}
.hero img {
  display: block;
  max-width: 100%;
  height: auto;
}
.hero__title__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__title__visuel {
  position: relative;
}
.hero__title {
  position: absolute;
  top: 6%;
  left: 6%;
  text-align: justify;
}
.hero h2 {
  color: #978554;
  font-weight: 100;
  font-family: "Catchye";
  margin: 0;
  font-size: 14rem;
  line-height: 11.5rem;
}

.base-line {
  width: auto;
  margin-block-end: 100px;
  text-align: center;
  display: block;
  margin: 0 auto;
  font-family: "Avenir-light";
  font-size: 1.5rem;
}

/* video youtube */
@keyframes oscillate-visibility {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Style de la fenêtre modale (cachée par défaut) */
#openModalBtnYT {
  margin-block-start: 50px;
}

.button-grey.podcast {
  display: flex;
  margin: 0 auto;
  justify-content: space-evenly;
  align-items: center;
}
.button-grey.podcast img {
  width: 50px;
}

.modalYT {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modalYT-content {
  position: relative;
}

/* Contenu de la fenêtre modale */
#videoFrameYT {
  max-width: 1120px;
  max-height: 630px;
  position: relative;
  text-align: center;
}

/* Bouton de fermeture (petit "x") */
.closeYT {
  color: #ffffff;
  position: absolute;
  right: -30px;
  top: -30px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.chantant {
  margin-block-start: 50px;
  text-align: center;
}
.chantant__title {
  font-family: "Wellingtons-bold";
  color: #978554;
  font-size: 4.2rem;
  line-height: 4.2rem;
  margin-block-end: 20px;
}
.chantant__text {
  font-family: "Wellingtons-reg";
  font-size: 2.8rem;
}

.breakline {
  margin: 0 auto;
  margin-block-start: 80px;
  margin-block-end: 80px;
  width: 30%;
  height: 2px;
  background-color: #6f6f6f;
}

.block {
  margin: 0 auto;
  margin-block-start: 100px;
  text-align: center;
  padding: 0 50px;
}
.block__title {
  text-align: center;
  font-family: "Avenir";
  font-weight: normal;
  color: #978554;
  font-size: 6rem;
  margin-block-end: 50px;
}
.block__text {
  font-family: "Avenir-light";
  font-size: 2.2rem;
  line-height: 3rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-block-start: 150px;
}
.cards__card {
  margin: 30px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 350px;
  width: 350px;
  padding: 30px;
  text-align: center;
  background-color: #978554;
}
.cards__card h3 {
  font-size: 1.7rem;
  font-family: "Avenir-Heavy";
}
.cards__card p {
  font-size: 1.7rem;
  line-height: 2rem;
  font-family: "Avenir-light";
}

@media (max-width: 1400px) {
  .hero h2 {
    font-size: 12.5rem;
    line-height: 10.5rem;
  }
}
@media (max-width: 1280px) {
  .hero h2 {
    font-size: 12rem;
    line-height: 9rem;
  }
}
@media (max-width: 1100px) {
  .hero-title h2 {
    font-size: 8rem;
    line-height: 7.5rem;
  }
}
@media screen and (max-width: 900px) {
  .head-section.qui-je-suis {
    padding: 190px 5px 0 5px;
  }
  .hero {
    flex-direction: column-reverse;
  }
  .hero h2 {
    font-size: 13rem;
    line-height: 11.5rem;
  }
  .base-line {
    font-size: 1.3rem;
  }
  #videoFrameYT {
    width: 90vw;
    height: 50vw;
  }
  .chantant {
    margin-block-start: 50px;
    padding: 0 5%;
  }
  .chantant__title {
    font-size: 3.2rem;
    line-height: 3.2rem;
    margin-block-end: 20px;
  }
  .chantant__text {
    font-size: 1.7rem;
  }
  .block {
    margin: 0 auto;
    padding: 0 5%;
    margin-block-start: 100px;
  }
  .block__title {
    font-size: 3.8rem;
    margin-block-end: 50px;
  }
  .block__text {
    font-size: 1.8rem;
  }
  .qui-cards {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 700px) {
  .hero h2 {
    font-size: 11rem;
    line-height: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .hero h2 {
    font-size: 9rem;
    line-height: 8rem;
  }
  #videoFrameYT {
    width: 100vw;
    height: 56vw;
  }
}
@media screen and (max-width: 500px) {
  .navlinks-container a {
    margin: 5px 0px;
  }
  .hamburger {
    margin: 20px;
    align-self: flex-start;
  }
  .hero {
    margin-block-end: 10px;
  }
  .hero h2 {
    font-size: 8rem;
    line-height: 6rem;
  }
  .base-line {
    font-size: 1.1rem;
  }
  .cas {
    margin-block-start: 50px;
    text-align: center;
  }
  .cas__title {
    font-size: 3.8rem;
    line-height: 3.8rem;
    margin-block-end: 20px;
  }
  .cas__text {
    font-size: 2.2rem;
  }
  .chantant {
    margin-block-start: 50px;
    padding: 0 5%;
  }
  .chantant__title {
    font-size: 2.7rem;
    line-height: 3rem;
    margin-block-end: 20px;
  }
  .chantant__text {
    font-size: 1.7rem;
  }
  .block {
    margin: 0 auto;
    width: 95%;
    margin-block-start: 40px;
    text-align: center;
  }
  .block__title {
    font-family: "Avenir";
    font-weight: normal;
    color: #978554;
    font-size: 3.8rem;
    margin-block-end: 30px;
  }
  .block__text {
    font-family: "Avenir-light";
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  .cards {
    margin-block-start: 80px;
  }
  .cards__card {
    height: 280px;
    width: 280px;
  }
  .cards__card h3 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .cards__card p {
    font-size: 1.5em;
    line-height: 1.5rem;
  }
  .base-line {
    text-align: center;
  }
}
@media screen and (max-width: 375px) {
  .hero h2 {
    font-size: 5rem;
    line-height: 5rem;
  }
}
.ce-que-je-fais {
  text-align: center;
}
.ce-que-je-fais h1 {
  font-size: 12rem;
  text-align: center;
  font-family: "catchye";
  color: #978554;
  font-weight: 100;
  margin-block-start: 100px;
  margin-block-end: 100px;
}
.ce-que-je-fais__title {
  font-family: "Wellingtons-bold";
  color: #978554;
  font-size: 4.2rem;
  line-height: 4.2rem;
  margin-block-end: 20px;
}
.ce-que-je-fais__text {
  font-family: "Avenir-light";
  font-size: 2.2rem;
}
.ce-que-je-fais__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-block-start: 150px;
}
.ce-que-je-fais__image {
  border-top: 50px solid #51767e;
}
.ce-que-je-fais__image img {
  width: 100%;
}
.ce-que-je-fais__cards {
  position: absolute;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  margin-block-end: 50px;
}
.ce-que-je-fais__cards .line1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ce-que-je-fais__cards .line2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ce-que-je-fais__card {
  margin: 30px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 300px;
  width: 300px;
  padding: 25px;
  text-align: center;
  background-color: #978554;
}
.ce-que-je-fais__card span {
  font-size: 1.7rem;
  font-family: "Avenir-light";
}
.ce-que-je-fais__card p {
  font-size: 1.7rem;
  line-height: 2.2rem;
  font-family: "Avenir-Heavy";
}

.cas {
  margin-block-start: 200px;
  width: 100%;
  text-align: center;
  color: #978554;
}
.cas__hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.cas__hero--image {
  width: 100%;
  height: auto;
}
.cas__hero--title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 450px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.737254902);
  max-width: 100%;
}
.cas__hero--title h2 {
  font-family: "Catchye";
  margin-top: 30px;
  font-size: 8rem;
  font-weight: 100;
}
.cas__texte {
  padding: 0 15%;
  font-family: "Avenir-Black";
  font-size: 3.3rem;
  margin-top: 100px;
  text-align: center;
}
.cas__texte--small {
  font-family: "Avenir-light";
  font-size: 2rem;
  margin-top: 30px;
}
.cas__collaboration {
  font-family: "Avenir-light";
  font-size: 1.8rem;
  margin-top: 80px;
  color: #6f6f6f;
}
.cas__collaboration--last {
  margin-block-end: 100px;
}
.cas .button-grey {
  margin-top: 200px;
}

.logos-clients {
  border: #978554 1px solid;
  margin: 5%;
  padding: 5%;
}
.logos-clients h3 {
  font-size: 4rem;
  text-align: center;
  font-family: "Avenir-Black";
  color: #978554;
  font-weight: 100;
  margin-block-start: 40px;
  margin-block-end: 100px;
}
.logos-clients__panneau {
  /*       padding: 0 3%;
   */
}
.logos-clients__panneau img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  width: 100%;
}

@media (max-width: 1280px) {
  .head-section.ce-que-je-fais {
    padding: 120px 50px 0 50px;
  }
  .ce-que-je-fais h1 {
    font-size: 11rem;
    margin-block-start: 70px;
    margin-block-end: 50px;
  }
}
@media (max-width: 1100px) {
  .ce-que-je-fais h1 {
    font-size: 9rem;
  }
  .ce-que-je-fais__cards {
    margin-block-end: 20px;
  }
  .ce-que-je-fais__card {
    height: 250px;
    width: 250px;
    padding: 25px;
  }
  .ce-que-je-fais__card span {
    font-size: 1.5rem;
    font-family: "Avenir-light";
  }
  .ce-que-je-fais__card p {
    margin-top: 5px;
    font-size: 1.5rem;
    line-height: 1.8rem;
    font-family: "Avenir-Heavy";
  }
}
@media (max-width: 900px) {
  .head-section.ce-que-je-fais {
    padding: 120px 10px 0 10px;
  }
  .ce-que-je-fais {
    margin-block-start: 60px;
  }
  .ce-que-je-fais h1 {
    font-size: 8rem;
  }
  .ce-que-je-fais__title {
    font-size: 3.5rem;
    margin-block-end: 30px;
  }
  .ce-que-je-fais__text {
    font-size: 2.5rem;
    padding: 0 50px;
  }
  .cas {
    margin-block-start: 200px;
  }
  .cas__hero--title {
    width: 400px;
    height: 180px;
  }
  .cas__hero--title h2 {
    margin-top: 30px;
    font-size: 7rem;
  }
  .cas__texte {
    padding: 0 20px;
    font-size: 3rem;
    line-height: 3rem;
    margin-top: 80px;
  }
  .cas__texte--small {
    font-size: 2rem;
    margin-top: 20px;
  }
  .cas__collaboration {
    font-size: 1.4rem;
    margin-top: 80px;
  }
}
@media (max-width: 800px) {
  .ce-que-je-fais h1 {
    font-size: 6rem;
    margin-block-start: 30px;
  }
  .ce-que-je-fais__title {
    font-size: 3.6rem;
    margin-block-end: 30px;
  }
  .ce-que-je-fais__text {
    font-size: 2.5rem;
    padding: 0 20px;
  }
  .ce-que-je-fais__container {
    display: block;
    margin-block-start: 50px;
  }
  .ce-que-je-fais__image img {
    text-align: center;
    display: block;
    width: 100vw;
  }
  .ce-que-je-fais__cards {
    position: initial;
    flex-direction: column;
  }
  .ce-que-je-fais__cards .line1 {
    flex-direction: column;
  }
  .ce-que-je-fais__cards .line2 {
    flex-direction: column;
  }
  .ce-que-je-fais__card {
    height: 400px;
    width: 400px;
    padding: 40px;
  }
  .ce-que-je-fais__card span {
    font-size: 2.2rem;
    line-height: 2.8rem;
    font-family: "Avenir-light";
  }
  .ce-que-je-fais__card p {
    font-size: 2.2rem;
    line-height: 2.8rem;
    font-family: "Avenir-Heavy";
  }
  .logos-clients h3 {
    font-size: 5rem;
    margin-block-start: 70px;
    margin-block-end: 70px;
  }
}
@media (max-width: 700px) {
  .ce-que-je-fais h1 {
    font-size: 5rem;
  }
}
@media (max-width: 500px) {
  .ce-que-je-fais h1 {
    margin-block-end: 40px;
    font-size: 3.5rem;
  }
  .ce-que-je-fais__title {
    font-size: 2.2rem;
    line-height: 2.5rem;
    margin-block-end: 20px;
  }
  .ce-que-je-fais__text {
    font-size: 1.6rem;
    padding: 0 20px;
  }
  .ce-que-je-fais__container {
    margin-block-start: 50px;
  }
  .ce-que-je-fais__image {
    display: none;
  }
  .ce-que-je-fais__cards {
    position: initial;
    flex-direction: column;
  }
  .ce-que-je-fais__cards .line1 {
    flex-direction: column;
  }
  .ce-que-je-fais__cards .line2 {
    flex-direction: column;
  }
  .ce-que-je-fais__card {
    margin: 15px;
    height: 250px;
    width: 250px;
    padding: 40px;
  }
  .ce-que-je-fais__card span {
    font-size: 1.4rem;
    line-height: 1.5rem;
    font-family: "Avenir-light";
  }
  .ce-que-je-fais__card p {
    margin-top: 5px;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-family: "Avenir-Heavy";
  }
  .cas {
    margin-block-start: 50px;
  }
  .cas__hero--title {
    width: 200px;
    height: 100px;
  }
  .cas__hero--title h2 {
    margin-top: 30px;
    font-size: 5rem;
  }
  .cas .button-grey {
    margin-block-start: 50px;
  }
  .cas__texte {
    padding: 0 20px;
    font-size: 2rem;
    line-height: 2.5rem;
    margin-top: 50px;
  }
  .cas__texte--small {
    padding: 0 20px;
    font-size: 1.5rem;
    margin-top: 20px;
  }
  .cas__collaboration {
    font-size: 1rem;
    margin-top: 40px;
  }
  .cas .breakline {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .logos-clients h3 {
    font-size: 3rem;
    margin-block-start: 30px;
    margin-block-end: 30px;
    line-height: 3rem;
  }
}
.me-contacter {
  text-align: center;
  color: #978554;
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.me-contacter img {
  max-width: 100%;
  height: auto;
  margin-bottom: -100px;
  z-index: 3;
}
.me-contacter__cadre {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  border: 1px solid #978554;
  padding: 150px 50px 50px;
}
.me-contacter__cadre--merci {
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  margin-block-start: 50px;
}
.me-contacter__cadre--adresse {
  font-family: "Avenir-light";
  font-weight: lighter;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin-block-start: 50px;
}
.me-contacter h1 {
  text-align: center;
  font-family: "catchye";
  font-size: 5.8rem;
  font-weight: normal;
  letter-spacing: 0.3rem;
}
.me-contacter p {
  margin-block-start: 50px;
  margin-block-end: 50px;
  font-size: 2.2rem;
  line-height: 3rem;
  font-family: "Avenir-black";
  text-align: center;
}

form {
  width: 80%;
}

.form-group {
  display: flex;
  align-items: center; /* Aligne verticalement les éléments */
  margin-bottom: 20px;
}

input {
  flex: 1; /* Prend le reste de la place disponible */
}

label {
  font-size: 2rem;
  margin: 0 30px 10px 0;
}

input, textarea {
  padding: 10px;
  border-bottom: 1px solid #978554;
  margin-bottom: 10px;
  font-family: "Avenir-light";
  font-weight: lighter;
  font-size: 2rem;
  color: #9d9d9d;
}
input:focus-visible, textarea:focus-visible {
  outline: none;
  border-bottom: 1px solid #978554;
}

.button-gold.form {
  display: block; /* Fait du bouton un bloc pour qu'il soit centré */
  margin: 0 auto; /* Centre horizontalement avec `auto` et ajoute une marge verticale */
  padding: 10px 20px; /* Optionnel : personnalise la taille du bouton */
  width: 290px;
  height: 55px;
  margin-block-start: 50px;
}

#result {
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
  color: #333;
}

.done, .echec, .bad-request {
  display: none;
  color: white;
  padding: 10px;
  border-radius: 5px;
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
}

.done {
  background-color: #4CAF50; /* Vert */
}

.echec, .bad-request {
  background-color: #f44336; /* Rouge */
}

@media (max-width: 1280px) {
  .head-section.me-contacter {
    padding: 140px 50px 0 50px;
  }
}
@media screen and (max-width: 900px) {
  .me-contacter__cadre {
    width: 90%;
    padding: 150px 50px 50px;
  }
  .me-contacter__cadre--merci {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
  .me-contacter__cadre--adresse {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
  .me-contacter h1 {
    font-size: 5rem;
  }
  .me-contacter p {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .head-section.me-contacter {
    padding: 160px 5px 0 5px;
  }
  .me-contacter__cadre {
    width: 90%;
    padding: 150px 5px 5px;
  }
  .me-contacter__cadre--merci {
    padding: 0 20px;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
  .me-contacter__cadre--adresse {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
  }
  .me-contacter h1 {
    font-size: 3.5rem;
    margin-block-end: 30px;
  }
  .me-contacter p {
    padding: 0 20px;
    margin-block-start: 10px;
    font-size: 1.7rem;
    line-height: 2.2rem;
  }
  .form-group {
    flex-direction: column;
    margin-bottom: 10px;
  }
  label {
    font-size: 1.5rem;
  }
  input, textarea {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  .button-gold.form {
    width: auto;
    height: 50px;
  }
}
footer {
  background-color: #f1f1f1;
  color: #978554;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer nav {
  font-size: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 0 0 40px 0;
}

footer .navlinks-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .navlinks-container a {
  margin: 8px 40px;
}

footer .navlinks-container a::after {
  content: "";
  bottom: -2px;
}

footer .copyright {
  font-family: "Avenir-light";
  font-size: 0.8rem;
}

/* .navlinks-container a:hover::after {
  transform: scaleX(1);
}
 */
@media screen and (max-width: 900px) {
  footer nav {
    display: none;
  }
}

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