@charset "UTF-8";
/********************** SOMMAIRE ********************/
/* REMONTÉE DES ARTICLES                ligne : 9   */
/* PAGINATION                           ligne : 70  */
/* MEDIA QUERIES                        ligne : 110 */
/* REMONTÉE DES ARTICLES */
.content_archive {
  margin: auto;
  width: 95%;
  max-width: 1500px;
}
.content_archive > .remontee_archive {
  display: flex;
  align-items: center;
  gap: 4em 2em;
  flex-wrap: wrap;
  margin-bottom: 6em;
}
.content_archive > .remontee_archive > a {
  flex: 0 0 calc(33.33% - 1.4em);
  max-width: calc(33.33% - 1.4em);
}
.content_archive > .remontee_archive > a > div:first-child {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
}
.content_archive > .remontee_archive > a > div:last-child {
  background-color: var(--blanc);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5em 0.5em 3em;
  max-width: 400px;
  margin: -4em auto 0;
  position: relative;
}
.content_archive > .remontee_archive > a > div:last-child > h3 {
  text-transform: unset;
  color: var(--noir);
  text-align: center;
  margin: 0;
}
.content_archive > .remontee_archive > a > div:last-child > p:not(.btn) {
  text-align: center;
  text-transform: lowercase;
  margin: 0.5em 0 0;
}
.content_archive > .remontee_archive > a > div:last-child > .btn {
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  background-color: var(--blanc);
  margin: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.content_archive > .remontee_archive > a > div:last-child > .btn:hover {
  background-color: var(--blanc);
}

/* PAGINATION */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6em;
  line-height: 1;
}
.pagination > p {
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6em;
  color: var(--orange);
}
.pagination > .current {
  font-size: 2.5em;
  border-bottom: 5px solid var(--orange);
  font-weight: 600;
  color: var(--orange);
}
.pagination > a {
  display: block;
  font-weight: 600;
  font-size: 1.6em;
  color: var(--orange);
  transition: all 0.3s;
}
.pagination > a:hover {
  font-size: 2.5em;
  font-weight: 700;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .content_archive {
    max-width: 1140px;
  }
  .content_archive > .remontee_archive {
    gap: 4em 1em;
  }
  .content_archive > .remontee_archive > a {
    flex: 0 0 calc(33.33% - 0.7em);
    max-width: calc(33.33% - 0.7em);
  }
  .content_archive > .remontee_archive > a > div:last-child {
    max-width: 300px;
  }
  .content_archive > .remontee_archive > a > div:last-child > h3 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 1200px) {
  .content_archive {
    max-width: 960px;
  }
  .content_archive > .remontee_archive > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .content_archive > .remontee_archive > a > div:last-child {
    max-width: 400px;
  }
  .content_archive > .remontee_archive > a > div:last-child > h3 {
    font-size: var(--wp--preset--font-size--large);
  }
}
@media screen and (max-width: 990px) {
  .content_archive {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .content_archive {
    max-width: 540px;
  }
  .content_archive > .remontee_archive > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content_archive > .remontee_archive > a > div:last-child {
    width: 95%;
  }
  .content_archive > .remontee_archive > a > div:last-child .btn {
    bottom: -20px;
  }
}
/********************* SOMMAIRE *********************/
/* SCIENCE OF MOTION                    ligne :  12 */
/* DOMAINES                             ligne :  83 */
/* WHO WE ARE                           ligne : 142 */
/* WHAT WE DO                           ligne : 280 */
/* CONTACT                              ligne : 361 */
/* MEDIA QUERIES                        ligne : 397 */
/* SCIENCE OF MOTION */
.science {
  margin: 2em 0 -85px;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
.science > .back {
  background: url("../img/background_movefusion.webp") lightgray 50%/cover no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
  width: 100%;
  height: 1150px;
  position: absolute;
  left: 0;
  bottom: 85px;
}
.science > .back:before {
  content: "Europe";
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
  letter-spacing: 60px;
  font-size: 25em;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.science > div:last-child {
  max-width: 700px;
  margin: auto;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0 8em 9em;
  position: relative;
}
.science > div:last-child > h2 {
  margin: 0 0 0.4em;
  font-weight: 200;
  font-size: 6em;
  text-align: center;
  letter-spacing: 5px;
  line-height: 100px;
}
.science > div:last-child > h2 > span {
  display: block;
}
.science > div:last-child > h2 > span:first-child {
  font-size: 0.5em;
  letter-spacing: 2px;
  line-height: 60px;
}
.science > div:last-child > h2 > span:last-child {
  font-weight: 300;
}
.science > div:last-child p {
  font-weight: 200;
  text-align: justify;
}

/* DOMAINES */
.domaines {
  position: sticky;
  top: 0;
}
.domaines .paginator {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3em;
  position: absolute;
  left: 0;
  top: 213px;
  z-index: 1;
}
.domaines .paginator > div {
  cursor: pointer;
  transition: all 0.3s;
}
.domaines .paginator > div:first-child {
  margin-left: 0;
}
.domaines .paginator > div:first-child:hover {
  margin-left: -1em;
}
.domaines .paginator > div:last-child {
  margin-right: 0;
}
.domaines .paginator > div:last-child:hover {
  margin-right: -1em;
}
.domaines .slick .domaine {
  height: 100vh;
  padding: 8em;
}
.domaines .slick .domaine > h2 {
  font-size: 14em;
  text-align: center;
  color: var(--blanc);
  margin: 0;
  mix-blend-mode: difference;
}
.domaines .slick .domaine > div {
  max-width: 600px;
  margin-top: 10em;
}
.domaines .slick .domaine > div > div {
  margin-bottom: 3em;
}
.domaines .slick .domaine > div p {
  color: var(--blanc);
}

/* WHO WE ARE */
.are {
  position: relative;
}
.are .back {
  width: 100%;
  height: 1200px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--blanc) 100%);
  position: relative;
  bottom: -1px;
}
.are .back:after {
  content: "";
  width: 2px;
  height: 900px;
  background-color: var(--orange);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.are .who {
  background-color: var(--blanc);
  padding-top: 1em;
}
.are .who > div {
  max-width: 1100px;
  padding: 0 1em;
  margin: auto;
  text-align: center;
}
.are .who > div > h2 {
  margin: 0;
  font-size: 6em;
}
.are .who > div > div:first-of-type {
  max-width: 700px;
  margin: 3em auto;
}
.are .who > div > div:first-of-type > h3 {
  color: var(--noir);
}
.are .who > div > div:last-child {
  height: 675px;
  border-radius: 50px;
  overflow: hidden;
}
.are .who > div > div:last-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.are .logos {
  background-color: #F6F6F6;
  margin-top: -8em;
  padding: 12em 0 8em;
}
.are .logos > div {
  max-width: 1100px;
  margin: auto;
}
.are .logos > div > a {
  display: block;
  margin: auto;
  width: 325px;
  transition: all 0.3s;
}
.are .logos > div > a:hover {
  opacity: 0.5;
}
.are .logos > div > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1em;
}
.are .logos > div > div > a {
  display: block;
  width: 250px;
  position: relative;
  transition: all 0.3s;
}
.are .logos > div > div > a:hover {
  opacity: 0.5;
}
.are .logos > div > div > a:not(:first-child):not(:last-child):after {
  content: "";
  width: 1px;
  height: 60px;
  background-color: var(--noir);
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}
.are .logos > div > div > a:first-child:before {
  content: "";
  width: 250px;
  height: 1px;
  background-color: var(--noir);
  position: absolute;
  top: -105px;
  left: 125px;
}
.are .logos > div > div > a:last-child:before {
  content: "";
  width: 250px;
  height: 1px;
  background-color: var(--noir);
  position: absolute;
  top: -105px;
  right: 125px;
}
.are .logos > div > div > a:first-child:after, .are .logos > div > div > a:last-child:after {
  content: "";
  width: 1px;
  height: 100px;
  background-color: var(--noir);
  position: absolute;
  top: -105px;
  right: 50%;
  transform: translateX(50%);
}

/* WHAT WE DO */
.do {
  background-color: var(--blanc);
  padding: 14em 0 12em;
  position: relative;
}
.do:before {
  content: "";
  width: 2px;
  height: 290px;
  background-color: var(--orange);
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.do > div {
  max-width: 1100px;
  padding: 0 1em;
  margin: auto;
}
.do > div > h2 {
  margin: 0;
  font-size: 6em;
  text-align: center;
}
.do > div > div:first-of-type {
  max-width: 700px;
  margin: 3em auto;
  text-align: center;
}
.do > div > div:first-of-type > h3 {
  color: var(--noir);
}
.do > div > .pages {
  display: flex;
  align-items: stretch;
  gap: 1em;
  flex-wrap: wrap;
}
.do > div > .pages > a {
  display: block;
  flex: 0 0 calc(33.33% - 0.7em);
  max-width: calc(33.33% - 0.7em);
  height: 700px;
  border-radius: 40px;
  position: relative;
}
.do > div > .pages > a > div {
  width: 100%;
  padding: 0 0.8em 2em 2em;
  position: absolute;
  bottom: 0;
  left: 0;
}
.do > div > .pages > a > div > h4 {
  width: unset;
  max-width: unset;
  margin: 0 0 5px;
  padding: 0;
  background-color: unset;
  font-size: 2em;
}
.do > div > .pages > a > div > img {
  width: 90px;
  position: relative;
  left: 0;
  transition: all 0.3s;
}
.do > div > .pages > a:hover > div > img {
  left: calc(100% - 90px);
}

/* CONTACT */
.contact {
  background-color: #F6F6F6;
  padding: 10em 0;
  position: relative;
}
.contact:before {
  content: "";
  width: 2px;
  height: 290px;
  background-color: var(--orange);
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
}
.contact > div {
  max-width: 1100px;
  padding: 0 1em;
  margin: auto;
  text-align: center;
}
.contact > div > h2 {
  margin: 0;
  font-size: 6em;
  text-align: center;
}
.contact > div > div {
  max-width: 500px;
  margin: 3em auto;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  .science > .back:before {
    font-size: 20em;
    letter-spacing: 45px;
  }
  .domaines .paginator {
    padding: 0 2em;
  }
  .domaines .paginator > div > img {
    width: 100px;
  }
}
@media screen and (max-width: 1440px) {
  .science > .back:before {
    font-size: 18em;
    letter-spacing: 15px;
  }
  .domaines .slick .domaine {
    padding: 10em 4em 2em;
  }
  .domaines .slick .domaine > h2 {
    font-size: 10em;
  }
  .domaines .slick .domaine > div {
    margin-top: 6em;
  }
}
@media screen and (max-width: 1200px) {
  .science > .back {
    height: 1100px;
  }
  .science > .back:before {
    font-size: 15em;
  }
  .science > div:last-child > h2 {
    font-size: 5em;
    line-height: 80px;
  }
  .domaines .paginator {
    padding: 0 1em;
  }
  .domaines .paginator > div > img {
    width: 70px;
  }
  .domaines .slick .domaine > h2 {
    font-size: 10em;
  }
  .are .who > div > h2, .do > div > h2, .contact > div > h2 {
    font-size: 5em;
  }
  .are .who > div > div:last-child {
    height: 575px;
  }
  .are .logos > div {
    max-width: 900px;
  }
  .are .logos > div > div > a:first-child:before, .are .logos > div > div > a:last-child:before {
    width: 150px;
  }
  .do > div > .pages > a {
    height: 500px;
  }
}
@media screen and (max-width: 990px) {
  .science > .back:before {
    font-size: 12em;
    letter-spacing: 10px;
  }
  .science > div:last-child {
    max-width: calc(700px - 3em);
    padding: 0 5em 9em;
  }
  .domaines .paginator {
    padding: 0 2em;
    width: auto;
    gap: 1em;
    top: 110px;
  }
  .domaines .paginator > div:first-child {
    left: 0;
  }
  .domaines .paginator > div:first-child:hover {
    margin-left: 0;
    left: -1em;
  }
  .domaines .paginator > div:last-child {
    right: 0;
  }
  .domaines .paginator > div:last-child:hover {
    margin-right: 0;
    right: -1em;
  }
  .domaines .slick .domaine {
    padding: 10em 2em 2em;
  }
  .domaines .slick .domaine > h2 {
    font-size: 8em;
  }
  .are .who > div > div:last-child {
    height: 475px;
  }
  .are .logos > div {
    max-width: 750px;
  }
  .are .logos > div > a {
    width: 250px;
  }
  .are .logos > div > div > a {
    width: 200px;
  }
  .are .logos > div > div > a:first-child:after, .are .logos > div > div > a:last-child:after {
    height: 80px;
    top: -90px;
  }
  .are .logos > div > div > a:first-child:before {
    top: -90px;
    left: 100px;
  }
  .are .logos > div > div > a:last-child:before {
    top: -90px;
    right: 100px;
  }
  .do > div > .pages > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .do > div > .pages > a:last-child {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .science {
    margin-bottom: -60px;
  }
  .science > .back {
    height: 935px;
  }
  .science > .back:before {
    font-size: 8em;
  }
  .science > div:last-child {
    max-width: 500px;
    padding: 0 3em 6em;
  }
  .domaines .slick .domaine > h2 {
    font-size: 6em;
  }
  .are .who > div > h2, .do > div > h2, .contact > div > h2 {
    font-size: 4em;
  }
  .are .who > div > div:last-child {
    height: 350px;
  }
  .are .logos > div > div {
    justify-content: center;
    flex-wrap: wrap;
  }
  .are .logos > div > div > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .are .logos > div > div > a:not(:first-child):not(:last-child):after, .are .logos > div > div > a:last-child:before, .are .logos > div > div > a:first-child:before, .are .logos > div > div > a:last-child:after {
    display: none;
  }
  .are .logos > div > div > a:first-child:after {
    height: 60px;
    top: -60px;
  }
  .are .logos > div > div > a > img {
    width: 250px;
    display: block;
    margin: auto;
  }
  .do > div > .pages > a {
    height: 400px;
  }
  .do > div > .pages > a > div {
    padding-left: 1em;
  }
  .do > div > .pages > a > div > h4 {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 576px) {
  .science > .back:before {
    font-size: 12em;
    letter-spacing: 15px;
  }
  .science > div:last-child {
    max-width: 400px;
    padding: 0 1em 6em;
  }
  .science > div:last-child > h2 {
    font-size: 4em;
    line-height: 55px;
  }
  .domaines .slick .domaine {
    padding: 10em 1em 2em;
  }
  .domaines .slick .domaine > h2 {
    font-size: 4em;
  }
  .are .who > div > h2, .do > div > h2, .contact > div > h2 {
    font-size: 3em;
  }
  .are .who > div > div:last-child {
    height: 275px;
  }
  .do > div > .pages > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .science > .back {
    height: 920px;
  }
  .science > .back:before {
    font-size: 5em;
  }
  .science > div:last-child > h2 {
    font-size: 3em;
    line-height: 45px;
  }
  .domaines .paginator {
    top: 45px;
  }
  .domaines .slick .domaine {
    padding-top: 7em;
  }
  .domaines .slick .domaine > div {
    margin-top: 3em;
  }
}
/********************* SOMMAIRE *********************/
/* PAGE PAR DÉFAUT                      ligne :  16 */
/* BAS DE PAGE                          ligne :  83 */
/* SINGLE PAR DÉFAUT                    ligne :  83 */
/* PAGE CONTACT                         ligne :  93 */
/* PAGE 404                             ligne : 134 */
/* BLOCKS                               ligne : 142 */
/* IMAGES AVEC TEXTE À DROITE       ligne : 143 */
/* IMAGE AVEC LE TEXTE À GAUCHE     ligne : 191 */
/* TROIS IMAGES & UN TEXTE          ligne : 222 */
/* BIG ZONE                         ligne : 261 */
/* BIG ZONE & TEXTE GAUCHE          ligne : 264 */
/* MEDIA QUERIES                        ligne : 264 */
/* PAGE PAR DÉFAUT */
.wp-block-button.is-style-outline > .wp-block-button__link {
  text-transform: lowercase;
  padding: 1em 110px 1em 1em;
  position: relative;
}
.wp-block-button.is-style-outline > .wp-block-button__link:after {
  content: url("../img/feche_orange.webp");
  position: absolute;
  right: 10px;
  top: 54%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.wp-block-button.is-style-outline > .wp-block-button__link:hover:after {
  right: 2px;
}

.wp-block-button.is-style-fill > .wp-block-button__link {
  transition: all 0.3s;
}
.wp-block-button.is-style-fill > .wp-block-button__link:hover {
  color: var(--orange);
  background-color: transparent;
}

.content blockquote.wp-block-quote {
  width: 95%;
  max-width: 850px;
  margin: 4em auto;
  padding: 1.5em 2em 1.5em 5em;
  position: relative;
}
.content blockquote.wp-block-quote:after {
  content: "“";
  color: var(--orange);
  font-family: auto;
  font-size: 5em;
  font-weight: 600;
  position: absolute;
  top: -35px;
  left: 15px;
}
.content blockquote.wp-block-quote > p {
  font-weight: 200;
  font-style: italic;
  line-height: 25px;
  font-size: 1em;
}
.content blockquote.wp-block-quote > p:last-child {
  margin-bottom: 0;
}

.wp-block-cover {
  margin: 4em 0;
}

.wp-block-image .aligncenter, .wp-block-image .alignleft, .wp-block-image .alignright, .wp-block-image.aligncenter, .wp-block-image.alignleft, .wp-block-image.alignright {
  display: block;
}

.wp-block-embed.is-provider-youtube iframe, .wp-block-embed.is-provider-dailymotion iframe, .wp-block-embed.is-provider-vimeo iframe {
  width: 100%;
  height: unset;
  aspect-ratio: 16/9;
}

.content > h2, .content > h3, .content > h4, .content > h5, .content > h6, .content > p, .content > .wp-block-columns, .content > .wp-block-gallery {
  max-width: 1320px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

/* BAS DE PAGE */
.page .content_page .contact:after {
  content: "";
  width: 2px;
  height: 250px;
  background-color: var(--orange);
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.page .content_page .domaines_page {
  margin-top: 8em;
}
.page .content_page .domaines_page > div:first-child {
  border-radius: 20px;
  background: var(--blanc);
  box-shadow: 0 40px 60px 0 rgba(157, 60, 0, 0.25);
  text-align: center;
  padding: 3em 1em;
  width: 95%;
  max-width: 1100px;
  margin: 0 auto -5em;
  position: relative;
  z-index: 1;
}
.page .content_page .domaines_page > div:first-child > h2 {
  font-size: 4.5em;
  margin: 0;
}

/* SINGLE PAR DÉFAUT */
.single .contact {
  margin-top: 12em;
}

/* PAGE CONTACT */
.contactP {
  display: flex;
  align-items: stretch;
}
.contactP > iframe {
  flex: 1;
  height: 450px;
  border: none;
}
.contactP > div {
  flex: 0 0 1200px;
  max-width: 1200px;
  background-color: var(--orange);
  color: var(--blanc);
  padding: 5em 2em 5em 8em;
}
.contactP > div > p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--blanc);
  font-size: 1.6em;
  margin-bottom: 1.2em;
}
.contactP > div > p a {
  color: var(--blanc);
}
.contactP > div > p a:after {
  background-color: var(--blanc);
}
.contactP > div > p i {
  font-size: 1.5em;
  margin-top: -4px;
}

/* PAGE 404 */
section.content_404 {
  margin: 4em auto;
}
section.content_404 p {
  margin-bottom: 3em;
}

/* BLOCKS */
/* IMAGES AVEC TEXTE À DROITE */
.image-texte-droite > div {
  display: flex;
  align-items: stretch;
  min-height: 800px;
}
.image-texte-droite > div > div:first-child {
  flex: 1;
}
.image-texte-droite > div > div:last-child {
  flex: 0 0 800px;
  max-width: 800px;
  position: relative;
}
.image-texte-droite > div > div:last-child > div {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), var(--noir));
  position: absolute;
  top: 0;
  left: 0;
}
.image-texte-droite > div > div:last-child > div > div {
  padding: 0 10em 6em 5em;
  position: absolute;
  bottom: 0;
}
.image-texte-droite > div > div:last-child > div > div > h2 {
  margin-top: 0;
}
.image-texte-droite > div > div:last-child > div > div p {
  color: var(--blanc);
}
.image-texte-droite > div > div:last-child > div > div p:last-child {
  margin-bottom: 0;
}
.image-texte-droite > div > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* IMAGE AVEC LE TEXTE À GAUCHE */
.image-texte-gauche {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 1050px;
}
.image-texte-gauche > div {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 10.02%, var(--blanc) 79.37%);
  position: relative;
}
.image-texte-gauche > div > div {
  max-width: 900px;
  padding: 0 1em 5em 9em;
  position: absolute;
  left: 0;
  bottom: 0;
}
.image-texte-gauche > div > div > h2 {
  margin: 0;
  font-size: 6em;
}
.image-texte-gauche > div > div > h3 {
  color: var(--noir);
}
.image-texte-gauche > div > div > div {
  margin-bottom: 3em;
}

/* TROIS IMAGES & UN TEXTE */
.trois-images {
  height: 600px;
  position: relative;
}
.trois-images > div:first-child {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
.trois-images > div:first-child > img {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.trois-images > div:last-child {
  width: 100%;
  background-color: rgba(255, 100, 5, 0.8);
  background-blend-mode: screen;
  padding: 2em 1em;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.trois-images > div:last-child > p {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 4em;
}

/* BIG ZONE */
.big-zone > div:first-child {
  margin-bottom: 5em;
  position: relative;
}
.big-zone > div:first-child > div:first-child {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 815px;
}
.big-zone > div:first-child > div:last-child {
  width: 90%;
  max-width: 875px;
  border-radius: 40px;
  padding: 4em 5em 5em;
  background-color: var(--blanc);
  box-shadow: 0 40px 60px 0 rgba(157, 60, 0, 0.25);
  position: absolute;
  bottom: -28em;
  right: 150px;
  z-index: 1;
}
.big-zone > div:first-child > div:last-child > div {
  margin-bottom: 3em;
}
.big-zone > div:last-child {
  max-width: 1450px;
  padding: 0 1em;
  margin: auto;
  display: flex;
  align-items: flex-end;
  gap: 2em;
}
.big-zone > div:last-child > div:first-child {
  flex: 0 0 825px;
  max-width: 825px;
}
.big-zone > div:last-child > div:first-child > img {
  display: block;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.big-zone > div:last-child > div:first-child > img:last-child {
  margin-top: 2em;
}
.big-zone > div:last-child > div:last-child {
  padding-bottom: 3em;
}
.big-zone h2 {
  margin: 0;
  font-size: 6em;
}
.big-zone h3 {
  color: var(--noir);
}

/* BIG ZONE & TEXTE GAUCHE */
.big-zone-texte-gauche {
  position: relative;
}
.big-zone-texte-gauche > div:first-child {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 1500px;
  position: relative;
}
.big-zone-texte-gauche > div:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0) -8.77%, var(--blanc) 66.57%);
  position: absolute;
  top: 0;
  left: 0;
}
.big-zone-texte-gauche > div:last-child {
  max-width: 800px;
  position: absolute;
  left: 9em;
  top: 50%;
  transform: translateY(-50%);
}
.big-zone-texte-gauche > div:last-child h2 {
  margin: 0;
  font-size: 6em;
}
.big-zone-texte-gauche > div:last-child h3 {
  color: var(--noir);
}
.big-zone-texte-gauche > div:last-child > div {
  margin-bottom: 3em;
  max-width: 700px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  .contactP > iframe {
    flex: 0 0 700px;
    max-width: 700px;
  }
  .contactP > div {
    flex: 1;
    max-width: unset;
  }
  .image-texte-droite > div > div:last-child {
    flex: 0 0 700px;
    max-width: 700px;
  }
  .big-zone > div:first-child > div:last-child {
    right: 75px;
  }
  .big-zone-texte-gauche > div:first-child {
    min-height: 1000px;
  }
  .big-zone-texte-gauche > div:last-child {
    left: 5em;
  }
}
@media screen and (max-width: 1440px) {
  .content > h2, .content > h3, .content > h4, .content > h5, .content > h6, .content > p, .content > .wp-block-columns, .content > .wp-block-gallery {
    max-width: 1140px;
  }
  .contactP > iframe {
    flex: 0 0 600px;
    max-width: 600px;
  }
  .contactP > div {
    padding: 5em 2em 5em 4em;
  }
  .image-texte-droite > div > div:last-child {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .image-texte-droite > div > div:last-child > div > div {
    padding: 0 6em 6em 3em;
  }
  .image-texte-gauche {
    height: 950px;
  }
  .image-texte-gauche > div > div {
    padding-left: 5em;
  }
  .trois-images {
    height: 450px;
  }
  .trois-images > div:last-child > p {
    font-size: 3em;
  }
  .big-zone > div:first-child > div:first-child {
    height: 750px;
  }
  .big-zone > div:first-child > div:last-child {
    max-width: 750px;
    right: 25px;
  }
  .big-zone > div:last-child > div:first-child {
    flex: 0 0 600px;
    max-width: 600px;
  }
  .big-zone h2 {
    font-size: 5em;
  }
  .big-zone-texte-gauche > div:first-child:before {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) -8.77%, var(--blanc) 50%);
  }
}
@media screen and (max-width: 1200px) {
  .content > h2, .content > h3, .content > h4, .content > h5, .content > h6, .content > p, .content > .wp-block-columns, .content > .wp-block-gallery {
    max-width: 960px;
  }
  .content blockquote.wp-block-quote {
    padding: 1.5em 2em 1.5em 3em;
  }
  .content blockquote.wp-block-quote:after {
    left: 10px;
  }
  .contactP > iframe {
    flex: 0 0 400px;
    max-width: 400px;
    height: 350px;
  }
  .contactP > div {
    padding: 4em 2em 2em 4em;
  }
  .contactP > div > p {
    font-size: 1.4em;
  }
  .image-texte-droite > div {
    min-height: 600px;
  }
  .image-texte-droite > div > div:last-child > div > div {
    padding: 0 2em 2em 3em;
  }
  .image-texte-gauche > div > div > h2 {
    font-size: 5em;
  }
  .trois-images {
    height: 400px;
  }
  .trois-images > div:last-child > p {
    font-size: 2.5em;
  }
  .big-zone > div:first-child {
    margin-bottom: -4em;
  }
  .big-zone > div:first-child > div:last-child {
    margin: -15em auto 0;
    position: relative;
    right: unset;
    bottom: unset;
  }
  .big-zone > div:last-child > div:first-child {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .big-zone > div:last-child > div:first-child > img {
    height: 300px;
  }
  .big-zone > div:last-child > div:last-child {
    padding-bottom: 0;
  }
  .big-zone-texte-gauche > div:last-child {
    left: 2em;
  }
  .big-zone-texte-gauche > div:last-child h2 {
    font-size: 5em;
  }
  .page .content_page .domaines_page > div:first-child {
    max-width: 800px;
  }
  .page .content_page .domaines_page > div:first-child > h2 {
    font-size: 4em;
  }
}
@media screen and (max-width: 990px) {
  .content > h2, .content > h3, .content > h4, .content > h5, .content > h6, .content > p, .content > .wp-block-columns, .content > .wp-block-gallery {
    max-width: 720px;
  }
  .contactP > iframe {
    flex: 0 0 400px;
    max-width: 400px;
    height: 300px;
  }
  .contactP > div {
    padding: 4em 2em 2em 2em;
  }
  .contactP > div > p {
    font-size: 1.2em;
  }
  .image-texte-droite > div {
    flex-wrap: wrap;
  }
  .image-texte-droite > div > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .image-texte-droite > div > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
    min-height: 500px;
  }
  .image-texte-gauche {
    height: 850px;
  }
  .image-texte-gauche > div > div {
    padding: 0 2em 5em;
  }
  .trois-images {
    height: auto;
  }
  .trois-images > div:first-child > img {
    flex: 0 0 50%;
    max-width: 50%;
    height: 300px;
  }
  .trois-images > div:first-child > img:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .big-zone > div:first-child > div:last-child {
    padding: 2em 2em 3em;
  }
  .big-zone > div:last-child {
    flex-wrap: wrap;
  }
  .big-zone > div:last-child > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .big-zone > div:last-child > div:first-child > img {
    height: 425px;
  }
  .big-zone h2 {
    font-size: 4em;
  }
  .big-zone-texte-gauche > div:first-child {
    min-height: 700px;
  }
  .big-zone-texte-gauche > div:first-child:before {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) -8.77%, var(--blanc) 50%);
  }
  .big-zone-texte-gauche > div:last-child {
    margin: -18em auto 4em;
    width: calc(100% - 2em);
    transform: unset;
    position: relative;
    left: unset;
    top: unset;
  }
  .page .content_page .contact {
    margin-top: 10em;
  }
  .page .content_page .domaines_page > div:first-child {
    max-width: 650px;
    margin-bottom: -3em;
  }
  .page .content_page .domaines_page > div:first-child > h2 {
    font-size: 3em;
  }
  .page .content_page .domaines_page .paginator {
    top: 160px;
  }
}
@media screen and (max-width: 768px) {
  .content > h2, .content > h3, .content > h4, .content > h5, .content > h6, .content > p, .content > .wp-block-columns, .content > .wp-block-gallery {
    max-width: 540px;
  }
  .contactP {
    flex-wrap: wrap;
  }
  .contactP > iframe {
    order: 2;
    flex: 0 0 100%;
    max-width: 100%;
    height: 350px;
  }
  .contactP > div {
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .image-texte-gauche {
    height: 750px;
  }
  .image-texte-gauche > div > div > h2 {
    font-size: 4em;
  }
  .trois-images > div:first-child > img:last-child {
    height: 350px;
  }
  .trois-images > div:last-child > p {
    font-size: 2em;
  }
  .big-zone-texte-gauche > div:last-child h2 {
    font-size: 4em;
  }
  .page .content_page .contact {
    margin-top: 12em;
  }
  .page .content_page .domaines_page > div:first-child > h2 {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 576px) {
  .content blockquote.wp-block-quote:after {
    left: 0;
    top: -10px;
  }
  .contactP > div {
    padding: 2em 2em 1em 2em;
  }
  .image-texte-droite > div > div:last-child > div > div {
    padding: 0 1em 2em;
  }
  .image-texte-gauche {
    height: 650px;
  }
  .image-texte-gauche > div > div {
    padding: 0 1em 4em 1em;
  }
  .image-texte-gauche > div > div > h2 {
    font-size: 3em;
  }
  .trois-images > div:first-child > img {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .trois-images > div:last-child > p {
    font-size: 1.5em;
  }
  .big-zone > div:first-child {
    margin-bottom: -2em;
  }
  .big-zone > div:first-child > div:first-child {
    height: 500px;
  }
  .big-zone > div:first-child > div:last-child {
    padding: 1em 1em 4em;
    border-radius: 25px;
    margin-top: -10em;
  }
  .big-zone > div:last-child > div:first-child > img {
    height: 250px;
  }
  .big-zone h2 {
    font-size: 3em;
  }
  .big-zone-texte-gauche > div:first-child:before {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) -8.77%, var(--blanc) 70%);
  }
  .big-zone-texte-gauche > div:last-child {
    margin-top: -10em;
    width: calc(100% - 1em);
  }
  .big-zone-texte-gauche > div:last-child h2 {
    font-size: 3em;
  }
  .page .content_page .domaines_page > div:first-child {
    padding: 2em 1em;
  }
  .page .content_page .domaines_page > div:first-child > h2 {
    font-size: 2em;
  }
  .page .content_page .domaines_page .paginator {
    top: 120px;
  }
}
@media screen and (max-width: 450px) {
  .big-zone > div:first-child > div:last-child {
    width: 98%;
  }
  .page .content_page .domaines_page > div:first-child {
    padding: 2em 0.5em;
  }
}
/********************* SOMMAIRE *********************/
/* PAGE PAR DÉFAUT                      ligne :   9 */
/* PAGE D'ACCUEIL                       ligne :  81 */
/* MEDIA QUERIES                        ligne : 133 */
/* PAGE PAR DÉFAUT */
.entete {
  background-blend-mode: screen, normal;
  padding: 18em 0 2em;
  position: relative;
}
.entete:after {
  content: "";
  width: 100%;
  height: 102%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 10.02%, var(--blanc) 79.37%);
  position: absolute;
  top: 0;
  left: 0;
}
.entete .titre {
  text-align: center;
  padding: 0 1em 350px;
  position: relative;
  z-index: 1;
}
.entete .titre > h5 {
  text-transform: uppercase;
  color: var(--blanc);
  text-shadow: 0 0 20px rgba(186, 71, 0, 0.9);
  letter-spacing: 1.8px;
  font-weight: 400;
  font-size: 3em;
  margin: 0;
}
.entete .titre > h1 {
  color: var(--blanc);
  text-shadow: 0 10px 50px rgba(255, 100, 5, 0.5);
  font-size: 10em;
}
.entete .titre:after {
  content: "";
  width: 5px;
  height: 330px;
  background-color: var(--blanc);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.entete .zone1 {
  text-align: center;
  padding: 0 1em;
  margin-top: 3em;
  position: relative;
  z-index: 1;
}
.entete .zone1 > h2 {
  margin: 0;
  font-size: 6em;
}
.entete .zone1 > div {
  max-width: 700px;
  margin: 1em auto 0;
}
.entete .zone1 > div > p:last-child {
  margin: 0;
}

/* PAGE D'ACCUEIL */
.enteteF {
  padding: 6em 0 8em;
  position: relative;
}
.enteteF:after {
  content: "";
  width: 2px;
  height: 275px;
  background-color: var(--orange);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.enteteF > div:first-child {
  width: 100%;
  height: 100%;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
}
.enteteF > div:first-child:after {
  content: "";
  width: 100%;
  height: 200px;
  background-image: linear-gradient(0, var(--blanc) 19.5%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.enteteF > .titreF {
  text-align: center;
  position: relative;
}
.enteteF > .titreF > h1 {
  font-weight: 700;
  font-size: 6.5em;
  letter-spacing: 4px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .entete .titre > h5 {
    font-size: 2em;
  }
  .entete .titre > h1 {
    font-size: 8em;
  }
  .entete .zone1 > h2 {
    font-size: 4em;
  }
}
@media screen and (max-width: 1200px) {
  .entete .titre {
    padding-bottom: 295px;
  }
  .entete .titre:after {
    height: 275px;
  }
  .enteteF:after {
    height: 225px;
  }
  .enteteF > .titreF > img {
    max-width: 600px;
  }
  .enteteF > .titreF > h1 {
    font-size: 4.5em;
  }
}
@media screen and (max-width: 990px) {
  .entete {
    padding-top: 12em;
  }
  .entete .titre > h5 {
    font-size: 1.8em;
  }
  .entete .titre > h1 {
    font-size: 6em;
  }
}
@media screen and (max-width: 768px) {
  .entete .titre {
    padding-bottom: 225px;
  }
  .entete .titre:after {
    height: 200px;
  }
  .entete .zone1 > h2 {
    font-size: 3em;
  }
  .enteteF:after {
    height: 225px;
  }
  .enteteF > .titreF > img {
    max-width: 450px;
  }
  .enteteF > .titreF > h1 {
    font-size: 3em;
  }
}
@media screen and (max-width: 576px) {
  .entete .titre {
    padding-bottom: 140px;
  }
  .entete .titre:after {
    width: 3px;
    height: 125px;
  }
  .entete .titre > h5 {
    font-size: 1.2em;
  }
  .entete .titre > h1 {
    font-size: 4em;
  }
  .entete .zone1 {
    margin-top: 1.5em;
  }
  .entete .zone1 > h2 {
    font-size: 2em;
  }
  .enteteF {
    padding: 8em 0 6em;
  }
  .enteteF:after {
    height: 150px;
  }
  .enteteF > .titreF > img {
    max-width: 300px;
  }
  .enteteF > .titreF > h1 {
    font-size: 2em;
  }
}
/********************* SOMMAIRE *********************/
/* FOOTER                               ligne :   9 */
/* FOOTER LEGAL                         ligne : 111 */
/* MEDIA QUERIES                        ligne : 130 */
/* FOOTER */
footer > div:first-child {
  background-color: var(--noir);
  padding: 6em 1em 4em;
}
footer > div:first-child > div {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 8em;
}
footer > div:first-child > div > div:first-child > a {
  width: 300px;
  display: block;
  transition: all 0.3s;
}
footer > div:first-child > div > div:first-child > a:hover {
  opacity: 0.5;
}
footer > div:first-child > div > div > div {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 1em 0 0 15px;
}
footer > div:first-child > div > div > div > a {
  display: block;
  font-size: 2em;
  color: var(--blanc);
  transition: all 0.3s;
}
footer > div:first-child > div > div > div > a:hover {
  opacity: 0.5;
}
footer > div:first-child > div > div > h5 {
  margin: 0 0 25px;
  color: var(--blanc);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.3em;
}
footer > div:first-child > div > div > ul {
  margin: 0;
  list-style: none;
}
footer > div:first-child > div > div > ul > li {
  margin-bottom: 25px;
}
footer > div:first-child > div > div > ul > li > a {
  color: var(--blanc);
  text-transform: uppercase;
  transition: all 0.3s;
}
footer > div:first-child > div > div > ul > li > a:hover {
  opacity: 0.5;
}
footer > div:first-child > div > div > ul + h5 {
  margin-top: 3em;
}
footer > div:first-child > div > div:not(:first-child) > a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  color: var(--blanc);
  margin-bottom: 20px;
  position: relative;
}
footer > div:first-child > div > div:not(:first-child) > a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--blanc);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
footer > div:first-child > div > div:not(:first-child) > a:hover:after {
  width: 100%;
}
footer > div:first-child > div > div:not(:first-child) > a > i {
  font-size: 1.5em;
}
footer > div:first-child > div > div:not(:first-child) > p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--blanc);
  font-size: 1em;
}
footer > div:first-child > div > div:not(:first-child) > p > i {
  font-size: 1.5em;
}

/* FOOTER LEGAL */
footer > .legal {
  background-color: var(--orange);
  padding: 1.5em 1em;
}
footer > .legal > p {
  margin: 0;
  color: var(--blanc);
  text-align: center;
}
footer > .legal > p > a {
  color: var(--blanc);
}
footer > .legal > p > a:after {
  background-color: var(--blanc);
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  footer > div:first-child > div {
    gap: 6em;
  }
}
@media screen and (max-width: 1440px) {
  footer > div:first-child > div {
    gap: 4em;
  }
}
@media screen and (max-width: 1200px) {
  footer > div:first-child {
    padding: 4em 2em 2em;
  }
  footer > div:first-child > div {
    gap: 2em;
  }
  footer > div:first-child > div > div:first-child > a {
    width: 175px;
  }
  footer > div:first-child > div > div > div > a {
    font-size: 1.6em;
  }
  footer > .legal > p {
    font-size: 1em;
  }
}
@media screen and (max-width: 990px) {
  footer > div:first-child {
    padding: 4em 3em 2em;
  }
  footer > div:first-child > div {
    gap: 4em 2em;
    flex-wrap: wrap;
  }
  footer > div:first-child > div > div {
    flex: 0 0 calc(50% - 1em);
    max-width: calc(50% - 1em);
  }
  footer > div:first-child > div > div:first-child {
    order: 1;
  }
  footer > div:first-child > div > div:nth-child(2) {
    order: 3;
  }
  footer > div:first-child > div > div:nth-child(3) {
    order: 4;
  }
  footer > div:first-child > div > div:last-child {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  footer > div:first-child {
    padding: 4em 1em 2em;
  }
  footer > div:first-child > div {
    gap: 4em 1em;
  }
  footer > div:first-child > div > div:first-child, footer > div:first-child > div > div:nth-child(2) {
    flex: 0 0 225px;
    max-width: 225px;
  }
  footer > div:first-child > div > div:nth-child(3), footer > div:first-child > div > div:last-child {
    flex: 1;
    max-width: unset;
  }
}
@media screen and (max-width: 576px) {
  footer > div:first-child {
    padding: 4em 2em 2em;
  }
  footer > div:first-child > div {
    gap: 2em;
  }
  footer > div:first-child > div > div:first-child > a {
    margin: auto;
  }
  footer > div:first-child > div > div > div {
    margin: 1em 0 0;
    justify-content: center;
  }
  footer > div:first-child > div > div:first-child, footer > div:first-child > div > div:nth-child(2), footer > div:first-child > div > div:last-child, footer > div:first-child > div > div:nth-child(3) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Pop";
}

:root {
  --blanc: #FFFFFF;
  --gris: #22282D;
  --noir: #000000;
  --orange: #FF6405;
  --orange-clair: #FFAF52;
}

::after, ::before {
  box-sizing: inherit;
}

body {
  position: relative;
  font-size: 1em;
}

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

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  line-height: 1;
}

h1 {
  text-transform: uppercase;
}

h2 {
  margin: 1.5em 0 0.5em;
  text-transform: uppercase;
}

h3 {
  margin: 0.5em 0;
  text-transform: uppercase;
}

h4 {
  margin: 0.5em 0;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0.5em 1em;
}

h5 {
  margin: 0.8em 0;
}

h6 {
  font-size: 1.1em;
  margin: 0.6em 0;
}

p {
  font-size: 1.1em;
  line-height: 1.1;
  margin-bottom: 1em;
}
p > a {
  position: relative;
}
p > a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--noir);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
p > a:hover:after {
  width: 100%;
}

a {
  text-decoration: none;
  line-height: 1.1;
  color: var(--noir);
}

ul, ol {
  margin: 0 0 1em 16px;
}
ul > li, ol > li {
  line-height: 1.1;
  margin-bottom: 0.4em;
}

.container {
  max-width: 1320px;
  width: 95%;
  margin: auto;
}

.btn {
  text-transform: lowercase;
  padding: 1em 110px 1em 1em;
  color: var(--orange);
  border: 2px solid var(--orange);
  position: relative;
  transition: all 0.3s;
}
.btn:after {
  content: url("../img/feche_orange.webp");
  position: absolute;
  right: 10px;
  top: 54%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.btn:hover:after {
  right: 2px;
}

.wrap_content_page {
  position: relative;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 990px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  p {
    font-size: 1em;
  }
}
/********************* SOMMAIRE *********************/
/* GENERAL                              ligne :  10 */
/* MENU ORDINATEUR                      ligne :  54 */
/* MENU MOBILE                          ligne : 109 */
/* MEDIA QUERIES                        ligne : 217 */
/* GENERAL */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1450px;
  margin: auto;
  padding: 1em 1em 0;
}
header > div > a {
  display: block;
  width: 100px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
header > div > a:hover {
  opacity: 0.5;
}
header > div .socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
header > div .socials > a {
  display: block;
  font-size: 1.8em;
  transition: all 0.3s;
}
header > div .socials > a:hover {
  opacity: 0.5;
}

.page-template-default:not(.home) header > div .socials > a, .error404 header > div .socials > a, .blog header > div .socials > a, .post-template-default header > div .socials > a {
  color: var(--blanc);
}

/* MENU ORDINATEUR */
header .menuOrdi {
  width: 800px;
  border-radius: 100px;
  background-color: var(--blanc);
  box-shadow: 0 10px 20px 0 rgba(138, 52, 0, 0.2);
  padding: 1.5em 0;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
header .menuOrdi > ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4em;
  margin: 0;
}
header .menuOrdi > ul > li {
  margin: 0;
}
header .menuOrdi > ul > li > a {
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  padding: 0 5px 5px;
  font-size: 1em;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
header .menuOrdi > ul > li > a:after {
  content: "";
  width: 0;
  height: 4px;
  background-color: var(--orange);
  border-radius: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
header .menuOrdi > ul > li > a:hover:after {
  width: 100%;
}
header .menuOrdi > ul > li.orange > a {
  color: var(--orange);
}
header .menuOrdi > ul > li.current_page_item > a:after {
  width: 100%;
}

/* MENU MOBILE */
header .menuMobile {
  display: none;
  background-color: var(--blanc);
  box-shadow: 0 10px 20px 0 rgba(0, 96, 135, 0.15);
  padding: 1em;
  cursor: pointer;
  position: fixed;
  right: 2em;
  z-index: 1;
}
header .menuMobile > .barre {
  width: 40px;
  height: 5px;
  margin-bottom: 6px;
  background-color: var(--noir);
  transition: all 0.3s;
}
header .menuMobile .barre03 {
  margin: 0;
}
header .menuMobile:hover > .barre01 {
  transform: translateY(-5px);
}
header .menuMobile:hover > .barre03 {
  transform: translateY(5px);
}
header .menuMobile.active {
  padding: 1.5em 1em;
}
header .menuMobile.active > .barre01 {
  transform: rotate(135deg);
  margin: 0;
  position: relative;
  top: 2px;
}
header .menuMobile.active > .barre02 {
  display: none;
}
header .menuMobile.active > .barre03 {
  transform: rotate(-135deg);
  margin: 0;
  position: relative;
  top: -2px;
}
header .menuMobile.active:hover > .barre01 {
  transform: rotate(360deg);
}
header .menuMobile.active:hover > .barre03 {
  transform: rotate(90deg);
}

header .megaMenuMobile {
  display: none;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  background-color: var(--blanc);
  filter: drop-shadow(0 20px 40px rgba(138, 52, 0, 0.2));
  padding: 8em 4em 2em;
  position: fixed;
  top: 0;
  left: 0;
}
header .megaMenuMobile > div:first-child > ul {
  list-style: none;
  margin: 0;
}
header .megaMenuMobile > div:first-child > ul > li {
  margin: 0;
}
header .megaMenuMobile > div:first-child > ul > li > a {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.8em 0.4em;
  border-bottom: 1px solid var(--orange);
  font-size: 1.2em;
  transition: all 0.3s;
}
header .megaMenuMobile > div:first-child > ul > li > a:hover {
  padding-left: 2em;
}
header .megaMenuMobile > div:first-child > ul > li.orange > a {
  color: var(--orange);
}
header .megaMenuMobile > div:last-child {
  padding: 1.5em 0.4em 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 2em;
}
header .megaMenuMobile > div:last-child > a:not(:last-child) {
  padding: 0.2em 0.5em 0.2em 0;
  border-right: 1px solid var(--orange);
}
header .megaMenuMobile > div:last-child > a {
  cursor: pointer;
  transition: all 0.3s;
}
header .megaMenuMobile > div:last-child > a:hover {
  opacity: 0.5;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1200px) {
  header > div {
    padding: 1em 2em 0;
  }
  header > div .menuOrdi {
    width: 600px;
  }
  header > div .menuOrdi > ul {
    gap: 2em;
  }
}
@media screen and (max-width: 990px) {
  header > div .menuOrdi, header > div .socials {
    display: none;
  }
  header > div .menuMobile {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  header > div {
    padding: 0 1em;
  }
  header > div .menuMobile {
    padding: 0.8em;
    right: 1em;
  }
  header > div .menuMobile .barre {
    height: 4px;
    margin-bottom: 5px;
  }
  header > div .menuMobile .barre03 {
    margin: 0;
  }
  header > div .menuMobile:hover > .barre01 {
    transform: translateY(-3px);
  }
  header > div .menuMobile:hover > .barre03 {
    transform: translateY(3px);
  }
  header > div .menuMobile.active {
    padding: 1em;
  }
  header .megaMenuMobile {
    padding: 8em 2em 2em;
  }
}/*# sourceMappingURL=main.css.map */