@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/ubuntu-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/ubuntu-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/ubuntu-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("/assets/fonts/ubuntu-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #3a69ad;
  --gradient-blue: #2b87da;
  --gradient-green: #29c4a9;
  --ink: #333;
  --copy: #666;
  --footer: #222;
  --row-width: min(80%, 1080px);
  --header-height: 116px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--copy);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue);
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Ubuntu", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
}

p {
  margin: 0 0 1em;
}

.content-row {
  width: var(--row-width);
  max-width: 1080px;
  margin-inline: auto;
}

.brand-gradient {
  background: linear-gradient(134deg, var(--gradient-blue) 0%, var(--gradient-green) 100%);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.37);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--row-width);
  height: 100%;
  margin-inline: auto;
}

.site-logo {
  display: flex;
  align-items: center;
  width: 142px;
  height: 100%;
}

.site-logo img {
  width: 142px;
  height: 99px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  color: #333;
  font-family: "Ubuntu", Helvetica, Arial, sans-serif;
}

.desktop-nav > ul,
.desktop-nav > ul > li {
  display: flex;
  align-items: stretch;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-nav > ul > li {
  position: relative;
}

.desktop-nav > ul > li > a {
  display: flex;
  align-items: center;
  padding: 2px 14px 0;
  color: #333;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav > ul > li > a span {
  margin-left: 5px;
  font-size: 15px;
  transform: translateY(-1px);
}

.desktop-nav > ul > li > a:hover,
.desktop-nav > ul > li > a:focus-visible,
.desktop-nav > ul > li > a.is-active {
  color: var(--blue);
}

.submenu {
  position: absolute;
  z-index: 60;
  top: calc(100% - 3px);
  left: 0;
  width: 285px;
  padding: 18px 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  border-top: 3px solid var(--blue);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-9px) scale(0.98);
  transform-origin: top;
  transition: opacity 180ms ease, transform 180ms ease;
}

.submenu li a {
  display: block;
  padding: 8px 22px;
  color: #555;
  font-size: 13px;
  letter-spacing: 0.4px;
  line-height: 1.45;
  text-transform: none;
}

.submenu li a:hover,
.submenu li a:focus-visible {
  color: var(--blue);
  background: rgba(58, 105, 173, 0.06);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.search-toggle {
  position: relative;
  width: 31px;
  height: 36px;
  padding: 0;
  margin-left: 4px;
  border: 0;
  color: #333;
  background: transparent;
  cursor: pointer;
}

.search-toggle span::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.search-toggle span::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 18px;
  width: 8px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-48deg);
  transform-origin: left center;
}

.mobile-menu-toggle,
.mobile-nav {
  display: none;
}

.home-slider {
  position: relative;
  height: 756px;
  overflow: hidden;
  color: #fff;
  background: #111;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.home-slider__slides,
.home-slide {
  position: absolute;
  inset: 0;
}

.home-slide {
  display: grid;
  place-items: center;
  background-color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03)), var(--slide-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.home-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-slide__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--header-height);
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease 160ms, transform 620ms ease 160ms;
}

.home-slide.is-active .home-slide__content {
  opacity: 1;
  transform: translateY(0);
}

.home-slide h2 {
  margin-bottom: 34px;
  color: #fff;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.home-slide h2 a {
  color: inherit;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 17px;
  border: 2px solid currentColor;
  color: #fff;
  background: transparent;
  font-size: 16px;
  line-height: 1.4;
  transition: background 180ms ease, color 180ms ease;
}

.outline-button:hover,
.outline-button:focus-visible {
  color: #333;
  background: rgba(255, 255, 255, 0.92);
}

.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 56px;
  height: 72px;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.slider-arrow--prev {
  left: 12px;
  transform: translate(-15px, -50%);
}

.slider-arrow--next {
  right: 12px;
  transform: translate(15px, -50%);
}

.home-slider:hover .slider-arrow,
.slider-arrow:focus-visible {
  opacity: 0.8;
  transform: translate(0, -50%);
}

.slider-dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dots button[aria-current="true"] {
  background: #fff;
}

.home-intro {
  min-height: 553px;
  padding: 50px 0;
  color: #fff;
}

.home-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(250px, 1fr);
  align-items: center;
  gap: 7%;
  min-height: 453px;
}

.home-intro__copy h1 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 40px;
  line-height: 1;
}

.home-intro__copy p {
  margin-bottom: 1em;
}

.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 20px;
  border: 0 solid #fff;
  color: #fff;
  font-family: "Ubuntu", Helvetica, Arial, sans-serif;
  font-size: 35px;
  line-height: 1;
  text-align: center;
}

.contact-tile__icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 22px;
  border: 4px solid currentColor;
  font-family: Arial, sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.service-section {
  background: #fcfcfc;
}

.home-featured {
  min-height: 402px;
  padding: 51px 0;
  box-shadow: inset 0 8px 14px -14px rgba(0, 0, 0, 0.45);
}

.service-grid {
  display: grid;
  align-items: start;
  gap: 5.5%;
}

.service-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  color: #333;
  text-align: center;
}

.service-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 215px;
  margin-bottom: 14px;
}

.service-card__image img {
  width: auto;
  max-width: 81%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.service-card:hover .service-card__image img,
.service-card:focus-visible .service-card__image img {
  transform: translateY(-4px);
}

.service-card h4 {
  max-width: 210px;
  margin: 0;
  color: #333;
  font-size: 18px;
  line-height: 1;
}

.site-footer {
  min-height: 57px;
  color: rgba(255, 255, 255, 0.36);
  background: var(--footer);
  font-size: 13px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
  width: var(--row-width);
  min-height: 57px;
  margin-inline: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 14px;
}

.site-footer nav a,
.social-links a {
  color: inherit;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 297px;
  padding-top: var(--header-height);
  color: #fff;
  text-align: center;
}

.brand-hero--missions {
  min-height: 386px;
}

.brand-hero--legal {
  min-height: 297px;
}

.brand-hero__content h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.brand-hero__content p {
  margin: 13px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.service-section--all {
  min-height: 404px;
  padding: 51px 0;
}

.service-section--all .service-card__image {
  height: 180px;
}

.service-section--all .service-card__image img {
  max-width: 151px;
}

.service-section--all .service-card h4 {
  max-width: 165px;
}

.entreprise-presentation,
.entreprise-tools,
.entreprise-missions,
.programme-content,
.contact-section {
  padding: 51px 0;
}

.entreprise-presentation {
  min-height: 645px;
}

.entreprise-presentation h3,
.entreprise-tools > .content-row > h3,
.entreprise-missions > .content-row > h3 {
  margin-bottom: 30px;
  font-size: 22px;
  text-align: center;
}

.presentation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5.5%;
}

.source-media-gap {
  align-self: start;
  min-height: 3px;
  margin-top: 12px;
  border: 1px solid #b6b6b6;
  background: #fff;
}

.entreprise-tools {
  min-height: 707px;
  background: #f7f7f7;
  box-shadow: inset 0 8px 14px -14px rgba(0, 0, 0, 0.45);
}

.section-intro {
  max-width: 100%;
  margin: 0 auto 70px;
  text-align: center;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5.5%;
  text-align: center;
}

.tools-grid h3 {
  margin-bottom: 40px;
  font-size: 22px;
}

.tools-grid p {
  margin-bottom: 0.82em;
  line-height: 1.15;
}

.entreprise-missions {
  min-height: 529px;
  background: #fff;
}

.entreprise-missions .section-intro {
  margin-bottom: 35px;
}

.entreprise-missions__grid .service-card__image {
  height: 190px;
}

.service-card__image--legacy img {
  max-width: 82%;
  opacity: 0.11;
}

.entreprise-missions__grid .service-card:nth-child(2) .service-card__image--legacy img {
  max-width: 42%;
}

.programme-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 606px;
  padding-top: var(--header-height);
  overflow: hidden;
  color: #fff;
  background-color: #d6d6d6;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.programme-hero--fallback {
  background: linear-gradient(134deg, var(--gradient-blue) 0%, var(--gradient-green) 100%);
}

.programme-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.programme-hero__content {
  position: relative;
  z-index: 1;
  width: var(--row-width);
  text-align: center;
}

.programme-hero h1 {
  max-width: 1120px;
  margin-inline: auto;
  color: #fff;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.05;
  text-shadow: 0.08em 0.08em 0.08em rgba(0, 0, 0, 0.4);
}

.programme-content__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.programme-icon {
  width: 10%;
  max-width: 108px;
  height: auto;
  margin: 0 auto 36px;
  object-fit: contain;
}

.programme-copy h3 {
  margin: 24px 0 16px;
  font-size: 22px;
}

.programme-copy__section:first-child h3:first-child {
  margin-top: 0;
}

.programme-copy h4 {
  margin: 18px 0 10px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}

.programme-copy p {
  margin-bottom: 1em;
}

.programme-copy ul {
  margin: 0 0 1.25em;
  padding-left: 1.15em;
  list-style: circle;
}

.programme-copy li {
  padding-left: 0.2em;
  margin-bottom: 0.3em;
}

.qualification-image {
  width: 260px;
  height: auto;
  margin: 20px auto 10px;
}

.contact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 264px;
  padding: 38px 44px;
  margin-top: 92px;
  color: #fff;
}

.contact-cta h2 {
  color: #fff;
  font-size: 26px;
}

.contact-cta p {
  margin: 0;
}

.contact-map {
  position: relative;
  height: 556px;
  overflow: hidden;
  background: #e5e3df;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-section {
  min-height: 478px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(250px, 0.915fr);
  gap: 5.5%;
}

.contact-grid h1 {
  margin-bottom: 16px;
  font-size: 26px;
}

.contact-form {
  margin-left: -3%;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: block;
  padding-left: 3%;
  margin-bottom: 3%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 0;
  color: #555;
  background: #eee;
  font-size: 14px;
  outline: 2px solid transparent;
  transition: outline-color 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #f3f3f3;
  outline-color: rgba(58, 105, 173, 0.55);
}

.contact-form textarea {
  display: block;
  min-height: 150px;
  resize: vertical;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form__footer {
  display: flex;
  justify-content: flex-end;
  padding-left: 3%;
}

.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 7px 18px;
  border: 2px solid var(--blue);
  border-radius: 3px;
  color: var(--blue);
  background: transparent;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.form-button:hover,
.form-button:focus-visible {
  color: #fff;
  background: var(--blue);
}

.contact-details h3 {
  margin-bottom: 25px;
  font-size: 22px;
}

.contact-details p {
  margin-bottom: 1.35em;
}

.contact-details a {
  color: inherit;
}

.empty-content {
  min-height: 357px;
  padding-top: 174px;
}

.empty-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 5.5%;
}

.empty-content h1 {
  font-size: 30px;
}

.empty-content h4 {
  font-size: 18px;
}

.legal-page {
  padding-top: 70px;
  padding-bottom: 70px;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 26px;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.simple-message {
  min-height: 430px;
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}

.simple-message h1 {
  font-size: 34px;
}

.search-dialog {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  place-items: start center;
  padding-top: 12vh;
}

.search-dialog[hidden] {
  display: none;
}

.search-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  animation: fade-in 180ms ease both;
}

.search-dialog__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 84vw);
  max-height: 76vh;
  padding: 42px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  animation: dialog-in 220ms ease both;
}

.search-dialog__panel h2 {
  font-size: 34px;
}

.search-dialog__close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  color: #555;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.search-dialog input {
  width: 100%;
  margin-top: 14px;
  padding: 15px 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  color: #333;
  background: #fff;
  font-size: 18px;
}

.search-results {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.search-results a,
.search-results p {
  display: block;
  padding: 10px 4px;
  margin: 0;
  border-bottom: 1px solid #e7e7e7;
}

.search-results a:hover,
.search-results a:focus-visible {
  color: #244c84;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .desktop-nav > ul > li > a {
    padding-inline: 9px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 80px;
  }

  .site-header {
    height: var(--header-height);
  }

  .site-logo,
  .site-logo img {
    width: 95px;
    height: 66px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 6px;
    border: 0;
    color: var(--blue);
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: var(--header-height);
    left: 10%;
    display: block;
    width: 80%;
    max-height: calc(100vh - var(--header-height) - 18px);
    overflow: auto;
    border-top: 3px solid var(--blue);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav ul {
    padding: 5px 5%;
    margin: 0;
    list-style: none;
  }

  .mobile-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .mobile-nav a,
  .mobile-search {
    display: block;
    width: 100%;
    padding: 13px 5%;
    border: 0;
    color: #555;
    background: transparent;
    font-family: "Ubuntu", Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-align: left;
    text-transform: uppercase;
  }

  .mobile-missions > div {
    display: flex;
    align-items: center;
  }

  .mobile-missions > div a {
    flex: 1;
  }

  .mobile-missions > div button {
    width: 44px;
    height: 44px;
    border: 0;
    color: var(--blue);
    background: transparent;
    font-size: 22px;
  }

  .mobile-missions > ul {
    padding: 0 0 8px 8%;
  }

  .mobile-missions > ul a {
    padding-block: 9px;
    font-size: 12px;
    line-height: 1.35;
    text-transform: none;
  }

  .home-slider {
    height: 600px;
  }

  .home-slide h2 {
    max-width: 82vw;
    font-size: clamp(42px, 7vw, 64px);
    line-height: 1.05;
  }

  .home-intro__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-tile {
    min-height: 190px;
  }

  .service-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 45px;
  }

  .home-featured,
  .service-section--all {
    min-height: 0;
  }

  .presentation-grid {
    grid-template-columns: 1fr;
  }

  .source-media-gap {
    min-height: 2px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .tools-grid h3 {
    margin-bottom: 20px;
  }

  .entreprise-presentation,
  .entreprise-tools,
  .entreprise-missions {
    min-height: 0;
  }

  .programme-hero {
    min-height: 500px;
  }

  .programme-hero h1 {
    font-size: clamp(40px, 6vw, 54px);
  }

  .programme-icon {
    width: 92px;
  }

  .contact-map {
    height: 350px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .contact-section {
    min-height: 0;
  }

  .empty-content__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    order: 3;
    grid-column: 1 / -1;
    padding-bottom: 12px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .home-slider {
    height: 520px;
  }

  .home-slide h2 {
    margin-bottom: 25px;
    font-size: 36px;
  }

  .outline-button {
    min-height: 38px;
    padding: 6px 13px;
    font-size: 14px;
  }

  .slider-arrow {
    display: none;
  }

  .home-intro {
    padding-block: 45px;
  }

  .home-intro__copy h1 {
    font-size: 32px;
  }

  .contact-tile {
    font-size: 28px;
  }

  .service-card__image,
  .service-section--all .service-card__image {
    height: 155px;
  }

  .service-card h4 {
    font-size: 16px;
  }

  .brand-hero,
  .brand-hero--missions,
  .brand-hero--legal {
    min-height: 300px;
  }

  .brand-hero__content {
    width: 84%;
  }

  .brand-hero__content h1 {
    font-size: 42px;
  }

  .brand-hero__content p {
    font-size: 17px;
  }

  .service-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entreprise-presentation,
  .entreprise-tools,
  .entreprise-missions,
  .programme-content,
  .contact-section {
    padding: 42px 0;
  }

  .section-intro {
    margin-bottom: 45px;
  }

  .programme-hero {
    min-height: 420px;
  }

  .programme-hero h1 {
    font-size: 39px;
  }

  .contact-cta {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 32px;
    margin-top: 54px;
  }

  .contact-map {
    height: 220px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .empty-content {
    padding-top: 130px;
  }

  .search-dialog__panel {
    padding: 35px 24px 28px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    padding-block: 14px;
  }
}

@media (max-width: 479px) {
  :root {
    --row-width: 86%;
  }

  .site-header__inner {
    width: 86%;
  }

  .mobile-nav {
    left: 7%;
    width: 86%;
  }

  .home-slider {
    height: 500px;
  }

  .home-slide {
    background-position: center;
  }

  .home-slide h2 {
    max-width: 88vw;
    font-size: 30px;
  }

  .home-intro__copy h1 {
    font-size: 28px;
  }

  .service-grid--four,
  .service-grid--six {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-card__image,
  .service-section--all .service-card__image {
    height: 175px;
  }

  .service-card__image img,
  .service-section--all .service-card__image img {
    max-width: 170px;
  }

  .brand-hero__content h1 {
    font-size: 35px;
  }

  .programme-hero {
    min-height: 380px;
  }

  .programme-hero h1 {
    font-size: 32px;
  }

  .contact-map {
    height: 200px;
  }

  .contact-cta {
    padding: 28px 24px;
  }

  .contact-form__footer {
    justify-content: stretch;
  }

  .form-button {
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .site-footer p span {
    display: none;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
