@charset "UTF-8";
:where(.is-layout-flow, .content-site) h1,
:where(.is-layout-flow, .content-site) h2,
:where(.is-layout-flow, .content-site) h3,
:where(.is-layout-flow, .content-site) h4 {
  font-size: 70px;
  font-family: "Comicy";
  margin: 0;
  font-weight: 400;
}

p {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h1,
h2,
h3,
h4 {
  font-size: 50px;
}

@media (max-width: 1024px) {
  h1,
  h2,
  h3,
  h4 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }
  h2,
  h3,
  h4 {
    font-size: 30px;
  }
}
.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 1.5rem;
  border: 5px solid #000;
  border-bottom-width: 8px;
  border-radius: 25px;
  background: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.call-button span {
  display: inline-block;
  transition: all 0.3s ease;
}
.call-button__highlight {
  background: #fbd23e;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 900;
}
.call-button:hover, .call-button.active {
  transform: translateY(-2px);
  background: #000;
  color: #fff;
}
.call-button:hover .call-button__highlight, .call-button.active .call-button__highlight {
  background: #fff;
  color: #000;
}
.call-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #000;
}

@media (max-width: 768px) {
  .call-button {
    font-size: 0.7rem;
  }
}
input,
textarea,
select {
  all: unset; /* enlève TOUT le style natif */
  box-sizing: border-box; /* indispensable sinon tout part en vrille */
}

@font-face {
  font-family: "Comicy";
  src: url("../assets/fonts/Comicy.woff2") format("woff2"), url("../assets/fonts/Comicy.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.texte-defilant {
  display: flex;
  align-items: center;
  color: white;
  /* Cache le débordement, essentiel pour l'effet de défilement */
  overflow: hidden;
}
.texte-defilant .texte-animation {
  display: flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}
.texte-defilant .texte-animation p {
  color: white !important;
  font-family: "Comicy", sans-serif !important;
  font-size: 30px !important;
}
@media (max-width: 768px) {
  .texte-defilant .texte-animation p {
    font-size: 20px !important;
  }
}
@media (max-width: 768px) {
  .texte-defilant .texte-animation img {
    height: 30px !important;
  }
}
.texte-defilant .texte-animation img {
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

.texte-animation .texte-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

/* Tablette portrait / landscape */
@media (max-width: 1024px) {
  .texte-animation {
    font-size: 20px !important;
  }
}
/* ✅ Correction d’empilement dans l’éditeur Gutenberg uniquement */
.acf-block-preview .texte-defilant {
  overflow: hidden !important;
  position: relative !important;
}

.acf-block-preview .texte-defilant .texte-animation {
  display: flex !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  transform: none !important; /* ← Désactive l'animation dans l’éditeur */
}

.acf-block-preview .texte-defilant .texte-item {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  position: relative;
  z-index: 1;
}
.acf-block-preview .texte-defilant .texte-item img {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .texte-item {
    padding: 5px 0 !important;
  }
}
.texte-item {
  padding: 10px 0;
}
.texte-item p {
  margin: 0;
}

.bandeau-home {
  min-height: 75vh;
}
@media screen and (max-width: 768px) {
  .bandeau-home {
    min-height: 70vh;
    padding-top: 120px !important;
  }
}
.bandeau-home {
  max-height: 100vh;
  padding-top: 170px;
  overflow: hidden;
  position: relative;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 2px, transparent 1px, transparent 110px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 2px, transparent 1px, transparent 110px);
  background-size: 110px 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .bandeau-home span {
    position: relative;
    width: 60px;
    display: block;
  }
}
.bandeau-home span #cross-animated {
  width: 120px; /* adapte si besoin */
}
@media screen and (max-width: 840px) {
  .bandeau-home span #cross-animated {
    position: absolute;
    width: 60px;
    left: 20px;
    top: -15px;
    z-index: -1;
  }
}
.bandeau-home .content {
  width: 70%;
  max-width: 1130px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.bandeau-home .content .first-title {
  position: relative;
}
.bandeau-home .content .first-title::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 16px;
  top: -28px;
  left: 12%;
  background-color: #94d0ea;
}
.bandeau-home .content .second-title {
  background: linear-gradient(273deg, #004461 11.37%, #94d0ea 50%, #c8ebfa 88.63%);
  background-size: 200% 200%;
  animation: gradientMove 6s ease infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-left: 30%;
  position: relative;
  margin-top: 25px;
  min-height: 70px;
}
.bandeau-home .content .second-title::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 100px;
  background-image: url("../assets/svg/star_vitres1.svg");
  background-repeat: no-repeat;
  background-size: cover;
  left: -80px;
  top: -20px;
  z-index: -1;
}
.bandeau-home .content .second-title::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 50px;
  background-image: url("../assets/svg/star_vitres2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  left: -105px;
  top: 30px;
  z-index: -1;
}
@media (max-width: 1400px) {
  .bandeau-home .content .second-title::before {
    left: 100px;
  }
  .bandeau-home .content .second-title::after {
    left: 60px;
  }
}
@media (max-width: 1365px) {
  .bandeau-home .content .second-title::before {
    left: -80px;
  }
  .bandeau-home .content .second-title::after {
    left: -120px;
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bandeau-home .content .text-below {
  width: 40%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .bandeau-home .content .text-below {
    width: 80%;
  }
  .bandeau-home .content .second-title {
    margin: 0;
  }
}
.bandeau-home .drapeau-breton {
  position: absolute;
  width: 150px;
  right: 140px;
  bottom: 100px;
  z-index: -1;
}
.bandeau-home .left-container-img {
  position: absolute;
  width: 201px;
  height: 290.459px;
  transform: rotate(-10deg);
  background-size: cover;
  border-radius: 25px;
  left: -201px;
  bottom: 0;
  border: solid 2px black;
}
@media (max-width: 768px) {
  .bandeau-home .drapeau-breton {
    width: 100px;
    bottom: 80px;
    right: -20px;
  }
  .bandeau-home .left-container-img {
    display: none;
  }
}

.image-and-text-columns {
  background: #004461;
}
.image-and-text-columns .content {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.image-and-text-columns .content .left-content,
.image-and-text-columns .content .right-content {
  width: 50%;
  padding-top: 40px;
  max-width: 100vw;
}
.image-and-text-columns .content .left-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .image-and-text-columns .content .left-content {
    transform: scale(0.8);
    padding-bottom: 20px;
  }
}
.image-and-text-columns .content .left-content .image-content {
  width: 300px;
  height: 400px;
  background: #94d0ea;
  position: relative;
  margin-left: 100px;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}
.image-and-text-columns .content .left-content .image-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: 310px;
  height: 300px;
  background-image: url("../assets/svg/cadre_haut.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.image-and-text-columns .content .left-content .cadre-bleu {
  width: 20rem;
  height: 26.4794430632rem;
  border-top-left-radius: 46.046742914%;
  border-top-right-radius: 46.046742914%;
  border-bottom-right-radius: 4.7737444058%;
  border-bottom-left-radius: 4.7737444058%;
  transform: rotate(-3deg);
  transform-origin: top left;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-direction: column;
}
.image-and-text-columns .content .left-content .cadre-bleu.secondary, .image-and-text-columns .content .left-content .cadre-bleu.third {
  background-color: #94d0ea;
}
.image-and-text-columns .content .left-content .cadre-bleu.primary {
  background-color: #004461;
}
.image-and-text-columns .content .left-content .cadre-bleu::after {
  transform: rotate(12deg);
  content: "";
  position: absolute;
  width: 40px;
  height: 56px;
  background-image: url(../assets/svg/star_vitres2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 77px;
  top: 92px;
  z-index: 9999;
}
.image-and-text-columns .content .left-content .cadre-bleu::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 56px;
  background-image: url(../assets/svg/star_vitres3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 120px;
  top: 39px;
  z-index: 9999;
}
.image-and-text-columns .content .left-content .cadre-bleu h3 {
  font-size: 30px !important;
  color: white;
  margin-top: 15px;
}
.image-and-text-columns .content .left-content .cadre-bleu .cadre-image {
  width: 17.3135753357rem;
  height: 21.4504425659rem;
  border-top-left-radius: 46.046742914%;
  border-top-right-radius: 46.046742914%;
  transform-origin: top left;
  object-fit: cover;
}
.image-and-text-columns .content .left-content .images {
  position: relative;
  width: fit-content;
}
.image-and-text-columns .content .left-content .images::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 34px;
  background-image: url("../assets/svg/star_vitres3.svg");
  background-repeat: no-repeat;
  background-size: cover;
  left: 0px;
  top: 50px;
}
.image-and-text-columns .content .left-content .images::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 34px;
  background-image: url("../assets/svg/star_vitres2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  left: -50px;
  top: 250px;
}
.image-and-text-columns .content .left-content .images .left-image {
  width: 80px;
  position: relative;
  border: solid 2px white;
  border-radius: 10px;
  position: absolute;
  top: 100px;
  left: -50px;
  transform: rotate(-20deg);
}
.image-and-text-columns .content .left-content .images .right-image {
  width: 80px;
  border: solid 2px white;
  border-radius: 10px;
  position: absolute;
  bottom: 0px;
  right: -50px;
  transform: rotate(20deg);
}
.image-and-text-columns .content .left-content .images .forPseudo {
  position: relative;
  width: 100%;
  height: 100%;
}
.image-and-text-columns .content .left-content .images .forPseudo::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 34px;
  background-image: url("../assets/svg/star_vitres3.svg");
  background-repeat: no-repeat;
  background-size: cover;
  right: -70px;
  top: -20px;
}
.image-and-text-columns .content .left-content .images .forPseudo::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 34px;
  background-image: url("../assets/svg/star_vitres2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  right: -60px;
  top: -160px;
}
.image-and-text-columns .content .left-content .images-bis {
  margin: 100px 0;
  position: relative;
}
.image-and-text-columns .content .left-content .images-bis .main-image {
  width: 250px;
  height: 350px;
  border-radius: 10px;
  border: solid 1px white;
  transform: rotate(3deg);
  background-size: cover;
}
.image-and-text-columns .content .left-content .images-bis .main-image::after {
  transform: rotate(-2deg);
  content: "";
  position: absolute;
  width: 50px;
  height: 70px;
  background-image: url(../assets/svg/star_vitres3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 40px;
  top: -70px;
  z-index: 9999;
}
.image-and-text-columns .content .left-content .images-bis .main-image::before {
  transform: rotate(10deg);
  content: "";
  position: absolute;
  width: 50px;
  height: 70px;
  background-image: url(../assets/svg/star_vitres3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -50px;
  bottom: 0;
  z-index: 9999;
}
.image-and-text-columns .content .left-content .images-bis .left-image {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  border: solid 1px white;
  position: absolute;
  left: -100px;
  transform: rotate(-10deg);
  top: -10px;
  background-size: cover;
}
.image-and-text-columns .content .left-content .images-bis .left-image::after {
  transform: rotate(7deg);
  content: "";
  position: absolute;
  width: 25px;
  height: 34px;
  background-image: url(../assets/svg/star_vitres3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: -34px;
  z-index: 9999;
}
.image-and-text-columns .content .left-content .images-bis .right-image {
  width: 100px;
  height: 150px;
  border-radius: 10px;
  border: solid 1px white;
  position: absolute;
  right: -100px;
  top: -80px;
  transform: rotate(-5deg);
  background-size: cover;
}
.image-and-text-columns .content .left-content .images-bis .right-bottom-image {
  width: 150px;
  height: 100px;
  border-radius: 10px;
  border: solid 1px white;
  position: absolute;
  right: -100px;
  bottom: -60px;
  transform: rotate(8deg);
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.image-and-text-columns .content .left-content .images-bis .right-bottom-image::before {
  transform: rotate(10deg);
  content: "";
  position: absolute;
  width: 29px;
  height: 40px;
  background-image: url(../assets/svg/star_vitres3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: -29px;
  bottom: 0;
  z-index: 9999;
}
.image-and-text-columns .content .right-content {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .image-and-text-columns .content .right-content {
    text-align: center;
  }
}
.image-and-text-columns .content .right-content .container {
  padding: 40px;
  box-sizing: border-box;
  max-width: 100%;
}
.image-and-text-columns .content .right-content .container p {
  color: white;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .image-and-text-columns .content .right-content .container p {
    text-align: center;
  }
}
.image-and-text-columns .content .right-content .container .title {
  color: white;
  margin-bottom: 40px;
  font-size: 30px !important;
}
@media screen and (min-width: 768px) {
  .image-and-text-columns .content .right-content .container .title {
    font-size: 45px !important;
  }
}
.image-and-text-columns .content .right-content .container .ctas {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  margin-top: 40px;
}
.image-and-text-columns .content .right-content .container .ctas .button-cta {
  font-family: "Comicy";
  background: white;
  width: fit-content;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  border: solid 3px #94d0ea;
  color: #94d0ea;
  font-weight: 200;
}
.image-and-text-columns .content .right-content .container .ctas .button-cta.first-button {
  transform: rotate(-12deg);
}
.image-and-text-columns .content .right-content .container .ctas .button-cta.second-button {
  border: solid 3px black;
  color: black;
  transform: rotate(-2deg);
}
.image-and-text-columns .content .right-content .container .ctas .button-cta.third-button {
  border: solid 3px black;
  color: black;
  background-color: #94d0ea;
  transform: rotate(10deg);
}
.image-and-text-columns .checkerboard {
  height: 100px;
}
.image-and-text-columns .checkerboard.secondary, .image-and-text-columns .checkerboard.third {
  background-image: linear-gradient(45deg, #94d0ea 25%, transparent 25%, transparent 75%, #94d0ea 75%, #94d0ea), linear-gradient(45deg, #94d0ea 25%, transparent 25%, transparent 75%, #94d0ea 75%, #94d0ea);
}
.image-and-text-columns .checkerboard.primary {
  background-image: linear-gradient(45deg, #004461 25%, transparent 25%, transparent 75%, #004461 75%, #004461), linear-gradient(45deg, #004461 25%, transparent 25%, transparent 75%, #004461 75%, #004461);
}
.image-and-text-columns .checkerboard {
  background-size: 100px 100px;
  background-position: 0 0, 50px 50px;
}
@media (max-width: 768px) {
  .image-and-text-columns .content {
    display: block;
  }
  .image-and-text-columns .content .left-content,
  .image-and-text-columns .content .right-content {
    width: 100%;
  }
  .image-and-text-columns .content .right-content {
    padding: 0;
  }
  .image-and-text-columns .content .right-content .ctas {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.services {
  background-color: #94d0ea;
  overflow: hidden;
}
.services .container {
  display: flex;
}
@media (max-width: 1024px) {
  .services .container .left-content {
    display: none !important;
  }
  .services .container .right-content {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .services .container .right-content .service {
    flex-direction: column;
  }
  .services .container .right-content .service .ctas {
    margin-top: 30px;
  }
}
.services .container .left-content {
  width: 30%;
  border-right: solid 2px white;
  padding: 150px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .container .left-content .image-container {
  width: 250px;
  border: solid 1px white;
  border-radius: 25px;
  padding: 15px;
}
.services .container .left-content .image-container .image {
  background-size: cover;
  max-width: 100%;
  border-radius: 25px;
  height: 250px;
}
.services .container .right-content {
  width: 70%;
  padding: 30px;
  padding-bottom: 100px;
  max-width: 100%;
  box-sizing: border-box;
}
.services .container .right-content .title {
  border-bottom: solid 2px white;
  padding-bottom: 40px;
}
.services .container .right-content .title h1,
.services .container .right-content .title h2,
.services .container .right-content .title h3,
.services .container .right-content .title h4,
.services .container .right-content .title h5,
.services .container .right-content .title h6 {
  color: white;
}
.services .container .right-content .title h1 strong,
.services .container .right-content .title h2 strong,
.services .container .right-content .title h3 strong,
.services .container .right-content .title h4 strong,
.services .container .right-content .title h5 strong,
.services .container .right-content .title h6 strong {
  color: #fbd23e;
}
.services .container .right-content .service {
  padding: 60px 0;
  border-bottom: solid 2px white;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}
.services .container .right-content .service h4 {
  color: white;
  display: flex;
  align-items: center;
}
.services .container .right-content .service .loupe {
  margin-left: 20px;
  min-width: 38px;
  min-height: 35px;
}
.services .container .right-content .service .ctas {
  display: flex;
}
.services .container .right-content .service .ctas .cta {
  text-decoration: none;
  color: white;
  font-family: "Comicy";
  padding: 5px 15px;
  border: solid 1px white;
  border-radius: 10px;
  margin-left: 40px;
}
.services .container .right-content .service .ctas .cta h5 {
  font-weight: 100;
  margin: 0;
}
.services .container .right-content .service .ctas .cta {
  transform: rotate(10deg);
}
.services .container .right-content .service .ctas .cta.first {
  transform: rotate(-10deg) !important;
}
.services .container .right-content .service:hover .loupe circle,
.services .container .right-content .service:hover .loupe path {
  transition: all 0.7s ease;
}
.services .container .right-content .service:hover .loupe circle {
  stroke: #fbd23e;
}
.services .container .right-content .service:hover .loupe path {
  fill: #fbd23e;
}

.two-columns-cta {
  padding: 100px 0;
}
.two-columns-cta .titre {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.two-columns-cta .titre h2 {
  padding: 0 15px;
  box-sizing: border-box;
}
.two-columns-cta .titre h2 strong {
  color: #94d0ea;
}
.two-columns-cta .titre .btn-black {
  background-color: black;
  color: white;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  transform: rotate(-10deg);
  margin-top: 40px;
}
.two-columns-cta .container {
  min-height: 100px;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  max-width: 900px;
  margin: 100px auto;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .two-columns-cta .container {
    padding: 20px;
    overflow: hidden;
  }
  .two-columns-cta .container h4 {
    font-size: 25px !important;
  }
}
.two-columns-cta .container .box {
  border: solid 2px black;
}
.two-columns-cta .container .box .box-title {
  position: relative;
  color: white;
  font-size: 30px;
  text-align: center;
  margin-top: -20px;
  z-index: 888;
}
.two-columns-cta .container .box p {
  color: white;
}
.two-columns-cta .container .box .button-container {
  display: flex;
  justify-content: center;
}
.two-columns-cta .container .box .image-content {
  width: 250px;
  height: 250px;
  border-radius: 25px;
  padding: 10px;
  border: solid 1px white;
  max-width: 92%;
  position: relative;
}
.two-columns-cta .container .box .image-content .image {
  width: 250px;
  height: 250px;
  border-radius: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  z-index: 99;
}
.two-columns-cta .container .box .image-content .mascotte {
  position: absolute;
  bottom: 0;
  height: 120px;
  opacity: 0;
  right: -70px;
  z-index: 22;
}
.two-columns-cta .container .box .image-content .mascotte.right {
  right: -120px;
}
.two-columns-cta .container .box .image-content .mascotte.right.active {
  animation: from-right 2s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .two-columns-cta .container .box .image-content .mascotte.right {
    display: none;
  }
}
.two-columns-cta .container .box .image-content .mascotte.left {
  left: -120px;
}
.two-columns-cta .container .box .image-content .mascotte.left.active {
  animation: from-left 2s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .two-columns-cta .container .box .image-content .mascotte.left {
    display: none;
  }
}
@keyframes from-right {
  0% {
    transform: translate(-120px, 0);
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes from-left {
  0% {
    transform: translate(120px, 0);
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.two-columns-cta .container .box.first {
  background: #004461;
  padding: 20px;
  border-radius: 20px;
}
.two-columns-cta .container .box.first .image-container {
  display: flex;
  justify-content: flex-end;
}
.two-columns-cta .container .box.second {
  background: #94d0ea;
  padding: 20px;
  border-radius: 20px;
}

.three-columns-cta {
  padding: 100px 0;
  overflow: hidden;
  max-width: 100vw;
}
@media screen and (max-width: 768px) {
  .three-columns-cta {
    padding: 100px 0px;
    box-sizing: border-box;
  }
}
.three-columns-cta .titre {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
}
.three-columns-cta .titre h2 strong {
  color: #94d0ea;
}
.three-columns-cta .titre .btn-black {
  background-color: black;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  transform: rotate(-10deg);
  margin-top: 40px;
}
.three-columns-cta .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 100px auto;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .three-columns-cta .container {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .three-columns-cta .container {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.three-columns-cta .container .box {
  border: 2px solid black;
  padding: 20px;
  border-radius: 20px;
}
.three-columns-cta .container .box .box-title {
  color: white;
  position: relative;
  font-size: 30px;
  text-align: center;
  margin-top: -20px;
  z-index: 888;
  min-height: 58px;
}
.three-columns-cta .container .box p {
  color: white;
}
.three-columns-cta .container .box .button-container {
  display: flex;
  justify-content: center;
}
.three-columns-cta .container .box .button-container .call-button {
  width: 100%;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.three-columns-cta .container .box .image-content {
  width: 250px;
  height: 250px;
  border-radius: 25px;
  padding: 10px;
  border: solid 1px white;
  max-width: 92%;
  position: relative;
}
.three-columns-cta .container .box .image-content .mascotte {
  position: absolute;
  bottom: 0;
  height: 120px;
  opacity: 0;
  right: -70px;
  z-index: 22;
}
@media screen and (max-width: 768px) {
  .three-columns-cta .container .box .image-content .mascotte {
    display: none;
  }
}
.three-columns-cta .container .box .image-content .mascotte.right {
  right: -90px;
}
.three-columns-cta .container .box .image-content .mascotte.right.active {
  animation: from-right 2s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .three-columns-cta .container .box .image-content .mascotte.right {
    right: -44px !important;
  }
}
.three-columns-cta .container .box .image-content .mascotte.left {
  left: -90px;
}
.three-columns-cta .container .box .image-content .mascotte.left.active {
  animation: from-left 2s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .three-columns-cta .container .box .image-content .mascotte.left {
    left: -44px !important;
  }
}
@keyframes from-right {
  0% {
    transform: translate(-120px, 0);
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes from-left {
  0% {
    transform: translate(120px, 0);
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.three-columns-cta .container .box .image-content .image {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 99;
}
.three-columns-cta .container .box.first {
  background: #fbd23e;
  position: relative;
}
.three-columns-cta .container .box.first p {
  color: black;
}
.three-columns-cta .container .box.first .image-container {
  display: flex;
  justify-content: flex-end;
}
.three-columns-cta .container .box.first::after {
  transform: rotate(18deg);
  content: "";
  position: absolute;
  width: 35px;
  height: 50px;
  background-image: url(../assets/svg/star_vitres4.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -80px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1020px) {
  .three-columns-cta .container .box.first::after {
    display: none;
  }
}
.three-columns-cta .container .box.first::before {
  transform: rotate(7deg);
  content: "";
  position: absolute;
  width: 20px;
  height: 29px;
  background-image: url(../assets/svg/star_vitres4.svg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -45px;
  left: -7px;
  z-index: -1;
}
@media (max-width: 1020px) {
  .three-columns-cta .container .box.first::before {
    display: none;
  }
}
.three-columns-cta .container .box.middle {
  background-color: #94d0ea;
}
.three-columns-cta .container .box.second {
  background: #004461;
  position: relative;
}
.three-columns-cta .container .box.second::after {
  transform: rotate(18deg);
  content: "";
  position: absolute;
  width: 35px;
  height: 50px;
  background-image: url(../assets/svg/star_vitres4.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: -80px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1020px) {
  .three-columns-cta .container .box.second::after {
    display: none;
  }
}
.three-columns-cta .container .box.second::before {
  transform: rotate(7deg);
  content: "";
  position: absolute;
  width: 20px;
  height: 29px;
  background-image: url(../assets/svg/star_vitres4.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: -45px;
  right: -7px;
  z-index: -1;
}
@media (max-width: 1020px) {
  .three-columns-cta .container .box.second::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 20px;
  }
}
.reviews {
  overflow: hidden;
  background: #004461;
  background-image: linear-gradient(45deg, rgba(148, 208, 234, 0.66) 25%, transparent 25%, transparent 75%, rgba(148, 208, 234, 0.66) 75%, rgba(148, 208, 234, 0.66)), linear-gradient(45deg, rgba(148, 208, 234, 0.66) 25%, transparent 25%, transparent 75%, rgba(148, 208, 234, 0.66) 75%, rgba(148, 208, 234, 0.66));
  background-size: 110px 110px;
  background-position: 0 0, 55px 55px;
  position: relative;
}
.reviews::after {
  transform: rotate(12deg);
  content: "";
  position: absolute;
  width: 25px;
  height: 40px;
  background-image: url(../assets/svg/hermine.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 125px;
  top: 115px;
  z-index: 0;
}
.reviews .btn-black {
  background-color: black;
  color: white;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  transform: rotate(-10deg);
  margin-top: 40px;
}
.reviews .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.reviews .container .yeux-content {
  position: relative;
}
.reviews .container .yeux-content .yeux {
  width: 100px;
  margin-bottom: 30px;
  position: relative;
}
.reviews .container .yeux-content::after {
  transform: rotate(-19deg);
  content: "";
  position: absolute;
  width: 60px;
  height: 71px;
  background-image: url(../assets/svg/star_vitres_double.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -60px;
  top: 0;
  z-index: 9999;
}
.reviews .container .yeux-content::before {
  transform: rotate(30deg);
  content: "";
  position: absolute;
  width: 29px;
  height: 38px;
  background-image: url(../assets/svg/star_vitres3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: -35px;
  bottom: 32px;
  z-index: 9999;
}
.reviews .container h2 {
  text-align: center;
  color: white;
  z-index: 99;
}
.reviews .container .reviews-content {
  width: 100%;
  margin-top: 50px;
  position: relative;
  min-height: 500px;
}
@media screen and (max-width: 768px) {
  .reviews .container .reviews-content {
    height: 400px !important;
  }
}
@media screen and (max-width: 768px) {
  .reviews .container .reviews-content .card {
    height: 395px !important;
    padding: 30px 0;
  }
}
.reviews .container .reviews-content .card.fake-card {
  transform: rotate(0deg);
}
.reviews .container .reviews-content .card {
  max-width: none;
  z-index: 1;
  transition: transform 1s ease;
  transform: rotate(-1deg);
  position: absolute;
  width: 100%;
  min-height: 350px;
  background-color: white;
  border: solid 2px black;
  border-radius: 25px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .reviews .container .reviews-content .card {
    flex-direction: column;
  }
  .reviews .container .reviews-content .card .left-content {
    width: 100% !important;
    box-sizing: border-box;
    padding-top: 40px !important;
  }
}
.reviews .container .reviews-content .card .left-content {
  width: 60%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews .container .reviews-content .card .left-content .name {
  text-align: left;
  font-family: "Comicy";
  font-size: 30px;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.reviews .container .reviews-content .card .left-content p {
  text-align: left;
  font-weight: bold;
}
.reviews .container .reviews-content .card .left-content .review svg {
  width: 30px;
  height: 40px;
}
.reviews .container .reviews-content .card .right-content {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.reviews .container .reviews-content .card .right-content .image-mascotte {
  position: relative;
}
.reviews .container .reviews-content .card .right-content .image-mascotte .mascotte {
  width: auto;
  max-height: 176px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .reviews .container .reviews-content .card .right-content .image-mascotte {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .reviews .container .reviews-content .card .right-content .image-mascotte .mascotte {
    max-height: 100px;
  }
  .reviews .container .reviews-content .card .right-content .image-mascotte::after {
    display: none !important;
  }
  .reviews .container .reviews-content .card .right-content .image-mascotte::before {
    display: none !important;
  }
}
.reviews .container .reviews-content .card .right-content .image-mascotte::after {
  content: "";
  position: absolute;
  width: 51px;
  height: 71px;
  background-image: url(../assets/svg/star_vitres4.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  top: -75px;
  z-index: 9999;
}
.reviews .container .reviews-content .card .right-content .image-mascotte::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 20px;
  background-image: url(../assets/svg/star_vitres4.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  top: 1px;
  z-index: 9999;
  transform: rotate(25deg);
}
.reviews .reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews .reviews-controls .button-controls {
  width: 60px;
  cursor: pointer;
}
.reviews .reviews-controls .button-controls svg {
  fill: white;
}
.reviews .reviews-controls .button-controls#prev-review {
  margin-right: 30px;
}
.reviews .reviews-controls .button-controls#prev-review svg {
  transform: rotate(180deg);
}

.gallery {
  overflow: hidden;
  background-color: #94d0ea;
  background-image: url("../assets/svg/union.svg");
  background-repeat: repeat;
  background-size: 300px 400px;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gallery h2 {
  color: white;
  position: relative;
  width: fit-content;
  text-align: center;
  margin: 0 25px;
}
.gallery h2::after {
  transform: rotate(0deg);
  content: "";
  position: absolute;
  width: 60px;
  height: 71px;
  background-image: url(../assets/svg/star_vitres_double.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -60px;
  top: -38px;
  z-index: 9999;
}
.gallery h2::before {
  transform: rotate(180deg);
  content: "";
  position: absolute;
  width: 60px;
  height: 71px;
  background-image: url(../assets/svg/star_vitres_double.svg);
  background-repeat: no-repeat;
  background-size: cover;
  right: -60px;
  top: 0px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .gallery h2::before {
    width: 40px;
    height: 47px;
    right: -20px;
    bottom: -40px;
    top: auto;
  }
  .gallery h2::after {
    width: 40px;
    height: 47px;
    left: -22px;
    top: -40px;
  }
}
.gallery .diaporama {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 350px;
  margin-top: 100px;
}
.gallery .diaporama .diap,
.gallery .diaporama .diap-clone {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.gallery .diaporama img {
  width: 150px;
}
.gallery .diaporama .image-content {
  width: 300px;
  height: 300px;
  padding: 10px;
  border: solid 1px white;
  border-radius: 25px;
  margin-right: 45px;
  flex-shrink: 0;
  margin-right: 45px;
}
.gallery .diaporama .image-content .image {
  width: 300px;
  height: 300px;
  background-size: cover;
  border-radius: 25px;
}

.faq {
  overflow: hidden;
}
.faq .container {
  padding: 20px;
  max-width: 900px;
  min-height: 500px;
  margin: 100px auto;
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 1300px) {
  .faq .container {
    padding-bottom: 30px;
  }
}
.faq .container .logo-service-a-la-personne {
  width: 150px;
  position: absolute;
  left: -250px;
  transform: rotate(-25deg);
}
@media (max-width: 1300px) {
  .faq .container .logo-service-a-la-personne {
    right: 0;
    top: 0;
    left: auto;
  }
}
@media (max-width: 768px) {
  .faq .container .logo-service-a-la-personne {
    width: 100px;
    right: 40px;
    top: 0;
    left: auto;
  }
}
.faq .container .logo-reduction-impots {
  width: 150px;
  position: absolute;
  right: -250px;
  transform: rotate(25deg);
  top: 150px;
}
@media (max-width: 1300px) {
  .faq .container .logo-reduction-impots {
    width: 100px;
    right: 40px;
    bottom: 50px;
    top: auto;
    left: auto;
  }
}
@media (max-width: 1045px) {
  .faq .container .logo-reduction-impots {
    display: none;
  }
}
.faq .container .logo-acces-sap {
  width: 150px;
  position: absolute;
  left: -250px;
  transform: rotate(-25deg);
  bottom: 150px;
}
@media (max-width: 1045px) {
  .faq .container .logo-acces-sap {
    display: none;
  }
}
.faq .container::after {
  transform: rotate(-16deg);
  content: "";
  position: absolute;
  width: 40px;
  height: 56px;
  background-image: url(../assets/svg/star_vitres4.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -177px;
  bottom: 0px;
  z-index: 9999;
}
.faq .container::before {
  transform: rotate(-6deg);
  content: "";
  position: absolute;
  width: 18px;
  height: 24px;
  background-image: url(../assets/svg/star_vitres4.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -145px;
  bottom: 56px;
  z-index: 9999;
}
.faq .container .title {
  font-size: 40px;
  margin-bottom: 40px;
}
.faq .container .question {
  border-bottom: 2px solid black;
  padding: 25px 0;
  cursor: pointer;
}
.faq .container .question .question_title {
  font-family: "Poppins";
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq .container .question .question_title .toggle {
  font-size: 40px;
  font-weight: bold;
  margin-left: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}
.faq .container .question .response {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 15px;
}
.faq .container .question .response p {
  margin: 10px 0 0 0;
  text-align: left;
}
.faq .container .question.open .toggle {
  transform: rotate(180deg);
  color: black;
}
.faq .container .imageBottomRight {
  position: absolute;
  width: 150px;
  height: 200px;
  background-size: cover;
  right: -250px;
  border: solid 1px black;
  bottom: 0;
  border-radius: 25px;
  transform: rotate(20deg);
}
.faq .visually-hidden {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.faq .curved-title {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}
.faq .curved-title text {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 36px;
}
.faq .button-container {
  display: flex;
  justify-content: center;
}
.faq .cta {
  margin-top: -150px;
}
.faq .logos-mobile {
  display: none;
}
@media screen and (max-width: 1045px) {
  .faq .logos-mobile {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 20px;
  }
  .faq .logos-mobile .logo-acces-sap-mobile {
    width: 80px;
    height: auto;
  }
  .faq .logos-mobile .logo-reduction-impots-mobile {
    width: 80px;
  }
}

footer {
  margin-top: 300px;
  background-color: #94d0ea;
  position: relative;
  min-height: 500px;
}
footer .element {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 150px;
  top: -148px;
}
footer .element::before {
  content: "";
  border-radius: 50%;
  background-color: #94d0ea;
  width: 100vw;
  height: 300px;
  position: absolute;
  z-index: -1;
}
footer .socials {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  z-index: 1;
}
footer .socials .container-socials {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  position: relative;
}
footer .socials .facebook,
footer .socials .linkedin,
footer .socials .instagram {
  position: relative;
}
footer .socials .facebook a,
footer .socials .linkedin a,
footer .socials .instagram a {
  transition: transform 0.3s ease;
}
footer .socials .facebook:hover a,
footer .socials .linkedin:hover a,
footer .socials .instagram:hover a {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  footer .socials .facebook,
  footer .socials .linkedin,
  footer .socials .instagram {
    width: 70px !important;
    height: 70px !important;
  }
  footer .socials .facebook:hover a,
  footer .socials .linkedin:hover a,
  footer .socials .instagram:hover a {
    transform: scale(1.1);
  }
  footer .socials .facebook a,
  footer .socials .linkedin a,
  footer .socials .instagram a {
    width: 70px !important;
    height: 70px !important;
  }
}
footer .socials .facebook {
  width: 150px;
  height: 150px;
  border-radius: 25px;
  border: solid 1px white;
  padding: 5px;
  transform: rotate(-15deg);
  margin-top: -30px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  footer .socials .facebook {
    left: 25px;
  }
}
footer .socials .facebook a {
  background-color: #004461;
  width: 150px;
  height: 150px;
  border-radius: 25px;
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  footer .socials .facebook a {
    border-radius: 20px;
  }
}
footer .socials .facebook a::before {
  transform: rotate(8deg);
  content: "";
  position: absolute;
  width: 60px;
  height: 132px;
  background-image: url(../assets/svg/socials/facebook.svg);
  background-repeat: no-repeat;
  background-size: cover;
  /* Centrage parfait */
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0) rotate(13deg);
  z-index: 9999;
}
@media (max-width: 768px) {
  footer .socials .facebook a::before {
    width: 25px;
    height: 59px;
    bottom: -1px;
  }
}
footer .socials .linkedin {
  width: 150px;
  height: 150px;
  border-radius: 25px;
  border: solid 1px white;
  padding: 5px;
  margin-top: -100px;
  z-index: 1;
}
footer .socials .linkedin a {
  background-color: white;
  width: 150px;
  height: 150px;
  border-radius: 25px;
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  footer .socials .linkedin a {
    border-radius: 20px;
  }
}
footer .socials .linkedin a::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: url(../assets/svg/socials/linkedin.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
@media (max-width: 768px) {
  footer .socials .linkedin a::before {
    width: 50px !important;
    height: 50px !important;
  }
}
footer .socials .instagram {
  width: 150px;
  height: 150px;
  border-radius: 25px;
  border: solid 1px white;
  padding: 5px;
  transform: rotate(15deg);
  margin-top: -30px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  footer .socials .instagram {
    left: -25px;
  }
}
footer .socials .instagram a {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  width: 150px;
  height: 150px;
  border-radius: 25px;
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  footer .socials .instagram a {
    border-radius: 20px;
  }
}
footer .socials .instagram a::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  background-image: url(../assets/svg/socials/instagram.svg);
  background-repeat: no-repeat;
  background-size: cover;
  /* Centrage parfait */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  z-index: 9999;
}
@media (max-width: 768px) {
  footer .socials .instagram a::before {
    width: 60px;
    height: 60px;
  }
}
footer #join-us {
  position: absolute;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.3);
  bottom: -130px;
  z-index: 0;
}
footer #join-us::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 70px;
  background-image: url(../assets/svg/etoile.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: -40px;
  top: -25px;
  z-index: 9999;
}
@media (max-width: 1400px) {
  footer #join-us {
    font-size: 100px;
    bottom: -100px;
  }
}
@media (max-width: 900px) {
  footer #join-us {
    font-size: 70px;
    bottom: -75px;
  }
}
@media (max-width: 635px) {
  footer #join-us {
    font-size: 35px;
    bottom: -55px;
  }
  footer #join-us::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 40px;
    background-image: url(../assets/svg/etoile.svg);
    background-repeat: no-repeat;
    background-size: cover;
    left: -25px;
    top: -20px;
    z-index: 9999;
  }
}
footer .container {
  margin-top: 200px;
  display: flex;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  footer .container {
    margin-top: 100px;
    flex-direction: column-reverse;
  }
  footer .container .logo {
    width: 100% !important;
  }
}
footer .container .logo {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .container .logo img {
  background: white;
  border: solid 1px black;
  border-radius: 25px;
  width: 250px;
  height: 250px;
}
footer .container .menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 70%;
}
@media (max-width: 768px) {
  footer .container .menus {
    grid-template-columns: 1fr;
    width: 100%;
  }
  footer .container .menus .menu {
    text-align: center;
    margin-bottom: 20px;
  }
}
footer .container .menus .menu {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
footer .container .menus .menu a {
  text-decoration: none;
  color: white;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}
footer .container .menus .menu .nav-title {
  text-decoration: none !important;
  color: white !important;
  font-family: Poppins !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: bold !important;
  line-height: normal !important;
  text-align: left;
}
@media (max-width: 768px) {
  footer .container .menus .menu .nav-title {
    text-align: center;
  }
}
footer .instagram-bounce {
  animation: insta-bounce 1.8s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
  will-change: transform;
}
footer .facebook-bounce {
  animation: facebook-bounce 1.8s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
  will-change: transform;
}
footer .linkedin-bounce {
  animation: linkedin-bounce 1.8s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
  will-change: transform;
}
@keyframes facebook-bounce {
  0% {
    transform: translate(-150px, -450px) rotate(-20deg) scale(1);
  }
  70% {
    transform: translate(0, 0) rotate(-18deg) scale(1.1);
  }
  100% {
    transform: translate(0, 0) rotate(-15deg) scale(1.05);
  }
}
@keyframes insta-bounce {
  0% {
    transform: translate(50px, -450px) rotate(20deg) scale(1);
  }
  70% {
    transform: translate(0, 0) rotate(17deg) scale(1.1);
  }
  100% {
    transform: translate(0, 0) rotate(15deg) scale(1.05);
  }
}
@keyframes linkedin-bounce {
  0% {
    transform: translate(0px, -450px) rotate(20deg) scale(1);
  }
  70% {
    transform: translate(0, 0) rotate(0deg) scale(1.1);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1.05);
  }
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 20px 20px !important;
  }
}
.header {
  padding: 0 10px;
  z-index: 999;
  box-sizing: border-box;
}
.header .container {
  min-height: 100px;
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 0 !important;
  justify-content: space-between;
}
.header .container .logo_header {
  width: 96px;
  height: 96px;
}
.header .container .menu-container {
  display: flex;
  align-items: center;
}
.header .container .menu-container .burger {
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-right: 25px;
}
.header .container .menu-container .call-button {
  background-color: #94d0ea;
  padding: 10px 40px;
  height: fit-content;
  font-family: "Comicy";
}
@media screen and (max-width: 768px) {
  .header .container .menu-container .call-button {
    padding: 10px 10px !important;
  }
}
.header .container .menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 99999999;
  background-color: #94d0ea;
}
.header {
  /* MENU FULLSCREEN */
}
.header .fullscreen-menu {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  width: 100vw;
  height: 100vh;
  background: rgba(148, 208, 234, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 150;
}
.header .fullscreen-menu .close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 300;
  transition: transform 0.2s ease;
}
.header .fullscreen-menu .close-menu svg {
  width: 100%;
  height: 100%;
}
.header .fullscreen-menu .close-menu svg line {
  stroke: black;
}
.header .fullscreen-menu .close-menu:hover {
  transform: scale(1.1);
}
.header .fullscreen-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.header .fullscreen-menu ul li {
  margin: 20px 0;
}
.header .fullscreen-menu ul li ul {
  margin-left: 20px;
}
.header .fullscreen-menu ul a {
  font-size: 32px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Comicy";
  color: black;
}
@media screen and (max-width: 768px) {
  .header .fullscreen-menu ul a {
    font-size: 14px;
  }
}
.header .fullscreen-menu ul a:hover {
  opacity: 0.8;
}
.header .fullscreen-menu.active {
  transform: translateY(0);
}
.header #header-menu,
.header #header-menu > li {
  margin-bottom: 8px;
}
.header .menu-link {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  font-size: 32px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-family: "Comicy";
  color: black;
}
@media screen and (max-width: 768px) {
  .header .menu-link {
    font-size: 20px;
  }
}
.header .submenu {
  max-height: 0;
  overflow: hidden;
  padding-left: 25px;
  transition: max-height 0.35s ease;
}
.header .submenu.open {
  /* valeur grande pour laisser l’animation respirer */
  max-height: 500px;
}
.header .chevron {
  font-size: 40px !important;
  transition: transform 0.3s ease;
  margin-left: 15px;
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
}
.header .has-children.open > .menu-link .chevron {
  transform: rotate(180deg);
}

.bandeau-page {
  min-height: 40vh;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 2px, transparent 1px, transparent 110px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 2px, transparent 1px, transparent 110px);
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bandeau-page .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  box-sizing: border-box;
  padding: 20px;
}
.bandeau-page .content .title {
  text-align: center;
}
.bandeau-page .content .subtitle {
  background-color: #fbd23e;
  padding: 5px 15px;
  border-radius: 10px;
  margin-top: 40px;
  transform: rotate(-5deg);
  width: fit-content;
}

.seo-block .container {
  max-width: 900px;
  margin: 100px auto;
  margin-bottom: 0 !important;
  padding: 20px;
}
.seo-block .container h1,
.seo-block .container h2,
.seo-block .container h3,
.seo-block .container h4,
.seo-block .container h5,
.seo-block .container h6 {
  font-family: Poppins;
  font-size: 22px;
  margin: 10px 0;
}

.contact {
  background-color: #004461;
}
.contact .container {
  max-width: 1040px;
  margin: 100px auto;
  margin-bottom: 0 !important;
  padding: 100px 20px 100px 20px;
  margin-top: 0;
  text-align: center;
}
.contact .container .title {
  color: white;
}
.contact .container p {
  color: white;
}
.contact .container .content:not(.content-2) {
  display: flex;
  justify-content: center;
}
.contact .container .button-container {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .contact .container .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .contact .container .button-container .call-button {
    margin-right: 0 !important;
  }
}
.contact .container .button-container .first {
  margin-right: 20px;
}
.contact .wpcf7 {
  max-width: 700px;
  padding: 20px;
}
@media (min-width: 768px) {
  .contact .wpcf7 {
    min-width: 700px;
  }
}
.contact .wpcf7 label {
  font-weight: bold;
  text-align: left;
}
.contact .wpcf7 input,
.contact .wpcf7 select,
.contact .wpcf7 textarea {
  padding: 10px;
  border-radius: 10px;
  color: #000;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: white;
  text-align: left;
  border: solid 2px black;
  width: 100%;
}
.contact .wpcf7 .cf7-field,
.contact .wpcf7 p {
  text-align: left !important;
}
.contact .wpcf7 .cf7-two-cols {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contact .wpcf7 .cf7-two-cols {
    flex-direction: column;
  }
}
.contact .wpcf7 .cf7-submit-container {
  display: flex;
  justify-content: flex-end;
}
.contact .wpcf7 button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 1.5rem;
  border: 5px solid white;
  border-bottom-width: 8px;
  border-radius: 25px;
  background: black;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.contact .wpcf7 button span {
  display: inline-block;
  transition: all 0.3s ease;
}
.contact .wpcf7 button__highlight {
  background: #fbd23e;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 900;
}
.contact .wpcf7 button:hover, .contact .wpcf7 button.active {
  transform: translateY(-2px);
  background: white;
  color: black;
}
.contact .wpcf7 button:hover .call-button__highlight, .contact .wpcf7 button.active .call-button__highlight {
  background: #fff;
  color: #000;
}
.contact .wpcf7 button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #000;
}
.contact .wpcf7-response-output {
  background: white;
}

.columnsWithCTA {
  background-color: #004461;
  padding: 50px 0;
}
.columnsWithCTA h2 {
  text-align: center;
  color: white;
  padding: 0 10px;
}
.columnsWithCTA h2 strong {
  color: #fbd23e;
}
.columnsWithCTA .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  margin-top: 50px;
}
@media (max-width: 1200px) {
  .columnsWithCTA .container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .columnsWithCTA .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .columnsWithCTA .container {
    grid-template-columns: 1fr;
  }
}
.columnsWithCTA .container .columns-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.columnsWithCTA .container .columns-card .image-container {
  width: 200px;
  height: 200px;
  border: solid 1px white;
  border-radius: 15px;
  padding: 10px;
  position: relative;
}
.columnsWithCTA .container .columns-card .image-container .image {
  background-size: cover;
  width: 200px;
  height: 200px;
  border-radius: 15px;
}
.columnsWithCTA .container .columns-card .image-container h4 {
  font-size: 22px;
  color: white;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.columnsWithCTA .call-button {
  width: 250px;
  margin: 0 20px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
span,
p,
a {
  margin: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word; /* compatibilité ancienne */
}

body:not(.wp-admin) .fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
body:not(.wp-admin) .fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.block-editor-block-list__block {
  max-width: none;
}

.bg-primary {
  background-color: #94d0ea;
}

.bg-secondary {
  background-color: #004461;
}

.bg-third {
  background-color: #fbd23e;
}

.hidden {
  display: none !important;
}

.interface-complementary-area__fill,
.interface-complementary-area {
  width: 500px !important;
}

.select2-container--open {
  width: 1000px;
}

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