@charset "UTF-8";
/*

Theme Name: AG 00825-b2

Author: StefAll
Description: Atiz
Version: 1.1
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "belgika";
  src: url("./font/belgika/belgika-8th-webfont.woff") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/*##################*/
/*Global*/
/*##################*/
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
  text-decoration: none;

  border: none;
  outline: none;
}

:root {
  --grey: #6c6c6c;
  --green: #4f9b7b;
  --greenlight: #76b8a5;
  --white: #feffff;
  --dark: #141641;
  --dark-brown: #f9bd93;
  --dar-brown: #996441;
  --text: #1a1d56;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.admin-bar .navigation-principale {
  top: 32px; /* hauteur de la barre admin */
}

@media screen and (max-width: 782px) {
  body.admin-bar .navigation-principale {
    top: 46px; /* hauteur de la barre admin sur mobile */
  }
}

p {
  line-height: 1.6em;
}

.menu-ul,
.sub-menu {
  list-style-type: none !important;
}

.content-test {
  flex-grow: 1;
}

img {
  width: 100%;
}

a {
  color: var(--dark);
}

a:hover {
  color: var(--grey);
}

.container a {
  color: var(--green);
}

.container a:hover {
  color: var(--text);
}

.heading {
  margin: 0rem 0 0rem;
}

.heading h2 {
  font-size: clamp(30px, 5vw, 45px);
  text-align: center;
}

.heading h2 span {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}

.btn {
  width: 200px;
  padding: 10px 15px;
  background: var(--dark);
  display: flex;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.btn a {
  color: white;
}

.btn:hover {
  color: var(--grey);
  background: rgb(109, 113, 151);
}
.more-white {
  margin-top: 2rem;
}

.more-white a {
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white);
}

.more-white a:hover {
  color: rgb(183, 183, 183);
}

.more-white a:hover .chevron {
  right: -25%;
  color: var(--white);
}

.more-white a ion-icon {
  font-size: 1rem;
}

.more-white a .chevron {
  position: absolute;
  top: 10%;
  right: -20%;
  transition: 0.2s ease-in-out;
}

.more-black {
  margin-top: 2rem;
}

.more-black a {
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--dark);
}

.more-black a:hover {
  color: rgb(119, 119, 119);
}

.more-black a:hover .chevron {
  right: -25%;
}

.more-black a ion-icon {
  font-size: 1rem;
}

.more-black a .chevron {
  position: absolute;
  top: 10%;
  right: -20%;
  transition: 0.2s ease-in-out;
}

.link-anim {
  position: relative;
  color: var(--dark);
}

.link-anim:hover {
  color: var(--green);
}

.link-anim::before {
  content: "";
  display: block;
  position: absolute;
  background: var(--dark);
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  transform-origin: left;
  transform: scaleX(0%);
  transition: transform 0.2s ease-out;
}

.link-anim:hover::before {
  transform: scaleX(100%);
  background: var(--dark);
}

strong {
  font-weight: 600;
}

.atiz-title {
  width: 95%;
}

.atiz-title-footer {
  width: 100%;
}

.triangle {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid blue;
  transition: 0.3s ease;
  transform: rotate(-90deg);
}
.triangle:hover {
  border-left: 30px solid red;
  transform: rotate(0deg);
}

.scroll-anim {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
  max-width: 1700px;
  overflow: hidden;
}

.scroll-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.email {
  color: var(--dark);
}
/*

/*##################*/
/*Pages WP standards*/
/*##################*/
.standard-content {
  width: 80%;
  margin: 2rem auto;
}

/*##################*/
/*Page archive article*/
/*##################*/

.articles-list {
  width: 80%;
  margin: 0 auto 4rem;
}

.article-item {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 20px;
  padding: 20px 0;
  align-items: start;
}

@media (max-width: 768px) {
  .article-item {
    grid-template-columns: 1fr; /* une seule colonne */
  }
}
.article-item:not(:last-of-type) {
  border-bottom: solid 1px #d3d2d2;
  padding-bottom: 24px;
}

.article-thumbnail {
  height: 250px;
  width: 100%;
  overflow: hidden;
}
.article-thumbnail img {
  object-fit: cover;
  object-position: center;
  transition: 0.4s ease-in-out;
}

.article-thumbnail:hover img {
  transform: scale(1.1);
}

.article-content {
  width: 70%;
}

.article-title {
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.article-title a {
  text-decoration: none;
  color: #111;
}

.article-title a:hover {
  text-decoration: underline;
}

.article-excerpt {
  margin: 0 0 12px;
  color: #444;
}

.read-more {
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.read-more:hover {
  border-color: #111;
}

/*##################*/
/*Navigation*/
/*##################*/
.nav-titre {
  font-family: "libre Baskerville";
  font-size: 3rem;
  color: #010101;
  font-weight: 500;
}

.sub-menu {
  display: none;
}

.sub-menu.active {
  display: block;
}

.navigation-principale-bis {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  width: 100%;
}

.navigation-principale {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: var(--white);
  width: 100%;
}

.navigation-principale.active {
  box-shadow: 0 -2px 30px 0 rgba(0, 0, 0, 0.1);
}

.navigation-principale a.logo img {
  width: 250px;
}

.logo {
  color: #1a1d56;
  display: flex;
}

.logo svg {
  width: 150px;
  height: auto;
}

.info-menu-mobile {
  display: none;
}

.icones-navigation {
  display: none;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

#btn-burger,
#btn-search {
  font-size: 1.9rem;
  color: var(--dark);
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

#btn-burger:hover,
#btn-search:hover {
  color: var(--green);
}

#btn-burger {
  display: none;
}

.search {
  position: absolute;
  top: 110%;
  right: -100%;
  transition: 0.2s ease-in-out;
}

.search.active {
  right: 1rem;
}

.search input {
  height: 50px;
  padding: 1rem;
  border-radius: 0.5rem;
  width: 280px;
  box-shadow: 0 4px 14px hsla(355, 25%, 15%, 0.1);
}

.parallax-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#obfuscated-email a {
  color: var(--dark);
}

#obfuscated-email:hover a {
  color: var(--green);
}

.menu-ul .btn-reserver {
  display: inline-block;
  color: var(--dark);

  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.menu-ul .btn-reserver:hover {
  color: var(--green);
}

.parallax {
  height: 100%;
  background-image: none !important;
}

.parallax::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/*##################*/
/*Home*/
/*##################*/
#home {
  background-blend-mode: overlay;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark);
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.image-home-load {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main {
  display: flex;
  flex-direction: column;
  padding: 0;
}

/*Animation*/
.main .info-resume {
  font-size: 1.3rem;
  margin-top: 2rem;
}

.info-left,
.main h2,
.main h3,
.main .citation,
.main .info-resume,
.main .more {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 3.5s 0.3s ease-out;
}

.info-left.active,
.main h2.active,
.main h3.active,
.main .citation.active,
.main .info-resume.active,
.main .more.active {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.5s 0.3s ease-out, transform 0.5s 0.3s ease-out;
}

.home-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  width: 100%;
  height: 100vh;
  color: var(--white);
  position: relative;
  overflow: hidden;
  animation: the-animation linear;
}

@keyframes the-animation {
  to {
    background-size: 120%;
  }
}
.hero-push-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid var(--white);
  margin: 2rem 0;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-push-link:hover {
  animation: bounce 0.7s ease-out infinite;
}

.hero-push-link img {
  height: 20px;
  width: 20px;
  pointer-events: none;
  transform: translateY(10%);
}

@keyframes bounce {
  from {
    bottom: 15px;
  }
  50% {
    bottom: 10px;
  }
  to {
    bottom: 15px;
  }
}

.main-title-box {
  position: absolute;
  background: rgba(255, 255, 255, 0.764);
  top: 55%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-title-box h1 {
  display: inline;
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  position: relative;
  color: var(--dark);
}

hr {
  margin: 20px 0;
  border-top: 1px solid rgb(5, 5, 5);
  color: var(--dark);
}

.main-title-box h2 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 100;
  letter-spacing: 7px;
  margin: 0;
  color: var(--dark);
}

.main-title-box p {
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 5px;
  color: var(--dark);
  text-align: center;
  text-transform: uppercase;
}

/* TEST ALTER */

.section-alternee {
  width: 100%;
  background: white;
}

.alter-container {
  display: flex;
  height: 500px;
  overflow: hidden;
}

.alter-container.reverse {
  flex-direction: row-reverse;
}

.alter-texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  color: var(--white);
  width: 50%;
}

.alter-container .alter-texte,
.alter-container .alter-image {
  height: 100%;
  width: 50%;
}

.bg-dark {
  background-color: var(--dark); /* Définis var(--dark) dans ton root */
}

.bg-light {
  background-color: var(--white);
  color: var(--dark);
}

.alter-texte p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.info-resume {
  margin-top: 35px;
}

.alter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .alter-container {
    flex-direction: column;
    height: 600px;
  }

  .alter-container.reverse {
    flex-direction: column; /* empêche l'image de passer avant */
  }

  .alter-container .alter-texte,
  .alter-container .alter-image {
    width: 100%;
    height: 100%;
  }

  .alter-texte {
    padding: 2rem 1rem;
  }

  .alter-image img {
    height: 350px; /* fixe une hauteur d’image raisonnable */
  }
}
/*FIN TEST ALTER */

.home-info-container {
  display: flex;
  flex-direction: row;
}

.home-info-container h2,
.demarche-texte h2,
.alter-texte h2 {
  position: relative;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 100;
}

.home-info-container h2::after,
.alter-texte h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--white);
  left: 0;
  top: 73px;
}

.demarche-texte h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--dark);
  left: 0;
  top: 73px;
}

.alter-texte h2.black-line::after {
  background-color: var(--dark);
}

.home-info-container .info-black {
  position: relative;
  padding: 7rem 4rem;
  width: 50%;
  height: auto;
  background: var(--dark);
  color: var(--white);
}

.home-info-container .info-black h3 {
  font-size: 3rem;
  font-family: "libre Baskerville";
  margin-top: 2rem;
}

.home-info-container .info-black span {
  position: absolute;
  font-size: 10rem;
}

.home-info-container .info-white {
  background: var(--white);
  padding: 7rem 4rem;
  width: 50%;
  height: auto;
}

.home-info-container .info-white h2::after {
  background-color: var(--dark);
}

.last-project {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  opacity: 0;
  transform: translateY(50px);
  position: relative;
}

.last-project.active {
  opacity: 1;
  transform: translateY(-10px);
  transition: opacity 0.5s 0.3s ease-out, transform 0.5s 0.3s ease-out;
}

.home-last-container {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  padding: 3rem 4rem;
  color: var(--white);
}

.home-last-container h2 {
  position: relative;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 100;
}

.home-last-container h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--white);
  left: 0;
  top: 73px;
}

.home-last-container .last-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(50px);
  position: relative;
}

.home-last-container .last-container.active {
  opacity: 1;
  transform: translateY(-10px);
  transition: opacity 0.5s 0.3s ease-out, transform 0.5s 0.3s ease-out;
}

.home-last-container .last-container .last-single-home {
  position: relative;
  min-width: 250px;
  width: 350px;
  height: 250px;
  overflow: hidden;
}

.home-last-container .last-container .last-single-home .last-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-last-container .last-container .last-single-home .last-single-content {
  position: absolute;
  left: 0;
  width: 100%;
  height: 35%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.home-last-container .last-container .last-single-home .last-single-content h6 {
  font-size: 0.9rem;
  color: var(--dark);
}

.home-last-container
  .last-container
  .last-single-home
  .last-single-content
  span {
  color: var(--green);
}

.home-last-container .last-container .last-single-home .last-single-content a {
  color: var(--dark);
  padding: 8px 10px;
  font-size: 0.7rem;
  margin-top: 1px;
  border-radius: 0.5rem;
  transition: 0.2s ease-in-out;
}

.home-last-container .last-container .last-single-home .last-single-content p {
  margin-top: 10px;
  font-size: 0.8rem;
  line-height: 0;
  text-align: center;
  color: var(--green);
}

.img-paralax {
  -o-object-fit: cover;
  object-fit: cover;
  height: 600px;
}

.home-line {
  width: 1px;
  height: 100px;
  margin: 0 auto;
  background: var(--white);
}

.home-contact-container {
  height: 600px;
  position: relative;
  overflow: hidden;
}

.home-contact-container a {
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: 20px;
  font-weight: 500;
}

.home-contact-container a:hover {
  color: rgb(183, 183, 183);
}

.home-contact-container a:hover .chevron {
  right: -15%;
}

.home-contact-container a ion-icon {
  font-size: 1rem;
}

.home-contact-container a .chevron {
  position: absolute;
  top: 5%;
  right: -13%;
  transition: 0.2s ease-in-out;
}

.home-contact-container .home-contact-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4rem;
  background: #ffffffe4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-text {
  font-size: 1.1rem;
  margin: 2rem 0;
  line-height: 1.6;
}

.home-contact-container .title {
  font-size: 3rem;
  font-weight: 100;
}

.home-contact-container .img-contact {
  height: 600px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1);
  transition: transform 3s ease-out;
}

.home-contact-container .img-contact.active {
  transform: scale(1.06);
}

/*Démarche*/

.section-demarche {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.demarche-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.demarche-texte {
  flex: 1 1 500px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.demarche-texte ul {
  padding-left: 1.2rem;
  list-style-type: disc;
  margin-bottom: 1rem;
}

.demarche-photo {
  flex: 1 1 400px;
  text-align: center;
}

.demarche-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* FIN Démarche*/

.home-quote-container {
  background: url(./images/fond2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: flex;
  flex-direction: row;
  height: 500px;
  position: relative;
  background-color: cornsilk;
}

.home-quote-container .quote {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 70px;
  left: 162px;
}

.blockquote {
  font-size: 1.4em;
  font-style: italic;
  width: 70%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.blockquote p {
  text-align: justify;
}

.blockquote::before {
  content: "";
  position: absolute;
  width: 5vw;
  height: 6vw;
  background-image: url(https://stephanealleman.fr/demo/wp-content/uploads/quotes-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: -15%;
  left: -10%;
}

.blockquote::after {
  content: "";
  position: absolute;
  width: 5vw;
  height: 6vw;
  background-image: url(https://stephanealleman.fr/demo/wp-content/uploads/quotes-1.png);
  transform: rotateY(180deg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -15%;
  right: -10%;
}

.basic-content {
  width: 80%;
  margin: 3rem auto;
}

.bloc-info {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

.bloc-info-bis {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}

/*##################*/
/*Realisations*/
/*##################*/
.page-realisations {
  padding-top: 62px;
  text-align: center;
}

.page-realisations h1 {
  font-size: 5rem;
  font-weight: 100;
}

/*##################*/
/*Filtres*/
/*##################*/
.post-filter {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin: 2rem auto;
  line-height: 2rem;
}

.filter-item {
  font-size: 0.9rem;
  font-weight: 300;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
}

.filter-item:hover {
  color: var(--green);
}

.filter-item::before {
  content: "";
  display: block;
  position: absolute;
  background: var(--dark);
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  transform-origin: left;
  transform: scaleX(0%);
  transition: transform 0.2s ease-out;
}

.filter-item:hover::before {
  transform: scaleX(100%);
  background: var(--dark);
}

.filter-active {
  color: var(--green);
}

/*##################*/
/*Pages*/
/*##################*/
.page-content {
  width: 80%;
  margin: 2rem auto;
}

.page-info-container1,
.page-info-container3 {
  display: flex;
  width: 80%;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 3.5s 0.3s ease-out;
}

.page-info-container1 .content-text,
.page-info-container3 .content-text {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
}

.page-info-container1 .content-text h2,
.page-info-container2 .content-text h2,
.page-info-container3 .content-text h2 {
  margin-bottom: 20px;
  font-size: 3rem;
  color: var(--dark);
  font-weight: 100;
  line-height: 3rem;
  text-align: left;
}

.page-info-container1 .content-text p,
.page-info-container3 .content-text p {
  font-size: 1.2rem;
  line-height: normal;
}

.page-info-container2 .content-text ul,
.page-info-container1 .content-text ul,
.page-info-container3 .content-text ul {
  list-style-type: square;
  padding-left: 1.9rem;
  line-height: 1.6rem;
}

.page-info-container1 .content-text li,
.page-info-container3 .content-text li {
  position: relative; /* Nécessaire pour positionner le pseudo-élément */
}

.page-info-container1 .content-photo,
.page-info-container3 .content-photo {
  flex: 1;
  padding: 0 1rem;
  display: flex;
  justify-content: right;
  align-items: center;
}

.page-info-container1 .content-photo img,
.page-info-container3 .content-photo img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  -o-object-position: center;
  object-position: center;
  width: 70vw;
  height: 70vw;
  max-width: 450px;
  max-height: 450px;
}

.page-info-container2 {
  display: flex;
  width: 80%;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 3.5s 0.3s ease-out;
}

.page-info-container2 .content-text {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
}

.page-info-container2 .content-text p {
  font-size: 1.2rem;
  line-height: normal;
}

.page-info-container2 .content-text li {
  position: relative;
}

.page-info-container2 .content-photo {
  flex: 1;
  padding: 0 1rem;
  display: flex;
  justify-content: left;
  align-items: center;
}

.page-info-container2 .content-photo img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 100% 51% 75% 78% / 60% 39% 124% 70%;
  -o-object-position: center;
  object-position: center;
  width: 70vw;
  height: 70vw;
  max-width: 450px;
  max-height: 450px;
}

.page-info-container1.active,
.page-info-container2.active,
.page-info-container3.active {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.5s 0.3s ease-out, transform 0.5s 0.3s ease-out;
}

.about-subtitle {
  font-size: clamp(20px, 2vw, 2rem);
  padding: 2rem 2rem 3rem;
  font-style: italic;
  font-weight: 100;
  text-align: center;
  width: 80%;
  max-width: 1250px;
  margin: auto;
}

.content-txt-header {
  width: 80%;
  margin: auto;
  max-width: 940px;
  padding-bottom: 3rem;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 100 !important;
}
.content-txt-header p {
  font-weight: 100 !important;
}

.page-subtitle {
  font-size: 1.2rem;
  padding: 2rem 2rem 3rem;
  font-style: italic;
  font-weight: 100;
  text-align: justify;
  width: 80%;
  max-width: 1250px;
  margin: auto;
  color: var(--grey);
}

/*##################*/
/*Portfolio*/
/*##################*/
.portfolio-archive {
  margin-top: 7em;
}

/*##################*/
/*Post*/
/*##################*/
.citymark {
  display: inline-block;
  width: 20px;
  height: 4px;
  background: black; /* ou utilisez votre variable CSS si vous en avez défini une */
  margin-right: 5px; /* Ajoutez de la marge à droite pour séparer le trait du texte */
  transform: translateY(-60%);
}

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

.posts-cat {
  padding-top: 3rem;
}

.inactive {
  display: none;
}

.posts {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 4rem;
  flex-grow: 1;
}

.posts .category {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark-brown);
}

.posts .post-title {
  font-size: 1.2rem;
  width: 80%;
}

.posts .post-date {
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 5px;
}

.posts .post-description {
  font-size: 0.9rem;
  margin: 5px 0 10px;
}

.posts .profil-author {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.posts .profil-author .profil-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--dark-brown);
}

.posts .profil-author .profil-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.posts .profil-author .profil-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.posts .post-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--dark);
  background: var(--dar-brown);
  border-radius: 0.5rem 0 0.5rem 0;
  transition: 0.2s ease-in-out;
}

.posts .post-btn:hover {
  background: var(--dark-brown);
}

.post-img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 0.2rem;
}

/*##################*/
/*Mentions*/
/*##################*/
.mentions p {
  margin: 1rem 0;
}

/*##################*/
/*Single*/
/*##################*/
.single-header {
  display: inline;
  width: 100%;
  height: 200px;
}

.project-category {
  margin: 1rem 0 1rem 0;
  padding-top: 1rem;
}

.project-category ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  line-height: 0.8rem;
}

.project-category ul a {
  color: var(--dark);
  position: relative;
}

.project-category ul a:hover {
  color: var(--green);
}

.project-category ul a::before {
  content: "";
  display: block;
  position: absolute;
  background: var(--dark);
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  transform-origin: left;
  transform: scaleX(0%);
  transition: transform 0.2s ease-out;
}

.project-category ul a:hover::before {
  transform: scaleX(100%);
  background: var(--dark);
}

.project-category ul .associated-category a {
  color: var(--green);
}

.project-category ul .associated-category a::after {
  content: "";
  display: block;
  height: 1px;
  width: 10px;
  background: var(--green);
  position: absolute;
  top: 18px;
  z-index: 0;
}

.project-category ul .other-category a {
  color: var(--grey);
}

.subtitle {
  margin: 0 0 0 0;
  color: var(--grey);
}

.info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 20%;
}

.info-container .content-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subject-content {
  -webkit-text-decoration: underline dotted 1px var(--green);
  text-decoration: underline dotted 1px var(--green);
  text-underline-offset: 8px;
}

.subject-text {
  font-weight: 500;
}

.subject-text-mission {
  font-size: 1rem;
  padding-top: 1rem;
}

.subject-text-mission a {
  color: var(--grey);
}

.mission {
  font-weight: 500;
}

.mission-container {
  display: flex;
  margin: 2rem 0;
}

.mission-container .description-container {
  margin: auto;
  width: 80%;
}

.single-home {
  width: 100%;
  display: block;
  background: var(--white);
  margin-top: 55px;
  margin-bottom: 1rem;
  padding: 0;
}

.single-home img {
  width: 100%;
  max-height: 70svh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.single-home-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.back {
  font-size: 0.9rem;
  color: var(--green);
}

.single-content {
  display: block;
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 0 20px;
}

.single-content h1 {
  color: var(--dark);
  font-size: clamp(30px, 5vw, 55px);
  font-family: "Poppins";
  font-weight: 200;
}

.single-content h2 {
  font-size: clamp(25px, 5vw, 40px);
  margin-bottom: 1rem;
}

.single-content h3 {
  margin: 1rem 0;
}

.single-content p {
  margin: 0.5rem 0;
  line-height: 1.7rem;
  font-size: 1rem;
  text-align: justify;
}

.single-author {
  font-style: italic;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.other-single {
  margin-top: 1rem;
  padding: 1rem 0 3rem 0;
  border-top: 1px solid #e2e2e2;
}

.other-single h4 {
  margin-bottom: 1rem;
}

.other-single-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 1rem;
}

.other-single-box {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.other-single-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.other-box-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.other-box-content h6 {
  font-size: 0.9rem;
  color: var(--dark);
}

.other-box-content span {
  color: var(--green);
}

.other-box-content a {
  color: var(--dark);
  padding: 8px 10px;
  font-size: 0.7rem;
  margin-top: 1px;
  border-radius: 0.5rem;
  transition: 0.2s ease-in-out;
}

.other-box-content p {
  margin-top: 10px;
  font-size: 0.8rem;
  line-height: 0;
  text-align: center;
  color: var(--green);
}

.ariane {
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.ariane a {
  color: var(--green);
}

.ariane a:hover {
  color: rgb(104, 31, 31);
}

.photo-gal {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2vmin;
  padding: 0 14px;
  margin-bottom: 2em;
}
.photo-gal::after {
  content: "";
  display: block;
  flex-grow: 10;
}

.single-box-photo {
  height: 300px;
  flex-grow: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.single-box-photo.active {
  opacity: 1;
  transform: translateY(0);
}

.single-box-photo:hover {
  filter: brightness(90%);
}

.photo-gal img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  width: unset;
}

/*##################*/
/*Category*/
/*##################*/
.others-category {
  width: 80%;
  margin: auto;
}

/*##################*/
/*lightbox*/
/*##################*/
.grid {
  display: flex;
  width: 100%;
  height: 500px;
}

.grid img {
  height: 250px;
  width: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  z-index: 10;
  animation: lightboxIn 0.3s;
}

.lightbox .lightbox-next,
.lightbox .lightbox-prev {
  border: none;
  background: url(images/arrow-light.svg) center center/16px 28px no-repeat;
  width: 16px;
  height: 100%;
  position: fixed;
  right: 15px;
  top: 0%;
  margin-top: -14px;
}

.lightbox .lightbox-prev {
  right: auto;
  left: 15px;
  transform: rotate(180deg);
}

.lightbox .lightbox-close {
  border: none;
  background: url(./images/close.svg) center center/100% 100% no-repeat;
  width: 30px;
  height: 30px;
  position: fixed;
  text-indent: -3000px;
  top: 120px;
  right: 9px;
  z-index: 12;
}

.lightbox button {
  opacity: 0.4;
  transition: 0.3s;
  text-indent: 1000px;
  cursor: pointer;
}

.lightbox button:hover {
  opacity: 1;
}

.lightbox .lightbox-container {
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.lightbox .lightbox-container img {
  max-width: 100%;
  height: auto;
  width: auto;
  animation: lightboxIn 0.3s;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*##################*/
/*About*/
/*##################*/
.page-home {
  text-align: center;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7rem 0 2rem 0;
}

.page-home h1 {
  font-size: 5rem;
  font-weight: 100;
}

.page-cat-link {
  margin-top: 2rem;
}

.page-cat-link a {
  color: var(--dark);
  position: relative;
}

.page-cat-link a:hover {
  color: var(--green);
}

.page-cat-link a::before {
  content: "";
  display: block;
  position: absolute;
  background: var(--dark);
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  transform-origin: left;
  transform: scaleX(0%);
  transition: transform 0.2s ease-out;
}

.page-cat-link a:hover::before {
  transform: scaleX(100%);
  background: var(--dark);
}

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

.archive-articles .container p {
  margin: 0rem 2rem;
}

.container-content {
  text-align: justify;
  padding: 2rem 0;
}

.container-content h3 {
  margin: 1rem 0;
  font-size: clamp(18px, 5vw, 25px);
}

.container-content p {
  margin-bottom: 0.5rem;
  line-height: 1.7rem;
}

.team h2 {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12rem;
}

.grey {
  background: #fcfcfc;
}

.team-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.team-box {
  width: 350px;
  padding: 2rem;
  box-shadow: 0 4px 14px hsla(355, 25%, 15%, 0.1);
  text-align: center;
  transition: 0.2s ease-in-out;
}

.team-box:hover {
  background: #ececec;
}

.team-box img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: 50%;
}

.team-box h3 {
  margin: 1rem 0;
}

/*##################*/
/*Contact*/
/*##################*/
.container-content form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  margin: auto;
}

.container-content form label {
  margin-bottom: 0.5rem;
}

.container-content form input,
.container-content form textarea {
  width: 100%;
  height: 50px;
  border-radius: 0.2rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e2e2;
}

.container-content form input:focus,
.container-content form textarea:focus {
  border-color: var(--green);
}

.container-content form textarea {
  height: 150px;
  resize: none;
  margin-bottom: 1rem;
}

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

.wpcf7-submit {
  display: flex;
  width: 20% !important;
  margin: auto !important;
  background-color: var(--white);
  justify-content: center;
  font-size: 1rem;
}
.wpcf7-submit:hover {
  background-color: var(--greenlight);
  color: var(--white);
}

/*##################*/
/*parteners*/
/*##################*/
.partners-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1000px;
  margin: auto;
  gap: 10px;
  margin-bottom: 5rem;
}

.partner-cat {
  text-align: center;
  color: var(--grey);
  font-size: 1rem;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.partner .partner-logo {
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner .partner-logo img {
  -o-object-fit: scale-down;
  object-fit: scale-down;
  transition: 0.3s ease-out;
}

.partner .partner-logo img:hover {
  transform: scale(1.1);
}

.partner a {
  color: var(--dark);
  font-size: 1.5rem;
}

.partner a:hover {
  color: var(--green);
}

/*###################*/
/* Call to action*/
/*###################*/

/*###################*/
/* FOOTER */
/*###################*/
.site-footer {
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
}

.site-footer .footer-legal {
  text-align: center;
  padding: 12px 20px 24px;
  font-size: 14px;
}

.footer-legal a {
  color: var(--white);
}

.footer-legal a:hover {
  color: var(--greenlight);
}

.footer-col h3 {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 700;
}

.footer-logo svg {
  display: block;
}
.footer-address {
  margin: 14px 0 18px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
}
.footer-social i {
  font-size: 18px;
}

.footer-col.links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col.links li {
  margin: 10px 0;
}
.footer-col a {
  text-decoration: none;
  color: var(--white);
}
.footer-col a:hover {
  color: var(--greenlight);
}

.newsletter p {
  margin: 0 0 10px;
}
.newsletter-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}
.newsletter-form input[type="email"] {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.newsletter-form .btn {
  margin-top: 12px;
  padding: 10px 16px;
  border: 1px solid #111;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.newsletter-form .btn:hover {
  transform: translateY(-1px);
}
.newsletter-form .form-msg {
  min-height: 1.2em;
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-col {
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
  }
  .footer-col:first-child {
    border-top: none;
    padding-top: 0;
  }
}
.grecaptcha-badge {
  visibility: hidden !important;
}

/*##################*/
/*Footer*/
/*##################*/

footer .icon-social {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

footer .icon-social a {
  padding-left: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transition: 0.2s ease-in-out;
}

footer .icon-social a:hover {
  background: var(--green);
}

/*###########Footer Newsletter ############*/

/* Container général */
.sib_signup_form {
  max-width: 400px;
  margin: 0 auto;
  font-family: inherit;
  font-size: 16px;
  color: var(--white);
}

.sib_loader img {
  width: 20px !important;
}

/* Champs */
.sib_signup_form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.sib_signup_form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sib_signup_form input[type="email"]:focus {
  border-color: #111;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Bouton */
.sib_signup_form input[type="submit"].sib-default-btn {
  margin-top: 12px;
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 10px 20px;
  border: solid 1px #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.25s, transform 0.1s;
}

.sib_signup_form input[type="submit"].sib-default-btn:hover {
  background: var(--green);
}

/* Messages d'erreur / succès */
.sib_signup_form .sib_msg_disp {
  font-size: 14px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  display: none;
}

.sib_signup_form .sib_msg_disp.success {
  display: block;
  background: #e6f9ed;
  color: #106b2f;
  border: 1px solid #b5e4c2;
}

.sib_signup_form .sib_msg_disp.error {
  display: block;
  background: #fceaea;
  color: #8a1c1c;
  border: 1px solid #e5bcbc;
}

/* Responsive */
@media (max-width: 500px) {
  .sib_signup_form {
    width: 100%;
  }

  .sib_signup_form input[type="submit"].sib-default-btn {
    width: 100%;
    text-align: center;
  }
}

/*##################*/
/*Breakpoints*/
/*##################*/
@media screen and (min-width: 900px) {
  .menu {
    display: flex;
    align-items: center;
  }
  .menu .chevron-nav {
    font-size: 0.8rem;
    transform: translateY(2px);
  }
  .menu .submenu-chevron {
    position: absolute;
    margin-left: 5px;
    top: 2px;
    font-size: 1rem;
    transition: transform 0.2s ease-out;
    right: -15px;
  }
  .menu .menu-item-has-children {
    position: relative;
  }
  .menu .menu-item-has-children > a::after {
    content: ">";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    position: absolute;
    top: -2px;
    font-family: "Poppins", sans-serif;
  }
  .menu .menu-item-has-children:hover > a::after {
    transform: rotate(90deg);
  }
  .menu .sub-menu {
    z-index: 1000;
    position: absolute;
    display: none;
    background: var(--white);
    padding: 2rem 3rem 1rem 1rem;
    width: -moz-max-content;
    width: max-content;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    box-shadow: 3px 2px 15px 0px rgba(128, 128, 128, 0.143);
  }
  .menu .sub-menu:hover {
    display: flex;
    flex-direction: column;
    opacity: 1;
    top: 21px;
  }
  .menu .sub-menu a {
    margin-top: 10px;
    color: var(--grey);
  }
  .menu ul {
    display: flex;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
  .menu ul li {
    padding-bottom: 10px;
  }

  .menu a {
    position: relative;
    color: var(--dark);
  }
  .menu a:hover {
    color: var(--green);
  }
  .menu a::before {
    content: "";
    display: block;
    position: absolute;
    background: var(--dark);
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    transform-origin: left;
    transform: scaleX(0%);
    transition: transform 0.2s ease-out;
  }
  .menu a:hover::before {
    transform: scaleX(100%);
    background: var(--dark);
  }
  .menu a:hover + .sub-menu {
    display: flex;
    flex-direction: column;
    opacity: 1;
    top: 21px;
  }
  .menu a:hover .submenu-chevron {
    transform: rotate(90deg);
  }
  .menu a.active {
    color: var(--green);
  }
  .menu a.active::before {
    transform: scaleX(100%);
    background: var(--dark);
  }
  .post-box {
    position: relative;
    width: 350px;
    height: 250px;
    opacity: 1;
  }
  .post-box h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    opacity: 0;
  }
  .post-box h3 span {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: var(--green);
  }
  .post-box:hover::before {
    width: 90%;
    height: 80%;
    opacity: 0.99;
  }
  .post-box:hover h3 {
    opacity: 1;
  }
  .post-box::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 80%;
    background-color: rgb(255, 254, 254);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.3s ease-out, height 0.3s ease-out, opacity 0.3s ease-in;
  }
  .post-box-atelier {
    position: relative;
    width: 350px;
    height: 250px;
    opacity: 1;
  }
  .post-box-atelier h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    opacity: 1;
  }
  .post-box-atelier h3 span {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: var(--green);
  }
  .post-box-atelier:hover::before {
    width: 90%;
    height: 30%;
    opacity: 0.99;
  }
  .post-box-atelier:hover h3 {
    opacity: 1;
  }
  .post-box-atelier::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    background-color: rgb(255, 254, 254);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: width 0.3s ease-out, height 0.3s ease-out, opacity 0.3s ease-in;
  }
  .other-single-box:hover .other-box-content {
    top: 40%;
  }
  .last-container .last-single-home .last-single-content {
    top: 100%;
  }
  .last-container .last-single-home:hover .last-single-content {
    top: 65%;
  }
}
@media screen and (max-width: 1209px) {
  .about {
    grid-template-columns: 1fr;
  }
  .last-container {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1000px) {
  .main-title-box {
    width: 450px;
    height: 450px;
  }
  .post-filter {
    flex-direction: row;
    gap: 1rem;
    line-height: 1rem;
    width: 90%;
  }
  .page-info-container1 .content-text h2,
  .page-info-container2 .content-text h2,
  .page-info-container3 .content-text h2 {
    font-size: 8vw;
    line-height: normal;
    text-align: center;
  }
  .page-info-container1 .content-photo,
  .page-info-container2 .content-photo,
  .page-info-container3 .content-photo {
    justify-content: center;
  }
  .page-info-container1,
  .page-info-container3 {
    display: flex;
    flex-direction: column-reverse;
  }
  .page-info-container2 {
    display: flex;
    flex-direction: column;
  }
  .home-last-container .last-single-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 900px) {
  .main-title-box {
    width: 300px;
    height: 300px;
  }
  .main-title-box h1 {
    font-size: 1.5rem;
  }
  #btn-burger {
    display: block;
  }
  .menu {
    align-items: flex-start;
    position: absolute;
    top: 100%;
    right: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background: var(--white);
    row-gap: 1.5rem;
    padding: 2rem;
    box-shadow: -4px 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease-in-out;
  }
  .menu ul {
    flex-direction: column;
    font-size: 2rem;
  }
  .menu ul li {
    margin-top: 10px;
  }
  .menu ul a {
    color: var(--dark);
  }
  .menu ul a:active {
    color: var(--green);
  }
  .menu .menu-item-has-children {
    position: relative;
  }
  .menu .menu-item-has-children > a::after {
    content: ">";
    margin-left: 7px;
    transition: transform 0.3s ease;
    position: absolute;
    top: -2px;
    font-family: "Poppins", sans-serif;
  }
  .menu .menu-item-has-children.active > a::after {
    transform: rotate(90deg);
  }
  .menu .sub-menu {
    position: static;
  }
  .menu .sub-menu .active {
    display: block;
  }
  .menu .sub-menu li {
    font-size: 20px;
  }
  .menu.active {
    right: 0;
  }
  .icones-navigation {
    display: block;
  }
  .info-menu-mobile {
    display: block;
    margin-top: 2rem;
  }
  .info-menu-mobile .blog-name h3 {
    font-size: 1.8rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  .last-container .last-single-home .last-single-content {
    top: 65%;
  }
  .post-box {
    position: relative;
    width: 350px;
    height: auto;
    opacity: 1;
    margin-bottom: 10px;
  }
  .post-box .post-title {
    width: 100%;
    position: absolute;
    bottom: 6px;
    background: white;
    padding: 10px 10px;
    opacity: 0.8;
  }
  .post-box h3 {
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    opacity: 0;
  }
  .post-box h3 span {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: var(--green);
  }
  .post-box::before {
    width: 90%;
    height: 80%;
    opacity: 0;
  }
  .post-box h3 {
    opacity: 1;
  }
  .post-box::before {
    width: 100%;
    height: auto;
    background-color: rgb(255, 254, 254);
  }
  .post-box {
    position: relative;
    width: 350px;
    height: auto;
    opacity: 1;
    margin-bottom: 10px;
  }
  .post-box .post-title {
    width: 100%;
    position: absolute;
    bottom: 6px;
    background: white;
    padding: 10px 10px;
    opacity: 0.8;
  }
  .post-box h3 {
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    opacity: 0;
  }
  .post-box h3 span {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: var(--green);
  }
  .post-box::before {
    width: 90%;
    height: 80%;
    opacity: 0;
  }
  .post-box h3 {
    opacity: 1;
  }
  .post-box::before {
    width: 100%;
    height: auto;
    background-color: rgb(255, 254, 254);
  }
  .post-box-atelier {
    position: relative;
    width: 350px;
    height: auto;
    opacity: 1;
    margin-bottom: 10px;
  }
  .post-box-atelier .post-title {
    width: 100%;
    position: absolute;
    bottom: 4px;
    background: white;
    padding: 10px 10px;
    opacity: 0.8;
  }
  .post-box-atelier h3 {
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    opacity: 0;
  }
  .post-box-atelier h3 span {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 1rem;
    color: var(--green);
  }
  .post-box-atelier::before {
    width: 90%;
    height: 80%;
    opacity: 0;
  }
  .post-box-atelier h3 {
    opacity: 1;
  }
  .post-box-atelier::before {
    width: 100%;
    height: auto;
    background-color: rgb(255, 254, 254);
  }
  .other-single-box {
    height: 120px;
  }
  .other-box-content {
    align-items: flex-start;
    height: 45px;
    top: 75px;
  }
  .other-box-content h6 {
    font-size: 0.5rem;
    text-align: left;
  }
  .other-box-content h6 span {
    color: var(--green);
  }
  .other-box-content a {
    padding: 5px 5px;
  }
  .last-project {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  .home-last-container {
    display: flex;
    flex-direction: column;
    background: var(--dark);
    padding: 3rem 2rem;
    color: var(--white);
  }
  .home-last-container h2 {
    position: relative;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 100;
  }
  .home-last-container h2::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: var(--white);
    left: 0;
    top: 73px;
  }
  footer .footer-box {
    margin: 48px 0rem;
  }
}
@media screen and (max-width: 780px) {
  #home {
    background-attachment: scroll;
  }
  .navigation-principale {
    padding: 1rem 0.8rem;
  }
  .page-info-container1 .container-content .grey,
  .page-info-container2 .container-content .grey,
  .page-info-container3 .container-content .grey {
    flex-direction: column-reverse;
  }
  .page-info-container1 .content-text h2,
  .page-info-container2 .content-text h2,
  .page-info-container3 .content-text h2 {
    font-size: 7vw;
    line-height: normal;
    text-align: center;
  }
  .page-info-container1,
  .page-info-container3 {
    display: flex;
    flex-direction: column-reverse;
  }
  .page-info-container2 {
    display: flex;
    flex-direction: column;
  }
  .about-subtitle {
    font-weight: 200;
    font-size: 1rem;
  }

  .content-txt-header {
    width: 80%;
    margin: auto;
  }

  .other-single-box {
    height: 120px;
  }
  .page-home {
    padding-top: 7rem;
  }
  .page-home h1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  .page-realisations {
    padding-top: 7rem;
  }
  .page-realisations h1 {
    font-size: 3rem;
  }
  .home-info-container:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  .home-info-container {
    display: flex;
    flex-direction: column;
  }
  .home-info-container .info-black,
  .home-info-container .info-white {
    width: 100%;
    padding: 3rem 2rem;
  }
  .single-home {
    margin-top: 3rem;
  }
  .single-home img {
    height: 400px;
  }
  .about-subtitle {
    width: 100%;
  }
  .photo-gal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .partners-container {
    grid-template-columns: 1fr;
  }
  .mission-container {
    flex-direction: column;
  }
  .mission-container .description-container {
    margin: 0;
    width: 100%;
  }
  .info-container {
    flex-direction: row;
    margin-bottom: 1rem;
    width: 100%;
  }
  .single-home img {
    height: 300px;
  }
  .single-content {
    margin-top: 1rem;
  }
  .icon-social {
    justify-content: center;
  }
  .blockquote {
    font-size: 1.2em;
    width: 80%;
  }
  .bloc-info {
    flex-direction: column;
  }
  .bloc-info-bis {
    flex-direction: column-reverse;
  }
  .info-left,
  .info-right {
    width: 100%;
    padding: 0;
  }
  .info-left .bloc-info-text,
  .info-right .bloc-info-text {
    padding: 2rem;
  }
  .footer-box-name {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    max-width: 300px;
  }
  .footer-box-name a {
    padding-left: 0;
    position: relative;
    color: var(--white);
    font-weight: 200;
    font-size: 13px;
  }
  .page-subtitle {
    width: 100%;
  }
  .alter-container {
    flex-direction: column;
  }
  .container-content form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin: auto;
  }
  .wpcf7-submit {
    width: 100% !important;
  }
}
@media screen and (max-width: 700px) {
  .atiz-title {
    width: 75%;
  }
  .hero-push-link {
    visibility: hidden;
  }
  .main-title-box p {
    letter-spacing: 4px;
  }
  .main-title-box .box-content {
    margin: 50px 10px 0px 10px;
  }
  .main-title-box h2 {
    font-size: 1rem;
    text-align: center;
    font-weight: 100;
    letter-spacing: 4px;
    margin: 1rem 0;
  }
  .main-title-box p {
    font-size: 0.7rem;
  }
  .home-info-container:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  .home-info-container h2,
  .demarche-texte h2,
  .alter-texte h2 {
    font-size: 2rem;
  }
  .home-info-container h2::after,
  .demarche-texte h2::after,
  .alter-texte h2::after {
    top: 50px;
  }
  .home-contact-form {
    width: 70%;
    height: 100%;
    padding: 1rem !important;
  }

  .home-contact-container .title {
    font-size: 2.5rem;
  }
  footer {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }
  footer p {
    text-align: center;
  }
  footer .main-footer {
    flex-direction: column;
  }
  footer .footer-mention {
    flex-direction: column;
    align-items: center;
    height: 47px;
    justify-content: space-between;
  }
  .page-info-container1 {
    width: 100%;
    margin-top: 0;
  }
  .page-info-container1 .content-text h2 {
    line-height: normal;
  }
  .page-info-container1 .content-text p {
    font-size: 1rem;
  }
  .page-info-container2 {
    width: 100%;
    margin-top: 0;
  }
  .page-info-container2 .content-text h2 {
    line-height: normal;
  }
  .page-info-container2 .content-text p {
    font-size: 1rem;
  }
  .page-info-container3 {
    width: 100%;
    margin-top: 0;
  }
  .page-info-container3 .content-text h2 {
    line-height: normal;
  }
  .page-info-container3 .content-text p {
    font-size: 1rem;
  }
  .footer-column {
    align-items: center;
    text-align: center;
  }
} /*# sourceMappingURL=style.css.map */
