* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  outline: 0;
}

:focus-visible {
  outline: 3px solid #27b0ff;
  outline-offset: 2px;
}

body {
  background-color: #252525;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  background: #27b0ff;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  z-index: 1000;
}

.skip-link:focus {
  left: 1em;
  top: 1em;
}

.header {
  width: 100%;
  height: 90vh;
  min-height: 600px;
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../img/IMG_3019.webp);
  background-size: cover;
  background-position: center;
}

/* Subpages: smaller header */
.is-subpage .header {
  height: 45vh;
  min-height: 320px;
  background-position-y: 32%;
}

.is-subpage .header_title {
  font-size: 2.8em;
}

.is-subpage .header_subtitle {
  font-size: 1.3em;
}

@media only screen and (max-width: 576px) {
  .is-subpage .header {
    height: 36vh;
    min-height: 220px;
  }

  .is-subpage .header_title {
    font-size: 2.2em;
  }

  .is-subpage .header_subtitle {
    font-size: 1.1em;
  }
}

.header_title_container {
  position: relative;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  color: #d2d2d2;
}

.is-subpage .header_title_container {
  top: 40%;
}

@media only screen and (max-width: 576px) {
  .header_title_container {
    top: 20%;
  }
}

.header_cta {
  display: flex;
  gap: 0.8em;
  margin-top: 1em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6em;
  padding: 0.55em 1.2em;
  font-weight: 500;
  text-decoration: none;
  transition: transform 200ms, box-shadow 200ms, background-color 200ms, color 200ms;
}

.btn-primary {
  background: #27b0ff;
  color: #fff;
  box-shadow: 0 6px 16px rgba(39, 176, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(39, 176, 255, 0.45);
}

.btn-secondary {
  background: transparent;
  color: #eaeaea;
  border: 2px solid #eaeaea33;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: #eaeaea77;
  transform: translateY(-1px);
}

.header_title {
  width: max-content;
  font-size: 3.8em;
  font-weight: 600;
}

.header_subtitle {
  width: max-content;
  font-size: 1.7em;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.8em 6vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  column-gap: 24px;
  row-gap: 12px;
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav_link {
  color: #d2d2d2;
  list-style-type: none;
}

.nav_link a {
  color: #d2d2d2;
  list-style-type: none;
  font-size: 1.3em;
  text-decoration: none;
  padding: 0.25em 0.5em;
  border-radius: 0.5em;
  position: relative;
}

.nav_link a.active {
  color: #27b0ff;
}

.nav_link:hover {
  cursor: pointer;
  transform: scale(1.02);
}

.nav_link a::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -6px;
  height: 2px;
  background: transparent;
  border-radius: 2px;
  transition: background-color 220ms ease, transform 220ms ease, opacity 220ms ease;
  transform: scaleX(0);
  opacity: 0;
}

.nav_link a:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.nav_link a:hover::after,
.nav_link a.active::after {
  background: #27b0ff;
  transform: scaleX(1);
  opacity: 1;
}

.nav_brand {
  display: flex;
  align-items: center;
  list-style: none;
  margin-right: auto;
}

.nav_brand_link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  text-decoration: none;
  color: #eaeaea;
}

.nav_brand_img {
  height: 28px;
  width: auto;
  display: block;
}

.nav_brand_text {
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #eaeaea;
}

@media only screen and (max-width: 576px) {
  .nav {
    justify-content: center;
    padding: 0.6em 4vw;
    column-gap: 16px;
  }

  .nav_brand_text {
    display: none;
  }

  .nav_brand_img {
    height: 24px;
  }
}

.nav_link a:focus-visible,
.footer_legal_link:focus-visible,
.main_materiel_more:focus-visible,
.prestations_infos_more:focus-visible,
.contact_form_send:focus-visible {
  outline: 3px solid #27b0ff;
  outline-offset: 2px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 1em;
  color: #fff;
  padding: 1.5em 0;
}

.footer_hr {
  margin: auto;
  width: 70%;
  background-color: #707070;
  border-color: #707070;
}

.footer_links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.footer_link {
  height: 32px;
  width: 32px;
}

.footer_link:hover {
  transform: scale(1.04);
  cursor: pointer;
}

.footer_contact {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1em;
  width: 100%;
}

.footer_contact_content {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.footer_contact_content svg {
  height: 24px;
  width: 24px;
}

.footer_logo {
  display: flex;
  width: 100%;
  justify-content: center;
}

.footer_logo img {
  height: 64px;
}

.footer_legal {
  display: flex;
  width: 100%;
  justify-content: center;
}

.footer_legal_link {
  color: #eaeaea;
  text-decoration: none;
}

.footer_legal_link:hover {
  transform: scale(1.01);
  text-decoration: underline;
}

/* Main page */

.propos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2em 18vw;
  color: #d2d2d2;
  gap: 1em;
}

.propos_content {
  display: flex;
  gap: 0.3em;
  flex-direction: column;
  position: relative;
}

.propos_title {
  position: relative;
  margin-bottom: 10px;
  width: max-content;
  font-weight: 600;
  margin: 0 0 0.8em 0;
}

.propos_title::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.2em;
  background-color: #9e9e9e;
  bottom: -10px;
  left: 0;
  width: 80%;
}

.propos_text {
  font-weight: 400;
}

.propos_image {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.main_prestation_container {
  margin: 3em 18vw;
  color: #d2d2d2;
  display: flex;
  gap: 1.5em;
  flex-direction: column;
  position: relative;
}

.main_prestation_title {
  position: relative;
  margin-bottom: 10px;
  width: max-content;
  font-weight: 600;
}

.main_prestation_title::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.2em;
  background-color: #9e9e9e;
  bottom: -10px;
  left: 0;
  width: 80%;
}

.main_prestation_content {
  display: flex;
  gap: 3vw;
  flex-wrap: wrap;
  justify-content: center;
}

.main_prestation {
  background-color: #333333;
  border-radius: 0.7em;
  display: flex;
  gap: 0.6em;
  flex-direction: column;
  position: relative;
  width: 30%;
  flex-wrap: nowrap;
  overflow: hidden;
  align-items: center;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  text-decoration: none;
  justify-content: space-between;
  min-width: 200px;
  flex: 1;
}

.main_prestation:hover {
  transform: translateY(-2px);
  border-width: 4px 4px 0 0;
  border-style: solid;
  border-color: #27b0ff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.main_prestation_image {
  width: 100%;
}

.main_prestation_text {
  padding-bottom: 0.8em;
  font-size: 1.1em;
  color: #d2d2d2;
  text-decoration: none;
  text-align: center;
  font-weight: 400;
}

.main_materiel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2em 0 0;
  width: 100%;
  color: #d2d2d2;
  background-color: #189bff;
  gap: 1em;
}

.main_materiel_content {
  display: flex;
  gap: 0.3em;
  margin: 1em 0 1.7em 18vw;
  flex-direction: column;
  position: relative;
}

.main_materiel_title {
  position: relative;
  margin-bottom: 20px;
  width: max-content;
  font-weight: 600;
  color: #eaeaea;
  margin: 0 0 0.8em 0;
}

.main_materiel_title::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.2em;
  background-color: #d2d2d2;
  bottom: -10px;
  left: 0;
  width: 80%;
  font-weight: 600;
}

.main_materiel_text {
  font-weight: 400;
  color: #eaeaea;
}

.main_materiel_image {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: inset #189bff 180px 0px 90px -40px;
}

.main_materiel_more {
  font-size: 1.15em;
  font-weight: 500;
  color: #eaeaea;
  text-decoration: none;
  margin: 0.4em auto 0;
}

.main_materiel_more:hover {
  transform: scale(1.01);
  cursor: pointer;
  text-decoration: underline;
}

/* Typography improvements */
p,
li {
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
}

@media only screen and (max-width: 576px) {
  .propos {
    display: flex;
    margin: 2em 4vw;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }

  .propos_image {
    height: 30vh;
  }

  .main_materiel {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .main_materiel_content {
    margin: 1em 4vw;
  }

  .main_materiel_image {
    height: 30vh;
    box-shadow: none;
  }
}

/* END Main page */

/* Prestations page */

.prestations_container {
  color: #d2d2d2;
  margin: 2em 18vw;
}

.prestations_title {
  position: relative;
  margin-bottom: 10px;
  width: max-content;
  font-weight: 600;
}

.prestations_title::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.2em;
  background-color: #9e9e9e;
  bottom: -10px;
  left: 0;
  width: 80%;
}

.prestations_content {
  display: flex;
  margin: auto;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  margin-top: 3em;
}

.prestations {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  grid-template-areas:
    "a b"
    "d d";
  padding: 1em;
  gap: 0.6em;
}

.prestations_image_container {
  box-shadow: inset #252525 -160px 0px 70px -40px;
  grid-area: a;
}

.prestations_image {
  width: 100%;
  position: relative;
  object-fit: cover;
  z-index: -1;
  border-radius: 20px;
  min-height: 200px;
  max-height: 400px;
  height: 30vh;
}

.prestations_infos {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
  left: -10px;
  grid-area: b;
}

.prestations_infos_title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 8px;
}

.prestations_infos_text {
  font-size: 0.9em;
}

.prestations_infos_more {
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #d2d2d2;
  padding: 0.35em 0.8em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.6em;
  background-color: rgba(255, 255, 255, 0.04);
}

.prestations_infos_more:hover {
  transform: scale(1.02);
  cursor: pointer;
}

.prestations_infos_more_svg {
  height: 1em;
  width: 1em;
  position: relative;
  top: 50%;
  transform: translateY(20%);
}

.prestations_more {
  grid-area: d;
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s ease-out;
  padding: 0 2%;
  margin: auto;
  background-color: #3333334c;
  border-radius: 0.5em;
  width: 97%;
}

.active_more {
  padding: 0.5em 2%;
  width: 97%;
}

.prestations_more_title {
  font-size: 1.4em;
  font-weight: 600;
  margin: 0 0 0.4em;
}

.prestations_more_text {
  margin: 0 0 0.3em;
}

.prestations_more_list {
  margin: 0 0 0.3em 1em;
}

.prestations_more_list>li {
  padding: 0;
}

.prestations_more_option_container {
  display: flex;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 1vw;
}

.prestations_more_option {
  display: block;
  width: 30%;
  height: 250px;
  min-width: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 0.7em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.prestations_more_option:hover .prestations_more_option_text_container {
  transform: translateY(0%);
}

.prestations_more_option:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.prestations_more_option_text_container {
  transform: translateY(100%);
  transition: 300ms;
  width: 97%;
  height: 88%;
  position: relative;
  background-color: #333333cf;
  padding: 1em;
  overflow: auto;
}

.prestations_more_option_title {
  margin: 0 auto 0.3em;
  font-weight: 600;
  width: max-content;
}

.text_strong {
  font-weight: 500;
}

@media only screen and (max-width: 576px) {
  .prestations_container {
    margin: 2em 8vw;
  }

  .prestations {
    display: flex;
    flex-direction: column;
    padding: 0.8em;
  }

  .prestations_image_container {
    box-shadow: inset #252525 0px -160px 70px -40px;
  }

  .prestations_infos {
    top: -10px;
    left: 0;
  }

  .prestations_infos_more {
    position: relative;
    margin-top: 8px;
    bottom: 0;
    right: 0;
  }

  .prestations_more_option_text_container {
    padding: 0.3em;
    height: 97%;
  }
}

/* END Prestations page */

/* Materiel page */

.materiel {
  color: #d2d2d2;
  margin: 2em 18vw;
}

/* Recent Prestations section */
.materiel_recent {
  margin-bottom: 4em;
}

.materiel_recent_title {
  position: relative;
  margin-bottom: 10px;
  width: max-content;
  font-weight: 600;
  font-size: 1.8em;
}

.materiel_recent_title::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.2em;
  background-color: #9e9e9e;
  bottom: -10px;
  left: 0;
  width: 80%;
}

.materiel_recent_text {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  color: #d2d2d2;
  line-height: 1.6;
}

.materiel_recent_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5em;
  margin-top: 2em;
}

.materiel_recent_item {
  background-color: #333;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.materiel_recent_item:empty,
.materiel_recent_item img[src=""] {
  background: linear-gradient(135deg, #333 0%, #444 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.materiel_recent_item img[src=""]::before {
  content: "Image à venir";
  color: #666;
  font-size: 0.9em;
}

.materiel_recent_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.materiel_recent_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
  cursor: pointer;
}

.materiel_recent_item:hover .materiel_recent_img {
  transform: scale(1.05);
}

/* Lightbox styles */
.materiel_lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2em;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 200ms ease;
}

.materiel_lightbox.active {
  display: flex;
  opacity: 1;
}

.materiel_lightbox_img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 200ms ease;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.materiel_lightbox_close {
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 2.5em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 200ms ease;
  z-index: 10001;
}

.materiel_lightbox_close:hover,
.materiel_lightbox_close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
  outline: none;
}

.materiel_lightbox_close:focus-visible {
  outline: 3px solid #27b0ff;
  outline-offset: 2px;
}

.materiel_lightbox_caption {
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.75em 1.5em;
  border-radius: 0.5em;
  font-size: 1em;
  text-align: center;
  max-width: 80%;
  backdrop-filter: blur(4px);
}

.materiel_title {
  position: relative;
  margin-bottom: 10px;
  width: max-content;
  font-weight: 600;
}

.materiel_title::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.2em;
  background-color: #9e9e9e;
  bottom: -10px;
  left: 0;
  width: 80%;
}

.materiel_grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  aspect-ratio: 1/1;
  gap: 25px;
  margin-top: 1.5em;
  grid-template-areas:
    "grid_a grid_b grid_b grid_c"
    "grid_d grid_e grid_f grid_h"
    "grid_i grid_e grid_g grid_h"
    "grid_i grid_j grid_j grid_k";
}

.materiel_grid_content {
  background-color: #d2d2d2;
  border-radius: 20px;
  object-fit: cover;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  position: relative;
}

.materiel_grid_video {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.materiel_grid_img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.materiel_grid_content:hover .materiel_grid_img,
.materiel_grid_content:hover .materiel_grid_video {
  transform: scale(1.02);
}

.materiel_grid_label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.25em 0.6em;
  border-radius: 0.5em;
  background: rgba(20, 20, 20, 0.6);
  color: #eaeaea;
  font-weight: 500;
  font-size: 0.9em;
  backdrop-filter: blur(4px);
}

@media only screen and (max-width: 576px) {
  .materiel {
    margin: 1em 4vw;
  }

  .materiel_recent_gallery {
    grid-template-columns: 1fr;
    gap: 1em;
  }

  .materiel_recent_title {
    font-size: 1.5em;
  }

  .materiel_lightbox {
    padding: 1em;
  }

  .materiel_lightbox_img {
    max-width: 100%;
    max-height: 85%;
  }

  .materiel_lightbox_close {
    top: 1em;
    right: 1em;
    width: 40px;
    height: 40px;
    font-size: 2em;
  }

  .materiel_lightbox_caption {
    bottom: 1em;
    font-size: 0.9em;
    padding: 0.5em 1em;
    max-width: 90%;
  }

  .materiel_grid {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
}

/* END Materiel page */

/* Contact page */

.contact {
  color: #d2d2d2;
  margin: 2em 18vw;
}

.contact_title {
  position: relative;
  margin-bottom: 10px;
  width: max-content;
  font-weight: 600;
}

.contact_title::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.2em;
  background-color: #9e9e9e;
  bottom: -10px;
  left: 0;
  width: 80%;
}

.bold {
  font-weight: 600;
}

.contact_container {
  margin: 20px 0;
}

.contact_text {
  margin: 0 0 5px 0;
}

.contact_form {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.contact_form_input_container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
  margin: 0.3em 0;
}

.contact_form_input_input {
  width: 100%;
  border: 0;
  border-radius: 0.5em;
  padding: 0.05em 0.3em;
  font-weight: 500;
  font-size: 1em;
  height: 1.7em;
  background-color: #333333;
  color: #fff;
  border-width: 3px 3px 0 0;
  border-style: solid;
  border-color: #27b0ff;
}

.contact_form_input_textarea {
  width: 100%;
  border: 0;
  border-radius: 0.5em;
  padding: 0.3em;
  font-weight: 500;
  font-size: 1em;
  background-color: #333333;
  color: #fff;
  border-width: 3px 3px 0 0;
  border-style: solid;
  border-color: #27b0ff;
}

.contact_form_input_label {
  margin: 0 0 0.2em;
}

.contact_form_send {
  padding: 0.3em 5em;
  font-weight: 500;
  border-radius: 0.5em;
  margin: 1em 0 0;
  color: #fff;
  background-color: #27b0ff;
  outline: 0;
}

.contact_intro {
  margin-bottom: 2em;
  max-width: 620px;
}

.contact_intro_text {
  color: #d2d2d2;
}

.contact_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8em;
  margin-bottom: 2.5em;
}

.contact_details,
.contact_steps {
  flex: 1 1 260px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 0.8em;
  padding: 1.4em 1.6em;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact_subtitle {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.8em;
}

.contact_details_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.contact_details_label {
  display: block;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9e9e9e;
}

.contact_details_value {
  color: #eaeaea;
  font-weight: 500;
  text-decoration: none;
}

.contact_details_value:hover {
  text-decoration: underline;
}

.contact_note {
  margin-top: 1em;
  font-size: 0.9em;
  color: #bcbcbc;
}

.contact_steps_list {
  margin: 0;
  padding-left: 1.1em;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  color: #d2d2d2;
}

.contact_form_wrapper {
  width: 100%;
}

.contact_form_intro {
  margin: 0 0 1em 0;
  color: #cfcfcf;
}

.contact_card {
  width: 100%;
  background-color: rgba(51, 51, 51, 0.55);
  border-radius: 1em;
  padding: 1.8em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  gap: 1.2em;
}

.contact_form_group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2em;
  width: 100%;
}

.contact_form_input_container--full {
  grid-column: 1 / -1;
}

.contact_required {
  color: #27b0ff;
  margin-left: 0.25em;
}

.contact_hint {
  margin-top: 0.3em;
  font-size: 0.85em;
  color: #afafaf;
}

.contact_disclaimer {
  font-size: 0.85em;
  color: #9e9e9e;
  margin-top: 0.4em;
}

@media only screen and (max-width: 576px) {
  .contact {
    margin: 2em 8vw;
  }

  .contact_form_input_container {
    width: 100%;
  }

  .contact_card {
    padding: 1.4em;
  }
}

/* END Contact page */

/* Mention legal page */

.mention_legal {
  color: #d2d2d2;
  margin: 2em 18vw;
}

.mention_legal_title {
  position: relative;
  margin-bottom: 10px;
  width: max-content;
  font-weight: 600;
  margin-bottom: 1.5em;
}

.mention_legal_title::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.2em;
  background-color: #9e9e9e;
  bottom: -10px;
  left: 0;
  width: 80%;
}

/* END Mention legal page */