@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
body::after {
  content: "";
  background: transparent;
  z-index: -1;
  opacity: 0;
  top: 0;
  position: fixed;
  width: 100%;
  height: 100vh;
  transition: 0.3s;
}

body {
  overflow-x: hidden;
}

body.mobile-menu-open::after {
  z-index: 40;
  background: #000;
  opacity: 0.75;
}
.gfield--type-honeypot,
.gfield_label_before_complex {
  display: none;
}

.swiper-wrapper {
  height: -moz-max-content;
  height: max-content;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--Noir, #1E1E1E);
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
  color: var(--Noir, #1E1E1E);
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

@media screen and (max-width: 950px) {
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
}
ol {
  padding-left: 1rem;
}

p,
li {
  color: var(--Noir, #1e1e1e);
  /* Poppins - medium - 14px */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.blue {
  color: var(--Bleu-300, #66CEFF);
}

.red {
  color: var(--Rouge-500, #E30613);
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating {
  animation: rotating 12s linear infinite;
}

.navbar-nav .nav-item .nav-link {
  text-shadow: 2px 2px 3px black;
  color: #fff;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #f00;
  /* Couleur au survol des liens */
}

.navbar-brand {
  position: relative;
}
.navbar-brand::after {
  top: 0;
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  width: 100%;
  transition: 0.3s;
  height: 100%;
}
.navbar-brand img {
  height: 68px;
  /* Ajustez la hauteur de l'image du logo */
}

.dropdown-menu {
  width: 300px;
}

.dropdown-item {
  color: #000;
}

.dropdown-item:hover {
  background-color: #e9ecef;
}

.submenu-container {
  display: none;
  position: absolute;
  right: 100%;
  top: 0;
  min-width: 200px;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  padding: 10px;
}

.dropdown-item:hover .submenu-container {
  display: block;
}

.submenu-container a {
  display: block;
  padding: 10px;
  color: #000;
}

.submenu-container a:hover {
  background-color: #e9ecef;
}

nav.navbar.navbar-expand-lg.navbar-light.bg-light {
  background-color: transparent !important;
}

/* breadcrumb */
.breadcrumb {
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-custom {
  border-radius: 20px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

span.separator {
  display: flex;
}

li.breadcrumb-item {
  border-radius: 1000px;
  display: flex;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

.breadcrumb-item a,
.breadcrumb-item.active {
  padding: 6px 10px;
  text-decoration: none;
  color: var(--Noir, #1e1e1e);
  text-align: center;
  font-family: Poppins;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: var(--Gris-200, #F0F2F8);
  border-radius: 1000px;
  transition: 0.3s ease-in;
}

.breadcrumb-item a:hover {
  background: var(--Gris-200, #c2c4c8);
  color: #000;
}

/* MAIN */
main {
  min-height: 50vh;
}

/* header */
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 50;
}
header nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 950px) {
  header .big {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}
header .navbar {
  padding: 0 5%;
}
header .navbar-expand-lg .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
  justify-content: flex-end;
}
header .navbar-expand-lg .navbar-collapse a {
  color: #fff;
}
header body {
  font-family: "Noto Sans", sans-serif;
  background: #fafafa;
  padding: 0;
  margin: 0;
}
header *,
header *:before,
header *:after {
  box-sizing: border-box;
}
header nav ul,
header nav li {
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav a {
  display: block;
  text-decoration: none;
}
header nav a:hover, header nav a:visited {
  text-decoration: none;
}
header .menu-bar {
  gap: 20px;
  display: flex;
  gap: 20px;
  border-radius: 14px;
  padding: 0px 1%;
  align-items: center;
}
header .menu-bar .mobileMenuTitle {
  color: var(--Noir, #1E1E1E);
  leading-trim: both;
  text-edge: cap;
  /* H4 - Playfair - 22px */
  font-family: "Playfair Display";
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  align-items: center;
  width: 100%;
}
header .menu-link {
  padding: 12px 15px;
  background: transparent;
  color: #2a2a2a;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 950px) {
  header .menu-link {
    color: #000;
    color: var(--Noir, #1E1E1E);
    /* Poppins - medium - 16px */
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
}
header .menu-link[aria-haspopup=true] {
  padding-right: 40px;
}
header .menu-link[aria-haspopup=true]:after {
  content: "";
  background-image: url(../picto/red-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 100%;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 0;
  rotate: 0deg;
}
header .mega-menu.mega-menu--multiLevel.big .menu-link[aria-haspopup=true]:after {
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
}
header .mega-menu-header {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(19.334375, 105.91875, 115.165625);
}
header .mega-menu {
  background: #ffffff;
  z-index: 10;
}
header .mega-menu--multiLevel {
  flex-direction: column;
}
@media all and (min-width: 951px) {
  header .nav > nav {
    width: 100%;
    padding: 0px 4%;
    display: flex;
    height: 88px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: #ffffff;
  }
  header .menu [aria-haspopup=true] ~ ul {
    display: none;
  }
  header .menu-bar {
    position: relative;
  }
  header .menu-bar .mobileMenuTitle {
    display: none;
  }
  header .menu-bar > li > [aria-haspopup=true] {
    /*
    &:hover {
        &:after {
            background-image: url(../picto/red-arrow-right.svg);
        }
    }
    */
  }
  header .menu-bar > li > [aria-haspopup=true]:after {
    background-position: center;
    background-image: url(../picto/red-arrow-bottom.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease;
  }
  header .menu-bar > li > [aria-haspopup=true]:focus, header .menu-bar > li:focus-within > [aria-haspopup=true] {
    /*  background: var(--Rouge-200, #FBDBDB);
    color: var(--Rouge-500, #E30613); */
  }
  header .menu-bar > li > [aria-haspopup=true]:focus:after, header .menu-bar > li:focus-within > [aria-haspopup=true]:after {
    /*  background-image: url(../picto/red-arrow-right.svg); */
    transform: rotate(180deg);
  }
  header .mega-menu {
    position: absolute;
    top: 100%;
    padding: 1%;
    right: 0;
    width: 70%;
    color: var(--Noir, #1E1E1E);
    border-radius: 20px;
  }
  header .mega-menu:hover {
    display: flex;
  }
  header .mega-menu a:hover {
    background: var(--Rouge-200, #FBDBDB);
    color: var(--Rouge-500, #E30613);
    border-radius: 6px;
    width: 98%;
  }
  header .mega-menu--multiLevel.no-subs {
    width: -moz-max-content;
    width: max-content;
    right: 0;
    left: unset;
  }
  header .mega-menu--multiLevel.no-subs > li {
    width: 100%;
  }
  header .mega-menu--multiLevel.no-subs > li a:hover {
    width: 100%;
  }
  header .mega-menu--multiLevel > li {
    width: 50%;
    margin-bottom: 5px;
  }
  header .mega-menu--multiLevel > li a {
    color: var(--Noir, #1E1E1E);
  }
  header .mega-menu--multiLevel > li > [aria-haspopup=true] ~ ul {
    left: 50%;
    width: 50%;
    border-radius: 8px;
    background: var(--Gris-200, #F0F2F8);
    padding: 10px;
    border: 10px solid #fff;
    border-radius: 20px;
  }
  header .mega-menu--multiLevel > li > [aria-haspopup=true] ~ ul a {
    color: var(--Noir, #1e1e1e);
    border-radius: 6px;
    background: var(--Gris-500, #E3E7F2);
    padding: 15px 20px;
    margin-bottom: 2px;
  }
  header .mega-menu--multiLevel > li > [aria-haspopup=true] ~ ul a:hover {
    width: 100%;
    color: var(--Noir, #1E1E1E);
  }
  header .mega-menu--multiLevel > li > [aria-haspopup=true] ~ ul ul {
    width: 100%;
    left: 100%;
  }
  header .mega-menu--multiLevel li:hover > [aria-haspopup=true] ~ ul {
    display: block;
    transform-origin: right;
    animation: flyout 0.2s ease-out;
  }
  header .mega-menu--multiLevel li:focus-within > [aria-haspopup=true] ~ ul {
    display: block;
  }
  header .mega-menu--multiLevel li:hover > [aria-haspopup=true],
  header .mega-menu--multiLevel li:hover > a, header .mega-menu--multiLevel li:focus-within > [aria-haspopup=true],
  header .mega-menu--multiLevel li:focus-within > a {
    border-radius: 6px;
    background: var(--Rouge-200, #FBDBDB);
    color: red;
  }
  header .mega-menu--multiLevel [aria-haspopup=true] ~ ul, header .mega-menu--multiLevel [aria-haspopup=true] {
    width: 100%;
    transition: width 0.3s;
    color: var(--Noir, #1E1E1E);
    /* Poppins - medium - 14px */
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  header .mega-menu--multiLevel [aria-haspopup=true] ~ ul:hover, header .mega-menu--multiLevel [aria-haspopup=true]:hover {
    display: block;
  }
  header .mega-menu--multiLevel [aria-haspopup=true] ~ ul {
    position: absolute;
    top: 0;
    height: 100%;
  }
  header .mega-menu--flat > * {
    flex: 1;
  }
  header .mobile-menu-trigger,
  header .mobile-menu-header,
  header .mobile-menu-back-item {
    display: none;
  }
}
@media all and (min-width: 950px) and (max-width: 1200px) {
  header .menu-bar {
    gap: 12px;
  }
  header .mega-menu--multiLevel [aria-haspopup=true] ~ ul,
  header .mega-menu--multiLevel [aria-haspopup=true] {
    font-size: 12px;
  }
  header .menu-link {
    font-size: 12px;
    padding: 8px 5px;
  }
}
@media all and (max-width: 950px) {
  header .nav {
    padding: 10px;
  }
  header .menu-bar {
    background-color: #fff;
  }
  header .menu-link[aria-haspopup=true] {
    color: var(--Noir, #1E1E1E);
  }
  header .menu-link[aria-haspopup=true]:after {
    width: 14px;
    height: 14px;
    font-size: 12px;
    position: absolute;
    right: 10px;
    top: 18px;
  }
  header .mobile-menu-trigger,
  header .mobile-menu-header,
  header .mobile-menu-back-item {
    display: block;
  }
  header .mobile-menu-trigger {
    color: #fff;
    border: 0;
    padding: 10px;
    font-size: 1.2em;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
  }
  header .mobile-menu-header {
    order: -1;
    background: grey;
  }
  header .mobile-menu-header a {
    padding: 12px 15px;
    color: #ffffff;
    visibility: visible;
  }
  header .menu-bar {
    padding-top: calc(1.4em + 20px);
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 350px;
    max-width: 350px;
    max-width: 90%;
    overflow-x: hidden;
    transition: right 0.3s;
    box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.25);
    align-items: flex-start;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    right: 110%;
    top: 0;
    max-height: 100vh;
    width: 100%;
    transition: right 0.3s;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul > li > [aria-haspopup=true] {
    color: var(--Rouge-500, #E30613);
    /* Poppins - medium - 16px */
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul > li > [aria-haspopup=true] ~ ul a {
    color: var(--Noir, #1E1E1E);
    width: 95%;
    margin: auto;
    background: #fff;
    margin-bottom: 4px;
    padding: 12px 10px;
    font-size: 12px;
    border-radius: 6px;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul > li > [aria-haspopup=true] ~ ul > li > [aria-haspopup=true] ~ ul a {
    padding-left: 80px;
    border-radius: 6px;
    background: var(--Blanc, #FFF);
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul [aria-haspopup=true] {
    color: #2a2a2a;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul [aria-haspopup=true]:after {
    content: "";
    background-image: url(../picto/red-arrow.svg);
    font-size: 1em;
    font-weight: normal;
    width: 15px;
    line-height: 1;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul [aria-haspopup=true] ~ ul {
    max-height: 0px;
    transform-origin: top;
    transform: scaleY(0);
    transition: max-height 0.1s;
    overflow: hidden;
    border-radius: 20px;
    background: var(--Gris-200, #F0F2F8);
  }
  header .menu-bar li {
    width: 100%;
  }
  header .menu-bar li:first-child {
    margin-top: 20px;
  }
  header .menu-bar li:last-child {
    margin-bottom: 20px;
  }
  header .mega-menu-content {
    padding: 12px 15px;
  }
  header .mobile-menu-back-item a {
    background: tint(grey, 70%);
    color: #2a2a2a;
    max-height: calc(1.4em + 10px);
  }
  header .mobile-menu-back-item a:before {
    content: "";
    width: 14px;
    height: 12px;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowLeft.svg#default");
    background-size: 14px;
    margin-right: 10px;
    display: inline-block;
  }
  header .mobile-menu-trigger:focus ~ ul {
    right: 0;
  }
  header .menu-bar {
    right: -100%;
    transition: right 0.3s ease;
    position: fixed;
  }
  body.mobile-menu-open header .menu-bar {
    right: 0;
  }
  body.mobile-menu-open header .menu-bar:hover, body.mobile-menu-open header .menu-bar:focus-within {
    right: 0;
  }
  body.mobile-menu-open header .menu-bar > li > [aria-haspopup=true]:focus ~ ul {
    right: 0;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul {
    margin-top: calc(1.4em + 10px);
    padding: 0 5%;
  }
  body.mobile-menu-open header .menu-bar > li > [aria-haspopup=true] ~ ul:hover, body.mobile-menu-open header .menu-bar > li > [aria-haspopup=true] ~ ul:focus-within {
    right: 0;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul [aria-haspopup=true]:focus ~ ul {
    max-height: 500px;
    animation: dropdown 0.3s forwards;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul li:focus-within > [aria-haspopup=true] ~ ul {
    max-height: 500px;
    transform: scaleY(1);
  }
  header .menu-bar > li:focus-within ~ .mobile-menu-header a {
    visibility: hidden;
  }
}
@media (max-width: 950px) and (hover: none) {
  header .mobile-menu-trigger:hover ~ ul {
    right: 0;
  }
  header .menu-bar > li > [aria-haspopup=true]:hover ~ ul {
    right: 0;
    height: 92vh;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul:hover {
    right: 0;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul [aria-haspopup=true]:hover ~ ul {
    max-height: 500px;
    animation: dropdown 0.3s forwards;
    border-radius: 20px;
    background: var(--Gris-200, #F0F2F8);
    width: 95%;
    margin: 15px auto;
    padding: 12px;
  }
  header .menu-bar > li > [aria-haspopup=true] ~ ul [aria-haspopup=true] ~ ul:hover {
    max-height: 500px;
    transform: scaleY(1);
  }
  header .menu-bar > li:hover ~ .mobile-menu-header a {
    visibility: hidden;
  }
}
@keyframes dropdown {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes flyout {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.menu li:not(.active) ul.mega-menu {
  right: 110% !important;
}

/* Button */
.buttons {
  display: flex;
  gap: 20px;
}
.buttons.center {
  justify-content: center;
}

.btn {
  display: flex;
  height: 44px;
  padding: 7px 10px;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  transition: 0.3s ease all;
}
.btn:not(.no-move):hover {
  transform: translateY(-5px);
}
.btn.btn-1 {
  border-radius: 14px;
  background: var(--Rouge-500, #E30613);
  color: #fff;
}
.btn.btn-2 {
  border-radius: 14px;
  background: var(--Rouge-200, #FBDBDB);
  color: #E30613;
}

/* FOOTER */
.single-agence footer {
  margin-top: 0px !important;
}

footer {
  background: #1E1E1E;
  color: #fff;
  position: relative;
  margin-top: 50px;
}
footer .btnNews {
  display: flex;
  height: 44px;
  padding: 7px 10px;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-radius: 14px;
  background: var(--Rouge-500, #E30613);
  justify-content: center;
  margin-top: 30px;
  transition: color 0.5s ease;
}
footer .btnNews:hover {
  color: var(--Blancs);
  text-decoration: underline;
}
footer .socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .socials svg {
  width: 27px;
  height: 27px;
}
footer .deco-footer {
  position: relative;
  top: -20px;
  width: -webkit-fill-available;
  max-width: 100%;
}
footer a {
  color: #fff;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
footer a:hover {
  color: #E30613;
}
footer .links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .title {
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
  min-height: 20px;
}
footer .main-footer {
  padding: 40px 0;
}
footer .address {
  padding: 20px;
  border-radius: 20px;
  background: #262525;
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
footer .address p {
  color: #fff;
}
footer .sub-footer {
  background: #262525;
  padding: 25px 0;
}
footer .sub-footer .links {
  align-items: center;
  gap: 0.3rem;
  flex-direction: row;
}

@media screen and (max-width: 760px) {
  footer::before {
    background-repeat: no-repeat;
    top: -10px;
  }
  footer .deco-footer {
    top: -15px;
  }
  footer .title {
    margin-top: 20px;
    margin-bottom: 0;
  }
  footer .main-footer {
    flex-direction: column;
    padding: 0;
  }
  footer .main-footer .footer-links-1 {
    flex-direction: column;
  }
  footer .main-footer .col-md-3 .address {
    margin: 30px 0;
  }
}
/* section.bg-black.block-black */
.block-black {
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--Noir, #1E1E1E);
  /*     background-image: url('../images/deco-bg-black.png');
  background-position: top center; */
}
.block-black .liste-emplois h2,
.block-black .liste-emplois h2 i {
  color: #fff;
}

.form-container form {
  text-align: left;
}
.form-container form .grey input[type=file] {
  background: var(--Gris-500, #E3E7F2);
}
.form-container form .red input[type=file] {
  background: var(--Rouge-200, #FBDBDB);
}
.form-container form .ginput_recaptcha,
.form-container form .gform_footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-container form .buttongf-custom-submit {
  border-radius: 14px !important;
  background: var(--Rouge-500, #E30613) !important;
  color: var(--Blanc, var(--Blanc, #FFF)) !important;
  font-family: Poppins !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: normal !important;
  padding: 10px 17px !important;
  position: relative;
  transition: 0.3s ease all;
}
.form-container form .buttongf-custom-submit:not(.no-move):hover {
  transform: translateY(-5px);
}
.form-container form .gfield_description {
  color: var(--Gris-900, #8795B7) !important;
  font-family: Poppins !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
}
.form-container form .ginput_container_fileupload input[type=file] {
  inline-size: 100% !important;
  padding: 0 !important;
  border: 1px solid var(--Gris-500, #E3E7F2);
}
.form-container form .gfield--type-fileupload .gfield_label.gform-field-label {
  color: var(--Noir, #1E1E1E);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.form-container form .gform_fields {
  gap: 20px !important;
}
.form-container form .gform_fileupload_rules {
  display: none;
}
.form-container form .gfield--type-consent .ginput_container_consent {
  display: flex;
}
.form-container form .gfield--type-consent .gform-field-label {
  display: block;
}
.form-container form .ginput_container_name {
  display: flex;
  gap: 10px;
}
.form-container form .gfield--type-name {
  padding: 0;
}
.form-container form .name_first,
.form-container form .name_last {
  flex: auto;
}
.form-container form input[type=text],
.form-container form input[type=email],
.form-container form input[type=tel],
.form-container form textarea,
.form-container form select {
  border-radius: 10px;
  border: 1px solid var(--Gris-500, #E3E7F2);
  background: var(--Blanc, #FFF);
  padding: 16px;
  height: 44px;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
}
.form-container form input[type=text]::-moz-placeholder, .form-container form input[type=email]::-moz-placeholder, .form-container form input[type=tel]::-moz-placeholder, .form-container form textarea::-moz-placeholder, .form-container form select::-moz-placeholder {
  color: var(--Gris-700, #ABB9DA);
}
.form-container form input[type=text]::placeholder,
.form-container form input[type=text] option,
.form-container form input[type=email]::placeholder,
.form-container form input[type=email] option,
.form-container form input[type=tel]::placeholder,
.form-container form input[type=tel] option,
.form-container form textarea::placeholder,
.form-container form textarea option,
.form-container form select::placeholder,
.form-container form select option {
  color: var(--Gris-700, #ABB9DA);
}
.form-container form select {
  padding: 12px;
}

/* recrutement-single */
.recrutement-single {
  padding-top: 7rem;
  margin-bottom: 80px;
}
.recrutement-single .black-bg {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--Noir, #1E1E1E);
  color: #fff;
}
.recrutement-single .black-bg .localisation {
  color: var(--Blanc, #FFF);
  font-family: "futura-pt";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
}
.recrutement-single .black-bg h1 {
  margin: 0;
  color: var(--Blanc, #FFF);
  font-family: "futura-pt";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  /* 104.762% */
}
.recrutement-single .infos {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.recrutement-single .infos .info {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  align-items: flex-start;
  gap: 15px;
}
.recrutement-single .infos .info .title {
  width: 100px;
  color: var(--Gris-900, #8795B7);
}
.recrutement-single .infos .info .description {
  width: calc(100% - 100px);
}
.recrutement-single .content {
  padding-top: 60px;
  padding-bottom: 60px;
}
.recrutement-single .content b,
.recrutement-single .content strong {
  color: #1E1E1E;
}
.recrutement-single .content .rotate-bloc {
  position: relative;
  overflow: hidden;
  right: -10%;
  top: 5%;
  border-radius: 2000px;
  color: #fff;
  transform: rotate(12deg);
  display: block;
}
.recrutement-single .content .rotate-bloc img {
  transform: rotate(-12deg);
  scale: 1;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.recrutement-single .grey-bloc .bg-grey {
  background: var(--Gris-200, #F0F2F8);
}
.recrutement-single .grey-bloc .type-deco-top,
.recrutement-single .grey-bloc .type-deco-bottom {
  background-image: url(../images/deco-gray.png);
}
.recrutement-single .grey-bloc ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 950px) {
  .recrutement-single .infos .info {
    flex-direction: column;
  }
  .recrutement-single .infos .info .title,
  .recrutement-single .infos .info .description {
    width: 100%;
  }
  .recrutement-single .content .rotate-bloc {
    position: relative;
    overflow: hidden;
    border-radius: 2000px;
    top: 15%;
    color: #fff;
    right: 0;
    display: block;
    width: 100%;
    margin-bottom: 15%;
  }
  .recrutement-single .content .reverse-mobile {
    flex-direction: column-reverse;
  }
}

/* actu-single  */
.actu-single {
  padding-top: 7rem;
  margin-bottom: 80px;
}
.actu-single .container {
  max-width: 1080px;
}
.actu-single .container .content a {
  color: var(--Rouge-500, #e30613);
}
.actu-single h1 {
  color: var(--Noir, #1E1E1E);
  text-align: center;
  font-family: "futura-pt";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.actu-single h2,
.actu-single h3 {
  margin-bottom: 30px;
}

.single-post .swiper-wrapper {
  height: -moz-max-content;
  height: max-content;
}
.single-post .swiper-wrapper img {
  width: 100%;
  border-radius: 60px;
  background: var(--Gris-200, #F0F2F8);
  max-height: 390px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/2.5;
}
.single-post .swiper-wrapper .swiper-slide:first-child img {
  border-radius: 0px 60px 60px 0px;
}
.single-post .swiper-wrapper .swiper-slide:last-child img {
  border-radius: 60px 0px 0px 60px;
}
.single-post .play-video {
  width: 80px;
  position: absolute;
  height: 80px;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 0;
  justify-content: center;
  transform: translate(-50%, -50%);
}
.single-post .play-video img {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0 !important;
  aspect-ratio: auto;
}

/* header-realisations */
.header-realisations {
  padding-top: 60px;
  padding-bottom: 200px;
}
.header-realisations .container {
  z-index: 1;
  padding-top: 60px;
  position: relative;
}
.header-realisations .deco {
  position: absolute;
  right: 0;
  top: 100px;
  z-index: 0;
}
.header-realisations h1 {
  color: var(--Noir, #1E1E1E);
  margin-top: 15px;
  font-family: "futura-pt", sans-serif;
  /*   font-size: 111px; */
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.header-realisations .sub-title {
  color: var(--Noir, #1E1E1E);
  margin-bottom: 40px;
  font-family: "futura-pt", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.header-realisations .sub-title i {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}
.header-realisations .content p {
  color: var(--Noir, #1E1E1E);
  /* Poppins - medium - 14px */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 760px) {
  .header-realisations {
    padding-bottom: 50px;
  }
  .header-realisations h1 {
    font-size: 38px;
    width: 60%;
  }
  .header-realisations .sub-title {
    font-size: 24px;
  }
  .header-realisations .deco {
    top: 0px;
  }
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.filter-btn {
  border: 2px solid #c6c6c6;
  border-radius: 25px;
  padding: 10px 20px;
  background-color: #fff;
  color: #000;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #e30613;
  color: #e30613;
}

.filter-btn.active {
  background-color: #f8d7da;
  border-color: #e30613;
  color: #e30613;
}

.list-real .real-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s;
}
.list-real .real-card:hover {
  transform: translateY(-10px);
}
.list-real img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  border-radius: 60px;
  height: 380px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: var(--Gris-200, #F0F2F8);
}
.list-real h3,
.list-real p {
  margin: 10px 0;
}
.list-real a {
  text-decoration: none;
}
.list-real h3 {
  color: var(--Noir, #1E1E1E);
  text-align: center;
  /* H4 - Playfair - 22px */
  font-family: "Playfair Display";
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}
.list-real p {
  color: var(--Noir, #1e1e1e);
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.list-real .name {
  color: var(--Rouge-500, #E30613);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.list-real .bottom-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.list-real .bottom-link a {
  color: red;
  text-decoration: none;
  font-weight: bold;
  margin-right: 25px;
}

/* news-filter-section */
.news-filter-section .news-section .news-card {
  background-color: #fff;
}
.news-filter-section .news-section .news-card a {
  height: -webkit-fill-available;
}
.news-filter-section .news-section .news-card .card-body {
  background-color: #fff;
}
.news-filter-section .type-deco-top {
  background-image: url(../images/deco-gray.png);
}
.news-filter-section .bg-gray {
  background: var(--Gris-200, #F0F2F8);
}

.page-template-page-actualites footer {
  margin-top: 0;
}
.page-template-page-actualites .filter-buttons {
  margin-bottom: 20px;
}

/* page-contact */
.page-contact {
  padding-top: 7rem;
}
.page-contact .header-contact {
  height: 390px;
  border-radius: 60px;
  background-size: cover;
}
.page-contact .header-contact .black-container {
  background: linear-gradient(0deg, #000 5.5%, rgba(0, 0, 0, 0) 35%);
  padding: 60px 50px;
  height: 100%;
  display: flex;
  border-radius: 60px;
  background-size: cover;
  align-content: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.page-contact h1 {
  color: var(--Blanc, #FFF);
  font-family: "futura-pt";
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}
.page-contact .sub {
  color: var(--Blanc, #FFF);
  font-family: "Playfair Display";
  font-size: 34px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}
.page-contact .grey-col {
  border-radius: 20px;
  background: var(--Gris-200, #F0F2F8);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-contact .gfield_radio {
  flex-direction: row !important;
  flex-wrap: wrap;
}
.page-contact .gfield_radio .gchoice {
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  background: var(--Gris-500, #E3E7F2);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
}
.page-contact .gfield_radio .gchoice:hover {
  background: var(--Rouge-200, #FBDBDB);
}
.page-contact .gfield_radio .gchoice:has(input[type=radio]:checked) {
  background: var(--Rouge-200, #FBDBDB);
}
.page-contact .gfield_radio .gchoice .gfield-choice-input:checked {
  border-color: var(--Rouge-500, #E30613) !important;
}
.page-contact .gfield_radio .gchoice .gfield-choice-input:checked::before {
  background: var(--Rouge-500, #E30613) !important;
}
@media (max-width: 760px) {
  .page-contact h1 {
    font-size: 48px;
  }
  .page-contact .sub {
    font-size: 24px;
  }
}
.page-contact .gray-bg {
  background: var(--Gris-200, #F0F2F8);
  padding-bottom: 7rem;
}

.page-template-page-contact footer {
  margin-top: 0;
}

@media (min-width: 951px) {
  .first .mega-menu {
    right: auto !important;
    left: 0 !important;
  }
}
.mega-menu {
  display: none;
}

header .menu-bar > li:not(.active) > [aria-haspopup=true]:after {
  transform: rotate(180deg);
  rotate: 180deg;
}

.menu-bar > li {
  position: relative;
}

.mega-menu {
  width: auto;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-bar > li.has-sub-columns .mega-menu {
  display: flex;
  flex-direction: row;
  min-width: 600px;
}

.menu-bar > li.is-simple .mega-menu {
  width: -moz-max-content;
  width: max-content;
  min-width: 240px;
}

.mega-menu .menu-list {
  position: relative;
  background: #f2f5fb; /* couleur à adapter */
  padding: 1rem;
  border-radius: 12px;
  min-width: 220px;
  max-width: 480px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-menu .menu-link[aria-haspopup=true] {
  position: relative;
  padding-right: 2rem;
}

.mega-menu--multiLevel.big {
  width: 400px;
}

.menu li.active ul.mega-menu {
  display: block;
}/*# sourceMappingURL=style.css.map */