@charset "utf-8";
/*!
Theme Name: Cenef
Description: Thème sur-mesure de Cenef
Text Domain: Cenef
Version: 1.0.0
Author: Blaaaz
Author URI: http://www.blaaaz.com
*/
/**
 * BREAKPOINT (for-size)
 * 
 * deprecated
 */
/**
 * FLEXBOX (flex)
 * 
 * @mixin .flex(@wrap: nowrap, @justify: flex-start, @align-items: stretch, @align-content: stretch, @direction: row)
 * @param {mixed} @wrap Taille
 * @param {mixed} @justify Règle
 * @param {mixed} @align-items Règle2
 * @param {mixed} @align-content Règle2
 * @param {mixed} @direction Règle2
 */
/**
 * FLUID TYPOGRAPHY (fluid-type)
 * Défini une typo fluide entre 2 breakpoints à partir d'une taille de font minimum et maximum.
 * 
 * @mixin .fluid-type(@min_width, @max_width, @min-font-size, @max-font-size)
 * @param {int} @min_width Taille d'écran de départ
 * @param {int} @max_width Taille d'écran d'arrivée
 * @param {int} @min-font-size Taille du texte pour la taille d'écran de départ
 * @param {int} @max-font-size Taille du texte pour la taille d'écran d'arrivée
 */
/**
 * STRETCHED LINK (stretched-link)
 * Permet de rendre tout un bloc cliquable grâce au pseudo-élément `::after` de l'élément `<a>` enfant.
 */
.stretched-link {
  position: relative;
}
.stretched-link a[href]::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
/**
 * ASPECT RATIO (fixed-ratio)
 * Permet de définir le ratio d'un conteneur et indique à ses déscendants direct de recouvrir tout le bloc.
 */
/**
 * VIEWPORT SIZE (vw-size)
 * Permet de calculer une taille en VW à partir d'une taille en PX
 */
/**
 * GRID (grid)
 */
/* resource : https://css-tricks.com/an-auto-filling-css-grid-with-max-columns/ */
/**
 * FLEXGRID (flexgrid)
 */
/**
 * ASPECT-RATIO (aspect-ratio)
 */
* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: inherit;
}
*:focus {
  outline: none;
}
a,
abbr,
address,
blockquote,
body,
caption,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
iframe,
img,
ins,
label,
legend,
li,
object,
ol,
p,
pre,
q,
small,
span,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
ul {
  border: 0;
  margin: 0;
  padding: 0;
}
article,
aside,
figcaption,
figure,
figure img,
footer,
header,
hgroup,
main,
nav,
object,
section,
video {
  display: block;
}
ul li {
  list-style-type: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
}
a:active,
a:focus,
a:hover {
  outline: 0;
}
a img {
  border: 0;
}
button,
input {
  font: inherit;
  color: inherit;
  line-height: normal;
}
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  text-align: inherit;
  overflow: visible;
  cursor: pointer;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
sub {
  font-size: 0.75em;
  vertical-align: baseline;
}
/* clear */
.clear:before,
.clear:after {
  content: ' ';
  display: table;
}
.clear:after {
  clear: both;
}
.clear {
  *zoom: 1;
}
/*-------------------------------------------*\
	BASICS
\*-------------------------------------------*/
/**
 * body
 *
 */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}
body {
  color: black;
  line-height: 1.4;
  cursor: default;
  -webkit-text-size-adjust: none;
}
body::after {
  content: 'mobile';
  display: none;
}
body .main,
body p,
body h1,
body h2,
body h3,
body .header {
  font-family: "Lexend", sans-serif;
}
body .main.title,
body p.title,
body h1.title,
body h2.title,
body h3.title,
body .header.title {
  font-family: "Roboto", sans-serif;
}
.wp-singular h1 {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
html {
  scroll-behavior: smooth;
}
.btn__red {
  font-family: "Roboto", sans-serif;
}
.btn__red svg {
  margin-left: 8px;
}
/**
 * selection
 *
 */
::-moz-selection {
  color: #FFFFFF;
  background-color: #000;
}
::selection {
  color: #FFFFFF;
  background-color: #000;
}
/**
 * paragraph
 *
 */
p + p,
p + blockquote,
blockquote + p,
blockquote + blockquote {
  margin: 1.3em 0;
}
/**
 * screen-reader-text
 *
 */
.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;
  width: 1px;
  word-wrap: normal !important;
}
/*-------------------------------------------*\
	GLOBAL
\*-------------------------------------------*/
/**
 * wrap
 *
 */
.wrap,
.grid {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.slick-prev:before {
  display: none;
}
.slick-next:before {
  display: none;
}
.post-template-default {
  overflow-x: hidden;
}
.container-fluid {
  padding: 0;
}
.color-pink {
  color: #CE1353;
}
.color-purple {
  color: #14416D;
}
.btn {
  padding: 16px 32px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn__red {
  background-color: #CE1353;
  color: #fff;
  transition: all 0.2s;
  padding: 16px 20px;
  border-radius: 24px;
}
.btn__red svg {
  transition: ease-in-out all 0.3s;
}
.btn__red:hover svg {
  transform: rotate(-45deg);
}
h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #14416D;
}
h3 {
  font-weight: 700;
  font-size: px;
  color: #CE1353;
  margin-bottom: 10px;
  text-transform: uppercase;
}
h2 {
  font-weight: 700;
  font-size: 32px;
  color: #CE1353;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.bg-blue-light {
  background-color: #E7F4FF;
}
.wp-block-list li {
  list-style-type: disc;
}
.global a {
  text-decoration: underline;
}
.header {
  /* Menu ouvert */
}
.header.show {
  position: fixed;
  top: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1;
}
.header .container-fluid {
  z-index: 1;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0%);
  height: 118px;
  padding: 0 24px;
  display: flex;
}
.header .container-fluid .logo img {
  max-width: 160px;
}
.header .main-nav {
  display: flex;
  justify-content: space-around;
  padding: 16px;
  align-items: center;
  /* Responsive styles for mobile */
}
.header .main-nav .nav-links li {
  list-style: none;
  display: inline-block;
  position: relative;
}
.header .main-nav .nav-links li a {
  text-decoration: none;
  color: #14416D;
  font-size: 16px;
  font-weight: 400;
  transition: all ease-in-out 0.2s;
}
.header .main-nav .nav-links li a:hover {
  font-weight: 700;
}
.header .main-nav .nav-links li:last-child a {
  background-color: #CE1353;
  color: #fff;
  border-radius: 112px;
  transition: all 0.2s;
  padding: 16px 20px;
  font-size: 18px;
  position: relative;
  font-family: "Roboto", sans-serif;
  padding-right: 50px;
}
.header .main-nav .nav-links li:last-child a:after {
  content: '';
  background-image: url('img/arrow-btn.svg');
  width: 19px;
  height: 15px;
  display: block;
  position: absolute;
  right: 21px;
  top: 19px;
  transition: all ease-in-out 0.2s;
}
.header .main-nav .nav-links li:last-child a:hover {
  font-weight: 400;
}
.header .main-nav .nav-links li:last-child a:hover:after {
  transform: rotate(-45deg);
}
.header .main-nav .nav-links .menu-item .sub-menu {
  display: none;
  left: 0;
  z-index: 1;
  text-align: left;
  box-shadow: 0px 0px 20px 0px #0000001A;
  border-radius: 24px;
  background-color: #fff;
  top: 0;
}
.header .main-nav .nav-links .menu-item .sub-menu li {
  padding: 7px 32px;
}
.header .main-nav .nav-links .menu-item .sub-menu li:first-child {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.header .main-nav .nav-links .menu-item .sub-menu li:last-child {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.header .main-nav .nav-links .menu-item .sub-menu li a {
  padding: 0;
}
.header .main-nav .nav-links .menu-item .sub-menu li:hover {
  background-color: #FFE4EE;
}
.header .main-nav .nav-links .menu-item .sub-menu li:hover a {
  color: #14416D;
}
.header .main-nav .nav-links .menu-item .sub-menu li:last-child a {
  background-color: transparent;
  text-transform: none;
  color: #000;
  font-weight: 400;
}
.header .main-nav .nav-links .menu-item:hover .sub-menu {
  display: flex;
  flex-direction: column;
}
.header .main-nav .nav-links .menu-item .sub-menu.show {
  display: flex;
  flex-direction: column;
}
.header .main-nav .nav-links .menu-item.menu-item-has-children a {
  position: relative;
}
.header .main-nav .nav-links .menu-item.menu-item-has-children a:after {
  content: "";
  background-image: url('img/arrow-down.svg');
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  width: 10px;
  height: 5px;
  background-repeat: no-repeat;
  background-position: center;
}
.header .main-nav .nav-links .menu-item.menu-item-has-children .sub-menu a:after {
  display: none;
}
.header .flex-mobile-only {
  display: flex;
  align-items: center;
}
.header .candidature {
  display: none;
}
.header .burger-menu {
  display: none;
}
.breadcrumb-container {
  padding-top: 125px;
}
.breadcrumb-container .breadcrumb {
  line-height: 12px;
  color: #14416D;
}
.breadcrumb-container .breadcrumb a,
.breadcrumb-container .breadcrumb span {
  margin-left: 5px;
  margin-right: 5px;
  font-size: 12px;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
}
.breadcrumb-container .breadcrumb span {
  font-weight: 600;
}
.no-scroll {
  overflow: hidden;
  height: 100%;
  top: 0;
}
.footer {
  position: relative;
  background-color: #14416D;
  color: #fff;
  padding: 40px 0;
}
.footer__container {
  justify-content: space-between;
}
.footer__container.d-flex {
  display: block !important;
}
.footer__container .d-flex-tb {
  display: block !important;
}
.footer__logo {
  flex-direction: column;
  display: flex;
  align-items: center;
}
.footer__logo h3 {
  font-size: 48px;
  margin-top: 27px;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer__title {
  font-size: 28px;
  line-height: 28px;
  margin-top: 40px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 800;
}
.footer__motifs {
  position: absolute;
  /* postulat de départ */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.footer__menu {
  margin-top: 28px;
  margin-bottom: 28px;
}
.footer__menu .footer-menu-items li {
  margin: 20px 0px;
}
.footer__menu .footer-menu-items li a {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.footer__menu__2 ul li {
  margin-bottom: 16px;
}
.footer__menu__2 ul li a {
  font-size: 14px;
  line-height: 22px;
  font-family: "Montserrat", sans-serif;
}
.footer__media img {
  margin-left: 8px;
}
.footer__media__title {
  font-size: 16px;
  text-align: center;
  margin-top: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__media .d-flex {
  justify-content: center;
}
.footer .link-vitrine {
  color: #84C1F1;
  margin-top: 40px;
  font-size: 16px;
}
.footer #menu-footer {
  text-align: center;
}
.footer #menu-footer li {
  margin-left: 20px;
  margin-right: 20px;
}
.footer #menu-footer li a {
  font-family: "Lexend", sans-serif;
}
.home__header {
  position: relative;
  background-image: url('img/Hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 90px;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 85vh;
}
.home__header__title h1 {
  font-weight: 800;
  color: #fff;
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
}
.home__header__description {
  margin-top: 24px;
  margin-bottom: 32px;
}
.home__header__description p {
  color: #000;
  font-size: 18px;
  line-height: 27px;
  font-family: "Montserrat", sans-serif;
}
.home__header .btn__red {
  display: inline-block;
  font-size: 14px;
}
.home__talent {
  padding-top: 72px;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
}
.home__talent .offset-left {
  margin-left: 5%;
}
.home__talent .d-flex {
  display: block !important;
}
.home__talent__job {
  min-height: 258px;
}
.home__talent h2 {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  font-size: 38px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 2rem;
}
.home__talent h2 p span {
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  line-height: 100%;
  font-weight: 700;
}
.home__talent__description p {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
}
.home__talent__job {
  background-size: 100%;
  background-repeat: no-repeat;
  height: 258px !important;
  background-position: top;
  border-radius: 24px;
  margin: 15px;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  transition: ease-in-out 0.4s;
}
.home__talent__job:hover {
  background-size: 105%;
}
.home__talent__job h3 {
  position: absolute;
  color: #fff;
  bottom: 45px;
  left: 15px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  transition: ease-in-out 0.2s;
}
.home__talent__job .hide-no-hover {
  display: flex;
  position: absolute;
  bottom: 25px;
  left: 15px;
}
.home__talent__job .hide-no-hover p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  margin-right: 5px;
}
.home__talent__job .link-hover {
  font-size: 22px;
  display: none;
  align-items: center;
  width: auto;
  transition: all ease-in-out 0.6s;
}
.home__talent .slick-next {
  background-image: url('img/next.svg');
  width: 60px;
  height: 60px;
  right: 25px;
}
.home__cv {
  margin-bottom: 35px;
  margin-top: 60px;
  background-color: #E7F4FF;
  padding: 60px 20px;
  border-radius: 18px;
  position: relative;
}
.home__cv img {
  width: 100%;
  border-radius: 24px;
}
.home__cv img.visu-1 {
  margin-bottom: 15px;
}
.home__cv .text_who {
  margin-bottom: 55px;
}
.home__cv .text_who__title {
  color: #14416D;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
.home__cv .text_who__text {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 40px;
}
.home__cv .text_who__btn {
  border-radius: 112px;
  background-color: #CE1353;
  padding: 16px 24px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s;
}
.home__cv .text_who__btn:hover {
  background-color: #14416D;
}
.home__cv__mob {
  background-color: #14416D;
  border-radius: 30px;
  padding: 20px;
}
.home__cv__mob .text_who {
  background-color: #fff;
  padding: 30px 24px;
  border-radius: 20px;
}
.home__cv__mob .text_who__title {
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #14416D;
}
.home__cv__mob .text_who__text {
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 40px;
}
.home__cv__mob .text_who__btn {
  border-radius: 60px;
  background-color: #CE1353;
  padding: 16px 24px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  width: 90%;
  margin: auto;
  display: block;
  text-align: center;
}
.home__cv__mob .number-slider {
  margin-top: 20px;
}
.home__cv__mob .number-slider .number {
  background-color: #CE1353;
  text-align: center;
  border-radius: 20px;
  padding: 40px;
  padding-bottom: 75px;
  min-height: 290px;
}
.home__cv__mob .number-slider .number .some_numbers {
  font-size: 60px;
  color: #fff;
  font-weight: 800;
}
.home__cv__mob .number-slider .number .number_title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.home__cv__mob .number-slider .slick-dots {
  bottom: 25px;
}
.home__cv__mob .img-visu-1 {
  border-radius: 20px;
  margin-top: 20px;
  width: 100%;
}
.home__cv__mob .img-visu-1 .visu-1 {
  border-radius: 20px;
}
.home .numbers {
  border: 1px solid #84C1F1;
  border-radius: 18px;
  padding: 40px 20px;
  margin: auto;
  margin-bottom: 35px;
}
.home .numbers h3 {
  color: #14416D;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 30px;
}
.home .numbers .number-slider {
  background-color: transparent;
}
.home .numbers .number-slider .slick-dots {
  bottom: -40px;
}
.home .numbers .number {
  position: relative;
}
.home .numbers .number .chiffre {
  font-size: 72px;
  color: #CE1353;
}
.home .numbers .number .sous-chiffre {
  font-size: 12px;
  color: #14416D;
  max-width: 205px;
  text-align: center;
}
.home .numbers .unite {
  font-size: 72px;
  color: #CE1353;
}
.home .numbers hr {
  transform: rotate(180deg);
  display: block;
  position: relative;
  border: 1px solid #84C1F1;
}
.home .engagements__intro__citation {
  margin-top: 40px;
  margin-bottom: 40px;
}
.home .engagements__intro__citation .engagements__intro__img {
  text-align: center;
}
.home .engagements__intro__citation .engagements__intro__img img {
  border-radius: 50%;
}
.home .engagements__intro__citation__right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .engagements__intro__citation__right svg {
  margin-top: 24px;
}
.home .engagements__intro__citation__right__citation {
  font-size: 22px;
  padding: 0 10px;
  color: #14416D;
  font-weight: 500;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: "Lexend", sans-serif;
}
.home .engagements__intro__citation__right__name,
.home .engagements__intro__citation__right__function {
  font-size: 16px;
  line-height: 127%;
  color: #14416D;
  font-weight: 200;
  font-family: "Lexend", sans-serif;
}
.home .engagements__intro__citation__right__name {
  text-transform: uppercase;
  font-weight: 400;
}
.home__testimony {
  background-position: right 50% bottom 0;
  background-size: 350%;
  background-repeat: no-repeat;
  padding-top: 300px;
  padding-bottom: 40px;
}
.home__testimony__text {
  border-radius: 18px;
  background-color: #fff;
  padding: 20px;
}
.home__testimony__text__text {
  font-size: 12px;
  font-family: "Lexend", sans-serif;
}
.home__testimony__text h3 {
  text-transform: uppercase;
  color: #14416D;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif;
}
.home__testimony__text .btn__red {
  margin-top: 40px;
  display: inline-block;
}
.home__articles {
  padding-top: 70px;
  margin-bottom: 70px;
  text-align: center;
}
.home__articles__title {
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
}
.home__articles__subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  margin-bottom: 60px;
}
.home__articles__container {
  display: block;
  gap: 20px;
  /* Espace entre les colonnes */
  width: 100%;
}
.home__articles__container .left-article {
  flex: 1;
  /* Prend toute la largeur de gauche */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  height: 400px;
  display: block;
  border-radius: 24px;
}
.home__articles__container .left-article .post {
  position: absolute;
  padding: 32px;
  bottom: 0;
}
.home__articles__container .left-article .post h2 {
  color: #fff;
  font-size: 22px;
  margin-top: 15px;
  font-weight: 700;
  text-align: left;
}
.home__articles__container .left-article .post .excerpt {
  font-weight: 400;
  color: #fff;
  margin-top: 15px;
  text-align: left;
  font-size: 15px;
}
.home__articles__container .left-article .post .cat {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 10px;
  position: relative;
  text-align: left;
}
.home__articles__container .right-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Espace entre les articles de droite */
}
.home__articles__container .right-articles .post {
  height: 50%;
  text-align: left;
}
.home__articles__container .right-articles .post h2,
.home__articles__container .right-articles .post p {
  text-align: left;
}
.home__articles__container .right-articles .post h2 a {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
  color: #14416D;
  margin-top: 24px;
}
.home__articles__container .right-articles .post p {
  font-size: 15px;
}
.home__articles__container .right-articles .post .cat {
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  text-align: left;
}
.home__articles__container .right-articles .post.d-flex {
  display: block !important;
}
.home__articles__container .post-thumbnail {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  margin-right: 32px;
}
.home .btn__red__articles {
  padding: 16px 32px;
  font-size: 17px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  margin-bottom: 70px;
  margin-top: 32px;
  border-radius: 112px;
  font-weight: 700;
  text-transform: uppercase;
}
.single__metier {
  padding-bottom: 70px;
}
.single__metier__banner {
  height: 320px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single__metier__banner__motifs__white {
  position: absolute;
  /* postulat de départ */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.single__metier__banner__motifs__red {
  bottom: 0;
  position: absolute;
  /* postulat de départ */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.single__metier__banner .metier-title {
  color: #fff;
  font-size: 48px;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 800px;
}
.single__metier__intro {
  padding: 72px 0;
}
.single__metier__intro .d-flex {
  display: block !important;
}
.single__metier__intro__title {
  color: #CE1353;
  font-size: 40px;
  line-height: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.single__metier__intro__desc p {
  font-family: 'National 2';
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.single__metier__intro__desc__strong p {
  font-family: 'National 2';
  font-size: 18px;
  margin-top: 24px;
  font-weight: 700;
}
.single__metier__intro__left {
  max-width: 580px;
}
.single__metier__intro__img {
  width: 100%;
  margin-top: 2rem;
}
.single__metier__qualites {
  background-color: #CE1353;
  position: relative;
}
.single__metier__qualites .motif {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
}
.single__metier__qualites__container {
  padding: 72px 0;
  background-color: #CE1353;
}
.single__metier__qualites__container .d-flex {
  display: block !important;
  justify-content: space-between;
}
.single__metier__qualites__img {
  max-width: 672px;
  width: 95%;
  margin: auto;
  z-index: 1;
}
.single__metier__qualites__description {
  width: 95%;
  margin: auto;
}
.single__metier__qualites__description .name {
  font-weight: 700;
  font-size: 32px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
}
.single__metier__qualites__description .question {
  color: #fff;
  font-family: 'National 2';
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  margin-top: 32px;
  margin-bottom: 0;
}
.single__metier__qualites__description .reponse p {
  color: #fff;
  font-family: 'National 2';
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}
.single__metier__missions__container {
  padding: 72px 0;
}
.single__metier__missions__container .d-flex {
  display: block !important;
  justify-content: space-between;
}
.single__metier__missions__container .title {
  color: #CE1353;
  font-size: 40px;
  line-height: 32px;
  margin-bottom: 50px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  max-width: 539px;
}
.single__metier__missions__detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.single__metier__missions__detail__item {
  margin-bottom: 40px;
}
.single__metier__missions__detail__item .mission {
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 29px;
}
.single__metier__missions__detail__item .mission__desc {
  color: #000;
  font-family: 'National 2';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.single__metier__temoignage {
  text-align: center;
  padding-bottom: 72px;
}
.single__metier__temoignage .text p {
  font-weight: 700;
  color: #CE1353;
  font-size: 48px;
  line-height: 40px;
  max-width: 95%;
  margin: auto;
  text-transform: uppercase;
}
.single__metier__temoignage .name {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 19px;
}
.single__metier__temoignage .localisation {
  font-size: 15px;
  color: #000;
  font-weight: 400;
  margin: 0;
}
.single__metier__postuler {
  background-image: url('img/Postuler.jpg');
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background-size: cover;
  background-position: top;
}
.single__metier__postuler h3 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #fff;
}
.single__metier__postuler p {
  font-size: 18px;
  line-height: 27px;
  margin-top: 19px;
  margin-bottom: 19px;
  color: #fff;
  font-weight: 400;
  font-family: 'National 2';
}
.single__metier__postuler a {
  border-radius: 0;
  font-weight: 700;
}
.single__metier__postuler a:hover {
  color: #fff;
}
.single__metier__talent {
  padding-top: 72px;
  color: #fff;
  text-align: center;
}
.single__metier__talent .d-flex {
  display: block !important;
}
.single__metier__talent h2 {
  text-transform: uppercase;
  font-weight: 700;
  color: #CE1353;
  font-size: 32px;
  margin-bottom: 32px;
}
.single__metier__talent__description p {
  margin: auto;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 60px;
}
.single__metier__talent .d-flex {
  display: block !important;
}
.single__metier__talent__job {
  background-repeat: no-repeat;
  height: 225px;
  background-size: cover;
  background-position: top;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
}
.single__metier__talent__job__title {
  position: absolute;
  color: #fff;
  bottom: 28px;
  left: 28px;
}
.single__metier__talent__job__title h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
}
.single__metier__talent__job__title .link-hover {
  font-size: 22px;
  display: none;
  align-items: center;
  width: auto;
  transition: all ease-in-out 0.6s;
}
.single__metier__talent__job.large_image {
  width: 100%;
  margin-top: 60px;
  height: 320px;
  transition: all 0.6s;
  background-size: 100%;
}
.single__metier__talent__job.large_image:hover {
  background-size: 110%;
  transition: all 0.6s;
}
.single__metier__talent__motif {
  margin-top: 60px;
}
.engagements {
  margin-bottom: 80px;
  margin-top: 80px;
}
.engagements .intro {
  text-align: center;
}
.engagements .intro h1 {
  text-transform: uppercase;
  color: #14416D;
  font-weight: 700;
  font-size: 38px;
}
.engagements .intro .description {
  margin: 30px 20px;
  font-size: 12px;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
}
.engagements .slider-engagements {
  border-radius: 18px;
  border: 2px solid #CE1353;
}
.engagements .slider-engagements__item {
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  flex-direction: column-reverse;
  padding: 20px 20px 100px 20px;
}
.engagements .slider-engagements__item__text {
  text-align: left;
  font-family: "Lexend", sans-serif;
  color: #14416D;
}
.engagements .slider-engagements__item__text ul {
  margin-top: 1rem;
  margin-left: 20px;
}
.engagements .slider-engagements__item__text .etiquette {
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 16px;
  margin-top: 25px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 60px;
  transform: rotate(-5deg);
}
.engagements .slider-engagements__item__text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #14416D;
  text-transform: none;
  font-family: "Roboto", sans-serif;
}
.engagements .slider-engagements__item__text .text {
  font-size: 16px;
}
.engagements .slider-engagements__item__text .text ul li {
  list-style-type: inherit;
}
.engagements .slider-engagements__item__text__img {
  height: 600px;
  border-radius: 16px;
  max-width: 600px;
}
.engagements .slider-engagements__item__img img {
  border-radius: 16px;
}
.engagement__bg-blue {
  background-color: #E7F4FF;
}
.engagement__bg-blue .d-flex {
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px 10px 20px;
}
.engagement__bg-blue .d-flex img {
  margin-bottom: 20px;
  border-radius: 32px;
}
.engagement__bg-blue h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #14416D;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.engagement__bg-blue .text {
  font-size: 12px;
  font-weight: 400;
}
.engagements__indicateurs,
.slider-metiers,
.number-slider {
  background-color: #E7F4FF;
  text-align: center;
  padding: 24px 0 0px;
  padding-bottom: 50px;
}
.engagements__indicateurs .slick-dots li button:before,
.slider-metiers .slick-dots li button:before,
.number-slider .slick-dots li button:before {
  opacity: 1;
  color: transparent;
  background-color: transparent;
  border-radius: 50%;
  top: 7px;
  height: 6px;
  width: 6px;
  border: 1px solid #14416D;
}
.engagements__indicateurs .slick-dots li.slick-active button:before,
.slider-metiers .slick-dots li.slick-active button:before,
.number-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: transparent;
  width: 10px;
  background-color: #14416D;
  height: 10px;
  border-radius: 50%;
  top: 4px;
}
.engagements__indicateurs .d-flex,
.slider-metiers .d-flex,
.number-slider .d-flex {
  justify-content: center;
}
.engagements__indicateurs h3,
.slider-metiers h3,
.number-slider h3 {
  font-size: 24px;
  margin-bottom: 13px;
  font-weight: 700;
  color: #14416D;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.engagements__indicateurs .engagements__item__indicateur,
.slider-metiers .engagements__item__indicateur,
.number-slider .engagements__item__indicateur {
  border-radius: 8px;
  background-color: #fff;
  padding: 40px;
  margin: 15px;
  min-height: 357px;
}
.engagements__indicateurs .engagements__item__indicateur__number,
.slider-metiers .engagements__item__indicateur__number,
.number-slider .engagements__item__indicateur__number {
  background-color: #CE1353;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  margin: auto;
  margin-bottom: 24px;
  color: #fff;
  width: 28px;
  font-family: "Rubik", sans-serif;
}
.engagements__indicateurs .engagements__item__indicateur__notation,
.slider-metiers .engagements__item__indicateur__notation,
.number-slider .engagements__item__indicateur__notation {
  font-size: 48px;
  font-weight: 700;
  color: #14416D;
  margin-bottom: 24px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
.engagements__indicateurs .engagements__item__indicateur__description,
.slider-metiers .engagements__item__indicateur__description,
.number-slider .engagements__item__indicateur__description {
  text-align: center;
  font-size: 16px;
  color: #14416D;
}
.engagements__questions {
  padding: 72px 20px;
}
.engagements__questions .accordion {
  margin: auto;
}
.engagements__questions h3 {
  font-size: 24px;
  margin-bottom: 32px;
  font-weight: 700;
  color: #14416D;
  text-transform: uppercase;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.engagements__questions .accordion-item {
  border: none;
  border-bottom: 1px solid #84C1F1;
}
.engagements__questions .accordion-content {
  display: none;
}
.engagements__questions .accordion-header {
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.engagements__questions .accordion-header .label {
  font-size: 16px;
  font-weight: 700;
  color: #14416D;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.engagements__questions .accordion-header .toggle {
  color: #CE1353;
  font-weight: 300;
  font-size: 55px;
}
.engagements__questions .accordion-item.active .accordion-content {
  display: block;
  border: none;
  padding-bottom: 25px;
}
.engagements__questions .accordion-item:last-of-type {
  border-radius: 0;
}
.engagements__questions .accordion-item.active .accordion-header .toggle {
  content: "-";
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: inherit !important;
}
.slick-prev {
  background-image: url('img/arrow-slide.svg');
  height: 52px;
  width: 50px;
  top: unset;
  bottom: 0;
  left: 33%;
  z-index: 10;
}
.slick-prev:hover,
.slick-prev:focus {
  bottom: 25px;
  background-image: url('img/arrow-slider-hover.svg') !important;
  transform: rotate(-180deg);
}
.slick-next {
  background-image: url('img/arrow-slide.svg');
  height: 52px;
  width: 50px;
  transform: rotate(-180deg);
  left: 52%;
  top: auto;
  bottom: 25px;
}
.slick-next:hover,
.slick-next:focus {
  background-image: url('img/arrow-slider-hover.svg') !important;
  transform: rotate(0);
}
.actu__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.actu__header__motifs {
  position: absolute;
  top: 0;
}
.actu__header__title {
  color: #14416D;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 32px;
}
.actu__container .home__articles__container:nth-child(even) .left-article {
  margin-right: 0;
}
.actu__container .home__articles__container:nth-child(even) .right-articles {
  display: flex;
  flex-direction: column;
}
#filter-form {
  position: relative;
  margin-top: -88px;
  z-index: 1000;
  width: 100%;
  display: none;
  justify-content: center;
}
#filter-form a {
  color: #fff;
  text-transform: uppercase;
  padding: 24px 58px;
  border-top: 2px solid #CE1353;
  border-bottom: 4px solid #CE1353;
  transition: all ease-in-out 0.2s;
  font-size: 24px;
  font-weight: 700;
}
#filter-form a:hover {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
.blog .home__articles {
  padding-top: 0;
}
.single-post:before {
  content: "";
  height: 220px;
  width: 100%;
  position: absolute;
  top: 0;
  display: block;
  background-color: #FFE4EE;
  z-index: -1;
}
.single-post__container .post {
  padding-top: 60px;
  margin: auto;
}
.single-post__container .post h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #14416D;
  text-align: center;
}
.single-post__container .post h3,
.single-post__container .post h2 {
  font-weight: 700;
  font-size: 32px;
  color: #CE1353;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.single-post__container .post p {
  margin: auto;
  font-size: 16px;
  line-height: 150%;
}
.single-post__container .post .motif-red {
  position: absolute;
  bottom: 0;
  width: 100%;
  justify-content: center;
}
.single-post__container .post .post-content {
  position: relative;
  padding-bottom: 160px;
}
.partage-buttons {
  border-top: 1px solid #D6BCDC;
  border-bottom: 1px solid #D6BCDC;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.partage-buttons p {
  font-size: 20px;
  font-weight: 600;
  color: #14416D;
  margin-bottom: 15px;
}
.partage-buttons a {
  margin-right: 10px;
}
.banner {
  position: relative;
  overflow: hidden;
  background-color: #FFE4EE;
  padding-top: 45px;
  padding-bottom: 45px;
}
.banner.mob-only {
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  padding: 72px 15px;
}
.banner.mob-only .motif-red {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.banner.mob-only .motif-white {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.banner.mob-only h1 {
  font-size: 48px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.banner.desk-only .top-svg {
  position: relative;
}
.banner.desk-only h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #14416D;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.banner.desk-only .post-thumbnail {
  position: absolute;
  right: -10%;
  height: 100%;
  text-align: right;
  top: 0;
  border-radius: 20px;
}
.banner.desk-only .post-thumbnail img {
  height: 100%;
  max-width: auto;
}
.related-articles-slider {
  padding-top: 70px;
  padding-bottom: 70px;
  margin: auto;
}
.related-articles-slider .relative--article-title {
  color: #14416D;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}
.slide .post {
  height: 50%;
  text-align: left;
  padding-left: 15px;
  padding-right: 15px;
}
.slide .post h2,
.slide .post p {
  text-align: left;
}
.slide .post h2 a {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
  color: #14416D;
  margin-top: 24px;
}
.slide .post p {
  font-size: 15px;
}
.slide .post .cat {
  color: #000;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  text-align: left;
}
.slide .post.d-flex {
  display: block !important;
}
.post-thumbnail {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  border-radius: 20px;
  margin-right: 32px;
}
.blog .post-thumbnail {
  height: 260px;
}
.nos-offres-tpl {
  padding-top: 110px;
}
.nos-offres-tpl h1 {
  font-size: 38px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  color: #14416D;
  margin-bottom: 35px;
  text-transform: uppercase;
}
.nos-offres-tpl #app {
  background-color: #fff !important;
}
.nos-offres-tpl .tv-title {
  display: none;
}
.gform-theme--foundation .gfield .ginput_password.medium,
.gform-theme--foundation .gfield input.medium,
.gform-theme--foundation .gfield select.medium {
  inline-size: 100%;
}
.page-template-candidature-spontanee .candidature-container {
  margin-bottom: 60px;
}
.page-template-candidature-spontanee h1 {
  font-size: 38px;
  font-family: "Roboto", sans-serif;
}
.page-template-candidature-spontanee .image-container {
  padding: 0;
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
  height: 200;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-template-candidature-spontanee .image-container img {
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
  width: 100%;
}
.page-template-candidature-spontanee .bg-blue-light {
  padding-top: 3rem;
  border-radius: 16px;
  max-width: 90%;
  margin: auto;
  padding-bottom: 3rem;
}
.page-template-candidature-spontanee .bg-blue-light h1 {
  text-align: center;
}
.page-template-candidature-spontanee .bg-blue-light .zone-text {
  margin-top: 32px;
  margin-bottom: 32px;
}
.page-template-candidature-spontanee .bg-blue-light .zone-text p {
  font-size: 12px;
  color: #14416D;
}
.page-template-candidature-spontanee .bg-blue-light .gform_heading {
  display: none;
}
.page-template-candidature-spontanee .bg-blue-light .gform-body {
  max-width: 620px;
  margin: auto;
}
.page-template-candidature-spontanee .bg-blue-light .gform-body label {
  color: #14416D;
  font-family: "Lexend", sans-serif;
}
.page-template-candidature-spontanee .bg-blue-light .gform-body input,
.page-template-candidature-spontanee .bg-blue-light .gform-body select {
  background-color: #fff;
  border: 1px solid #D4D4D4;
  border-radius: 8px;
  height: 56px;
  display: flex;
  align-items: center;
  color: #14416D;
  font-family: "Lexend", sans-serif;
}
.page-template-candidature-spontanee .bg-blue-light .gform-theme--foundation .gform_fields {
  row-gap: 20px;
}
.page-template-candidature-spontanee .bg-blue-light .champs_obligatoire {
  color: #14416D;
  font-size: 12px;
  font-weight: 400;
}
.page-template-candidature-spontanee .bg-blue-light .champs_obligatoire span {
  color: #CE1353;
}
.page-template-candidature-spontanee .bg-blue-light #gfield_description_1_13 {
  display: none;
}
.page-template-candidature-spontanee .bg-blue-light .gform-footer {
  display: flex;
  justify-content: center;
  max-width: 620px;
  margin: auto;
  margin-top: 2rem;
  position: relative;
}
.page-template-candidature-spontanee .bg-blue-light .gform-footer:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 30px;
  left: 57%;
  background-image: url('img/arrow-link.svg');
  z-index: 1;
  background-repeat: no-repeat;
  background-position: right;
  transition: all ease-in-out 0.3s;
}
.page-template-candidature-spontanee .bg-blue-light .gform-footer:hover:before {
  transform: rotate(-45deg);
}
.page-template-candidature-spontanee .bg-blue-light .gform-footer input#gform_submit_button_1 {
  background-color: #CE1353 !important;
  color: #fff;
  padding: 16px 50px 16px 24px !important;
  border-radius: 60px !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  font-family: "Lexend", sans-serif !important;
  margin-top: 1rem;
}
.page-template-candidature-spontanee .bg-blue-light .gfield_required .gfield_required_asterisk {
  font-size: 14px;
  color: #CE1353;
}
.page-template-candidature-spontanee .bg-blue-light .gform_footer {
  text-align: center;
}
.page-template-candidature-spontanee .bg-blue-light .gform_footer .gform_button {
  display: inline-block;
  font-size: 14px;
  background-color: #CE1353;
  border-radius: 60px;
  position: relative;
}
.page-template-candidature-spontanee .bg-blue-light .gform_footer .gform_button:after {
  display: block;
  right: 0;
  position: absolute;
  width: 15px;
  height: 5px;
  background-image: url('img/arrow-link.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.page-template-candidature-spontanee .bg-blue-light #gform_confirmation_message_1 {
  text-align: center;
}
.error404 {
  background-color: #E7F4FF;
}
.error404 .main .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 80px;
  text-align: center;
}
.error404 .main .wrap h1 {
  color: #14416D;
  font-size: 24px;
  margin-bottom: 28px;
  font-family: "Roboto", sans-serif;
}
.error404 .main .wrap h1.paragraphe {
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  text-transform: math-auto;
}
.error404 .main .wrap a {
  font-size: 14px;
  font-weight: 500;
}
.error404 .main .wrap svg {
  max-width: 100%;
}
.faq {
  margin-bottom: 60px;
}
.faq .img-left {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.faq .question {
  border: 1px solid #D4D4D4;
  border-radius: 16px;
  padding: 18px 15px;
}
.faq .question.active {
  border: 2px solid #CE1353;
}
.faq .headings {
  margin-bottom: 32px;
}
.faq .question button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  font-size: 12px;
  color: #14416D;
  font-weight: 400;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: "Lexend", sans-serif;
}
.faq .faq-qr {
  background-color: #E7F4FF;
  padding: 30px 16px;
  border-radius: 18px;
  max-width: 90%;
  margin: auto;
}
.faq .question-btn {
  color: #14416D;
}
.faq .question-btn span {
  padding-right: 10px;
}
.faq .reponse {
  color: #000;
}
.faq .question button .question-fermee {
  display: block;
  width: 35px;
  min-width: 35px;
}
.faq .question button .question-ouverte {
  display: none;
  width: 35px;
  min-width: 35px;
}
.faq .question.active .question-fermee {
  transition: all ease-in-out 0.5s;
  display: none;
}
.faq .question.active .question-ouverte {
  transition: all ease-in-out 0.5s;
  display: block;
}
.faq .question {
  margin-bottom: 8px;
  background-color: #fff;
}
.faq .question p {
  overflow: hidden;
  height: 0;
  font-size: 12px;
  padding-right: 20px;
}
.faq .question.active p {
  height: auto;
  margin-top: 15px;
  font-weight: 400;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.active .accordion-content {
  max-height: 500px;
}
.accordion-pagination {
  margin-top: 1rem;
  text-align: center;
}
.accordion-pagination button {
  margin: 0 0.5rem;
  background-color: #14416d7a;
  color: #fff;
  border-radius: 50%;
  font-family: "Roboto", sans-serif;
  width: 30px;
  height: 30px;
}
.accordion-pagination button.active {
  background-color: #14416D;
}
.global h2,
.global h3,
.global h4 {
  font-weight: 300;
}
.s-qsn {
  overflow-x: hidden;
}
.s-qsn__hero {
  margin-bottom: 30px;
  padding: 40px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.s-qsn__hero .container {
  display: flex;
  justify-content: flex-end;
}
.s-qsn__hero__text {
  background-color: #fff;
  padding: 35px;
  margin: 15px;
  border-radius: 18px;
}
.s-qsn__hero__text__title {
  font-weight: 700;
  color: #14416D;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  line-height: 100%;
  font-size: 38px;
  margin-bottom: 40px;
}
.s-qsn__hero__text__description {
  font-weight: 400;
  font-size: 12px;
}
.s-qsn__rejoindre {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  margin-bottom: 30px;
  padding: 0 20px;
}
.s-qsn__rejoindre__text__title {
  text-transform: uppercase;
  color: #14416D;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 28px;
  font-family: "Roboto", sans-serif;
}
.s-qsn__rejoindre__text__description p:first-child {
  font-size: 24px;
  font-weight: 400;
  color: #14416D;
}
.s-qsn__rejoindre__text__description ul {
  margin-left: 25px;
  margin-bottom: 20px;
}
.s-qsn__rejoindre__img {
  margin-bottom: 30px;
}
.s-qsn__rejoindre__img img {
  border-radius: 16px;
  height: 100%;
  /* l’image prend 100% de la hauteur */
  width: auto;
  /* largeur ajustée automatiquement */
  -o-object-fit: cover;
     object-fit: cover;
  /* remplit sans déformation (coupure possible) */
  -o-object-position: center;
     object-position: center;
}
.s-qsn__rejoindre ul li {
  list-style-type: inherit;
}
.s-qsn__metiers {
  background-color: #E7F4FF;
  text-align: center;
  padding: 30px 0;
}
.s-qsn__metiers__title {
  text-transform: uppercase;
  color: #14416D;
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  font-weight: 700;
}
.s-qsn__metiers__description {
  font-size: 16px;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 0;
}
.s-qsn__metiers__metier {
  background-color: #fff;
  margin: 15px;
  border-radius: 16px;
  min-height: 30px !important;
  width: 20%;
  padding: 60px 24px;
  color: #14416D;
}
.s-qsn__metiers__metier img {
  margin: auto;
}
.s-qsn__metiers__metier__title {
  font-size: 20px;
  margin: 16px auto;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}
.s-qsn__metiers__metier__description {
  font-size: 16px;
  font-weight: 400;
}
/* HERE PUT HELPERS CSS */
body:not(.elementor-editor-active) {
  /* DEBUG : RED LINE AS HELPER FOR ALIGNMENT  */
}
body:not(.elementor-editor-active).logged-in:active:before,
body:not(.elementor-editor-active).logged-in:active:after {
  content: "";
  display: block;
  pointer-events: none;
  top: 0;
  position: fixed;
  z-index: 10000000;
  height: 100vh;
  /*animation: debug-line 3s infinite;*/
}
body:not(.elementor-editor-active).logged-in:active:before {
  width: 1px;
  background: red;
  left: 50%;
  right: auto;
  border: 0;
}
body:not(.elementor-editor-active).logged-in:active:after {
  width: auto;
  max-width: 1420px;
  margin: 0 auto;
  background: transparent;
  border-left: 1px solid red;
  border-right: 1px solid red;
  left: 20px;
  right: 20px;
  color: red;
  font-weight: bold;
}
@keyframes debug-line {
  0% {
    width: 1px;
    background: red;
    left: 50%;
    right: auto;
    border: 0;
  }
  19% {
    width: 1px;
    background: red;
    left: 50%;
    right: auto;
    border: 0;
  }
  20% {
    width: auto;
    max-width: 1140px;
    margin: 0 auto;
    background: transparent;
    border-left: 1px solid red;
    border-right: 1px solid red;
    left: 4vw;
    right: 4vw;
  }
  100% {
    width: auto;
    max-width: 1140px;
    margin: 0 auto;
    background: transparent;
    border-left: 1px solid red;
    border-right: 1px solid red;
    left: 4vw;
    right: 4vw;
  }
}
@media screen and (min-width: 411px) {
  .wrap,
  .grid {
    padding: 0 30px;
  }
  body:not(.elementor-editor-active).logged-in:active:after {
    left: 30px;
    right: 30px;
  }
}
@media (min-width: 425px) {
  .slick-prev {
    left: 35%;
  }
}
@media screen and (min-width: 768px) {
  body::after {
    content: 'tablet';
  }
  .wrap,
  .grid {
    padding: 0 4vw;
    max-width: calc(1420px + 8vw);
  }
  .wrap--sm,
  .grid--sm {
    max-width: calc(1080px + 8vw);
  }
  .wrap--lg,
  .grid--lg {
    max-width: calc(1650px + 8vw);
  }
  body:not(.elementor-editor-active).logged-in:active:after {
    left: 4vw;
    right: 4vw;
  }
}
@media (min-width: 768px) {
  .btn__red {
    border-radius: 120px;
  }
  h1 {
    font-size: 62px;
  }
  h3 {
    font-size: 30px;
  }
  h2 {
    font-size: 35px;
  }
  .header .main-nav .nav-links li a {
    padding: 60px 20px;
  }
  .header .main-nav .nav-links li:last-child a {
    margin-left: 15px;
  }
  .header .main-nav .nav-links .menu-item .sub-menu {
    position: absolute;
    width: 417px;
  }
  .header .main-nav .nav-links .menu-item .sub-menu li {
    padding: 22px 32px;
  }
  .breadcrumb-container {
    padding-top: 90px;
  }
  .footer {
    padding: 35px 0;
  }
  .footer__container.d-flex {
    display: flex !important;
    justify-content: space-between;
  }
  .footer__container .d-flex-tb {
    display: flex !important;
  }
  .footer__logo h3 {
    font-size: 112px;
    margin-top: 40px;
    line-height: 95px;
  }
  .footer__title {
    margin-bottom: 28px;
    font-size: 58px;
    line-height: 58px;
    margin-top: 35px;
    text-align: left;
  }
  .footer__menu .footer-menu-items li {
    margin-bottom: 40px;
  }
  .footer__menu .footer-menu-items li a {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0px;
  }
  .footer__menu__2 ul li {
    margin-bottom: 40px;
  }
  .footer__menu__2 ul li a {
    font-size: 16px;
  }
  .footer__media__title {
    font-size: 20px;
    margin-top: 0;
  }
  .home__header {
    padding-top: 250px;
    padding-bottom: 250px;
    margin-top: 100px;
  }
  .home__header__title h1 {
    font-size: 88px;
    line-height: 88px;
  }
  .home__header__description p {
    font-size: 20px;
    line-height: 24px;
  }
  .home__header .btn__red {
    font-size: 18px;
  }
  .home__talent .d-flex {
    display: flex !important;
    height: 610px;
  }
  .home__talent h2 {
    font-size: 62px;
    margin-bottom: 60px;
  }
  .home__talent h2 p span {
    font-size: 62px;
  }
  .home__talent__description p {
    font-size: 48px;
  }
  .home__talent__job {
    background-position: center;
    height: 390px !important;
  }
  .home__talent__job h3 {
    font-size: 24px;
    bottom: 25px;
  }
  .home__talent__job .hide-no-hover {
    display: none;
    transition: ease-in-out 0.4s;
  }
  .home__talent__job p {
    font-size: 20px;
  }
  .home__talent__job:hover .hide-no-hover {
    display: flex;
  }
  .home__talent__job:hover h3 {
    bottom: 45px;
  }
  .home__talent__job.large_image {
    width: 100%;
    margin-top: 60px;
    height: 320px;
    transition: all 0.6s;
    background-size: 100%;
  }
  .home__talent__job.large_image:hover {
    background-size: 110%;
    transition: all 0.6s;
  }
  .home .numbers .unite {
    font-size: 80px;
    position: absolute;
    right: -15px;
  }
  .home__testimony {
    background-position: center;
    background-size: cover;
  }
  .home__articles {
    padding-top: 160px;
    margin-bottom: 160px;
  }
  .home__articles__title {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 79px;
  }
  .home__articles__subtitle {
    font-size: 24px;
  }
  .home__articles__container {
    display: flex;
  }
  .home__articles__container .left-article {
    height: 560px;
  }
  .home__articles__container .left-article .post {
    bottom: 28px;
    left: 28px;
  }
  .home__articles__container .left-article .post h2 {
    font-size: 48px;
  }
  .home__articles__container .left-article .post .excerpt {
    font-size: 16px;
  }
  .home__articles__container .right-articles {
    width: 50%;
  }
  .home__articles__container .right-articles .post.d-flex {
    display: flex !important;
  }
  .home .btn__red__articles {
    margin-top: 76px;
    margin-bottom: 160px;
    font-size: 16px;
  }
  .single__metier {
    padding-bottom: 160px;
  }
  .single__metier__banner {
    height: 534px;
  }
  .single__metier__banner .metier-title {
    font-size: 112px;
    line-height: 95px;
  }
  .single__metier__intro {
    padding: 160px 0;
  }
  .single__metier__intro .d-flex {
    display: flex !important;
    justify-content: space-between;
  }
  .single__metier__intro__title {
    font-size: 88px;
    line-height: 79px;
  }
  .single__metier__intro__desc p {
    font-size: 24px;
    line-height: 36px;
  }
  .single__metier__intro__desc__strong p {
    font-size: 24px;
    margin-top: 32px;
  }
  .single__metier__intro__img {
    width: 55%;
    max-width: 55%;
    margin-top: 0;
  }
  .single__metier__qualites .motif {
    left: 25%;
    height: 100%;
    max-width: 526px;
  }
  .single__metier__qualites__container {
    padding: 160px 0;
  }
  .single__metier__qualites__container .d-flex {
    display: flex !important;
  }
  .single__metier__qualites__img {
    width: 100%;
  }
  .single__metier__qualites__img img {
    width: 100%;
  }
  .single__metier__qualites__description {
    width: 55%;
    padding-left: 120px;
  }
  .single__metier__qualites__description .name {
    font-size: 60px;
    line-height: 54px;
  }
  .single__metier__qualites__description .question {
    font-size: 24px;
    line-height: 36px;
  }
  .single__metier__qualites__description .reponse p {
    font-size: 24px;
    line-height: 36px;
  }
  .single__metier__missions__container {
    padding: 160px 0;
  }
  .single__metier__missions__container .d-flex {
    display: flex !important;
  }
  .single__metier__missions__container .title {
    font-size: 88px;
    line-height: 80px;
  }
  .single__metier__missions__detail {
    margin-left: 120px;
    width: 60%;
  }
  .single__metier__missions__detail__item {
    width: 45%;
    margin-bottom: 80px;
  }
  .single__metier__temoignage {
    padding-bottom: 160px;
  }
  .single__metier__temoignage .text p {
    font-size: 112px;
    line-height: 95px;
    max-width: 70%;
  }
  .single__metier__temoignage .name {
    font-size: 24px;
    margin-top: 24px;
  }
  .single__metier__temoignage .localisation {
    font-size: 16px;
  }
  .single__metier__postuler {
    padding-bottom: 120px;
    padding-top: 380px;
  }
  .single__metier__postuler h3 {
    font-size: 88px;
    line-height: 80px;
  }
  .single__metier__postuler p {
    font-size: 24px;
    line-height: 36px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .single__metier__talent {
    padding-top: 160px;
  }
  .single__metier__talent .d-flex {
    display: flex !important;
    height: 610px;
  }
  .single__metier__talent h2 {
    font-size: 88px;
    margin-bottom: 60px;
  }
  .single__metier__talent__description p {
    max-width: 50%;
  }
  .single__metier__talent .d-flex {
    display: flex !important;
    height: 610px;
  }
  .single__metier__talent__job {
    background-position: center;
    height: 600px;
    transition: all 0.6s cubic-bezier(0.61, -0.42, 0, 1.61);
    /* Transition douce */
    animation: shrink-grow-shrink 0.6s cubic-bezier(0.61, -0.42, 0, 1.61) forwards;
  }
  .single__metier__talent__job:hover {
    height: 570px;
  }
  .single__metier__talent__job:hover:before {
    background: rgba(0, 0, 0, 0.5);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 0;
  }
  .single__metier__talent__job:hover .home__talent__job__title .link-hover {
    display: flex;
  }
  .single__metier__talent__job__title {
    bottom: 40px;
    left: 40px;
  }
  .single__metier__talent__job__title h3 {
    font-size: 32px;
  }
  .engagements__indicateurs .engagements__item__indicateur,
  .slider-metiers .engagements__item__indicateur,
  .number-slider .engagements__item__indicateur {
    min-height: 360px;
  }
  .slick-prev {
    left: 42%;
  }
  .actu__header {
    padding-top: 40px;
  }
  .actu__header__title {
    font-size: 62px;
  }
  #filter-form {
    display: flex;
  }
  .single-post__container .post {
    max-width: 75%;
  }
  .single-post__container .post h1 {
    font-size: 62px;
  }
  .single-post__container .post h3,
  .single-post__container .post h2 {
    font-size: 48px;
  }
  .single-post__container .post p {
    font-size: 20px;
    line-height: 36px;
  }
  .banner.mob-only {
    display: none;
  }
  .banner.desk-only h1 {
    font-size: 62px;
  }
  .related-articles-slider {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .related-articles-slider .relative--article-title {
    text-align: left;
    font-size: 40px;
    margin-bottom: 60px;
  }
  .slide .post {
    padding-left: 0;
    padding-right: 80px;
  }
  .slide .post.d-flex {
    display: flex !important;
  }
  .nos-offres-tpl {
    padding-top: 180px;
  }
  .page-template-candidature-spontanee .bg-blue-light {
    max-width: 100%;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
  }
  .page-template-candidature-spontanee .bg-blue-light .gform-footer:before {
    left: 54%;
  }
  .page-template-candidature-spontanee .bg-blue-light .gform_footer .gform_button {
    font-size: 18px;
  }
  .faq .question {
    padding: 18px 30px;
  }
  .faq .question button {
    font-size: 16px;
  }
  .faq .faq-qr {
    padding: 90px 65px;
    min-height: 995px;
  }
  .s-qsn__metiers__metier {
    min-height: 375px !important;
  }
}
@media screen and (min-width: 1025px) {
  body::after {
    content: 'desktop';
  }
}
@media (min-width: 1025px) {
  .header .container-fluid {
    padding: 20px 40px;
    height: 105px;
  }
  .header .container-fluid .logo img {
    max-width: 276px;
  }
  .header .flex-mobile-only {
    display: none;
  }
  .breadcrumb-container {
    padding-top: 160px;
  }
  .menu-close {
    display: none;
  }
  .no-scroll .header .container {
    position: fixed;
    left: 0;
  }
  .home__talent {
    max-width: 68%;
  }
  .home__cv {
    padding: 60px 141px;
    margin-bottom: 80px;
  }
  .home__cv .text_who {
    margin: 15px;
    margin-bottom: 30px;
  }
  .home__cv .text_who__title {
    font-size: 62px;
  }
  .home__cv .text_who__text {
    font-size: 16px;
    padding-right: 70px;
  }
  .home .numbers {
    margin-bottom: 80px;
    padding: 80px;
  }
  .home .numbers h3 {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .home .numbers .number .chiffre {
    font-size: 80px;
  }
  .home .numbers .number .sous-chiffre {
    font-size: 16px;
  }
  .home .numbers .number .sous-chiffre.sub-unite {
    padding-left: 65px;
  }
  .home .engagements__intro__citation {
    margin-top: 160px;
    margin-bottom: 160px;
  }
  .home .engagements__intro__citation .engagements__intro__img img {
    margin-right: 80px;
  }
  .home .engagements__intro__citation__right svg {
    margin-top: 0;
  }
  .home .engagements__intro__citation__right__citation {
    font-size: 30px;
  }
  .home .engagements__intro__citation__right__citation {
    font-size: 40px;
  }
  .home__testimony {
    padding: 209px 0;
  }
  .home__testimony__text {
    padding: 80px 70px;
  }
  .home__testimony__text__text {
    font-size: 16px;
  }
  .home__testimony__text h3 {
    font-size: 62px;
  }
  .home__articles__container .left-article .post .cat {
    font-size: 16px;
  }
  .home__articles__container .right-articles .post h2 a {
    font-size: 24px;
  }
  .engagements .intro h1 {
    font-size: 62px;
  }
  .engagements .intro .description {
    margin: auto;
    max-width: 70%;
    font-size: 16px;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .engagements .intro .slick-track {
    height: 750px;
  }
  .engagements .slider-engagements__item {
    padding: 60px 25px;
    flex-direction: row;
  }
  .engagements .slider-engagements__item__text {
    max-width: 50%;
    padding-right: 2rem;
  }
  .engagements .slider-engagements__item__text .etiquette {
    font-size: 40px;
    padding: 26px 33px;
    margin-bottom: 27px;
    margin-top: 0;
  }
  .engagements .slider-engagements__item__text h3 {
    font-size: 48px;
    margin-bottom: 40px;
  }
  .engagements .slider-engagements__item__img {
    overflow: hidden;
    height: 600px;
    border-radius: 16px;
    max-width: 600px;
  }
  .engagements .slider-engagements__item__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    /* ou top, bottom, left, right */
  }
  .engagement__bg-blue {
    padding: 85px;
  }
  .engagement__bg-blue .d-flex {
    flex-direction: row;
    padding: 0;
  }
  .engagement__bg-blue .d-flex img {
    margin-bottom: 0;
  }
  .engagement__bg-blue h3 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .engagement__bg-blue .description {
    max-width: 50%;
  }
  .engagement__bg-blue .text {
    font-size: 16px;
  }
  .engagements__indicateurs,
  .slider-metiers,
  .number-slider {
    padding: 24px 0 80px;
    padding-bottom: 24px;
  }
  .engagements__indicateurs h3,
  .slider-metiers h3,
  .number-slider h3 {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .engagements__indicateurs .engagements__item__indicateur,
  .slider-metiers .engagements__item__indicateur,
  .number-slider .engagements__item__indicateur {
    max-width: 300px;
    min-height: 300px;
  }
  .engagements__indicateurs .engagements__item__indicateur__notation,
  .slider-metiers .engagements__item__indicateur__notation,
  .number-slider .engagements__item__indicateur__notation {
    font-size: 40px;
  }
  .engagements__questions {
    padding-bottom: 160px;
  }
  .engagements__questions .accordion {
    max-width: 80%;
  }
  .engagements__questions h3 {
    margin-top: 60px;
    font-size: 40px;
    margin-bottom: 60px;
  }
  .engagements__questions .accordion-item {
    padding-bottom: 40px;
  }
  .engagements__questions .accordion-header .label {
    font-size: 24px;
    padding-top: 25px;
  }
  .engagements__questions .accordion-header .toggle {
    padding-top: 25px;
  }
  .slick-prev {
    left: 46%;
  }
  .slick-next {
    left: 50%;
  }
  .actu__container .home__articles__container {
    margin-top: 25px;
  }
  .actu__container .home__articles__container:nth-child(even) .right-articles {
    max-width: 50%;
  }
  .partage-buttons p {
    margin-right: 15px;
    margin-bottom: 0;
  }
  .banner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .nos-offres-tpl h1 {
    font-size: 62px;
  }
  .gform-theme--foundation .gfield .ginput_password.medium,
  .gform-theme--foundation .gfield input.medium,
  .gform-theme--foundation .gfield select.medium {
    inline-size: calc(50% - var(--gf-form-gap-x) / 2);
  }
  .page-template-candidature-spontanee .candidature-container {
    margin-bottom: 80px;
  }
  .page-template-candidature-spontanee h1 {
    font-size: 62px;
  }
  .page-template-candidature-spontanee .bg-blue-light .zone-text p {
    font-size: 16px;
  }
  .error404 .main .wrap {
    padding-top: 230px;
  }
  .error404 .main .wrap h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .error404 .main .wrap a {
    margin-top: 50px;
    font-size: 18px;
  }
  .faq {
    margin-bottom: 80px;
  }
  .faq .faq-qr {
    padding: 40px 135px;
    max-width: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  .faq .question-btn span {
    padding-right: 55px;
  }
  .faq .question button .question-fermee {
    width: 50px;
    min-width: 50px;
  }
  .faq .question button .question-ouverte {
    width: 50px;
    min-width: 50px;
  }
  .faq .question p {
    font-size: 16px;
    padding-right: 50px;
  }
  .s-qsn__hero {
    padding: 145px 0;
    margin-bottom: 70px;
  }
  .s-qsn__hero__text {
    padding: 80px;
    max-width: 50%;
  }
  .s-qsn__hero__text__title {
    font-size: 62px;
  }
  .s-qsn__hero__text__description {
    font-size: 16px;
  }
  .s-qsn__rejoindre {
    padding: 0;
    margin-bottom: 40px;
    flex-direction: row;
    justify-content: space-around;
  }
  .s-qsn__rejoindre__text {
    width: 50%;
  }
  .s-qsn__rejoindre__text__title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .s-qsn__rejoindre__img {
    width: 50%;
    height: 600px;
    max-width: 600px;
  }
  .s-qsn__metiers {
    padding: 80px 0 0;
  }
  .s-qsn__metiers__title {
    font-size: 62px;
  }
  .s-qsn__metiers__description {
    margin-bottom: 60px;
  }
  .s-qsn__metiers__metier {
    min-height: 385px !important;
  }
}
@media (min-width: 1281px) {
  .engagements .slider-engagements__item {
    padding: 60px 111px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1660px;
  }
}
@media (max-width: 1025px) {
  .header .main-nav {
    flex-direction: column;
    width: 0px;
    overflow: hidden;
    height: 102vh;
    position: absolute;
    top: 0;
    left: 0;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding-top: 70px;
    padding: 0;
  }
  .header .main-nav .nav-links li {
    display: block;
    margin: 20px 0;
    padding: 15px;
  }
  .header .candidature {
    display: block;
    margin-right: 23px;
    padding: 4px 24px;
    text-align: center;
    background-color: #CE1353;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
  }
  .header .burger-menu {
    display: flex;
  }
  .header .burger-menu .burger {
    display: inline-block;
    cursor: pointer;
    width: 42px;
    height: 42px;
    position: relative;
    border: 1px solid #14416D;
    border-radius: 50%;
    padding: 10px;
    padding-top: 7px;
  }
  .header .burger-menu .burger span {
    display: block;
    height: 2px;
    width: 100%;
    margin: 5px 0;
    transition: all 0.3s ease;
    background-color: #14416D;
    border-radius: 2px;
    /* Transformations for burger to cross */
  }
  .header .burger-menu .burger span.open:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header .burger-menu .burger span.open:nth-child(2) {
    opacity: 0;
  }
  .header .burger-menu .burger span.open:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .header .main-nav.open {
    box-shadow: 0px 0px 20px 0px #0000001A;
    display: flex;
    background-color: #fff;
    align-items: start;
    text-align: left;
    z-index: 10;
    width: 100vw;
    justify-content: flex-start;
    padding-top: 85px;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    /* Caché par défaut */
    transition: transform 0.3s ease-in-out;
  }
  .main-nav.open {
    transform: translateX(0);
    /* Affiche le menu */
  }
  .menu-close {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
  }
  .home .numbers {
    max-width: 90%;
  }
  .actu__container .home__articles__container:nth-child(even) .left-article {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .footer__logo svg {
    max-width: 160px;
  }
  .footer__motifs {
    max-height: 53px;
  }
  .home__articles__container .left-article {
    margin-top: 2rem;
  }
  .home__articles__container .right-articles .post {
    margin-top: 40px;
  }
  .home__articles__container .post-thumbnail {
    margin-bottom: 24px;
  }
  .single__metier__banner__motifs__white {
    max-height: 50px;
  }
  .single__metier__banner__motifs__red {
    max-height: 50px;
  }
  .single__metier__qualites .motif {
    max-height: 72px;
    width: 100px;
  }
  .single__metier__qualites__description {
    margin-top: 32px;
  }
  .slide .post {
    margin-top: 40px;
  }
  .post-thumbnail {
    height: 220px;
    margin-bottom: 24px;
  }
  .global ul {
    padding-left: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
