@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap");
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}

/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

@font-face {
  src: url("../../assets/fonts/GoodTimesRg.otf");
  font-family: "Good Times";
}
:root {
  --black: #000;
  --black-hover: rgb(25.5, 25.5, 25.5);
  --black-transparent: rgba(0, 0, 0, 0.6);
  --white: #fff;
  --white-hover: white;
  --white-transparent: rgba(255, 255, 255, 0.6);
  --grey: #6c757d;
  --grey-hover: rgb(121.2553648069, 130.8849785408, 139.4446351931);
  --grey-transparent: rgba(108, 117, 125, 0.6);
  --blue: #0d6efd;
  --blue-hover: rgb(37.2, 124.5, 253.2);
  --blue-transparent: rgba(13, 110, 253, 0.6);
  --red: #dc3545;
  --red-hover: rgb(223.5, 73.2, 87.6);
  --red-transparent: rgba(220, 53, 69, 0.6);
}

body {
  font-family: "Good Times";
  background-color: var(--secondary-color);
}

h1 {
  font-size: 3.75rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0;
}

p {
  font-size: 1.5rem;
  font-family: Darker Grotesque, serif;
  font-weight: 600;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.375rem;
  }
  h3 {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
  a {
    font-size: 1rem;
  }
}
.button {
  text-decoration: none;
  color: inherit;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  padding: 0.625rem 1rem;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: "Darker Grotesque", semi-bold;
  font-size: 1.5rem;
  font-weight: 600;
}
.button:hover {
  background-color: var(--black-hover);
}
.button--primary {
  background-color: #191970;
  color: #fff;
}
.button--primary:hover {
  background-color: #3f3fb8;
}
.button--secondary {
  background-color: #fff;
  color: #191970;
  border: 3px solid #191970;
}
.button--secondary:hover {
  border: none;
  background-color: #191970;
  border: 3px solid #fff;
  color: #fff;
}
.button--lg {
  padding: 1.25rem 3rem;
  border-radius: 1000px;
}
.button--sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .button {
    padding: 0.75rem 4rem;
    font-size: 1.25rem;
  }
}
.banner {
  aspect-ratio: 100/42;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner--text {
  color: var(--white);
  display: flex;
  position: relative;
}
.banner--text::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--black-transparent);
}
.banner__title {
  position: relative;
  font-size: 3rem;
  line-height: 3.75rem;
  font-weight: 700;
  text-align: center;
  max-width: 80%;
  margin: auto;
}

header {
  background-color: transparent;
  align-items: center; /* Alignement vertical */
}

nav {
  position: absolute;
  width: 100%;
  background-color: #021125;
  margin-left: auto;
  padding: 1rem 4rem;
  text-transform: uppercase;
}
nav button {
  display: none;
}
nav img {
  height: 4rem;
  width: auto;
}

ul {
  display: flex;
  list-style: none; /* Enlever les puces */
  padding: 0; /* Enlever le padding par défaut de <ul> */
  margin: 0; /* Enlever la marge par défaut de <ul> */
  justify-content: space-between; /* Centrer horizontalement les éléments <li> */
  align-items: center; /* Centrer verticalement les éléments */
}

li {
  margin-right: 20px; /* Ajouter un espace entre les éléments */
}

li:last-child {
  margin-right: 0; /* Retirer l'espacement du dernier élément */
}

a {
  text-decoration: none; /* Enlever la décoration des liens */
  color: #fff;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem;
    background-color: transparent;
  }
  nav ul li {
    display: none;
  }
  nav ul li:last-child {
    display: block;
  }
  nav ul li:first-child {
    display: block;
  }
  nav ul li img {
    height: 3rem;
  }
  nav button {
    display: block;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 3rem;
  }
}
h2 {
  padding-left: 3.125rem;
}

.modeles {
  margin: 6.25rem 0;
}
.modeles > div {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.gallery-item button {
  align-self: end;
  margin: auto auto 0 auto;
}

.gallery-item img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .gallery-item {
    width: 100%;
  }
  .modeles {
    margin-bottom: 0;
  }
  .modeles div {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 2rem;
  }
}
video {
  width: 100%;
}

footer {
  background-color: #3f3fb8;
  color: #fff;
  padding: 2.5rem;
}
footer img {
  height: 8rem;
  width: auto;
  margin: 0 auto;
}
footer .links {
  display: grid;
  margin-top: 1.5rem;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}
footer .links div img {
  height: 1.5rem;
  filter: invert(100%);
  display: none;
}
footer p {
  margin: 0;
  line-height: 3rem;
}
footer h3 {
  text-transform: uppercase;
  margin-top: 0;
  font-size: 1.5rem;
}
footer ul {
  display: block;
  line-height: 2.4rem;
}
footer a {
  color: #fff;
  font-family: "Darker Grotesque", sans-serif;
  font-size: 1.5rem;
}
footer .legal {
  text-align: center;
  width: 100%;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  footer {
    padding-top: 0.5rem;
    padding-bottom: 0;
  }
  footer h3 {
    font-size: 1.125rem;
  }
  footer a {
    font-size: 1.125rem;
  }
  footer .links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }
  footer .links img {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 1;
    grid-column-end: 3;
    height: 6rem;
  }
  footer .links div {
    grid-row-start: 2;
    grid-row-end: 2;
  }
  footer .links div:last-child {
    grid-row-start: 3;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
  }
  div:last-child a img {
    display: block;
    justify-content: center;
  }
  div:last-child a:last-child {
    display: none;
  }
  div:last-child ul {
    display: flex;
  }
  .legal {
    margin-top: 1rem;
  }
}
.description {
  background-color: #191970;
  color: #fff;
  text-align: center;
  margin-top: 6.25rem;
}
.description p:first-child {
  padding: 18.75rem 10.5rem;
  margin: auto;
}

.description2 img {
  width: 100%;
  margin-top: 3.125rem;
}

.description2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(6, 1fr);
}
.description2 img:first-child {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}
.description2 img:last-child {
  grid-column-start: 3;
  grid-column-end: 7;
  position: relative;
  bottom: 20%;
  grid-row-start: 3;
  grid-row-end: 10;
}
.description2 div {
  grid-column-start: 4;
  grid-column-end: 7;
  grid-row-start: 1;
  grid-row-end: 2;
}
.description2 .empty-row {
  grid-column-start: 1;
  grid-column-end: 7;
  grid-row-start: 4;
  grid-row-end: 11;
  background-color: #fff;
}
.description2 .text {
  margin: auto;
  padding: 0 22%;
}

@media (max-width: 768px) {
  .description {
    margin-top: 0;
  }
  .description p:first-child {
    padding: 6rem 2rem;
  }
  .description2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .description2 .empty-row {
    display: none;
  }
  .description2 img:first-child {
    grid-row-start: 2;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 1;
  }
  .description2 .text {
    grid-row-start: 1;
    grid-row-end: 1;
    grid-column-start: 1;
    grid-column-end: 1;
    padding: 11%;
  }
  .description2 img:last-child {
    display: none;
  }
}
.content {
  margin: 12.5rem;
}

@media (max-width: 768px) {
  .content {
    margin: 6.25rem 3.125rem;
  }
  .modeles h2 {
    margin-bottom: 3rem;
  }
}

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