/* Reset CSS */
/* _colors.scss */
/*$blue-300: #1B004B;*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 16px;
  color: #230061;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  font-family: "Eudoxus Sans", sans-serif;
  font-weight: 500;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.hidden {
  display: none;
}

/* Responsive */
@media (min-width: 576px) {
  .container {
    max-width: 1092px;
    padding: 0 37px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1556px;
  }
}
/* eudoxus-sans-regular */
@font-face {
  font-display: swap;
  font-family: "Eudoxus Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/EudoxusSans-Regular.woff2") format("woff2");
}
/* eudoxus-sans-medium */
@font-face {
  font-display: swap;
  font-family: "Eudoxus Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/EudoxusSans-Medium.woff2") format("woff2");
}
/* eudoxus-sans-bold */
@font-face {
  font-display: swap;
  font-family: "Eudoxus Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/EudoxusSans-Bold.woff2") format("woff2");
}
/* eudoxus-sans-extrabold */
@font-face {
  font-display: swap;
  font-family: "Eudoxus Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/EudoxusSans-ExtraBold.woff2") format("woff2");
}
/* Typography */
h1 {
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 42px;
  font-weight: 800;
}

h2 {
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

h3, .h3 {
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

h4, .h4 {
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

p {
  font-family: "Eudoxus Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.small {
  font-size: 14px;
}

strong, b {
  font-weight: 700;
}

.highlight {
  color: #44E6FB;
}

/* Responsive */
@media (min-width: 576px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 56px;
  }
  h2 {
    font-size: 36px;
  }
}
/* _buttons.scss */
.btn {
  padding: 0.625rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: center;
}

.btn-primary {
  background-color: #230061;
  color: #FFFFFF;
  border: 1px solid #230061;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-secondary {
  background-color: #44E6FB;
  color: #230061;
  border: 1.5px solid #44E6FB;
  transition: all 0.1s ease-in-out;
  font-weight: 700;
}

.btn-tertiary {
  background-color: transparent;
  color: #230061;
  border: 1.5px solid #230061;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

/* Hover */
.btn-primary:hover {
  background-color: #44E6FB;
  border: 1px solid #44E6FB;
  color: #230061;
}

.btn-secondary:hover {
  background-color: #44E6FB;
  color: #FFFFFF;
}

.btn-tertiary:hover {
  background-color: #230061;
  color: #FFFFFF;
  padding-right: 2.8rem;
}

.team__card--job:hover .btn-plus {
  background-color: #44E6FB;
  transform: scale(1.1);
}

.team__card--job .btn {
  width: auto;
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  font-family: "Eudoxus Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}

/* button service */
.service_button {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  width: fit-content;
  padding: 12px 16px;
  border: 1.5px solid #FFFFFF;
  border-radius: 25px;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service_button .text {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service_button .icon {
  text-align: center;
  flex-shrink: 0;
  margin-left: 15px;
  transition: all 0.4s ease;
  transform: rotate(45deg);
}
.service_button .icon img {
  width: 14px;
  display: block;
}

.service__card-link:hover .service_button {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 25px;
  flex-direction: row;
}

.service__card-link:hover .service_button .text {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
  transform: translateX(0);
}

.service__card-link:hover .service_button .icon {
  transform: rotate(45deg);
  margin-left: 15px;
}

/* ========== Responsive ========== */
@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .btn-tertiary {
    width: auto;
  }
  .service_button {
    width: 48px;
    height: 48px;
    flex-direction: row-reverse;
    padding: 16px;
    border-radius: 50px;
    overflow: hidden;
  }
  .service_button .text {
    opacity: 0;
    visibility: hidden;
    margin-left: -20px;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .service_button .icon {
    margin-left: 0;
    transform: rotate(0deg);
  }
}
/* button project */
.project__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1.5px solid #FFFFFF;
  border-radius: 50px;
  background-color: transparent;
  color: #FFFFFF;
  transition: transform 0.3s ease-in-out;
}

/* Cards */
.services {
  background-color: #151666;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 410px));
  gap: 30px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.service__card {
  background-color: #F9F9FB;
  height: 100%;
  border-radius: 20px;
  color: #230061;
  padding: 40px 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.service__image {
  max-width: 50px;
}

.service__title {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 60px;
}

.service__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.service__content a {
  width: 100%;
}

.services__graphic {
  position: absolute;
  top: 25px;
  left: -160px;
  z-index: 1;
}

/* Responsive */
@media (min-width: 1024px) {
  .service__content a {
    width: auto;
  }
}
@media (min-width: 1404px) {
  .services__list {
    grid-template-columns: repeat(auto-fit, minmax(0, 310px));
  }
}
/* Hamburger Menu */
.burger-menu {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  z-index: 50;
  background: none;
  border: none;
}

.burger-line {
  height: 2px;
  display: block;
  width: 100%;
  background-color: #230061;
  position: absolute;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
}

.burger-line:first-child {
  top: 3px;
}

.burger-line:nth-child(2) {
  top: 11px;
}

.burger-line:last-child {
  top: 19px;
}

.burger-menu--active .burger-line:first-child {
  transform: rotate(45deg) translateY(10.9090909091px);
}

.burger-menu--active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu--active .burger-line:last-child {
  transform: rotate(-45deg) translateY(-10.9090909091px);
}

body.menu-open {
  overflow: hidden;
}

.burger-menu.burger-menu--active .burger-line {
  background-color: #FFFFFF;
}

/* Overlay Menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #230061;
  transform: translateX(-100%);
  z-index: 40;
  transition: all 0.5s ease;
}

.menu-overlay.menu-overlay--active {
  transform: translateX(0);
  pointer-events: all;
}

.menu-overlay__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 37px;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}

.menu-overlay__list {
  text-align: center;
  padding-top: 4rem;
  margin-bottom: auto;
  margin-top: auto;
}
.menu-overlay__list a {
  color: #FFFFFF;
  font-size: 1.5em; /* 24px */
  line-height: 1.5;
  cursor: pointer;
}
.menu-overlay__list li {
  --tw-space-x-reverse: 0;
  margin-top: calc(1.875rem * var(--tw-space-x-reverse));
  margin-bottom: calc(1.875rem * (1 - var(--tw-space-x-reverse)));
}

.menu-overlay__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  text-align: center;
}

.menu-overlay__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
  margin-top: 2rem;
}

.menu-overlay__socials a img {
  width: 24px;
  height: 24px;
  transition: all 0.5s ease;
}

/* ========== Responsive ========== */
@media (min-width: 1024px) {
  .menu-overlay {
    display: none;
  }
}
/* Banner Homepage */
.banner {
  position: relative;
  min-height: 603px;
  background-color: #F9F9FB;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  overflow: hidden;
  padding: 40px 30px 0 30px;
  margin-top: 96px;
}

.banner__img {
  max-height: 580px;
}

.banner__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  max-width: 600px;
}
.banner__content h1, .banner__content p, .banner__content a {
  position: relative;
  z-index: 10;
}

/* Responsive */
@media (min-width: 1024px) {
  .banner {
    flex-wrap: nowrap;
    padding: 0 0 0 82px;
  }
}
/* Textes */
.intro {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.intro__content a {
  display: inline-block;
  margin-top: 30px;
}

/* Responsive */
@media (min-width: 1024px) {
  .intro {
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    padding: 120px 119px 120px;
  }
}
/* Image texte */
.service__container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  gap: 30px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.service__intro--title {
  margin-bottom: 30px;
}

.service__intro--img {
  margin: auto;
}

/* Responsive */
@media (min-width: 1024px) {
  .service__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    padding: 140px 108px 140px 38px;
  }
}
/* Timeline Homepage */
.timeline {
  background: #151666;
  color: #FFFFFF;
  padding-top: 70px;
  padding-bottom: 70px;
  margin-bottom: 70px;
}

.timeline__inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline__inner::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #44E6FB;
  opacity: 0.3;
  border-radius: 4px;
}

.timeline__item {
  position: relative;
  display: flex;
  gap: 20px;
}

.timeline__content {
  /*background: rgba(255,255,255,0.08);
  padding: 15px 20px;
  border-radius: 20px;*/
  flex: 1;
}

.timeline__date {
  margin: 0 0 10px;
  font-weight: 700;
  color: #44E6FB;
}

.timeline__title {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #e3ecff;
}

.timeline__content p {
  margin: 0;
  line-height: 1.5;
  color: #FFFFFF;
}

/* Responsive */
@media (min-width: 576px) {
  .timeline__inner::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #44E6FB;
    opacity: 0.3;
    border-radius: 4px;
  }
}
@media (min-width: 1024px) {
  .timeline {
    margin-bottom: 120px;
  }
  .timeline__item {
    display: block;
  }
  .timeline__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .timeline__inner::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #44E6FB;
    opacity: 0.3;
    border-radius: 4px;
    z-index: 0;
  }
  .timeline__item {
    flex: 1;
    position: relative;
  }
  .timeline__content {
    margin-top: 15px;
  }
}
/* Socials Media */
.about__card--content {
  position: relative;
}

.about__card--social {
  color: #FFFFFF;
  background-color: #230061;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -25px;
  right: 20px;
}

.about__card--social:hover {
  background-color: #230061;
  color: #FFFFFF;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Footer Socials */
.footer__infos--social {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__social--link {
  color: #FFFFFF;
  padding: 10px;
  order: 0;
}

.footer__social--link:hover {
  color: #44E6FB;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 1024px) {
  .footer__infos--social {
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
  }
  .footer__social--link {
    color: #FFFFFF;
    padding: 10px;
    order: 1;
  }
}
/* Header */
header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.header__content {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__content--element {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 144px;
}
.logo img {
  vertical-align: middle;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu {
  display: none;
}
.nav-menu a {
  position: relative;
  color: #230061;
}

.nav-menu a:hover {
  color: #44E6FB;
}

.header__content__buttons {
  display: none;
}

/* Header Scroll */
header.translate {
  transform: translateY(-100%);
}

header.header--bg {
  background-color: #230061;
}
header.header--bg nav .nav-menu li a {
  color: #FFFFFF;
  transition: color 0.3s ease;
}
header.header--bg nav .nav-menu li a:hover {
  color: #44E6FB;
}
header.header--bg .header__content__buttons .btn-primary {
  background-color: #44E6FB;
  border: 1px solid #44E6FB;
  color: #230061;
  transition: all 0.3s ease;
}
header.header--bg .header__content__buttons .btn-primary:hover {
  color: #FFFFFF;
}
header.header--bg .logo img {
  content: url("../svg/logo-light.svg");
  transition: all 0.3s ease;
}
header.header--bg .burger-menu .burger-line {
  background-color: #FFFFFF;
}
header.header--bg .burger-menu.burger-menu--active .burger-line {
  background-color: #FFFFFF;
}

nav {
  transition: background-color 0.5s ease;
}

nav.header--bg {
  background-color: #230061;
}

/* ========== Responsive ========== */
@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
  .header__content__buttons {
    display: inline-block;
    margin-left: 1em;
  }
  .header__content__burger {
    display: none;
  }
}
/* Footer */
.footer {
  background-color: #230061;
  color: #FFFFFF;
  overflow: hidden;
}
.footer a {
  color: #FFFFFF;
}

.footer__container {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.footer__content {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.footer__content--element {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/*.footer__logo {
    margin: auto;
}*/
.footer__nav-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.footer__button {
  display: inline-block;
}
.footer__button a {
  color: #230061 !important;
}
.footer__button a:hover {
  color: #FFFFFF !important;
}

.footer__hr {
  border: 0.75px solid #44E6FB;
  opacity: 0.5;
}

.footer__infos {
  margin: auto;
  text-align: center;
  order: 1;
}

.footer__infos--title {
  font-weight: 600;
}

.footer__infos p {
  font-size: 14px;
}

/* Secondary footer */
.footer__bottom--text {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.5;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 1024px) {
  .footer__container {
    gap: 15px;
  }
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer__content--element {
    flex-direction: row;
    gap: 30px;
  }
  .footer__nav-menu {
    flex-direction: row;
    gap: 30px;
  }
  .footer__button {
    margin-left: 1em;
  }
  .footer__infos {
    margin: 0;
    text-align: left;
    order: 0;
  }
}
/* Push Contact */
.push-contact {
  padding-bottom: 96px;
}

.push-contact__container {
  position: relative;
  background-color: #151666;
  color: #FFFFFF;
  padding: 70px 30px;
  text-align: left;
  overflow: hidden;
}

.push-contact__content {
  max-width: 736px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  z-index: 2;
  position: relative;
}
.push-contact__content a {
  width: 100%;
}

.cta__graphic {
  position: absolute;
  bottom: -93px;
  right: -80px;
  z-index: 1;
}

/* ========== Responsive ========== */
@media (min-width: 768px) {
  .push-contact__content {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .push-contact {
    padding: 0 0 120px 0;
  }
  .push-contact__content {
    padding: 0;
    padding-left: 119px;
  }
  .push-contact__content a {
    width: auto;
  }
}
/* Section about */
.about {
  padding-top: 96px;
  padding-bottom: 96px;
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.about__title {
  margin-bottom: 30px;
}

.about__image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (min-width: 1024px) {
  .about {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .about__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 100px;
  }
  .about__content {
    max-width: 554px;
  }
  .about__image {
    width: 472px;
  }
}
/* PAGE 404 */
/* 404 */
.section-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.title-404 {
  font-size: 70px;
}

.img-404 {
  max-width: 300px;
}

.section-404 h2 {
  font-size: 28px;
  margin: 20px 0;
}

.section-404 p {
  margin-bottom: 30px;
}

/* ========== Responsive ========== */
@media (min-width: 1024px) {
  .section-404 {
    padding-top: 120px;
  }
  .title-404 {
    font-size: 120px;
  }
}