@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
:root {
  /* === Root Em = 10px === */
  font-size: 62.5%;
}

/* === Couleurs === */
/* === Responsive sizes === */
/* === Fonts ===*/
/* --- Font family --- */
/* --- Font sizes --- */
:root {
  --font-size-xs: 1.15rem;
  --font-size-sm: 1.3rem;
  --font-size-base: 1.6rem;
  --font-size-lg: 2rem;
  --font-size-xl: 2.5rem;
  --font-size-2xl: 3.5rem;
  --font-size-3xl: 4.5rem;
  --font-size-4xl: 5rem;
  --font-size-5xl: 6rem;
}

/* --- Font weights --- */
/* === Margin sizes === */
@media screen and (max-width: 992px) {
  :root {
    --font-size-xs: 1rem;
    --font-size-sm: 1.15rem;
    --font-size-base: 1.3rem;
    --font-size-lg: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-2xl: 2.5rem;
    --font-size-3xl: 3rem;
    --font-size-4xl: 3.5rem;
    --font-size-5xl: 4rem;
    --font-size-6xl: 5rem;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --font-size-xs: 1rem;
    --font-size-sm: 1.3rem;
    --font-size-base: 1.6rem;
    --font-size-lg: 1.9rem;
    --font-size-xl: 2.2rem;
    --font-size-2xl: 2.5rem;
    --font-size-3xl: 2.8rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 3.6rem;
    --font-size-6xl: 4rem;
  }
}
@media screen and (max-width: 360px) {
  :root {
    --font-size-xs: .8rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.3rem;
    --font-size-lg: 1.6rem;
    --font-size-xl: 1.9rem;
    --font-size-2xl: 2.2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 2.8rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.5rem;
  }
}
section.banner {
  height: 700px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10%;
}
section.banner h1 {
  font-size: var(--font-size-3xl);
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  width: 30%;
}
section.banner video {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
@media screen and (max-width: 768px) {
  section.banner h1 {
    width: 50%;
  }
}
@media screen and (max-width: 360px) {
  section.banner h1 {
    width: 75%;
  }
}

section.project {
  padding: 10rem 10%;
  display: flex;
  justify-content: space-between;
  gap: 10%;
  font-family: "Lato", sans-serif;
  font-size: var(--font-size-base);
}
section.project .left, section.project .right {
  width: 45%;
}
section.project hgroup {
  margin-bottom: 5rem;
}
section.project h2 {
  font-weight: 700;
  font-size: var(--font-size-3xl);
  margin-bottom: 2rem;
  font-family: "Overlock", serif;
}
section.project p {
  line-height: 1.3;
}
section.project .cards-container {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  width: 100%;
}
section.project .cards-container .card {
  width: 45%;
}
section.project .cards-container .card .img {
  position: relative;
  margin-bottom: 2rem;
}
section.project .cta {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
section.project .cta .btn {
  padding: 2rem 5rem;
}
section.project .profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
section.project .profile img {
  border: 5px solid #1f2e4e;
}
section.project .profile .name {
  font-weight: 700;
  font-size: var(--font-size-xl);
  font-family: "Overlock", serif;
  margin-bottom: 1rem;
}
section.project .profile .role {
  color: #c2bfc5;
}
section.project .right {
  position: relative;
}
section.project .right img {
  position: relative;
  border-radius: 10px;
}
section.project .right img:first-child {
  top: 0;
  left: 0;
  width: 90%;
}
section.project .right img:last-child {
  bottom: 0;
  left: 100%;
  width: 75%;
  transform: translate(calc(-100% - 12px), -35%);
}
section.project .right hr {
  width: 10px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #e0263a;
  border: none;
  border-radius: 10px;
}
@media screen and (max-width: 1400px) {
  section.project {
    flex-direction: column;
    width: 100%;
    gap: 3rem;
  }
  section.project .left, section.project .right {
    width: 100%;
    text-align: center;
  }
  section.project .right {
    width: 75%;
    display: flex;
    gap: 2rem;
  }
  section.project .right hr {
    height: 10px;
    width: 50%;
    left: 70%;
    bottom: 0;
    top: auto;
  }
  section.project .right img:first-child {
    aspect-ratio: 4/5;
    object-fit: cover;
  }
  section.project .right img:last-child {
    left: auto;
    aspect-ratio: 16/9;
    transform: none;
    width: auto;
    height: fit-content;
  }
}
@media screen and (max-width: 1200px) {
  section.project .right {
    flex-direction: column;
    width: 50%;
    margin: auto;
  }
  section.project img {
    width: 100% !important;
  }
  section.project hr {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  section.project .profile img {
    width: 40% !important;
  }
  section.project .cards-container {
    justify-content: center;
  }
  section.project .cards-container .card {
    width: 55%;
  }
}
@media screen and (max-width: 576px) {
  section.project hgroup {
    width: 70%;
  }
  section.project .cards-container .card {
    width: 80%;
  }
}

.prototype {
  padding: 10rem 10%;
  background: #f2f2f2;
  font-family: "Lato", sans-serif;
  font-size: var(--font-size-base);
  color: #000000;
}
.prototype .prototype-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  gap: 3rem;
}
.prototype .prototype-container .column {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 35%;
}
.prototype .prototype-container .column .card-body {
  text-align: left;
}
.prototype .prototype-container .column:nth-child(2) {
  max-width: 30%;
}
.prototype .prototype-container .column:last-child .card-body {
  text-align: right;
}
.prototype .prototype-container .card h3 {
  color: #1f2e4e;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}
.prototype .prototype-container .card p {
  line-height: 1.5;
  color: #000000;
}
@media screen and (max-width: 1200px) {
  .prototype .prototype-container .card {
    gap: 1rem;
  }
}
@media screen and (max-width: 992px) {
  .prototype .prototype-container {
    flex-direction: column;
  }
  .prototype .prototype-container .column {
    max-width: unset;
    width: 60%;
  }
  .prototype .prototype-container .column .card .card-header {
    max-width: 30%;
  }
  .prototype .prototype-container .column:nth-child(2) {
    max-width: unset;
  }
  .prototype .prototype-container .column:last-child .card-body {
    text-align: left;
  }
  .prototype .prototype-container .column:last-child .card-row.reverse {
    flex-direction: row;
  }
}
@media screen and (max-width: 576px) {
  .prototype .prototype-container .column {
    width: 90%;
  }
}
@media screen and (max-width: 576px) {
  .prototype hgroup {
    width: 70%;
  }
}

.reassurance {
  padding: 10rem 10%;
  background: #f0f0f1;
  background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)), url(../../img/fact-bg.jpg);
  background-size: cover;
}
.reassurance .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}
.reassurance .container .card {
  width: 25%;
}
.reassurance .container .card-invisible {
  color: #FFFFFF;
}
.reassurance .container .card-invisible .icon-xl {
  width: 3rem;
  height: 3rem;
}
.reassurance .container .card-invisible .card-header {
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .reassurance .container {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.partners {
  padding: 10rem 10%;
  font-family: "Lato", sans-serif;
  font-size: var(--font-size-base);
}
.partners hgroup {
  width: 40%;
  margin: 0 auto 5rem;
}
.partners hgroup h2 {
  font-weight: 900;
  font-size: var(--font-size-3xl);
  margin-bottom: 2rem;
  font-family: "Overlock", serif;
  text-align: center;
}
.partners hgroup p {
  text-align: center;
  color: #c2bfc5;
}
.partners .partners-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}
.partners .partners-container .partner {
  width: calc((100% - 6rem) / 3);
  padding: 4rem;
  display: block;
}
.partners .partners-container .partner .icon-xl {
  width: 4rem;
}
.partners .partners-container .partner h3 {
  margin: 2rem 0;
}
.partners .partners-container .partner p {
  color: #2e4472;
}
@media screen and (max-width: 992px) {
  .partners .partners-container .partner {
    width: calc((100% - 4rem) / 2);
  }
}
@media screen and (max-width: 768px) {
  .partners .partners-container .partner {
    width: 75%;
    margin: auto;
  }
}
@media screen and (max-width: 576px) {
  .partners hgroup {
    width: 70%;
  }
  .partners .partners-container .partner {
    width: 85%;
  }
}

.join-us {
  padding: 10rem 10%;
  background: #f0f0f1;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../../img/bg-1.jpg);
  background-size: cover;
}
.join-us .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}
.join-us .container .card {
  width: calc((100% - 10rem) / 3);
  position: relative;
  padding: 3rem;
}
.join-us .container .card .card-header {
  align-items: flex-start;
}
.join-us .container .card .card-body {
  text-align: left;
}
.join-us .container .card .step {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 5rem;
  border-radius: 50%;
  font-weight: 900;
  background: #1f2e4e;
  padding: 2rem;
  aspect-ratio: 1;
  transform: translateY(50%);
  border: solid 1px #FFFFFF;
}
@media screen and (max-width: 992px) {
  .join-us .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .join-us .container .card {
    width: calc((100% - 5rem) / 2);
  }
}
@media screen and (max-width: 768px) {
  .join-us .container .card {
    width: 85%;
  }
}
@media screen and (max-width: 576px) {
  .join-us hgroup {
    width: 70%;
  }
}

.staffs {
  padding: 10rem 10%;
}
.staffs .cards-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.staffs .cards-container .card {
  width: 20%;
  margin-top: 10rem;
  position: relative;
}
.staffs .cards-container .card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: #1f2e4e;
  transition: 0.5s;
}
.staffs .cards-container .card:hover::after, .staffs .cards-container .card:hover .img::after {
  height: 100%;
}
.staffs .cards-container .card:hover .card-header, .staffs .cards-container .card:hover .card-body {
  color: #FFFFFF;
}
.staffs .cards-container .card .img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 3;
  transition: 0.5s;
}
.staffs .cards-container .card-body {
  z-index: 5;
  transition: all 0.3s ease;
}
.staffs .cards-container .card-header {
  z-index: 5;
  width: 100%;
  position: relative;
  top: -10rem;
  margin-bottom: -8rem;
  color: #1f2e4e;
  transition: all 0.3s ease;
}
.staffs .cards-container .card .img {
  border-radius: 2rem;
  overflow: hidden;
  background: #fff4dc;
}
.staffs .cards-container .card .img, .staffs .cards-container .img img, .staffs .cards-container .img svg {
  width: 100%;
}
.staffs .cards-container .card .links-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #e0263a;
}
.staffs .cards-container .card .links-container .social-link {
  transition: all 0.2s ease-in-out;
  padding: 1rem;
  border-radius: 50%;
  background: #f2f2f2;
}
.staffs .cards-container .card .links-container .social-link:hover {
  color: #f2f2f2;
  background: #e0263a;
}
@media screen and (max-width: 1200px) {
  .staffs .cards-container .card {
    width: calc((100% - 4rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .staffs .cards-container .card {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width: 576px) {
  .staffs .cards-container {
    justify-content: center;
  }
  .staffs .cards-container .card {
    width: 70%;
  }
}
@media screen and (max-width: 576px) {
  .staffs hgroup {
    width: 70%;
  }
}

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