@charset "UTF-8";
:root {
  --padding-container: 1em;
  --container: 1370px;
  --container-medium: 1120px;
  --container-small: 780px;
  --container-xsmall: 540px;
  --cubic-transition: cubic-bezier(0.22, 1, 0.36, 1);
  --primary: #004A99;
  --primary-ligth: #0097DB;
  --primary-so-ligth: #c4e8ff;
  --primary-ultra-ligth: #f2f7ff;
  --yellow: #FEBC2A;
  --yellow-light: #FFF4DB;
  --orange: #E66926;
  --gradient-first: linear-gradient(90deg, var(--yellow) 0%, var(--orange) 100%);
  --gradient-second: linear-gradient(90deg, var(--primary) 0%, var(--primary-ligth) 100%);
  --back-cms: #f2f7ff;
  --gray-menu:#F5F5F5 ;
  --white: #FFFFFF;
  --black: #000;
  --clr-text: #333333;
  --gray-low-opacity: rgba(51, 51, 51, 0.7);
  --dark-gray: #707070;
  --gray: #DDDDDD;
  --light-gray: #D4D4D4;
  --blue-section: #F2F7FF;
  --orange-section: #FFF4DB;
  --font-family-bold: "SplineBold", sans-serif;
  --font-family-light: "SplineLight", sans-serif;
  --font-family-medium: "SplineMedium", sans-serif;
  --font-family-semi-bold: "SplineSemiBold", sans-serif;
  --section-spacer: 5rem;
}

/*
* Mixin pour les typographies fluides responsives
*
* $min-font-size - La taille de police minimum
* $max-font-size - La taille de police maximum
*
* Dans l'exemple ci-dessous l'élément aura une font-size minimum de 12px en dessous du le breakpoint small et maximum 18px au dessus du breakpoint large
* .mon-element {
* 	@include fluid-type(12px, 18px);
* }
*
* On peut également redéfinir les breakpoint minimum et maximum comme ci-dessous 
* .mon-element {
* 	@include fluid-type(12px, 18px, 768px, 1200px);
* }
*/
.carrieres-main {
  text-align: center;
}
.carrieres-main .titre-carrieres {
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  padding: calc(var(--section-spacer) / 2) 0;
  margin-bottom: calc(var(--section-spacer) / 2);
  position: relative;
}
.carrieres-main .titre-carrieres::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--yellow);
  opacity: 0.5;
  z-index: -2;
}
@media screen and (min-width: 780px) {
  .carrieres-main .titre-carrieres {
    padding: 20px 0 var(--section-spacer);
    margin-bottom: var(--section-spacer);
  }
}
.carrieres-main .titre-carrieres .breadcrumb-yoast {
  margin-bottom: var(--padding-container);
  padding: 0 0 0 var(--padding-container);
  text-align: left;
}
@media screen and (max-width: 780px) {
  .carrieres-main .titre-carrieres .breadcrumb-yoast {
    display: none;
  }
}
.carrieres-main .titre-carrieres .breadcrumb-yoast a, .carrieres-main .titre-carrieres .breadcrumb-yoast span {
  color: var(--white);
}
.carrieres-main .titre-carrieres .breadcrumb-yoast a:hover {
  opacity: 0.5;
}
.carrieres-main .titre-carrieres .ax-title2 {
  padding: 0 var(--padding-container) 10px;
  color: var(--white);
}
.carrieres-main .titre-carrieres .offer-number-header {
  font-weight: bold;
}
.carrieres-main .sous-titre-carrieres {
  padding: 0 var(--padding-container);
  max-width: 925px;
  margin: auto auto 30px auto;
}
.carrieres-main .sous-titre-carrieres p {
  font-weight: bold;
  font-size: 14px;
}
@media screen and (min-width: 1120px) {
  .carrieres-main .sous-titre-carrieres p {
    font-size: 18px;
  }
}
.carrieres-main .offres-container {
  display: flex;
  gap: 20px;
  margin-bottom: calc(var(--section-spacer) / 2);
}
@media screen and (max-width: 780px) {
  .carrieres-main .offres-container {
    flex-direction: column;
  }
}
.carrieres-main .offres-container .child-page-card {
  width: 100%;
  z-index: 1;
  border-radius: 100px 0;
  transition: ease-in-out 200ms;
  height: 300px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  flex-direction: column;
  display: flex;
  justify-content: flex-end;
}
.carrieres-main .offres-container .child-page-card:hover {
  transform: translateY(-10px);
}
.carrieres-main .offres-container .child-page-card .gradient-overlay {
  position: absolute;
  border-radius: 5px;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--primary) 0%, rgba(38, 87, 230, 0) 50%);
}
.carrieres-main .offres-container .child-page-card img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.carrieres-main .offres-container .child-page-card .child-page-title {
  z-index: 3;
  height: 100%;
  justify-content: flex-end;
  margin-bottom: 10px;
  width: 100%;
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  position: absolute;
}
.carrieres-main .offres-container .child-page-card .child-page-title a {
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  color: var(--white);
  font-size: 1.25em;
  transition: ease-in-out 200ms;
  max-width: 200px;
}
.carrieres-main .offres-container .child-page-card .child-page-title a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.carrieres-main .offres-container .child-page-card .child-page-title a:hover {
  color: var(--yellow);
}
@media screen and (min-width: 780px) {
  .carrieres-main .offres-container {
    margin-bottom: var(--section-spacer);
  }
}
.carrieres-main .candidature-section {
  background: var(--yellow-light);
  position: relative;
  padding: calc(var(--section-spacer) / 2) var(--padding-container);
}
@media screen and (min-width: 780px) {
  .carrieres-main .candidature-section .candidature-container {
    display: flex;
    flex-direction: row;
  }
}
.carrieres-main .candidature-section .right-content {
  margin: auto;
}
.carrieres-main .candidature-section .right-content .btn {
  font-size: 16px;
}
@media screen and (min-width: 780px) {
  .carrieres-main .candidature-section .right-content .btn {
    font-size: 20px;
  }
}
.carrieres-main .candidature-section p {
  text-align: center;
}
@media screen and (min-width: 780px) {
  .carrieres-main .candidature-section p {
    text-align: left;
  }
}
@media screen and (min-width: 780px) {
  .carrieres-main .candidature-section {
    padding: var(--section-spacer) var(--padding-container);
  }
  .carrieres-main .candidature-section::after {
    position: absolute;
    content: "";
    background-image: url(../assets/img/svg/fond-organique.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 400px;
    top: 0;
    left: 0;
    z-index: 0;
  }
}
.carrieres-main .candidature-section .ax-under-title {
  margin-bottom: 10px;
}
.carrieres-main .btn {
  margin: auto;
}

@media screen and (max-width: 540px) {
  .btn-section-carriere > .wp-block-group {
    display: flex;
    flex-direction: column;
  }
}
.btn-section-carriere a:hover {
  background: #000 !important;
}