@charset "UTF-8";
/*

Reset styles are based on the great work of Eric Meyer http://meyerweb.com/eric/tools/css/reset/ 
and Nicolas Gallagher & Jonathan Neal http://necolas.github.io/normalize.css/

http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)

normalize.css v3.0.1 | MIT License | git.io/normalize

*/
/*  ---------------------------------------

    GRID          

---------------------------------------- */
/* 
	  Responsive CSS Framework
    Copyright © 2012 Aline Keller - www.alinekeller.ch 
    This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) - http://creativecommons.org/licenses/by-sa/4.0/
*/
/* Column = 15px / Gutter = 10px => 310px */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.wrapper,
.wrapper-narrow,
.contentcenter {
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  position: relative;
  padding: 0 10px;
  width: 96%;
}
@media screen and (min-width: 30em) {
  .wrapper,
  .wrapper-narrow,
  .contentcenter {
    width: 90%;
  }
}
@media screen and (min-width: 48em) {
  .wrapper,
  .wrapper-narrow,
  .contentcenter {
    padding: 0 15px;
    width: 675px;
  }
}
@media screen and (min-width: 64em) {
  .wrapper,
  .wrapper-narrow,
  .contentcenter {
    padding-left: 20px;
    padding-right: 20px;
    width: 980px;
  }
}
@media screen and (min-width: 79em) {
  .wrapper,
  .wrapper-narrow,
  .contentcenter {
    padding-left: 30px;
    padding-right: 30px;
    width: 1230px;
  }
}
.grid {
  margin-left: -5px;
  margin-right: -5px;
}
@supports (display: flex) {
  .grid:after {
    content: none;
  }
}
@media screen and (min-width: 48em) {
  .grid {
    display: flex;
    flex-wrap: wrap;
    place-content: center;
    margin-left: -7px;
    margin-right: -8px;
  }
}
@media screen and (min-width: 64em) {
  .grid {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media screen and (min-width: 79em) {
  .grid {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.col {
  clear: both;
  float: none;
  margin: 0 0 10px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .col {
    clear: none;
    float: left;
    padding-left: 7px;
    padding-right: 8px;
  }
}
@media screen and (min-width: 64em) {
  .col {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 79em) {
  .col {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.col.right {
  float: right;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11 {
  clear: none;
  float: left;
}

.col-xs-1 {
  width: 8.33343%;
}

.col-xs-2 {
  width: 16.6667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3334%;
}

.col-xs-5 {
  width: 41.6667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3334%;
}

.col-xs-8 {
  width: 66.6667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3334%;
}

.col-xs-11 {
  width: 91.6667%;
}

.col-xs-12 {
  width: 100%;
}

/*  -----------------------------------------------------------

	Media Queries - Mobile phones (> 480px)

	Column = 25px / Gutter = 10px => 430px

------------------------------------------------------------ */
@media screen and (min-width: 30em) {
  .col-s-1,
  .col-s-2,
  .col-s-3,
  .col-s-4,
  .col-s-5,
  .col-s-6,
  .col-s-7,
  .col-s-8,
  .col-s-9,
  .col-s-10,
  .col-s-11 {
    clear: none;
    float: left;
  }
  .col-s-1 {
    width: 8.3334%;
  }
  .col-s-2 {
    width: 16.6667%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.3334%;
  }
  .col-s-5 {
    width: 41.6667%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.3334%;
  }
  .col-s-8 {
    width: 66.6667%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.3334%;
  }
  .col-s-11 {
    width: 91.6667%;
  }
  .col-s-12 {
    width: 100%;
  }
  .offset-1 {
    margin-left: 8.3334%;
  }
  .offset-2 {
    margin-left: 16.6667%;
  }
  .offset-3 {
    margin-left: 25%;
  }
  .offset-4 {
    margin-left: 33.3334%;
  }
  .offset-5 {
    margin-left: 41.6667%;
  }
  .offset-6 {
    margin-left: 50%;
  }
  .offset-7 {
    margin-left: 58.3334%;
  }
  .offset-8 {
    margin-left: 66.6667%;
  }
  .offset-9 {
    margin-left: 75%;
  }
  .offset-10 {
    margin-left: 83.3334%;
  }
  .offset-11 {
    margin-left: 91.6667%;
  }
}
/*  -----------------------------------------------------------

	Media Queries - Small desktop & vertical tablets (> 768px)

	Column = 40px (* 12) / Gutter = 15px (* 13) => 675px

------------------------------------------------------------ */
@media screen and (min-width: 48em) {
  .col12,
  .col-m-12,
  .col-l-12,
  .col-xl-12 {
    clear: both;
    float: none;
  }
  /* Columns width */
  .col1 {
    width: 8.3334%;
  }
  .col2 {
    width: 16.6667%;
  }
  .col3 {
    width: 25%;
  }
  .col4 {
    width: 33.3334%;
  }
  .col5 {
    width: 41.6667%;
  }
  .col6 {
    width: 50%;
  }
  .col7 {
    width: 58.3334%;
  }
  .col8 {
    width: 66.6667%;
  }
  .col9 {
    width: 75%;
  }
  .col10 {
    width: 83.3334%;
  }
  .col11 {
    width: 91.6667%;
  }
  .col12 {
    width: 100%;
  }
  .col-m-1 {
    width: 8.33344%;
  }
  .col-m-2 {
    width: 16.6667%;
  }
  .col-m-3 {
    width: 25%;
  }
  .col-m-4 {
    width: 33.3334%;
  }
  .col-m-5 {
    width: 41.6667%;
  }
  .col-m-6 {
    width: 50%;
  }
  .col-m-7 {
    width: 58.3334%;
  }
  .col-m-8 {
    width: 66.6667%;
  }
  .col-m-9 {
    width: 75%;
  }
  .col-m-10 {
    width: 83.3334%;
  }
  .col-m-11 {
    width: 91.6667%;
  }
  .col-m-12 {
    width: 100%;
  }
  /* Offset */
  .offset-m-1 {
    margin-left: 8.3334%;
  }
  .offset-m-2 {
    margin-left: 16.6667%;
  }
  .offset-m-3 {
    margin-left: 25%;
  }
  .offset-m-4 {
    margin-left: 33.3334%;
  }
  .offset-m-5 {
    margin-left: 41.6667%;
  }
  .offset-m-6 {
    margin-left: 50%;
  }
  .offset-m-7 {
    margin-left: 58.3334%;
  }
  .offset-m-8 {
    margin-left: 66.6667%;
  }
  .offset-m-9 {
    margin-left: 75%;
  }
  .offset-m-10 {
    margin-left: 83.3334%;
  }
  .offset-m-11 {
    margin-left: 91.6667%;
  }
}
/*  -----------------------------------------------------------

	Media Queries - Desktop > 1024px

	Column = 60px (* 12) / Gutter = 20px (* 13) => 980px

------------------------------------------------------------ */
@media screen and (min-width: 64em) {
  .col-l-1 {
    width: 8.33344%;
  }
  .col-l-2 {
    width: 16.6667%;
  }
  .col-l-3 {
    width: 25%;
  }
  .col-l-4 {
    width: 33.3334%;
  }
  .col-l-5 {
    width: 41.6667%;
  }
  .col-l-6 {
    width: 50%;
  }
  .col-l-7 {
    width: 58.3334%;
  }
  .col-l-8 {
    width: 66.6667%;
  }
  .col-l-9 {
    width: 75%;
  }
  .col-l-10 {
    width: 83.3334%;
  }
  .col-l-11 {
    width: 91.6667%;
  }
  .col-l-12 {
    width: 100%;
  }
  .offset-l-1 {
    margin-left: 8.3334%;
  }
  .offset-l-2 {
    margin-left: 16.6667%;
  }
  .offset-l-3 {
    margin-left: 25%;
  }
  .offset-l-4 {
    margin-left: 33.3334%;
  }
  .offset-l-5 {
    margin-left: 41.6667%;
  }
  .offset-l-6 {
    margin-left: 50%;
  }
  .offset-l-7 {
    margin-left: 58.3334%;
  }
  .offset-l-8 {
    margin-left: 66.6667%;
  }
  .offset-l-9 {
    margin-left: 75%;
  }
  .offset-l-10 {
    margin-left: 83.3334%;
  }
  .offset-l-11 {
    margin-left: 91.6667%;
  }
}
/*  -----------------------------------------------------------

	Media Queries - Desktop > 1264px

	Column = 70px (* 12) / Gutter = 30px (* 13) => 1230px

------------------------------------------------------------ */
@media screen and (min-width: 79em) {
  .col-xl-1 {
    width: 8.33343%;
  }
  .col-xl-2 {
    width: 16.6667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.3334%;
  }
  .col-xl-5 {
    width: 41.6667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.3334%;
  }
  .col-xl-8 {
    width: 66.6667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.3334%;
  }
  .col-xl-11 {
    width: 91.6667%;
  }
  .col-xl-12 {
    width: 100%;
  }
  .offset-xl-1 {
    margin-left: 8.3334%;
  }
  .offset-xl-2 {
    margin-left: 16.6667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3334%;
  }
  .offset-xl-5 {
    margin-left: 41.6667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3334%;
  }
  .offset-xl-8 {
    margin-left: 66.6667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3334%;
  }
  .offset-xl-11 {
    margin-left: 91.6667%;
  }
}
/*  -----------------------------------------------------------

	Media Queries - Desktop > 1440px

	Column = 80px (* 12) / Gutter = 30px (* 13) => 1280px

------------------------------------------------------------ */
@media screen and (min-width: 90em) {
  /*
    .col-xxl-1 { width: 8.33343%; }
    .col-xxl-2 { width: 16.6667%; }
    .col-xxl-3 { width: 25%; }
    .col-xxl-4 { width: 33.3334%; }
    .col-xxl-5 { width: 41.6667%; }
    .col-xxl-6 { width: 50%; }
    .col-xxl-7 { width: 58.3334%; }
    .col-xxl-8 { width: 66.6667%; }
    .col-xxl-9 { width: 75%; }
    .col-xxl-10 { width: 83.3334%; }
    .col-xxl-11 { width: 91.6667%; }
    .col-xxl-12 { width: 100%; }

    .offset-xxl-1   { margin-left: 8.3334%; }
    .offset-xxl-2   { margin-left: 16.6667%; }
    .offset-xxl-3   { margin-left: 25%; }
    .offset-xxl-4   { margin-left: 33.3334%; }
    .offset-xxl-5   { margin-left: 41.6667%; }
    .offset-xxl-6   { margin-left: 50%; }
    .offset-xxl-7   { margin-left: 58.3334%; }
    .offset-xxl-8   { margin-left: 66.6667%; }
    .offset-xxl-9   { margin-left: 75%; }
    .offset-xxl-10  { margin-left: 83.3334%; }
    .offset-xxl-11  { margin-left: 91.6667%; }
  */
}
/* Media queries */
/* Theme colors */
/* WP colors */
/*
@mixin icon-regular {
  @include icon;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
}
*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}
.widget:last-child {
  margin-bottom: 0;
}
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

/*
.post,
.page {
	margin: 0 0 1.5em;
}
*/
.updated:not(.published) {
  display: none;
}

/*
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
*/
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/* ------------------------------------------
 00 STRUCTURE
------------------------------------------ */
.wrapper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.wrapper:after {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both;
}

.site {
  position: relative;
}

.wrapper-wide {
  overflow: visible;
  margin-left: auto;
  margin-right: auto;
  width: 92%;
}
@media screen and (min-width: 30em) {
  .wrapper-wide {
    width: 90%;
  }
}
@media screen and (min-width: 48em) {
  .wrapper-wide {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .wrapper-wide {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media screen and (min-width: 79em) {
  .wrapper-wide {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (min-width: 90em) {
  .wrapper-wide {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    max-width: 1640px;
  }
}

.wrapper-narrow {
  margin-left: auto;
  margin-right: auto;
  max-width: 970px;
}

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
#page .site-content {
  flex-grow: 1;
}
#page .site-footer {
  flex-shrink: 0;
}

/* ------------------------------------------
 01 BASE STYLES
------------------------------------------ */
/* Fonts */
/* Structure */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  position: relative;
  color: #002060;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
html.no-scroll {
  overflow: hidden;
}

.site {
  position: relative;
}

section, .section {
  position: relative;
  padding: 1.5rem;
}
@media screen and (min-width: 64em) {
  section, .section {
    padding: 3rem 5% 3rem;
  }
}

.grecaptcha-badge {
  display: none;
}

/* Typography */
dd,
dt,
li,
p,
a,
td,
th,
label,
input,
select,
textarea {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
  line-height: 1.4em;
}
@media screen and (min-width: 64em) {
  dd,
  dt,
  li,
  p,
  a,
  td,
  th,
  label,
  input,
  select,
  textarea {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 79em) {
  dd,
  dt,
  li,
  p,
  a,
  td,
  th,
  label,
  input,
  select,
  textarea {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 115em) {
  dd,
  dt,
  li,
  p,
  a,
  td,
  th,
  label,
  input,
  select,
  textarea {
    font-size: 1.25rem;
    line-height: 1.6em;
  }
}

p:last-child {
  margin-bottom: 0;
}

p.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4em;
  margin-bottom: 1.125em;
}
p.lead + p.lead {
  margin-top: 1.125em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #002060;
  margin-bottom: 1rem;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25em;
}

h5,
h6 {
  font-size: 1.125em;
}

p + h1, p + h2, p + h3, p + h4, p + h5, p + h6,
ul + h1,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + h1,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6,
blockquote + h1,
blockquote + h2,
blockquote + h3,
blockquote + h4,
blockquote + h5,
blockquote + h6,
img + h1,
img + h2,
img + h3,
img + h4,
img + h5,
img + h6,
figure + h1,
figure + h2,
figure + h3,
figure + h4,
figure + h5,
figure + h6,
.jetpack-video-wrapper + h1,
.jetpack-video-wrapper + h2,
.jetpack-video-wrapper + h3,
.jetpack-video-wrapper + h4,
.jetpack-video-wrapper + h5,
.jetpack-video-wrapper + h6 {
  clear: both;
  margin-top: 2em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-bottom: 1.125em;
}

a {
  color: #000000;
  position: relative;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out, background-color 0.3s ease-in-out;
  font-weight: bold;
}
a:hover, a:active {
  color: #000000;
}
a:focus {
  color: #000000;
  outline-color: #000000;
}

.o-link {
  width: fit-content;
  position: relative;
  padding-left: 1.5rem;
  margin-top: 1rem;
  transition: 0.3s;
}
.o-link:hover {
  padding-left: 0;
  padding-right: 2.5rem;
}
.o-link a, .o-link p {
  position: relative;
}
.o-link a::before, .o-link p::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 1px;
  background-color: #FF5000;
  transform: translateY(-50%);
  transition: 0.3s;
  opacity: 0;
}
.o-link a svg, .o-link p svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 10px;
  transition: 0.3s;
  opacity: 0;
}
.o-link a svg path, .o-link p svg path {
  stroke: #FF5000;
  transition: 0.3s;
}
.o-link a:hover::before, .o-link p:hover::before {
  opacity: 1;
  right: -3rem;
}
.o-link a:hover svg, .o-link p:hover svg {
  right: -3rem;
  opacity: 1;
}
.o-link.white::before {
  background-color: #fff;
}
.o-link.white a {
  color: #fff;
}
.o-link.white a::before {
  background-color: #fff;
}
.o-link.white a svg path {
  stroke: white;
}
.o-link.orange::before {
  background-color: #FF5000;
}
.o-link.orange a {
  color: #FF5000;
}
.o-link.orange a::before {
  background-color: #FF5000;
}
.o-link.orange a svg path {
  stroke: #FF5000;
}
.o-link.blue::before {
  background-color: #002060;
}
.o-link.blue a, .o-link.blue p {
  color: #002060;
}
.o-link.blue a::before, .o-link.blue p::before {
  background-color: #002060;
}
.o-link.blue a svg path, .o-link.blue p svg path {
  stroke: #002060;
}
.o-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #FF5000;
  height: 1px;
  width: 1rem;
  transition: 0.3s;
}
.o-link:hover::before {
  opacity: 0;
}
.o-link a {
  display: block;
  color: #FF5000;
  font-weight: normal;
  transition: 0.3s;
  line-height: 1em;
}
@media screen and (min-width: 48em) {
  .o-link a {
    font-weight: bold;
  }
}

.o-rect-btn a {
  white-space: nowrap;
  width: fit-content;
  background-color: #FF5000;
  border: 2px solid white;
  color: white;
  font-weight: 300;
  padding: 0.25rem 0.5rem;
}
.o-rect-btn a:hover {
  background-color: white;
  color: #FF5000;
  border-color: #FF5000;
}

.o-btn {
  margin-top: 1rem;
}
.o-btn a {
  width: fit-content;
  padding-left: 3rem;
  color: #FF5000;
  position: relative;
  display: flex;
  align-items: center;
}
.o-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 1px;
  background-color: #FF5000;
  transform: translateY(-50%);
  transition: 0.3s;
}
.o-btn a svg {
  margin-left: 2.25rem;
  transition: 0.3s;
}
.o-btn a svg path {
  stroke: #FF5000;
  transition: 0.3s;
}
.o-btn a:hover {
  color: #FF9666;
}
.o-btn a:hover::before {
  width: 1.5rem;
  background-color: #FF9666;
}
.o-btn a:hover svg {
  margin-left: 1.75rem;
}
.o-btn a:hover svg path {
  stroke: #FF9666;
}

/* Lists */
li {
  margin-bottom: 0.75em;
}
li:last-child {
  margin-bottom: 0;
}

ul li {
  padding-left: 1.5em;
  position: relative;
}

.nav li {
  padding: 0;
}
.nav li:before {
  display: none;
}

/* Accessibility */
.screen-reader-text,
.label {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  border: 0;
}

/* Forms */
label {
  display: block;
}
.form-item {
  margin-bottom: 1rem;
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
  border-radius: 0;
  border-color: #e0e0e0;
  height: 40px;
  line-height: 40px;
}
.btn,
.wp-block-button__link,
button,
input[type=submit],
input[type=button] {
  background-color: transparent;
  border: 1px solid #8c5932;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  height: 44px;
  line-height: 42px;
  text-transform: lowercase;
  text-align: center;
  transition: color 0.2s ease-in-out, border 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.btn:hover,
.wp-block-button__link:hover,
button:hover,
input[type=submit]:hover,
input[type=button]:hover, .btn:active,
.wp-block-button__link:active,
button:active,
input[type=submit]:active,
input[type=button]:active {
  background: #000000;
  border-color: #000000;
  color: #fff;
}
@media screen and (min-width: 64em) {
  .btn,
  .wp-block-button__link,
  button,
  input[type=submit],
  input[type=button] {
    font-size: 1.125rem;
    height: 50px;
    line-height: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 79em) {
  .btn,
  .wp-block-button__link,
  button,
  input[type=submit],
  input[type=button] {
    font-size: 1.25rem;
    height: 56px;
    line-height: 56px;
  }
}

a.btn,
a.wp-block-button__link {
  display: inline-block;
  height: auto;
  line-height: 1.5em;
  padding-top: 9px;
  padding-bottom: 9px;
}
@media screen and (min-width: 64em) {
  a.btn,
  a.wp-block-button__link {
    padding-top: 11px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 79em) {
  a.btn,
  a.wp-block-button__link {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

textarea {
  height: auto;
}

fieldset.grid {
  border: 0;
  margin-left: -10px;
  margin-right: -10px;
  padding: 0;
}
fieldset.grid .form-item.col {
  padding: 0 10px;
}
fieldset.grid .inline-container.col12 {
  width: auto;
}

/* Social icons */
.list-socials {
  padding: 0;
}
.list-socials li {
  display: inline-block;
  margin: 0;
}
.list-socials li a {
  border: none;
  display: block;
  height: 32px !important;
  width: 32px !important;
  text-align: center;
}
.list-socials li a .label {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  border: 0;
}
.list-socials li a:before {
  font-family: "Font Awesome 6 Brands";
  font-size: 2rem;
  font-weight: normal;
  line-height: 2rem;
}
.list-socials li a[href*=facebook]:before {
  content: "\f082";
}
.list-socials li a[href*=instagram]:before {
  content: "\f16d";
}
.list-socials li a[href*=pinterest]:before {
  content: "\f231";
}
.list-socials li a[href*=twitter]:before {
  content: "\f099";
}
.list-socials li a[href*=youtube]:before {
  content: "\f167";
}
.list-socials li a[href*=vimeo]:before {
  content: "\f27d";
}
.list-socials li a[href*=linkedin]:before {
  content: "\f0e1";
}
.list-socials li a[href*=tiktok]:before {
  content: "\e07b";
}
.list-socials li a[href*=snapchat]:before {
  content: "\f2ac";
}
.list-socials li a[href*=github]:before {
  content: "\f09b";
}
.list-socials li a[href*=bitbucket]:before {
  content: "\f171";
}
.list-socials li a[href*=behance]:before {
  content: "\f1b4";
}
.list-socials li a[href*=dribbble]:before {
  content: "\f17d";
}
.list-socials li a[href*=spotify]:before {
  content: "\f1bc";
}
.list-socials li a[href*=deezer]:before {
  content: "\e077";
}
.list-socials li a[href*=itunes]:before, .list-socials li a[href*="music.apple"]:before {
  content: "\f3b4";
}
.list-socials li a[href*=goodreads]:before {
  content: "\f3a8";
}
.list-socials li a[href*=whatsapp]:before {
  content: "\f232";
}
.list-socials li a[href*=tumblr]:before {
  content: "\f174";
}
.list-socials li a[href*=yelp]:before {
  content: "\f1e9";
}
.list-socials li a[href*=tripadvisor]:before {
  content: "\f262";
}

/*  -----------------------------------------------------------
	Media Queries - Mobile phones (> 480px)
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Small desktop & vertical tablets (> 768px)
------------------------------------------------------------ */
@media screen and (min-width: 48em) {
  h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1024px
------------------------------------------------------------ */
@media screen and (min-width: 64em) {
  h1 {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1264px
------------------------------------------------------------ */
@media screen and (min-width: 79em) {
  h1 {
    font-size: 3rem;
  }
  h2, .h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.375em;
  }
  h5,
  h6 {
    font-size: 1.25em;
  }
}
@media screen and (min-width: 90em) {
  h1 {
    font-size: 3.5rem;
  }
  h2, .h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.375em;
  }
  h5,
  h6 {
    font-size: 1.25em;
  }
}
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1440px
------------------------------------------------------------ */
/* ------------------------------------------
 02 HEADER
------------------------------------------ */
.page-template-home header, .page-template-prestations header, .page-template-about header, .page-template-developpement header, .page-template-job header, .page-template-location header {
  box-shadow: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.page-template-home header.scrolling-up, .page-template-prestations header.scrolling-up, .page-template-about header.scrolling-up, .page-template-developpement header.scrolling-up, .page-template-job header.scrolling-up, .page-template-location header.scrolling-up {
  background: white;
  box-shadow: 1px 5px 4px 0px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 1px 5px 4px 0px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 1px 5px 4px 0px rgba(0, 0, 0, 0.22);
}
.page-template-home header.scrolling-up .logo a img.header-scroll, .page-template-prestations header.scrolling-up .logo a img.header-scroll, .page-template-about header.scrolling-up .logo a img.header-scroll, .page-template-developpement header.scrolling-up .logo a img.header-scroll, .page-template-job header.scrolling-up .logo a img.header-scroll, .page-template-location header.scrolling-up .logo a img.header-scroll {
  display: block;
}
.page-template-home header.scrolling-up .logo a img.header-noscroll, .page-template-prestations header.scrolling-up .logo a img.header-noscroll, .page-template-about header.scrolling-up .logo a img.header-noscroll, .page-template-developpement header.scrolling-up .logo a img.header-noscroll, .page-template-job header.scrolling-up .logo a img.header-noscroll, .page-template-location header.scrolling-up .logo a img.header-noscroll {
  display: none;
}
.page-template-home header.scrolling-up .burger .span-container span, .page-template-prestations header.scrolling-up .burger .span-container span, .page-template-about header.scrolling-up .burger .span-container span, .page-template-developpement header.scrolling-up .burger .span-container span, .page-template-job header.scrolling-up .burger .span-container span, .page-template-location header.scrolling-up .burger .span-container span {
  background-color: #002060;
}
.page-template-home header.scrolling-up .burger.active .span-container span, .page-template-prestations header.scrolling-up .burger.active .span-container span, .page-template-about header.scrolling-up .burger.active .span-container span, .page-template-developpement header.scrolling-up .burger.active .span-container span, .page-template-job header.scrolling-up .burger.active .span-container span, .page-template-location header.scrolling-up .burger.active .span-container span {
  background-color: white;
}
.page-template-home header .logo a img.header-noscroll, .page-template-prestations header .logo a img.header-noscroll, .page-template-about header .logo a img.header-noscroll, .page-template-developpement header .logo a img.header-noscroll, .page-template-job header .logo a img.header-noscroll, .page-template-location header .logo a img.header-noscroll {
  display: block;
}
.page-template-home header .logo a img.header-scroll, .page-template-prestations header .logo a img.header-scroll, .page-template-about header .logo a img.header-scroll, .page-template-developpement header .logo a img.header-scroll, .page-template-job header .logo a img.header-scroll, .page-template-location header .logo a img.header-scroll {
  display: none;
}
.page-template-home header .burger .span-container span, .page-template-prestations header .burger .span-container span, .page-template-about header .burger .span-container span, .page-template-developpement header .burger .span-container span, .page-template-job header .burger .span-container span, .page-template-location header .burger .span-container span {
  background-color: white;
}
.page-template-home header .burger.active .span-container span, .page-template-prestations header .burger.active .span-container span, .page-template-about header .burger.active .span-container span, .page-template-developpement header .burger.active .span-container span, .page-template-job header .burger.active .span-container span, .page-template-location header .burger.active .span-container span {
  background-color: white;
}

header {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  transition: 0.3s;
  background-color: white;
  box-shadow: 1px 5px 4px 0px rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 1px 5px 4px 0px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 1px 5px 4px 0px rgba(0, 0, 0, 0.22);
}
header.scroll {
  top: -200px;
}
header.scroll .logo, header.scroll .burger {
  top: -200px;
}
header.scrolling-up {
  top: 0;
}
header.scrolling-up .logo {
  top: 22px;
}
header.scrolling-up .burger {
  top: 29px;
}
header .logo {
  position: fixed;
  left: 2rem;
  top: 22px;
  display: flex;
  justify-content: center;
  transition: 0.3s;
}
header .logo a img {
  height: 40px;
  margin: auto;
}
header .logo a img.mobile {
  display: none;
}
header .burger {
  position: fixed;
  z-index: 100;
  top: 29px;
  right: 2rem;
  height: 22px;
  width: 25px;
  transition: 0.3s;
  cursor: pointer;
}
header .burger .span-container {
  position: relative;
  width: 100%;
  height: 100%;
}
header .burger .span-container span {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: 0;
  background-color: #002060;
  transition: 0.3s;
}
header .burger .span-container span.mid {
  top: 10px;
}
header .burger .span-container span.bot {
  top: 20px;
}
header .burger.active .span-container span {
  background-color: white;
}
header .burger.active .span-container span.top {
  transform: rotate(45deg);
  top: 11px;
}
header .burger.active .span-container span.mid {
  left: 100px;
  opacity: 0;
}
header .burger.active .span-container span.bot {
  transform: rotate(-45deg);
  top: 11px;
}
header .nav-menu {
  position: fixed;
  top: 0;
  left: 100%;
  transition: 0.3s;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  height: auto;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background-color: #FF5000;
}
header .nav-menu .header-bg {
  display: none;
  position: absolute;
  bottom: -10vh;
  left: -5%;
  opacity: 0.3;
  transform: rotate(180deg);
  width: 60%;
}
header .nav-menu .header-bg img {
  width: 100%;
  height: auto;
}
header .nav-menu.open {
  left: 0;
}
header .nav-menu .burger-menu .span-container span {
  background-color: white;
}
header .nav-menu .nav-menu-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
header .nav-menu .nav {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
header .nav-menu .nav li {
  padding: 0;
  margin: 0;
}
header .nav-menu .nav li a {
  color: white;
  font-size: 1.25rem;
}
header .nav-menu .nav li a:hover {
  color: #FF5000;
}
header .nav-menu .nav li ul {
  margin-bottom: 1rem;
}
header .nav-menu .nav li ul li a {
  font-weight: 500;
  font-size: 1rem;
}
header .nav-menu .nav-info {
  position: relative;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
header .nav-menu .nav-info .socials a img {
  width: 30px;
}
header .nav-menu-desktop {
  display: none;
}
@media screen and (min-width: 64em) {
  header {
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    transition: 0.3s;
    background-color: white;
    box-shadow: 1px 5px 4px 0px rgba(0, 0, 0, 0.22);
    -webkit-box-shadow: 1px 5px 4px 0px rgba(0, 0, 0, 0.22);
    -moz-box-shadow: 1px 5px 4px 0px rgba(0, 0, 0, 0.22);
  }
  header.scroll {
    top: -200px;
  }
  header.scrolling-up {
    top: 0;
  }
  header.scrolling-up .burger {
    top: 39px;
  }
  header .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-bottom: 2rem;
  }
  header .logo a img {
    height: 60px;
    margin: auto;
  }
  header .logo a img.mobile {
    display: none;
  }
  header .burger {
    position: fixed;
    z-index: 100;
    top: 39px;
    right: 2rem;
    height: 25px;
    width: 28px;
    transition: 0.3s;
    cursor: pointer;
  }
  header .burger .span-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  header .burger .span-container span {
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
    background-color: #002060;
    transition: 0.3s;
  }
  header .burger .span-container span.mid {
    top: 11px;
  }
  header .burger .span-container span.bot {
    top: 22px;
  }
  header .burger.active .span-container span {
    background-color: white;
  }
  header .burger.active .span-container span.top {
    transform: rotate(45deg);
    top: 11px;
  }
  header .burger.active .span-container span.mid {
    left: 100px;
    opacity: 0;
  }
  header .burger.active .span-container span.bot {
    transform: rotate(-45deg);
    top: 11px;
  }
  header .nav-menu {
    position: fixed;
    top: 0;
    left: 100%;
    transition: 0.3s;
    background-color: #002060;
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 200px 5% 3rem;
    overflow: hidden;
  }
  header .nav-menu .logo-menu {
    position: absolute;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
  }
  header .nav-menu .logo-menu img {
    height: 60px;
  }
  header .nav-menu .header-bg {
    display: block;
  }
  header .nav-menu.open {
    left: 0;
  }
  header .nav-menu .nav-menu-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 2rem;
  }
  header .nav-menu .nav {
    margin: 0;
    width: 100%;
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  header .nav-menu .nav li {
    padding: 0;
    margin: 0;
  }
  header .nav-menu .nav li a {
    color: white;
    font-size: 1.5rem;
  }
  header .nav-menu .nav li ul {
    margin-top: 1rem;
    margin-bottom: 0;
  }
  header .nav-menu .nav li ul li a {
    font-weight: 500;
    font-size: 1.125rem;
  }
  header .nav-menu .nav-info {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: end;
  }
  header .nav-menu .nav-info .socials a img {
    width: 30px;
  }
}

.admin-bar .site-menu .menu {
  top: 44px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-menu .menu {
    top: 58px;
  }
}
.admin-bar.nav-open .menu-toggle {
  top: 44px;
}
@media screen and (max-width: 782px) {
  .admin-bar.nav-open .menu-toggle {
    top: 58px;
  }
}

/*  -----------------------------------------------------------
	Media Queries - Mobile phones (> 480px)
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Small desktop & vertical tablets (> 768px)
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1024px
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1264px
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1440px
------------------------------------------------------------ */
/* ------------------------------------------
 03 FOOTER
------------------------------------------ */
footer {
  background-color: #002060;
}
footer a, footer li, footer p {
  color: white;
  margin: 0;
  padding: 0;
  display: block;
}
footer .footer-container {
  padding: 2rem 1.5rem;
}
footer .footer-container .logo {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin-bottom: 3rem;
}
footer .footer-container .logo img {
  width: 100%;
  height: auto;
}
footer .footer-container .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
footer .footer-container .footer-content .footer-links {
  display: grid;
}
footer .footer-container .footer-content .footer-links .footer-room {
  order: 1;
  align-self: flex-end;
  margin-bottom: 1.5rem;
}
footer .footer-container .footer-content .footer-links .footer-contact {
  order: 0;
}
footer .footer-container .footer-content .footer-links .footer-contact .footer-address {
  margin-bottom: 2rem;
}
footer .footer-container .footer-content .footer-links .footer-contact .footer-contact-label {
  margin-bottom: 1rem;
}
footer .footer-container .footer-menu {
  display: grid;
  gap: 0;
}
footer .footer-container .footer-menu ul {
  margin: 0;
  padding: 0;
}
footer .footer-container .footer-menu ul li {
  margin-bottom: 1.5rem;
}
footer .copyright {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .copyright a, footer .copyright p {
  font-weight: 300;
  color: #D6C6B4;
  font-size: 0.6rem;
  margin: 0;
  padding: 0;
  line-height: 1em;
}
footer .copyright .copyright-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (min-width: 79em) {
  footer .footer-container {
    padding: 4rem 4rem;
    max-width: 1900px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
  footer .footer-container .logo {
    width: 100%;
    height: auto;
    width: 250px;
    margin-bottom: 3rem;
  }
  footer .footer-container .logo img {
    width: 100%;
    height: auto;
  }
  footer .footer-container .footer-content {
    display: flex;
    width: 75%;
    gap: 4rem;
  }
  footer .footer-container .footer-content .footer-links {
    display: flex;
    width: 100%;
    max-width: 500px;
    justify-content: space-between;
    gap: 4rem;
  }
  footer .footer-container .footer-content .footer-links .footer-room {
    order: 0;
    align-self: flex-start;
    margin-bottom: 1.5rem;
  }
  footer .footer-container .footer-content .footer-links .footer-room .o-rect-btn a {
    font-size: 1rem;
  }
  footer .footer-container .footer-content .footer-links .footer-contact {
    order: 1;
  }
  footer .footer-container .footer-content .footer-links .footer-contact .footer-address {
    margin-bottom: 2rem;
  }
  footer .footer-container .footer-content .footer-links .footer-contact .footer-address p {
    font-size: 1rem;
  }
  footer .footer-container .footer-content .footer-links .footer-contact .footer-contact-label {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  footer .footer-container .footer-menu {
    display: flex;
    width: 100%;
    gap: 3rem;
  }
  footer .footer-container .footer-menu .footer-menu-col {
    max-width: 200px;
  }
  footer .footer-container .footer-menu ul {
    margin: 0;
    padding: 0;
  }
  footer .footer-container .footer-menu ul li {
    margin-bottom: 0.5rem;
  }
  footer .footer-container .footer-menu ul li a:hover {
    color: #FF9666;
  }
  footer .copyright {
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .copyright a, footer .copyright p {
    font-weight: 300;
    color: #D6C6B4;
    font-size: 0.6rem;
    margin: 0;
    padding: 0;
    line-height: 1em;
  }
  footer .copyright .copyright-left {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.footer-credit {
  padding: 0.25rem 2rem;
  display: flex;
  align-items: center;
}
.footer-credit p, .footer-credit a {
  color: white;
  margin: 0;
}
.footer-credit .copyright a {
  font-weight: normal;
  font-size: 1rem;
}
.footer-credit .copyright a:hover {
  color: rgb(197, 197, 197);
}

.credits.lemon {
  margin: 0;
  margin-left: auto;
  height: 19px;
  width: 74px;
}
.credits.lemon a {
  color: white;
  display: block;
  height: inherit;
  width: inherit;
}
.credits.lemon a:hover {
  color: white;
}
.credits.lemon a .svg {
  display: block;
  fill: currentColor;
}
.credits.lemon a span {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  border: 0;
}

/*  -----------------------------------------------------------
	Media Queries - Mobile phones (> 480px)
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Small desktop & vertical tablets (> 768px)
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1024px
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1264px
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1440px
------------------------------------------------------------ */
/* ------------------------------------------
 04 CONTENT
------------------------------------------ */
.intro {
  height: 100vh;
  padding: 0;
}
.intro .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.intro .bg-img img, .intro .bg-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: forwards 20s zoomIn;
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5047268908) 100%);
  z-index: 1;
}
.intro .intro-container {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  display: flex;
  align-items: end;
}
.intro .intro-container .intro-text {
  max-width: 600px;
}
.intro .intro-container .intro-text h1 {
  color: white;
}
.intro .intro-container .intro-text .text p {
  font-size: 1.25rem;
  color: white;
}
@media screen and (min-width: 64em) {
  .intro .intro-container {
    position: absolute;
    max-width: 1600px;
    margin: auto;
    bottom: 3rem;
    left: 10%;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
  }
  .intro .intro-container .intro-text {
    max-width: 1100px;
  }
  .intro .intro-container .intro-text h1 {
    color: white;
  }
  .intro .intro-container .intro-text .text p {
    font-size: 1.75rem;
    color: white;
  }
}
@media screen and (min-width: 90em) {
  .intro .intro-container {
    position: absolute;
    max-width: 1600px;
    margin: auto;
    bottom: 7rem;
    left: 10%;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
  }
  .intro .intro-container .intro-text h1 {
    color: white;
  }
  .intro .intro-container .intro-text .text p {
    font-size: 2.5rem;
    color: white;
  }
}

.pros .pros-container {
  max-width: 1600px;
  margin: auto;
}
.pros .pros-container .pros-list {
  display: grid;
  gap: 1.5rem;
  max-width: 500px;
  margin: auto;
}
.pros .pros-container .pros-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
}
.pros .pros-container .pros-item .icon {
  width: 90px;
  height: auto;
  display: flex;
  align-items: center;
}
.pros .pros-container .pros-item .icon img {
  margin: auto;
  width: 100%;
  max-width: 80px;
  max-height: 60px;
}
.pros .pros-container .pros-item .text {
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (min-width: 48em) {
  .pros {
    padding-inline: 2rem;
  }
  .pros .pros-container .pros-list {
    max-width: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
  .pros .pros-container .pros-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    width: 300px;
  }
  .pros .pros-container .pros-item .icon {
    height: auto;
    display: flex;
    align-items: center;
  }
  .pros .pros-container .pros-item .icon img {
    margin: auto;
    width: 100%;
    max-width: 90px;
    max-height: 80px;
  }
  .pros .pros-container .pros-item .text {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media screen and (min-width: 64em) {
  .pros {
    padding-inline: 2rem;
  }
  .pros .pros-container .pros-list {
    max-width: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
  .pros .pros-container .pros-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    width: 400px;
  }
  .pros .pros-container .pros-item .icon {
    height: auto;
    display: flex;
    align-items: center;
  }
  .pros .pros-container .pros-item .icon img {
    margin: auto;
    width: 100%;
    max-width: 90px;
    max-height: 80px;
  }
  .pros .pros-container .pros-item .text {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media screen and (min-width: 95em) {
  .pros .pros-container .pros-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .pros .pros-container .pros-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    width: 270px;
  }
  .pros .pros-container .pros-item .icon {
    height: auto;
    display: flex;
    align-items: center;
  }
  .pros .pros-container .pros-item .icon img {
    margin: auto;
    width: 100%;
    max-width: 90px;
    max-height: 80px;
  }
  .pros .pros-container .pros-item .text {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media screen and (min-width: 115em) {
  .pros {
    padding-inline: 5%;
  }
  .pros .pros-container .pros-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .pros .pros-container .pros-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    width: 270px;
  }
  .pros .pros-container .pros-item .icon {
    height: auto;
    display: flex;
    align-items: center;
  }
  .pros .pros-container .pros-item .icon img {
    margin: auto;
    width: 100%;
    max-width: 90px;
    max-height: 80px;
  }
  .pros .pros-container .pros-item .text {
    margin-top: auto;
    margin-bottom: auto;
  }
}

.chiffres {
  background-color: #002060;
}
.chiffres .chiffres-container .chiffres-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.chiffres .chiffres-container .chiffres-list .chiffres-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chiffres .chiffres-container .chiffres-list .chiffres-item .chiffre p {
  font-size: 4rem;
  line-height: 1em;
  font-weight: 300;
  color: #FF5000;
}
.chiffres .chiffres-container .chiffres-list .chiffres-item .text p {
  color: white;
}
@media screen and (min-width: 48em) {
  .chiffres .chiffres-container .chiffres-list {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .chiffres .chiffres-container .chiffres-list .chiffres-item {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .chiffres .chiffres-container .chiffres-list .chiffres-item .chiffre p {
    font-size: 6rem;
    line-height: 1em;
    font-weight: 300;
    color: #FF5000;
  }
  .chiffres .chiffres-container .chiffres-list .chiffres-item .text p {
    color: white;
  }
}
@media screen and (min-width: 79em) {
  .chiffres {
    padding-inline: 2rem;
  }
  .chiffres .chiffres-container {
    max-width: 1600px;
    margin: auto;
  }
  .chiffres .chiffres-container .chiffres-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
  .chiffres .chiffres-container .chiffres-list .chiffres-item {
    display: flex;
    justify-content: space-between;
    width: 250px;
    flex-direction: column;
    gap: 1rem;
  }
  .chiffres .chiffres-container .chiffres-list .chiffres-item .chiffre p {
    font-size: 6.5rem;
  }
  .chiffres .chiffres-container .chiffres-list .chiffres-item .text p {
    color: white;
  }
}

.prestations {
  padding: 0;
}
.prestations .prestations-content {
  padding: 1rem;
}
.prestations .prestations-content .prestations-text .text {
  margin-bottom: 2rem;
}
.prestations .prestations-content .prestations-img {
  display: none;
}
.prestations .prestations-grid {
  display: grid;
}
.prestations .prestations-grid a .prestations-item {
  position: relative;
  aspect-ratio: 16/9;
}
.prestations .prestations-grid a .prestations-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.prestations .prestations-grid a .prestations-item .prestations-item-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
.prestations .prestations-grid a .prestations-item .prestations-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.prestations .prestations-grid a .prestations-item .prestations-item-text {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  z-index: 2;
}
.prestations .prestations-grid a .prestations-item .prestations-item-text p {
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2rem;
  transition: 0.3s;
}
.prestations .prestations-grid a .prestations-item .prestations-item-text p:last-of-type {
  margin-bottom: 0;
}
.prestations .prestations-grid a .prestations-item .prestations-item-text p em {
  font-style: normal;
  font-size: 0.7rem;
}
.prestations .prestations-grid a .prestations-item .prestations-item-text p > em {
  line-height: 1em;
}
.prestations .prestations-grid a:hover .prestations-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
}
.prestations .prestations-grid a:hover .prestations-item .prestations-item-img img {
  transform: scale(1.05);
}
.prestations .prestations-grid a:hover .prestations-item .prestations-item-text p {
  color: #FF5000;
}
@media screen and (min-width: 48em) {
  .prestations {
    padding: 0;
  }
  .prestations .prestations-content {
    padding: 0;
    display: grid;
    grid-template-columns: 4fr 2fr;
  }
  .prestations .prestations-content .prestations-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 10%;
  }
  .prestations .prestations-content .prestations-text h2 {
    width: 100%;
  }
  .prestations .prestations-content .prestations-text .text {
    max-width: 800px;
    margin-bottom: 2rem;
  }
  .prestations .prestations-content .prestations-img {
    display: block;
    aspect-ratio: 1;
  }
  .prestations .prestations-content .prestations-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .prestations .prestations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .prestations .prestations-grid a .prestations-item {
    position: relative;
    aspect-ratio: 1;
  }
  .prestations .prestations-grid a .prestations-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-text {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    z-index: 2;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-text p {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2rem;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-text p:last-of-type {
    margin-bottom: 0;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-text p em {
    font-style: normal;
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 79em) {
  .prestations {
    padding: 0;
  }
  .prestations .prestations-content {
    padding: 0;
    display: grid;
    grid-template-columns: 4fr 2fr;
  }
  .prestations .prestations-content .prestations-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 10%;
  }
  .prestations .prestations-content .prestations-text h2 {
    width: 100%;
  }
  .prestations .prestations-content .prestations-text .text {
    max-width: 800px;
    margin-bottom: 2rem;
  }
  .prestations .prestations-content .prestations-img {
    display: block;
    aspect-ratio: 1;
  }
  .prestations .prestations-content .prestations-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .prestations .prestations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .prestations .prestations-grid a .prestations-item {
    position: relative;
    aspect-ratio: 1;
  }
  .prestations .prestations-grid a .prestations-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-text {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    z-index: 2;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-text p {
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2rem;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-text p:last-of-type {
    margin-bottom: 0;
  }
  .prestations .prestations-grid a .prestations-item .prestations-item-text p em {
    font-style: normal;
    font-size: 0.7rem;
  }
}

.prestation-list {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.prestation-list .prestation-list-container {
  display: grid;
  gap: 2rem;
}
.prestation-list .prestation-list-container .prestation-list-item .text ul li {
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: 1em;
}
.prestation-list .prestation-list-container .prestation-list-item .text ul li::marker {
  font-size: 0.8rem;
}
@media screen and (min-width: 48em) {
  .prestation-list .prestation-list-container {
    display: grid;
    max-width: 1200px;
    margin: auto;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .prestation-list .prestation-list-container .prestation-list-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
  }
  .prestation-list .prestation-list-container .prestation-list-item .text ul li {
    padding: 0;
  }
}

.prestation-slider {
  padding: 0;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background-color: #002060;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text h2, .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text p, .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text li, .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text a {
  color: #f0f0f0;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text ul {
  margin-top: 0;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text ul li {
  padding: 0;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text .text {
  margin-bottom: 2rem;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-img {
  overflow: hidden;
  aspect-ratio: 1;
  height: 100%;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-pagination {
  position: absolute;
  right: -5px;
  left: unset;
  bottom: 20%;
  top: unset;
  width: fit-content;
  transform: translateY(-50%);
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 0.5rem;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #f0f0f0;
  width: 2rem;
  height: 6px;
  margin: 0;
  border-radius: 3px;
  border: 0;
  opacity: 1;
  transition: 0.3s;
}
.prestation-slider .prestation-slider-container .prestaSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FF5000;
  width: 3rem;
}
@media screen and (min-width: 64em) {
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text {
    padding: 3rem 7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    background-color: #002060;
  }
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text h2, .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text p, .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text li, .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text a {
    color: #f0f0f0;
  }
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text ul {
    margin-bottom: 0;
  }
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-text ul li {
    padding: 0;
  }
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-img {
    overflow: hidden;
    aspect-ratio: 16/9;
    height: 100%;
  }
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-slide .presta-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-pagination {
    position: absolute;
    right: -5px;
    left: unset;
    top: 50%;
    bottom: unset;
    width: fit-content;
    transform: translateY(-50%);
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 1rem;
  }
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-pagination .swiper-pagination-bullet {
    background-color: #f0f0f0;
    width: 2.5rem;
    height: 6px;
    margin: 0;
    border-radius: 3px;
    border: 0;
    opacity: 1;
    transition: 0.3s;
  }
  .prestation-slider .prestation-slider-container .prestaSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #FF5000;
    width: 3.5rem;
  }
}

.prestation-section {
  padding: 0;
}
.prestation-section .prestation-container {
  display: grid;
}
.prestation-section .prestation-container .prestation-content {
  order: 2;
  background-color: #002060;
  padding: 1.5rem;
}
.prestation-section .prestation-container .prestation-content h2 {
  color: white;
}
.prestation-section .prestation-container .prestation-content .text {
  color: white;
}
.prestation-section .prestation-container .prestation-content .text p {
  margin-bottom: 0.5rem;
}
.prestation-section .prestation-container .prestation-img {
  order: 1;
  aspect-ratio: 4/3;
}
.prestation-section .prestation-container .prestation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 64em) {
  .prestation-section {
    padding-inline: 5%;
    padding-bottom: 7rem;
  }
  .prestation-section .prestation-container {
    display: block;
    position: relative;
    max-width: 1200px;
    margin: auto;
  }
  .prestation-section .prestation-container .prestation-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    order: unset;
    background-color: #002060;
    padding: 1.5rem;
    border-radius: 10px;
  }
  .prestation-section .prestation-container .prestation-content.prestation-content-right {
    left: unset;
    right: 0;
  }
  .prestation-section .prestation-container .prestation-content h2 {
    color: white;
  }
  .prestation-section .prestation-container .prestation-content .text {
    color: white;
  }
  .prestation-section .prestation-container .prestation-img {
    width: 70%;
    margin-left: auto;
    order: unset;
    aspect-ratio: 4/3;
    overflow: hidden;
    padding-top: 4rem;
  }
  .prestation-section .prestation-container .prestation-img.prestation-img-right {
    margin-left: 0;
    margin-right: auto;
  }
  .prestation-section .prestation-container .prestation-img img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.about-pres.dev-pres .text {
  font-weight: bold;
}
.about-pres .about-pres-container {
  max-width: 1200px;
  margin: auto;
}
@media screen and (min-width: 64em) {
  .about-pres {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.about-presta .about-presta-container .about-presta-text {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.about-presta .about-presta-container .about-presta-video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.about-presta .about-presta-container .about-presta-video iframe, .about-presta .about-presta-container .about-presta-video object, .about-presta .about-presta-container .about-presta-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 64em) {
  .about-presta {
    padding-top: 7rem;
    padding-bottom: 7rem;
    padding-inline: 2rem;
  }
  .about-presta .about-presta-container {
    max-width: 1600px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
  }
  .about-presta .about-presta-container .about-presta-text {
    display: grid;
    gap: 3rem;
    margin-bottom: 0;
  }
  .about-presta .about-presta-container .about-presta-video {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
  }
  .about-presta .about-presta-container .about-presta-video iframe, .about-presta .about-presta-container .about-presta-video object, .about-presta .about-presta-container .about-presta-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.about-timeline-mobile {
  display: block;
}
.about-timeline-mobile .about-timeline-mobile-container {
  position: relative;
}
.about-timeline-mobile .about-timeline-mobile-container h2 {
  margin-bottom: 2rem;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide {
  height: auto;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: bold;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide .slide-media {
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide .slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide .slide-media.slide-video {
  aspect-ratio: 0;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide .slide-media.slide-video iframe, .about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide .slide-media.slide-video object, .about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide .slide-media.slide-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide .text {
  margin-bottom: 4rem;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .swiper-slide .year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  text-align: center;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .about-timeline-nav {
  position: absolute;
  z-index: 10;
  bottom: -0.25rem;
  width: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .about-timeline-nav .about-timeline-nav-arrow.swiper-button-disabled {
  opacity: 0.5;
}
.about-timeline-mobile .about-timeline-mobile-container .about-timeline-slider .about-timeline-nav .about-timeline-nav-arrow svg path {
  fill: #FF5000;
}
@media screen and (min-width: 64em) {
  .about-timeline-mobile {
    display: none;
  }
}

.about-timeline {
  padding-bottom: 7rem;
}
@media screen and (max-width: 64em) {
  .about-timeline {
    display: none;
  }
}
.about-timeline .about-timeline-container {
  max-width: 1600px;
  margin: auto;
}
.about-timeline .about-timeline-container .about-timeline-dates {
  margin-top: 4rem;
  margin-bottom: 5rem;
}
.about-timeline .about-timeline-container .about-timeline-dates svg {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-timeline .about-timeline-container .about-timeline-dates svg path {
  transition: 0.3s;
}
.about-timeline .about-timeline-container .about-timeline-dates svg path.svg-link {
  fill: #FFB999;
  cursor: pointer;
}
.about-timeline .about-timeline-container .about-timeline-dates svg path.svg-link:hover, .about-timeline .about-timeline-container .about-timeline-dates svg path.svg-link.active {
  fill: #FF5000;
}
.about-timeline .about-timeline-container .about-timeline-list {
  position: relative;
}
.about-timeline .about-timeline-container .about-timeline-list .about-timeline-item {
  min-width: 0;
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  height: auto;
}
.about-timeline .about-timeline-container .about-timeline-list .about-timeline-item .about-timeline-media {
  min-width: 0;
  display: flex;
  justify-content: center;
}
.about-timeline .about-timeline-container .about-timeline-list .about-timeline-item .about-timeline-media.timeline-video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.about-timeline .about-timeline-container .about-timeline-list .about-timeline-item .about-timeline-media.timeline-video iframe, .about-timeline .about-timeline-container .about-timeline-list .about-timeline-item .about-timeline-media.timeline-video object, .about-timeline .about-timeline-container .about-timeline-list .about-timeline-item .about-timeline-media.timeline-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-timeline .about-timeline-container .about-timeline-list .about-timeline-item .about-timeline-media img {
  height: 100%;
  min-height: 400px;
  max-height: 500px;
  width: auto;
  object-fit: contain;
  margin: auto;
}
.about-timeline .about-timeline-container .about-timeline-list .about-timeline-item .about-timeline-text h3 {
  margin-top: 1rem !important;
}
.about-timeline .about-timeline-container .about-timeline-list .swiper-button-prev, .about-timeline .about-timeline-container .about-timeline-list .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.about-timeline .about-timeline-container .about-timeline-list .swiper-button-prev {
  left: -3rem;
  color: #FF5000;
}
.about-timeline .about-timeline-container .about-timeline-list .swiper-button-next {
  right: -3rem;
  color: #FF5000;
}

.about-durable {
  padding: 0;
}
.about-durable .about-durable-container .about-durable-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background-color: #FF5000;
}
.about-durable .about-durable-container .about-durable-content h2, .about-durable .about-durable-container .about-durable-content p, .about-durable .about-durable-container .about-durable-content li, .about-durable .about-durable-container .about-durable-content a {
  color: #f0f0f0;
}
.about-durable .about-durable-container .about-durable-slider .swiper-slide {
  height: auto;
}
.about-durable .about-durable-container .about-durable-slider .swiper-slide .swiper-slide-img {
  overflow: hidden;
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}
.about-durable .about-durable-container .about-durable-slider .swiper-slide .swiper-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-durable .about-durable-container .about-durable-slider .swiper-pagination {
  position: absolute;
  right: -5px;
  left: unset;
  top: 50%;
  bottom: unset;
  width: fit-content;
  transform: translateY(-50%);
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 1rem;
}
.about-durable .about-durable-container .about-durable-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: #f0f0f0;
  width: 2.5rem;
  height: 6px;
  margin: 0;
  border-radius: 3px;
  border: 0;
  opacity: 1;
  transition: 0.3s;
}
.about-durable .about-durable-container .about-durable-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FF5000;
  width: 3.5rem;
}
@media screen and (min-width: 64em) {
  .about-durable .about-durable-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .about-durable .about-durable-container .about-durable-content {
    padding: 3rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    background-color: #FF5000;
  }
  .about-durable .about-durable-container .about-durable-content h2, .about-durable .about-durable-container .about-durable-content p, .about-durable .about-durable-container .about-durable-content li, .about-durable .about-durable-container .about-durable-content a {
    color: #f0f0f0;
  }
  .about-durable .about-durable-container .about-durable-slider {
    min-width: 0;
  }
  .about-durable .about-durable-container .about-durable-slider .swiper-slide {
    min-width: 0;
    height: auto;
  }
  .about-durable .about-durable-container .about-durable-slider .swiper-slide .swiper-slide-img {
    overflow: hidden;
    aspect-ratio: 16/9;
    height: 100%;
  }
  .about-durable .about-durable-container .about-durable-slider .swiper-slide .swiper-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-durable .about-durable-container .about-durable-slider .swiper-pagination {
    position: absolute;
    right: -5px;
    left: unset;
    top: 50%;
    bottom: unset;
    width: fit-content;
    transform: translateY(-50%);
    display: flex;
    align-items: end;
    flex-direction: column;
    gap: 1rem;
  }
  .about-durable .about-durable-container .about-durable-slider .swiper-pagination .swiper-pagination-bullet {
    background-color: #f0f0f0;
    width: 2.5rem;
    height: 6px;
    margin: 0;
    border-radius: 3px;
    border: 0;
    opacity: 1;
    transition: 0.3s;
  }
  .about-durable .about-durable-container .about-durable-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #FF5000;
    width: 3.5rem;
  }
}

.certifications {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.certifications .certifications-container {
  max-width: 1600px;
  margin: auto;
}
.certifications .certifications-container h2 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.certifications .certifications-container .certifications-list {
  display: grid;
  gap: 2rem;
}
.certifications .certifications-container .certifications-list .certifications-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.certifications .certifications-container .certifications-list .certifications-item .certifications-logo {
  max-width: 200px;
  max-height: 150px;
  width: 100%;
}
.certifications .certifications-container .certifications-list .certifications-item .certifications-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.certifications .certifications-container .certifications-list .certifications-item .certifications-text p {
  padding-top: 1rem;
}
.certifications .certifications-container .certifications-list .certifications-item .certifications-text p:first-of-type {
  padding-top: 0;
}
@media screen and (min-width: 64em) {
  .certifications {
    padding-top: 0;
    padding-bottom: 7rem;
  }
  .certifications .certifications-container {
    max-width: 1400px;
    margin: auto;
  }
  .certifications .certifications-container h2 {
    padding: 0;
    margin: 0;
    margin-bottom: 6rem;
  }
  .certifications .certifications-container .certifications-list {
    display: grid;
    gap: 4rem;
  }
  .certifications .certifications-container .certifications-list .certifications-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 5%;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .certifications .certifications-container .certifications-list .certifications-item .certifications-logo {
    max-width: 300px;
    height: 150px;
    width: 100%;
  }
  .certifications .certifications-container .certifications-list .certifications-item .certifications-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .certifications .certifications-container .certifications-list .certifications-item .certifications-text p {
    padding-top: 1rem;
  }
  .certifications .certifications-container .certifications-list .certifications-item .certifications-text p:first-of-type {
    padding-top: 0;
  }
}

.about-map .about-map-container {
  max-width: 1400px;
  margin: auto;
}
.about-map .about-map-container .about-map-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-team {
  padding: 0;
}
@media screen and (min-width: 64em) {
  .about-team {
    padding-bottom: 7rem;
  }
}
.about-team .about-team-container .about-team-title {
  padding: 1rem 1.5rem;
  background-color: #002060;
}
@media screen and (min-width: 64em) {
  .about-team .about-team-container .about-team-title {
    padding: 0.5rem 1.5rem;
  }
}
.about-team .about-team-container .about-team-title .about-team-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}
.about-team .about-team-container .about-team-title h2 {
  color: white;
  margin: 0;
}
@media screen and (min-width: 64em) {
  .about-team .about-team-container .about-team-title h2 {
    padding-inline: 1.5rem;
  }
}
.about-team .about-team-container .about-team-title .dropdown {
  position: relative;
  display: inline-block;
}
.about-team .about-team-container .about-team-title .about-filter {
  height: fit-content;
}
.about-team .about-team-container .about-team-title .dropdown-team {
  color: white;
  border: none;
  line-height: 1em;
  height: auto;
  padding: 0;
  padding-right: 1.5rem;
  position: relative;
  text-transform: none;
  cursor: pointer;
  font-size: 0.8rem;
}
.about-team .about-team-container .about-team-title .dropdown-team:hover {
  background-color: transparent;
  color: white;
}
.about-team .about-team-container .about-team-title .dropdown-team::before {
  content: "";
  position: absolute;
  background-image: url("/wp-content/themes/website/assets/img/filter.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 5px;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 64em) {
  .about-team .about-team-container .about-team-title .dropdown-team {
    font-size: 1.125rem;
  }
}
.about-team .about-team-container .about-team-title .dropdown-menu {
  position: absolute;
  top: 100%;
  list-style: none;
  padding: 1rem;
  margin: 0;
  left: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none; /* Caché par défaut */
}
.about-team .about-team-container .about-team-title .dropdown-menu li {
  padding-inline: 10px;
  cursor: pointer;
}
.about-team .about-team-container .about-team-grid {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: auto;
  gap: 1rem;
}
@media screen and (min-width: 48em) {
  .about-team .about-team-container .about-team-grid {
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 2rem;
  }
}
@media screen and (min-width: 64em) {
  .about-team .about-team-container .about-team-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}
@media screen and (min-width: 79em) {
  .about-team .about-team-container .about-team-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.about-team .about-team-container .about-team-grid .about-team-item {
  width: 100%;
}
.about-team .about-team-container .about-team-grid .about-team-item .about-team-item-img {
  width: 100%;
  height: auto;
}
.about-team .about-team-container .about-team-grid .about-team-item .about-team-item-img img {
  width: 100%;
}
.about-team .about-team-container .about-team-grid .about-team-item .about-team-item-text .nom {
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
.about-team .about-team-container .about-team-grid .about-team-item .about-team-item-text .poste {
  text-transform: uppercase;
}

.news {
  padding: 0;
  padding-bottom: 3rem;
}
.news.article-news {
  margin-bottom: 3rem;
}
.news .news-container .news-title {
  padding: 3rem 1.5rem 0;
}
.news .news-container .news-title .o-link {
  display: none;
}
.news .news-container .news-main {
  display: grid;
  gap: 1rem;
}
.news .news-container .news-main .news-main-img {
  order: 0;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  margin-left: 1.5rem;
}
.news .news-container .news-main .news-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .news-container .news-main .news-main-text {
  order: 1;
  margin: 0 1.5rem 1.5rem;
  border-radius: 10px;
  padding: 1.5rem;
  background-color: #FF5000;
}
.news .news-container .news-main .news-main-text p, .news .news-container .news-main .news-main-text h3, .news .news-container .news-main .news-main-text a {
  color: white;
}
.news .news-container .news-list {
  display: grid;
  gap: 1rem;
  padding-inline: 1.5rem;
}
.news .news-container .news-list:hover .news-item {
  opacity: 0.5;
}
.news .news-container .news-list .news-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: 0.3s;
}
.news .news-container .news-list .news-item .news-item-img {
  width: 150px;
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 10px;
  transition: 0.3s;
}
.news .news-container .news-list .news-item .news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .news-container .news-list .news-item .news-item-content .date p {
  transition: 0.3s;
  color: #002060;
}
.news .news-container .news-list .news-item .news-item-content .text {
  max-width: 280px;
}
.news .news-container .news-list .news-item .news-item-content .text p {
  transition: 0.3s;
  font-weight: 700;
  color: #002060;
}
.news .news-container .news-list .news-item:hover {
  opacity: 1;
}
.news .news-container .news-list .news-item:hover .news-item-content .date p, .news .news-container .news-list .news-item:hover .news-item-content .text p {
  color: #FF5000;
}
.news .news-container .news-btn {
  margin-top: 2rem;
  padding-inline: 1.5rem;
}
.news .news-container .news-btn .o-link {
  margin-left: auto;
}
@media screen and (min-width: 64em) {
  .news {
    padding: 5rem 5%;
  }
  .news .news-container {
    max-width: 1600px;
    margin: auto;
  }
  .news .news-container .news-title {
    padding: 0;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news .news-container .news-title h2 {
    margin-bottom: 0;
  }
  .news .news-container .news-title .o-link {
    display: block;
  }
  .news .news-container .news-main {
    display: grid;
    gap: 1rem;
    margin-bottom: 4rem;
  }
  .news .news-container .news-main .news-main-img {
    order: 0;
    border-radius: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    margin-left: 0;
  }
  .news .news-container .news-main .news-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news .news-container .news-main .news-main-text {
    order: 1;
    margin: 0;
    border-radius: 10px;
    padding: 3rem;
    background-color: #FF5000;
  }
  .news .news-container .news-main .news-main-text .date p {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .news .news-container .news-main .news-main-text p, .news .news-container .news-main .news-main-text h3, .news .news-container .news-main .news-main-text a {
    color: white;
  }
  .news .news-container .news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-inline: 0;
  }
  .news .news-container .news-list .news-item {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .news .news-container .news-list .news-item .news-item-img {
    width: 150px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
  }
  .news .news-container .news-list .news-item .news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news .news-container .news-list .news-item .news-item-content .date p {
    font-size: 0.8rem;
    color: #002060;
  }
  .news .news-container .news-list .news-item .news-item-content .text p {
    font-weight: 700;
    color: #002060;
  }
  .news .news-container .news-btn {
    margin-top: 2rem;
    padding-inline: 1.5rem;
  }
  .news .news-container .news-btn .o-link {
    margin-left: auto;
  }
}
@media screen and (min-width: 90em) {
  .news {
    padding: 7rem 5%;
  }
  .news .news-container {
    max-width: 1600px;
    margin: auto;
  }
  .news .news-container .news-title {
    padding: 0;
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news .news-container .news-title h2 {
    margin-bottom: 0;
  }
  .news .news-container .news-title .o-link {
    display: block;
  }
  .news .news-container .news-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .news .news-container .news-main .news-main-img {
    order: 1;
    border-radius: 10px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    margin-left: 0;
  }
  .news .news-container .news-main .news-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news .news-container .news-main .news-main-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 0;
    margin: 0;
    border-radius: 10px;
    padding: 3rem;
    background-color: #FF5000;
  }
  .news .news-container .news-main .news-main-text h3 {
    font-weight: bold;
  }
  .news .news-container .news-main .news-main-text .date p {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .news .news-container .news-main .news-main-text p, .news .news-container .news-main .news-main-text h3, .news .news-container .news-main .news-main-text a {
    color: white;
  }
  .news .news-container .news-main .news-main-text .o-link {
    margin-top: 2rem;
  }
  .news .news-container .news-main .news-main-text a {
    font-weight: bold;
  }
  .news .news-container .news-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding-inline: 0;
  }
  .news .news-container .news-list .news-item {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .news .news-container .news-list .news-item .news-item-img {
    width: 150px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
  }
  .news .news-container .news-list .news-item .news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news .news-container .news-list .news-item .news-item-content .date p {
    font-size: 0.8rem;
    color: #002060;
  }
  .news .news-container .news-list .news-item .news-item-content .text p {
    font-weight: 700;
    color: #002060;
  }
  .news .news-container .news-btn {
    margin-top: 2rem;
    padding-inline: 1.5rem;
  }
  .news .news-container .news-btn .o-link {
    margin-left: auto;
  }
}

.team {
  padding: 3rem 0;
}
.team .team-container .team-presentation {
  padding: 0 1.5rem 1.5rem;
}
.team .team-container .team-presentation p {
  margin-bottom: 2rem;
}
.team .team-container .team-contact .team-contact-img {
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.team .team-container .team-contact .team-contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team .team-container .team-contact .team-contact-content {
  margin: 1.5rem;
  margin-bottom: 0;
  padding: 1.5rem;
  background-color: #FF5000;
  border-radius: 10px;
}
.team .team-container .team-contact .team-contact-content h2, .team .team-container .team-contact .team-contact-content p {
  color: white;
  font-weight: 400;
}
.team .team-container .team-contact .team-contact-content p {
  margin-bottom: 2rem;
}
.team .team-container .team-contact .team-contact-content a {
  cursor: pointer;
}
@media screen and (min-width: 48em) {
  .team {
    padding: 5rem 5%;
  }
  .team.team-ref {
    padding-top: 0;
  }
  .team .team-container .team-presentation {
    max-width: 1000px;
    margin: auto;
    margin-bottom: 5rem;
    padding: 0;
  }
  .team .team-container .team-contact .team-contact-img {
    aspect-ratio: 4/3;
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
  }
  .team .team-container .team-contact .team-contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team .team-container .team-contact .team-contact-content {
    margin: 0;
    margin-bottom: 0;
    padding: 1.5rem;
    background-color: #FF5000;
    border-radius: 10px;
  }
  .team .team-container .team-contact .team-contact-content h2, .team .team-container .team-contact .team-contact-content p {
    color: white;
  }
}
@media screen and (min-width: 48em) {
  .team {
    padding: 7rem 5%;
  }
  .team .team-container .team-presentation {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 7rem;
    padding: 0;
  }
  .team .team-container .team-contact {
    display: grid;
    grid-template-columns: 3fr 2fr;
    max-width: 1600px;
    margin: auto;
    gap: 1rem;
  }
  .team .team-container .team-contact .team-contact-img {
    aspect-ratio: 4/3;
    width: 100%;
    max-width: none;
    margin: auto;
  }
  .team .team-container .team-contact .team-contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team .team-container .team-contact .team-contact-content {
    margin: 0;
    margin-bottom: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FF5000;
  }
  .team .team-container .team-contact .team-contact-content h2, .team .team-container .team-contact .team-contact-content p {
    color: white;
  }
}

.ref-intro {
  margin-top: 100px;
  padding: 0;
}
.ref-intro .ref-intro-container .ref-intro-content {
  background-color: #002060;
  padding: 1.5rem;
}
.ref-intro .ref-intro-container .ref-intro-content .date {
  font-size: 0.8rem;
  color: #6385C7;
}
.ref-intro .ref-intro-container .ref-intro-content h1 {
  color: white;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.ref-intro .ref-intro-container .ref-intro-content .text {
  color: white;
  font-size: 1.125rem;
}
.ref-intro .ref-intro-container .ref-intro-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.ref-intro .ref-intro-container .ref-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 64em) {
  .ref-intro {
    margin-top: 100px;
  }
  .ref-intro .ref-intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ref-intro .ref-intro-container .ref-intro-content {
    background-color: #002060;
    padding: 3rem;
  }
  .ref-intro .ref-intro-container .ref-intro-content .date {
    font-size: 0.8rem;
    color: #6385C7;
  }
  .ref-intro .ref-intro-container .ref-intro-content h1 {
    color: white;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .ref-intro .ref-intro-container .ref-intro-content .text {
    color: white;
    font-size: 1.125rem;
  }
  .ref-intro .ref-intro-container .ref-intro-img {
    overflow: hidden;
    height: 100%;
    aspect-ratio: unset;
  }
  .ref-intro .ref-intro-container .ref-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 79em) {
  .ref-intro {
    margin-top: 100px;
  }
  .ref-intro .ref-intro-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
  .ref-intro .ref-intro-container .ref-intro-content {
    background-color: #002060;
    padding: 5rem;
  }
  .ref-intro .ref-intro-container .ref-intro-content .date {
    font-size: 0.8rem;
    color: #6385C7;
  }
  .ref-intro .ref-intro-container .ref-intro-content h1 {
    color: white;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .ref-intro .ref-intro-container .ref-intro-content .text {
    color: white;
    font-size: 1.125rem;
  }
  .ref-intro .ref-intro-container .ref-intro-img {
    overflow: hidden;
    aspect-ratio: 10/5;
  }
  .ref-intro .ref-intro-container .ref-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.ref-content .ref-content-container .ref-content-sidebar {
  margin-bottom: 4rem;
  max-width: 250px;
}
.ref-content .ref-content-container .ref-content-sidebar .ref-content-sidebar-item {
  margin-bottom: 0.5rem;
}
.ref-content .ref-content-container .ref-content-sidebar .ref-content-sidebar-item .ref-label {
  font-weight: bold;
}
.ref-content .ref-content-container .ref-content-sidebar .ref-content-sidebar-item p {
  line-height: 1.2em;
  font-weight: 500;
}
.ref-content .ref-content-container .ref-content-sidebar .ref-intervenant {
  margin-bottom: 3rem;
}
.ref-content .ref-content-container .ref-content-sidebar .ref-socials {
  display: none;
}
.ref-content .ref-content-container .ref-content-sidebar .ref-socials .ref-label {
  margin-bottom: 0.5rem;
}
.ref-content .ref-content-container .ref-content-sidebar .ref-socials .socials {
  display: flex;
  gap: 1rem;
}
.ref-content .ref-content-container .ref-content-sidebar .ref-socials .socials img {
  width: 25px;
}
@media screen and (min-width: 48em) {
  .ref-content .ref-content-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: 250px 1fr;
  }
  .ref-content .ref-content-container .ref-content-sidebar {
    margin-bottom: 4rem;
    max-width: 250px;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-content-sidebar-item {
    margin-bottom: 0.5rem;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-content-sidebar-item .ref-label {
    font-weight: bold;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-content-sidebar-item p {
    line-height: 1.2em;
    font-weight: 500;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-intervenant {
    margin-bottom: 3rem;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-socials {
    display: none;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-socials .ref-label {
    margin-bottom: 0.5rem;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-socials .socials {
    display: flex;
    gap: 1rem;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-socials .socials img {
    width: 25px;
  }
}
@media screen and (min-width: 64em) {
  .ref-content {
    padding-top: 5rem;
  }
  .ref-content .ref-content-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    gap: 5rem;
    grid-template-columns: 300px 1fr;
  }
  .ref-content .ref-content-container .ref-content-sidebar {
    margin-bottom: 4rem;
    max-width: 300px;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-content-sidebar-item {
    margin-bottom: 1rem;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-content-sidebar-item .ref-label {
    font-weight: bold;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-content-sidebar-item p {
    line-height: 1.2em;
    font-weight: 500;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-intervenant {
    margin-bottom: 3rem;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-socials {
    display: none;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-socials .ref-label {
    margin-bottom: 0.5rem;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-socials .socials {
    display: flex;
    gap: 1rem;
  }
  .ref-content .ref-content-container .ref-content-sidebar .ref-socials .socials img {
    width: 25px;
  }
}
@media screen and (min-width: 79em) {
  .ref-content {
    padding-top: 7rem;
  }
  .ref-content .ref-content-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    gap: 15%;
    grid-template-columns: 250px 1fr;
  }
}

.gutenberg-content p, .gutenberg-content li, .gutenberg-content span, .gutenberg-content em {
  font-weight: 500;
}
.gutenberg-content .wp-block-gallery {
  margin-top: 2rem;
}
.gutenberg-content ul {
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.gutenberg-content ul li {
  padding-left: 0;
}
.gutenberg-content ul li::marker {
  font-size: 0.8rem;
  margin-top: -5px;
}
.gutenberg-content .wp-block-gallery {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.gutenberg-content .wp-block-columns {
  gap: 2rem;
}

.blog-list {
  padding-top: 3rem;
}
.blog-list .blog-list-container {
  position: relative;
}
.blog-list .blog-list-container .blog-list-item {
  z-index: 1;
  margin-bottom: 2rem;
}
.blog-list .blog-list-container .blog-list-item.d-img .blog-list-item-img {
  display: block;
}
.blog-list .blog-list-container .blog-list-item .blog-list-item-img {
  display: none;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-top: 0;
  margin-bottom: 1rem;
}
.blog-list .blog-list-container .blog-list-item .blog-list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.blog-list .blog-list-container .blog-list-item .blog-list-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.blog-list .blog-list-container .blog-list-item .date {
  margin-bottom: 0;
}
.blog-list .blog-list-container .blog-list-item .blog-list-link p {
  font-weight: 300;
  color: #FF9666;
  transition: 0.3s;
}
.blog-list .blog-list-container .blog-list-item:hover .blog-list-item-img img {
  transform: scale(1.05);
}
.blog-list .blog-list-container .blog-list-item:hover .blog-list-link p {
  color: #FF5000;
}
@media screen and (min-width: 48em) {
  .blog-list .blog-list-container {
    max-width: 1800px;
    margin: auto;
    display: grid;
    border-left: 1px solid #FF9666;
    border-right: 1px solid #FF9666;
    position: relative;
  }
  .blog-list .blog-list-container::after {
    content: "";
    position: absolute;
    background-color: #FF9666;
    width: 1px;
    left: calc(50% - 0.5rem);
    height: 100%;
    top: 0;
  }
  .blog-list .blog-list-container .blog-list-item {
    width: calc(50% - 1rem);
    height: fit-content;
    padding: 1rem;
    margin: 0;
    position: relative;
  }
  .blog-list .blog-list-container .blog-list-item::before {
    content: "";
    background-color: #FF9666;
    position: absolute;
    bottom: 0;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
  }
  .blog-list .blog-list-container .blog-list-item .date {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .blog-list .blog-list-container .blog-list-item h2 {
    max-width: 400px;
  }
  .blog-list .blog-list-container .blog-list-item .blog-list-title {
    font-size: 1.75rem;
  }
  .blog-list .blog-list-container .blog-list-item .text {
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 79em) {
  .blog-list {
    padding-top: 5rem;
  }
  .blog-list .blog-list-container {
    border-left: 0;
    display: grid;
  }
  .blog-list .blog-list-container::before {
    content: "";
    position: absolute;
    background-color: #FF9666;
    width: 1px;
    right: calc(33% + 1rem);
    height: 100%;
    top: 0;
  }
  .blog-list .blog-list-container::after {
    content: "";
    position: absolute;
    background-color: #FF9666;
    width: 1px;
    left: calc(33% - 0.5rem);
    height: 100%;
    top: 0;
  }
  .blog-list .blog-list-container .blog-list-item {
    width: calc(33% - 1rem);
    height: fit-content;
    position: relative;
  }
  .blog-list .blog-list-container .blog-list-item::before {
    content: "";
    background-color: #FF9666;
    position: absolute;
    bottom: 0;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
  }
}

.blog-intro {
  margin-top: 100px;
  background-color: #FF5000;
  position: relative;
  z-index: 5;
}
.blog-intro.reference-intro {
  background-color: #002060;
}
.blog-intro .blog-intro-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1800px;
  margin: auto;
}
.blog-intro .blog-intro-container .blog-intro-title h1 {
  color: white;
  margin: 0;
}
.blog-intro .blog-intro-container .blog-intro-filters {
  display: flex;
  gap: 2rem;
}
.blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter {
  position: relative;
  display: inline-block;
}
.blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-toggle {
  color: white;
  border: none;
  line-height: 1em;
  height: auto;
  padding: 0;
  padding-right: 1.5rem;
  position: relative;
  text-transform: none;
  cursor: pointer;
  font-size: 0.8rem;
}
.blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-toggle:hover {
  color: white;
  background-color: transparent;
}
.blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-toggle::before {
  content: "";
  position: absolute;
  background-image: url("/wp-content/themes/website/assets/img/filter.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 5px;
  width: 20px;
  height: 20px;
}
.blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none; /* Caché par défaut */
}
.blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-menu .dropdown-item {
  padding: 10px;
  cursor: pointer;
}
.blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-menu .dropdown-item:hover {
  background-color: #f0f0f0;
}
@media screen and (min-width: 48em) {
  .blog-intro .blog-intro-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .blog-intro .blog-intro-container .blog-intro-title h1 {
    color: white;
    margin: 0;
  }
  .blog-intro .blog-intro-container .blog-intro-filters {
    display: flex;
    gap: 2rem;
  }
  .blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter {
    position: relative;
    display: inline-block;
  }
  .blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-toggle {
    color: white;
    border: none;
    line-height: 1em;
    height: auto;
    padding: 0;
    padding-right: 1.5rem;
    position: relative;
    text-transform: none;
    cursor: pointer;
    font-size: 1rem;
  }
  .blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-toggle::before {
    content: "";
    position: absolute;
    background-image: url("/wp-content/themes/website/assets/img/filter.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    top: 5px;
    width: 20px;
    height: 20px;
  }
  .blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none; /* Caché par défaut */
  }
  .blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-menu .dropdown-item {
    padding: 10px;
    cursor: pointer;
  }
  .blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-menu .dropdown-item:hover {
    background-color: #f0f0f0;
  }
  .blog-intro .blog-intro-container .blog-intro-filters .blog-intro-filter .dropdown-menu.show {
    display: block;
  }
}
@media screen and (min-width: 79em) {
  .blog-intro {
    padding: 1rem 5%;
    margin-top: 135px;
  }
}
@media screen and (min-width: 115em) {
  .blog-intro {
    padding: 1rem 5%;
    margin-top: 140px;
  }
}

.article-intro {
  padding: 0;
  margin-top: 140px;
}
.article-intro .article-intro-container .article-intro-content {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-left: 1.5rem;
  background-color: #FF5000;
}
.article-intro .article-intro-container .article-intro-content p, .article-intro .article-intro-container .article-intro-content h1, .article-intro .article-intro-container .article-intro-content a {
  color: white;
}
.article-intro .article-intro-container .article-intro-content .date {
  margin-bottom: 0.5rem;
}
.article-intro .article-intro-container .article-intro-content .date p {
  font-size: 0.8rem;
}
.article-intro .article-intro-container .article-intro-content h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 500;
}
.article-intro .article-intro-container .article-intro-img {
  border-radius: 10px;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  aspect-ratio: 16/9;
  margin-right: 1.5rem;
}
.article-intro .article-intro-container .article-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  .article-intro {
    position: relative;
    min-height: calc(100vh - 140px);
    padding: 3rem 5%;
  }
  .article-intro .article-intro-container {
    max-width: 1600px;
    margin: auto;
  }
  .article-intro .article-intro-container .article-intro-content {
    position: relative;
    max-width: 50%;
    min-width: 600px;
    z-index: 1;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-left: 0;
  }
  .article-intro .article-intro-container .article-intro-content .date {
    margin-bottom: 0.5rem;
  }
  .article-intro .article-intro-container .article-intro-content .date p {
    font-size: 1rem;
  }
  .article-intro .article-intro-container .article-intro-content h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .article-intro .article-intro-container .article-intro-img {
    position: absolute;
    z-index: 0;
    height: calc(100% - 5rem);
    width: 70%;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    aspect-ratio: 3/4;
    margin-right: 0;
  }
  .article-intro .article-intro-container .article-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 79em) {
  .article-intro {
    position: relative;
    min-height: calc(100vh - 140px);
    padding: 3rem 5%;
  }
  .article-intro .article-intro-container {
    max-width: 1800px;
    margin: auto;
  }
  .article-intro .article-intro-container .article-intro-content {
    position: relative;
    max-width: 40%;
    min-width: 600px;
    z-index: 1;
    padding: 3rem;
    padding-right: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-left: 0;
  }
  .article-intro .article-intro-container .article-intro-content .date {
    margin-bottom: 0.5rem;
  }
  .article-intro .article-intro-container .article-intro-content .date p {
    font-size: 1rem;
  }
  .article-intro .article-intro-container .article-intro-content h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 3rem;
  }
  .article-intro .article-intro-container .article-intro-img {
    position: absolute;
    z-index: 0;
    height: calc(100% - 12rem);
    width: 60%;
    bottom: 5rem;
    right: 5%;
    border-radius: 10px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    aspect-ratio: 3/4;
    margin-right: 0;
  }
  .article-intro .article-intro-container .article-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.job-content {
  padding-bottom: 0rem;
  padding-top: 3rem;
}
.job-content .job-content-container {
  display: grid;
  gap: 3rem;
}
.job-content .job-content-container .job-content-text .text {
  margin-bottom: 2rem;
}
.job-content .job-content-container .job-content-text .job-content-contact {
  display: flex;
  flex-direction: column;
}
.job-content .job-content-container .job-content-text .job-content-contact .title {
  font-weight: bold;
}
.job-content .job-content-container .job-content-text .job-content-contact .tel {
  margin-bottom: 1rem;
  text-decoration: none;
  color: #002060;
  font-weight: normal;
}
.job-content .job-content-container .job-content-text .job-content-contact .tel:hover {
  color: #FF5000;
}
.job-content .job-content-container .job-content-text .job-content-contact .mail {
  color: #FF5000;
  font-weight: normal;
  text-decoration: underline;
}
.job-content .job-content-container .job-content-text .job-content-contact .mail:hover {
  text-decoration: underline;
}
.job-content .job-content-container .job-content-list .job-content-list-grid {
  display: grid;
  gap: 2rem;
}
.job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item .item-img {
  height: 50px;
  aspect-ratio: 1;
}
.job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item .item-img img {
  height: 100%;
  width: auto;
}
.job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item .item-title h3 {
  font-weight: bold;
  font-size: 1rem;
  color: #002060;
  margin: 0;
}
@media screen and (min-width: 48em) {
  .job-content .job-content-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
  }
  .job-content .job-content-container .job-content-text .text {
    margin-bottom: 2rem;
  }
  .job-content .job-content-container .job-content-text .job-content-contact {
    display: flex;
    flex-direction: column;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .title {
    font-weight: bold;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .tel {
    margin-bottom: 1rem;
    text-decoration: none;
    color: #002060;
    font-weight: normal;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .tel:hover {
    color: #FF5000;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .mail {
    color: #FF5000;
    font-weight: normal;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .mail:hover {
    text-decoration: underline;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid {
    display: grid;
    gap: 2rem;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item .item-img {
    height: 50px;
    aspect-ratio: 1;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item .item-img img {
    height: 100%;
    width: auto;
    transition: 0.3s;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item .item-title h3 {
    font-weight: bold;
    font-size: 1rem;
    color: #002060;
    margin: 0;
    transition: 0.3s;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item:hover .item-title h3 {
    color: #FF5000;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item:hover .item-img img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 79em) {
  .job-content {
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
  .job-content .job-content-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    gap: 10%;
    grid-template-columns: 1fr 400px;
  }
  .job-content .job-content-container .job-content-text {
    max-width: 700px;
    margin: auto;
    margin-top: 0;
  }
  .job-content .job-content-container .job-content-text .text {
    margin-bottom: 4rem;
  }
  .job-content .job-content-container .job-content-text .job-content-contact {
    display: flex;
    flex-direction: column;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .title {
    font-weight: bold;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .tel {
    margin-bottom: 1rem;
    text-decoration: none;
    color: #002060;
    font-weight: normal;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .tel:hover {
    color: #FF5000;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .mail {
    color: #FF5000;
    font-weight: normal;
  }
  .job-content .job-content-container .job-content-text .job-content-contact .mail:hover {
    text-decoration: underline;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid {
    display: grid;
    gap: 3rem;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item .item-img {
    height: 75px;
    aspect-ratio: 1;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item .item-img img {
    height: 100%;
    width: auto;
  }
  .job-content .job-content-container .job-content-list .job-content-list-grid .job-content-list-item .item-title h3 {
    font-weight: bold;
    font-size: 1.25rem;
    color: #002060;
    margin: 0;
  }
}

.job-content-img {
  padding-top: 2rem;
}
.job-content-img .job-content-img-container {
  max-width: 1300px;
  margin: auto;
}
.job-content-img .job-content-img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.job-intro {
  padding-top: 9rem;
}
@media screen and (min-width: 79em) {
  .job-intro {
    padding-top: 14rem;
  }
}
.job-intro .job-intro-container {
  max-width: 1200px;
  margin: auto;
}
.job-intro .job-intro-container .job-intro-title {
  display: flex;
  flex-direction: column;
}
.job-intro .job-intro-container .job-intro-title .job-intro-img {
  text-align: center;
  order: 1;
  margin-top: 2rem;
}
.job-intro .job-intro-container .job-intro-title .job-intro-img img {
  width: 70px;
}
.job-intro .job-intro-container .job-intro-title h1 {
  order: 0;
  color: #002060;
}
@media screen and (min-width: 64em) {
  .job-intro .job-intro-container {
    max-width: 1400px;
    margin: auto;
  }
  .job-intro .job-intro-container .job-intro-title {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 3rem;
  }
  .job-intro .job-intro-container .job-intro-title .job-intro-img {
    text-align: center;
    order: 0;
    margin-top: 0;
  }
  .job-intro .job-intro-container .job-intro-title .job-intro-img img {
    width: 150px;
  }
  .job-intro .job-intro-container .job-intro-title h1 {
    order: 1;
    margin: 0;
    color: #002060;
    max-width: 800px;
  }
}
@media screen and (min-width: 90em) {
  .job-intro .job-intro-container {
    max-width: 1400px;
    margin: auto;
  }
  .job-intro .job-intro-container .job-intro-title {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 3rem;
  }
  .job-intro .job-intro-container .job-intro-title .job-intro-img {
    text-align: center;
    order: 0;
    margin-top: 0;
  }
  .job-intro .job-intro-container .job-intro-title .job-intro-img img {
    width: 150px;
  }
  .job-intro .job-intro-container .job-intro-title h1 {
    order: 1;
    margin: 0;
    color: #002060;
  }
}

.single-job-content {
  padding-bottom: 3rem;
}
.single-job-content .single-job-content-container {
  display: grid;
  gap: 3rem;
}
.single-job-content .single-job-content-text {
  max-width: 1200px;
  margin: auto;
}
.single-job-content .job-info .job-info-container .job-label {
  font-weight: bold;
}
.single-job-content .job-info .job-info-container .address {
  margin-bottom: 1rem;
}
.single-job-content .job-info .job-info-container .contact-person {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
}
.single-job-content .job-info .job-info-container .contact-person a {
  font-weight: normal;
}
.single-job-content .job-info .job-info-container .contact-person a.mail {
  color: #FF5000;
}
.single-job-content .job-info .job-info-container .taux {
  margin-bottom: 1rem;
}
.single-job-content .job-info .job-info-container .date {
  margin-bottom: 3rem;
}
.single-job-content .job-info .job-info-container .back {
  margin-bottom: 3rem;
}
.single-job-content .job-info .job-info-container .o-link a {
  font-weight: bold;
  font-size: 1.125rem;
}
.single-job-content .job-info .job-info-container .o-link a::before {
  height: 2px;
}
.single-job-content .job-info .job-info-container .share .job-label {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 64em) {
  .single-job-content {
    padding-bottom: 7rem;
  }
  .single-job-content .single-job-content-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 10%;
  }
  .single-job-content .single-job-content-text {
    max-width: 1200px;
    margin: auto;
  }
  .single-job-content .job-info .job-info-container .job-label {
    font-weight: bold;
  }
  .single-job-content .job-info .job-info-container .address {
    margin-bottom: 1rem;
  }
  .single-job-content .job-info .job-info-container .contact-person {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
  }
  .single-job-content .job-info .job-info-container .contact-person a {
    font-weight: normal;
  }
  .single-job-content .job-info .job-info-container .contact-person a.mail {
    color: #FF5000;
  }
  .single-job-content .job-info .job-info-container .taux {
    margin-bottom: 1rem;
  }
  .single-job-content .job-info .job-info-container .date {
    margin-bottom: 3rem;
  }
  .single-job-content .job-info .job-info-container .back {
    margin-bottom: 3rem;
  }
  .single-job-content .job-info .job-info-container .o-link a {
    font-weight: bold;
    font-size: 1.125rem;
  }
  .single-job-content .job-info .job-info-container .o-link a::before {
    height: 2px;
  }
  .single-job-content .job-info .job-info-container .share .job-label {
    margin-bottom: 0.5rem;
  }
}

.article-content {
  padding-top: 4rem;
}
.article-content .article-content-container {
  max-width: 1200px;
  margin: auto;
}
.article-content .article-content-container .article-content-sections a {
  font-weight: normal;
  text-decoration: underline;
  color: #002060;
}
.article-content .article-content-container .article-content-sections a:hover {
  color: #6385C7;
}
.article-content .article-content-container .article-content-sections iframe {
  width: 100%;
}
.article-content .article-content-container .article-content-sections .wp-block-file__button {
  background-color: white;
  border: none;
}
.article-content .article-content-container .article-content-share {
  margin-top: 2rem;
}
.article-content .article-content-container .article-content-share p {
  margin-bottom: 1rem;
  font-weight: bold;
}
.article-content .article-content-container .article-content-share .socials {
  display: flex;
  gap: 1rem;
}
.article-content .article-content-container .article-content-share .socials img {
  width: 30px;
}
@media screen and (min-width: 79em) {
  .article-content {
    padding-top: 5rem;
  }
}

.references-list {
  padding-top: 3rem;
}
.references-list.reference-prestation {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.references-list .references-list-container .project-card {
  position: relative;
  margin-bottom: 1rem;
}
.references-list .references-list-container .project-card:hover .project-card-container .project-card-img img {
  transform: scale(1.05);
}
.references-list .references-list-container .project-card .project-card-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
}
.references-list .references-list-container .project-card .project-card-container::before {
  z-index: 1;
  position: absolute;
  content: "";
  background-color: #002060;
  opacity: 0.5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.references-list .references-list-container .project-card .project-card-container:hover::before {
  opacity: 1;
}
.references-list .references-list-container .project-card .project-card-container .project-card-img {
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.references-list .references-list-container .project-card .project-card-container .project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.references-list .references-list-container .project-card .project-card-container .project-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}
.references-list .references-list-container .project-card .project-card-container .project-card-content p, .references-list .references-list-container .project-card .project-card-container .project-card-content h3 {
  color: white;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
.references-list .references-list-container .project-card .project-card-container .project-card-content p {
  margin-bottom: 0;
}
.references-list .references-list-container .project-card .project-card-container .project-card-content .year {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.references-list .references-list-container .project-card .project-card-container .project-card-content h3 {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.references-list .references-list-container .project-card .project-card-container .project-card-content .text {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 48em) {
  .references-list.reference-prestation .references-list-container {
    max-width: 1600px;
    margin: auto;
  }
  .references-list.reference-prestation .reference-list-title {
    max-width: 1600px;
    margin: auto;
  }
  .references-list .references-list-container {
    max-width: 1800px;
    margin: auto;
    position: relative;
  }
  .references-list .references-list-container .project-card {
    width: calc(50% - 1rem);
  }
  .references-list .references-list-container .project-card .project-card-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
  }
  .references-list .references-list-container .project-card .project-card-container::before {
    z-index: 1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .references-list .references-list-container .project-card .project-card-container .project-card-img {
    position: absolute;
    top: 0;
    z-index: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .references-list .references-list-container .project-card .project-card-container .project-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
  }
  .references-list .references-list-container .project-card .project-card-container .project-card-content p, .references-list .references-list-container .project-card .project-card-container .project-card-content h3 {
    color: white;
    margin: 0;
    padding: 0;
    font-size: 1rem;
  }
  .references-list .references-list-container .project-card .project-card-container .project-card-content p {
    margin-bottom: 0;
  }
  .references-list .references-list-container .project-card .project-card-container .project-card-content .year {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  .references-list .references-list-container .project-card .project-card-container .project-card-content h3 {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .references-list .references-list-container .project-card .project-card-container .project-card-content .text {
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 79em) {
  .references-list {
    padding-top: 5rem;
  }
  .references-list .references-list-container {
    display: grid;
  }
  .references-list .references-list-container .project-card {
    width: calc(33% - 1rem);
  }
  .references-list .references-list-container .project-card .project-card-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
  }
  .references-list .references-list-container .project-card .project-card-container::before {
    z-index: 1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .references-list .references-list-container .project-card .project-card-container .project-card-img {
    position: absolute;
    top: 0;
    z-index: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.contact {
  padding-top: 140px;
}
.contact .contact-container {
  display: grid;
  gap: 2rem;
}
.contact .contact-container .acf-map {
  order: 1;
  aspect-ratio: 1;
}
.contact .contact-container .contact-info {
  order: 0;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 30em) {
  .contact .contact-container .contact-info {
    grid-template-columns: 1fr 1fr;
  }
}
.contact .contact-container .contact-info .location .city {
  font-weight: bold;
}
.contact .contact-container .contact-info .location .type {
  margin-bottom: 1rem;
}
.contact .contact-container .contact-info .location .links {
  display: flex;
  flex-direction: column;
}
.contact .contact-container .contact-info .location .links a {
  font-size: inherit;
  color: #002060;
  font-weight: 500;
}
.contact .contact-container .contact-info .location .links a.mail {
  color: #FF5000;
  text-decoration: underline;
}
@media screen and (min-width: 48em) {
  .contact .contact-container {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
  }
  .contact .contact-container .acf-map {
    order: 0;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
  }
  .contact .contact-container .contact-info {
    order: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact .contact-container .contact-info .location .city {
    font-weight: bold;
  }
  .contact .contact-container .contact-info .location .type {
    margin-bottom: 1rem;
  }
  .contact .contact-container .contact-info .location .links {
    display: flex;
    flex-direction: column;
  }
  .contact .contact-container .contact-info .location .links a {
    font-size: inherit;
    color: #002060;
    font-weight: 500;
  }
  .contact .contact-container .contact-info .location .links a.mail {
    color: #FF5000;
    text-decoration: underline;
  }
}
@media screen and (min-width: 64em) {
  .contact {
    padding-top: 250px;
    padding-bottom: 7rem;
  }
  .contact .contact-container {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 10%;
    max-width: 1400px;
    margin: auto;
  }
  .contact .contact-container .acf-map {
    order: 0;
    aspect-ratio: 1;
  }
  .contact .contact-container .contact-info {
    height: fit-content;
  }
}

.link-list {
  background-color: #002060;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 64em) {
  .link-list {
    padding-inline: 5%;
  }
}
.link-list .link-list-container .link-list-grid {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 64em) {
  .link-list .link-list-container .link-list-grid {
    display: flex;
    justify-content: space-between;
  }
}
.link-list .link-list-container .link-list-grid .link-list-item .link-list-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
}
.link-list .link-list-container .link-list-grid .link-list-item .o-link {
  margin-top: 1rem;
}
.link-list .link-list-container .link-list-grid .link-list-item .o-link a {
  font-weight: bold;
}
@media screen and (min-width: 64em) {
  .link-list .link-list-container .link-list-grid .link-list-item {
    max-width: 500px;
  }
  .link-list .link-list-container .link-list-grid .link-list-item .link-list-title {
    font-size: 2.25rem;
  }
}

.contact-link {
  margin-top: 2rem;
}
.contact-link .contact-link-text {
  font-weight: bold;
}
.contact-link .o-link a {
  font-weight: bold;
}

@media screen and (min-width: 64em) {
  .atouts {
    padding-top: 7rem;
  }
}
.atouts .atouts-container {
  max-width: 1200px;
  margin: auto;
}
.atouts .atouts-carousel {
  margin-top: 4rem;
}
.atouts .atouts-carousel .swiper {
  overflow: visible;
  max-height: 800px;
}
.atouts .atouts-carousel .swiper .swiper-button-prev,
.atouts .atouts-carousel .swiper .swiper-button-next {
  color: #FF5000;
}
.atouts .atouts-carousel .swiper-slide {
  height: auto;
  transition: 0.3s;
  width: 100%;
}
.atouts .atouts-carousel .swiper-slide.swiper-slide-prev, .atouts .atouts-carousel .swiper-slide.swiper-slide-next {
  opacity: 0.6;
  transform: scale(0.8);
}
.atouts .atouts-carousel a {
  display: block;
  width: 100%;
  height: 100%;
}
.atouts .atouts-carousel a .atouts-item {
  width: 100%;
  height: 100%;
}
.atouts .atouts-carousel a .atouts-item .atouts-item-container {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.atouts .atouts-carousel a .atouts-item .atouts-item-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 64em) {
  .atouts .atouts-carousel a .atouts-item .atouts-item-title {
    flex-direction: row;
    justify-content: space-between;
  }
}
.atouts .atouts-carousel a .atouts-item .atouts-item-title .o-link {
  margin: 0;
}
.atouts .atouts-carousel a .atouts-item .atouts-item-title p {
  font-weight: 700;
  margin: 0;
  color: #002060;
}
.atouts .atouts-carousel a .atouts-item .atouts-item-img {
  width: 100%;
  max-height: 700px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.atouts .atouts-carousel a .atouts-item .atouts-item-img img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  display: block;
  transition: 0.5s;
}
.atouts .atouts-carousel a .atouts-item .atous-item-legende {
  margin-top: 0.5rem;
  width: 100%;
}
.atouts .atouts-carousel a .atouts-item .atous-item-legende p {
  color: #002060;
}

.dev-pros {
  padding: 0;
  padding-top: 3rem;
}
@media screen and (min-width: 64em) {
  .dev-pros {
    padding-top: 7rem;
  }
}
.dev-pros .dev-pros-container .dev-pros-title-container {
  padding-inline: 1.5rem;
}
@media screen and (min-width: 64em) {
  .dev-pros .dev-pros-container .dev-pros-title-container {
    padding-inline: 5%;
  }
}
.dev-pros .dev-pros-container .dev-pros-title {
  max-width: 1200px;
  margin: auto;
}
.dev-pros .dev-pros-container .dev-pros-grid {
  display: grid;
  max-width: 1800px;
  margin: auto;
}
@media screen and (min-width: 64em) {
  .dev-pros .dev-pros-container .dev-pros-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.dev-pros .dev-pros-container .dev-pros-grid .dev-pros-item {
  display: block;
}
.dev-pros .dev-pros-container .dev-pros-grid .dev-pros-item .dev-pros-item-img {
  width: 100%;
}
.dev-pros .dev-pros-container .dev-pros-grid .dev-pros-item .dev-pros-item-img img {
  width: 100%;
  height: auto;
}
.interne .interne-container {
  max-width: 1200px;
  margin: auto;
}
.interne .interne-container .interne-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 64em) {
  .interne .interne-container .interne-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.interne .interne-container .interne-grid .interne-item .interne-item-img {
  position: relative;
}
.interne .interne-container .interne-grid .interne-item .interne-item-img .swiper {
  width: 100%;
  height: 100%;
  display: grid;
}
.interne .interne-container .interne-grid .interne-item .interne-item-img .swiper-wrapper {
  min-width: 0;
}
.interne .interne-container .interne-grid .interne-item .interne-item-img .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 100%;
}
.interne .interne-container .interne-grid .interne-item .interne-item-img .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.interne .interne-container .interne-grid .interne-item .interne-item-img .swiper-slide a img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.interne .interne-container .interne-grid .interne-item .interne-item-img .swiper-button-prev,
.interne .interne-container .interne-grid .interne-item .interne-item-img .swiper-button-next {
  color: white;
}
.interne .interne-container .interne-grid .interne-item .interne-item-text {
  margin-top: 1rem;
}
@media screen and (min-width: 64em) {
  .interne .interne-container .interne-accordeons {
    margin-top: 3rem;
  }
}
.interne .interne-container .interne-accordeons .interne-accordeon {
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-bottom: 1px solid #002060;
}
@media screen and (min-width: 64em) {
  .interne .interne-container .interne-accordeons .interne-accordeon {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
.interne .interne-container .interne-accordeons .interne-accordeon:last-of-type {
  border: none;
}
.interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 64em) {
  .interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title {
    padding-right: 1rem;
  }
}
.interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title p {
  font-weight: bold;
  flex: 1;
}
@media screen and (min-width: 64em) {
  .interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title p {
    font-size: 1.25rem;
  }
}
.interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title .plus {
  position: relative;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 64em) {
  .interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title .plus {
    width: 30px;
    height: 30px;
  }
}
.interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title .plus::before, .interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title .plus::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  background-color: #FF5000;
  height: 1px;
  width: 20px;
  transition: 0.3s;
}
@media screen and (min-width: 64em) {
  .interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title .plus::before, .interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title .plus::after {
    top: 15px;
    left: 14px;
    width: 30px;
  }
}
.interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title .plus::after {
  transform: rotate(90deg);
}
.interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title.active .plus::before {
  background-color: #002060;
  transform: rotate(45deg);
}
.interne .interne-container .interne-accordeons .interne-accordeon .accordeon-title.active .plus::after {
  background-color: #002060;
  transform: rotate(135deg);
}
.interne .interne-container .interne-accordeons .interne-accordeon .accordeon-content {
  display: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.progress {
  background-color: #FF5000;
  padding: 0;
}
.progress .progress-container .progress-grid {
  display: grid;
}
@media screen and (min-width: 64em) {
  .progress .progress-container .progress-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.progress .progress-container .progress-grid .progress-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.progress .progress-container .progress-grid .progress-col.col-1 {
  padding: 1.5rem;
}
@media screen and (min-width: 64em) {
  .progress .progress-container .progress-grid .progress-col.col-1 {
    padding: 3rem;
    padding-inline: 10%;
  }
}
.progress .progress-container .progress-grid .progress-col ul {
  padding-left: 0.75rem;
}
.progress .progress-container .progress-grid .progress-col ul li {
  padding-left: 0.5rem;
}
.progress .progress-container .progress-grid .progress-col h2, .progress .progress-container .progress-grid .progress-col p, .progress .progress-container .progress-grid .progress-col a, .progress .progress-container .progress-grid .progress-col li {
  color: white;
}
.progress .progress-container .progress-grid .progress-col .o-link::before {
  background-color: #f0f0f0;
}
.progress .progress-container .progress-grid .progress-col .progress-img {
  width: 100%;
  height: 100%;
}
.progress .progress-container .progress-grid .progress-col .progress-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 64em) {
  .progress .progress-container .progress-grid .progress-col .progress-img img {
    object-fit: cover;
  }
}

@media screen and (min-width: 64em) {
  .conviction .conviction-container {
    max-width: 1200px;
    margin: auto;
  }
}
.conviction .conviction-container .text {
  margin-bottom: 1rem;
}
@media screen and (min-width: 64em) {
  .conviction .conviction-container .text {
    margin-bottom: 2rem;
  }
}
.conviction .conviction-container .logo {
  max-width: 200px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 64em) {
  .conviction .conviction-container .logo {
    max-width: 300px;
    margin-bottom: 2rem;
  }
}
.conviction .conviction-container .logo img {
  width: 100%;
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon {
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-bottom: 1px solid #002060;
}
@media screen and (min-width: 64em) {
  .conviction .conviction-container .conviction-accordeons .conviction-accordeon {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
  }
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  align-items: center;
}
@media screen and (min-width: 64em) {
  .conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title {
    padding-right: 1rem;
    gap: 3rem;
  }
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title p {
  font-weight: bold;
}
@media screen and (min-width: 64em) {
  .conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title p {
    font-size: 1.25rem;
  }
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title .number {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 64em) {
  .conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title .number {
    font-size: 3.5rem;
  }
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title .plus {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: auto;
}
@media screen and (min-width: 64em) {
  .conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title .plus {
    width: 30px;
    height: 30px;
  }
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title .plus::before, .conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title .plus::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  background-color: #FF5000;
  height: 1px;
  width: 20px;
  transition: 0.3s;
}
@media screen and (min-width: 64em) {
  .conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title .plus::before, .conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title .plus::after {
    top: 15px;
    left: 14px;
    width: 30px;
  }
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title .plus::after {
  transform: rotate(90deg);
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title.active .plus::before {
  background-color: #002060;
  transform: rotate(45deg);
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-title.active .plus::after {
  background-color: #002060;
  transform: rotate(135deg);
}
.conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-content {
  display: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 64em) {
  .conviction .conviction-container .conviction-accordeons .conviction-accordeon .accordeon-content {
    padding-left: 4.25rem;
  }
}

@media screen and (min-width: 64em) {
  .passion {
    padding-bottom: 7rem;
  }
}
.passion .passion-container {
  max-width: 1200px;
  margin: auto;
}
.passion .passion-container .passion-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 64em) {
  .passion .passion-container .passion-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.passion .passion-container .passion-grid .passion-item .passion-item-title {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.passion .passion-container .passion-grid .passion-item .passion-item-img {
  width: 100%;
}
.passion .passion-container .passion-grid .passion-item .passion-item-img img {
  width: 100%;
}
.passion .passion-container .o-btn a {
  padding-left: 0;
}

@media screen and (min-width: 64em) {
  .presta-list .presta-section:last-of-type {
    padding-bottom: 7rem;
  }
}
@media screen and (min-width: 64em) {
  .presta-list .presta-section:first-of-type {
    padding-top: 7rem;
  }
}
.presta-list .presta-section .presta-section-container {
  max-width: 1600px;
  margin: auto;
}
.presta-list .presta-section .presta-section-container .presta-section-content {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 64em) {
  .presta-list .presta-section .presta-section-container .presta-section-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media screen and (min-width: 79em) {
  .presta-list .presta-section .presta-section-container .presta-section-content {
    grid-template-columns: 3fr 2fr;
  }
}
@media screen and (min-width: 79em) {
  .presta-list .presta-section .presta-section-container .presta-section-content.inverted {
    grid-template-columns: 2fr 3fr;
  }
}
.presta-list .presta-section .presta-section-container .presta-section-content .presta-section-img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 64em) {
  .presta-list .presta-section .presta-section-container .presta-section-content .presta-section-img {
    aspect-ratio: 0;
    position: relative;
    height: 100%;
    width: 100%;
  }
  .presta-list .presta-section .presta-section-container .presta-section-content .presta-section-img img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.presta-list .presta-section .presta-section-container .presta-section-content .presta-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text {
  background-color: #002060;
  border-radius: 10px;
  padding: 1.5rem;
}
@media screen and (min-width: 64em) {
  .presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text {
    display: flex;
    padding: 3rem;
    height: 100%;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 79em) {
  .presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text {
    padding: 5rem;
  }
}
.presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text h2, .presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text p, .presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text li, .presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text span {
  color: white;
}
.presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text ul li {
  padding-left: 0;
}
.presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text .certif {
  max-height: 70px;
  max-width: 150px;
  margin-bottom: 1rem;
}
.presta-list .presta-section .presta-section-container .presta-section-content .presta-section-text .certif img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.presta-list .presta-section .presta-section-container .presta-section-ref {
  /* Par défaut : on masque la grid, on laisse swiper gérer */
  display: block;
  margin-top: 1rem;
  /* Grid desktop à partir de md */
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card {
  /* Pas besoin de changer ici, car swiper-slide gère le style */
}
@media screen and (min-width: 79em) {
  .presta-list .presta-section .presta-section-container .presta-section-ref {
    display: grid !important; /* override display:block */
    grid-template-columns: repeat(3, 1fr);
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .swiper-wrapper {
    display: contents; /* Pour ne pas casser la grille */
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .swiper-slide {
    all: unset; /* Annule le style swiper */
    display: block;
  }
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card {
  height: auto;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card:hover .project-card-container .project-card-img img {
  transform: scale(1.05);
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container::before {
  z-index: 1;
  position: absolute;
  content: "";
  background-color: #002060;
  opacity: 0.5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container:hover::before {
  opacity: 1;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-img {
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content p, .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content h3 {
  color: white;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content p {
  margin-bottom: 0;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content .year {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content h3 {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content .text {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 48em) {
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container::before {
    z-index: 1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-img {
    position: absolute;
    top: 0;
    z-index: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content p, .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content h3 {
    color: white;
    margin: 0;
    padding: 0;
    font-size: 1rem;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content p {
    margin-bottom: 0;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content .year {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content h3 {
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-content .text {
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 79em) {
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container::before {
    z-index: 1;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .presta-list .presta-section .presta-section-container .presta-section-ref .project-card .project-card-container .project-card-img {
    position: absolute;
    top: 0;
    z-index: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.left-right .left-right-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  gap: 4rem;
}
@media screen and (min-width: 64em) {
  .left-right .left-right-container {
    gap: 7rem;
  }
}
.left-right .left-right-container .left-right-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
}
@media screen and (min-width: 64em) {
  .left-right .left-right-container .left-right-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.left-right .left-right-container .left-right-grid.inverted .left-right-img {
  order: 1;
}
.left-right .left-right-container .left-right-grid.inverted .left-right-text {
  order: 0;
}
.left-right .left-right-container .left-right-grid .left-right-img {
  order: 0;
  width: 100%;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 64em) {
  .left-right .left-right-container .left-right-grid .left-right-img {
    aspect-ratio: 0;
    height: 100%;
  }
}
.left-right .left-right-container .left-right-grid .left-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.left-right .left-right-container .left-right-grid .left-right-text {
  order: 1;
}
@media screen and (min-width: 64em) {
  .left-right .left-right-container .left-right-grid .left-right-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.left-right .left-right-container .left-right-grid .left-right-text .text p {
  margin-bottom: 0.5rem;
}
.left-right .left-right-container .left-right-grid .left-right-text .text a {
  color: #FF5000;
  text-decoration: underline;
  font-weight: 300;
}

.salle-gallery .salle-gallery-container {
  max-width: 1400px;
  margin: auto;
}
.salle-gallery .salle-gallery-container .salle-gallery-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 64em) {
  .salle-gallery .salle-gallery-container .salle-gallery-grid {
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.salle-gallery .salle-gallery-container .salle-gallery-grid .salle-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media screen and (min-width: 64em) {
  .salle-gallery .salle-gallery-container .salle-gallery-grid .salle-gallery-item {
    aspect-ratio: 16/9;
  }
}
.salle-gallery .salle-gallery-container .salle-gallery-grid .salle-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.salle-info .salle-info-container {
  max-width: 1000px;
  margin: auto;
}
.salle-info .salle-info-container .salle-info-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 64em) {
  .salle-info .salle-info-container .salle-info-grid {
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }
}
.cgu-intro {
  padding-top: 10rem;
  padding-bottom: 0;
}
.cgu-intro .cgu-intro-container {
  max-width: 1200px;
  margin: auto;
}
.cgu-intro h1 {
  text-align: center;
  color: #002060;
}

.cgu-content .cgu-content-container {
  max-width: 1000px;
  margin: auto;
}
.cgu-content .cgu-content-container p + h2 {
  margin-top: 2rem;
}

.formulaire {
  position: fixed;
  left: 100%;
  top: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.formulaire.active {
  left: 0;
}
.formulaire.active .close-btn {
  right: 1rem;
}
.formulaire .close-btn {
  position: fixed;
  top: 1rem;
  right: -5rem;
  z-index: 110;
  cursor: pointer;
}
@media screen and (min-width: 64em) {
  .formulaire .close-btn {
    top: 3rem;
  }
}
.formulaire .close-btn .close-btn-container {
  position: relative;
  width: 25px;
  height: 25px;
}
@media screen and (min-width: 64em) {
  .formulaire .close-btn .close-btn-container {
    width: 40px;
  }
}
.formulaire .close-btn .close-btn-container span {
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  width: 100%;
  height: 2px;
}
.formulaire .close-btn .close-btn-container span.top {
  top: 13px;
  transform: rotate(45deg);
}
.formulaire .close-btn .close-btn-container span.bot {
  top: 13px;
  transform: rotate(-45deg);
}
.formulaire .formulaire-container {
  padding-top: 3rem;
  max-width: 600px;
}
@media screen and (min-width: 64em) {
  .formulaire .formulaire-container {
    max-width: 800px;
  }
}
.formulaire .formulaire-container .form-container {
  padding: 1rem;
  background-color: white;
}
.formulaire .formulaire-container .form-container .form-grid {
  display: grid;
}
@media screen and (min-width: 64em) {
  .formulaire .formulaire-container .form-container .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.formulaire .formulaire-container .form-container .form-field {
  margin-bottom: 1rem;
}
.formulaire .formulaire-container .form-container input[type=color], .formulaire .formulaire-container .form-container input[type=date], .formulaire .formulaire-container .form-container input[type=datetime], .formulaire .formulaire-container .form-container input[type=email], .formulaire .formulaire-container .form-container input[type=month], .formulaire .formulaire-container .form-container input[type=number], .formulaire .formulaire-container .form-container input[type=password], .formulaire .formulaire-container .form-container input[type=search], .formulaire .formulaire-container .form-container input[type=tel], .formulaire .formulaire-container .form-container input[type=text], .formulaire .formulaire-container .form-container input[type=time], .formulaire .formulaire-container .form-container input[type=url], .formulaire .formulaire-container .form-container input[type=week], .formulaire .formulaire-container .form-container select, .formulaire .formulaire-container .form-container textarea {
  height: auto;
  line-height: 1em;
  padding: 0.5rem 1rem;
  border: 1px solid #002060;
}
.formulaire .formulaire-container .form-container .wpcf7-submit {
  height: auto;
  line-height: 1em;
  padding: 0.5rem 1rem;
  border: 1px solid #002060;
  text-transform: uppercase;
  color: #002060;
  cursor: pointer;
}
.formulaire .formulaire-container .form-container .wpcf7-submit:hover {
  background-color: #002060;
  color: white;
}

/*  -----------------------------------------------------------
	Media Queries - Mobile phones (> 480px)
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Small desktop & vertical tablets (> 768px)
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1024px
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1264px
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1440px
------------------------------------------------------------ */
/* IE */
/* ------------------------------------------
 05 HOMEPAGE
------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Mobile phones (> 480px)
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Small desktop & vertical tablets (> 768px)
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1024px
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1264px
------------------------------------------------------------ */
/*  -----------------------------------------------------------
	Media Queries - Desktop > 1440px
------------------------------------------------------------ */
/* IE */
.site {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content,
.site-main {
  height: 100%;
}

.site-header .wrapper {
  display: flex;
}

.site-menu {
  margin-left: auto;
}

.home-content {
  padding-top: 30vh;
  text-align: center;
}
.home-content p {
  font-size: 32px;
}