@charset "UTF-8";
:root {
  --Shark-50: #F4F5F7;
  --Shark-100: #E4E8E9;
  --Shark-200: #CCD2D5;
  --Shark-300: #A8B3B8;
  --Shark-400: #7D8B93;
  --Shark-500: #627078;
  --Shark-600: #545F66;
  --Shark-700: #485056;
  --Shark-800: #40464A;
  --Shark-900: #383C41;
  --Shark-950: #2A2E32;
  --Cerulean-50: #F1FAFE;
  --Cerulean-100: #E2F3FC;
  --Cerulean-200: #BFE8F8;
  --Cerulean-300: #86D6F3;
  --Cerulean-400: #45C1EB;
  --Cerulean-500: #1DAADA;
  --Cerulean-600: #0F8ABA;
  --Cerulean-700: #0E6E96;
  --Cerulean-800: #105C7C;
  --Cerulean-900: #134D67;
  --Cerulean-950: #0C3145;
  --Desktop-width: 1440px;
  --Tablet-width: 1024px;
  --Mobile-width: 768px;
}

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Aptos";
  src: url(../fonts/Aptos.ttf);
}
body {
  font-family: "Aptos", sans-serif;
  background-color: var(--Shark-50);
}

h1, h2, h3, p, span, a {
  color: var(--Shark-950);
}

h1, h2, h3 {
  font-weight: 700;
}

h1 {
  font-size: 48px;
}

.word {
  font-weight: 700;
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

p, span {
  font-size: 16px;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

::selection {
  color: var(--Shark-50);
  background-color: var(--Cerulean-950);
}

a.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 16px 32px;
  border-radius: 32px;
  font-size: 20px;
}

a.btn-small {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 8px 32px;
  border-radius: 32px;
  font-size: 16px;
}

a.btn-primary {
  background-color: var(--Cerulean-500);
}

a.btn-secondary {
  background-color: var(--Cerulean-300);
}

a.btn-third {
  background-color: var(--Cerulean-50);
}

@media screen and (max-width: 1024px) {
  a.btn {
    font-size: 18px;
  }
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes words_animated {
  0%, 13% {
    transform: translateY(0);
  }
  17%, 30% {
    transform: translateY(-100%);
  }
  34%, 47% {
    transform: translateY(-200%);
  }
  51%, 64% {
    transform: translateY(-300%);
  }
  68%, 81% {
    transform: translateY(-400%);
  }
  85%, 98% {
    transform: translateY(-500%);
  }
  100% {
    transform: translateY(0);
  }
}
header {
  max-width: var(--Desktop-width);
  width: 100%;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
  /* Burger menu - UIverse */
}
header nav svg {
  width: 48px;
  height: 100%;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  /* FIXME hover link */
}
header nav label.burger {
  display: none;
}
header nav .burger {
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: block;
}
header nav .burger input {
  display: none;
}
header nav .burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--Shark-950);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header nav .burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}
header nav .burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}
header nav .burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}
header nav .burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}
header nav .burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}
header nav .burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}
header .hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 128px 64px 0px 64px;
}
header .hero-header .text-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
header .hero-header .text-section .text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
header .hero-header .text-section .text p.big {
  font-size: 24px;
  text-wrap: balance;
}
header .hero-header .text-section .btns-container {
  display: flex;
  gap: 16px;
}
header .hero-header .text-section p {
  text-wrap: balance;
}
header .hero-header .img {
  width: 646px;
  height: 646px;
  background: lightgray 50%;
  border-radius: 24px;
}
header .hero-header .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
header .logos {
  padding-block: 32px 64px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
header .logos:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right, var(--Shark-50), transparent);
}
header .logos:after {
  content: "";
  width: 300px;
  height: 100%;
  background: linear-gradient(to left, var(--Shark-50), transparent);
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}
header .logos-slide {
  display: inline-block;
  animation: 20s slide infinite linear;
}
header .logos:hover .logos-slide {
  animation-play-state: paused;
}
header .logos-slide img {
  margin-inline: 64px;
  width: 64px;
  height: 100%;
}

/* animate text hero header */
.loader {
  box-sizing: content-box;
  height: 59px;
  display: flex;
  border-radius: 8px;
}

.words {
  overflow: hidden;
  position: relative;
  height: 59px;
  width: 75%;
}

.words::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
}

.word {
  display: block;
  height: 100%;
  color: var(--Cerulean-500);
  padding-left: 6px;
  animation: words_animated 15s ease-in-out infinite;
  position: absolute;
  width: 100%;
}

/* Délais ajustés pour une rotation plus fluide */
.word:nth-child(1) {
  animation-delay: 0s;
}

.word:nth-child(2) {
  animation-delay: -12.5s;
}

.word:nth-child(3) {
  animation-delay: -10s;
}

.word:nth-child(4) {
  animation-delay: -7.5s;
}

.word:nth-child(5) {
  animation-delay: -5s;
}

.word:nth-child(6) {
  animation-delay: -2.5s;
}

h1.title-no-animated {
  display: none;
}

@media screen and (max-width: 1024px) {
  header .hero-header {
    flex-direction: column;
    padding: 64px;
  }
  header .hero-header h1.title-no-animated {
    display: block;
  }
  header .hero-header h1.loader {
    display: none;
  }
  header .hero-header .img {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    padding: 0;
    background-color: white;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header nav .logo {
    position: absolute;
    top: 16px;
    left: 16px;
  }
  header nav label.burger {
    display: block;
    position: absolute;
    right: 16px;
    top: 16px;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 64px;
    padding: 64px;
    width: 100%;
    background-color: white;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 100;
  }
  header nav.active ul {
    display: flex;
    transform: translateY(0);
  }
  header .hero-header {
    padding-top: 128px;
  }
  header .hero-header .btns-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 450px) {
  .hero-header {
    padding: 128px 24px 64px !important;
  }
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: var(--Desktop-width);
  padding: 64px 64px 32px 64px;
}
footer .cols-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
footer .cols-container .infos {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 306px;
  flex: 1;
}
footer .cols-container .infos .logo-name {
  display: flex;
  gap: 24px;
  align-items: center;
}
footer .cols-container .infos .logo-name svg {
  width: 48px;
  height: 100%;
}
footer .cols-container .infos .logo-name span {
  font-size: 24px;
  font-weight: 700;
}
footer .cols-container ul, footer .cols-container .socials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
footer .cols-container nav {
  flex: 1;
}
footer .cols-container .socials {
  flex: 1;
}
footer .cols-container .socials-container {
  display: flex;
  gap: 16px;
}
footer .cols-container .socials-container img {
  width: 32px;
}
footer hr {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  footer {
    width: -moz-available;
    width: -webkit-fill-available;
  }
}
@media screen and (max-width: 450px) {
  footer {
    padding: 64px 24px !important;
  }
}
/* sections */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 450px) {
  .portfolio, .about, .testimonials-section, .cta {
    padding: 64px 24px !important;
  }
}
.portfolio {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: var(--Desktop-width);
  max-width: 100%;
  padding: 64px;
}
.portfolio .listing {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  overflow: hidden;
  /* Item survolé passe à flex: 3 */
  /* Modifie les items à côté de celui survolé */
  /* Modifie les items encore plus à côté */
}
.portfolio .listing .item {
  height: 425px;
  width: auto;
  display: flex;
  flex: 1;
  transition: flex 0.4s ease;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .portfolio .listing .item {
    min-width: 300px;
    height: 300px;
  }
}
.portfolio .listing .item:hover {
  flex: 4;
}
.portfolio .listing .item:hover .content {
  cursor: pointer;
}
.portfolio .listing .item:hover + *, .portfolio .listing .item:has(+ *:hover) {
  flex: 3;
}
.portfolio .listing .item:hover + * + *, .portfolio .listing .item:has(+ * + *:hover) {
  flex: 2;
}
.portfolio .listing .portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.portfolio .listing .position-left {
  object-position: left;
}
.portfolio .listing .content {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: var(--Shark-50);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.portfolio .listing .content .arrow-container {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  background-color: var(--Shark-50);
  border-radius: 50px;
}
.portfolio .listing .content h3 {
  color: var(--Shark-50);
}
.portfolio .listing .item:hover .content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .portfolio .listing .content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    opacity: 1;
    transform: translateY(0);
  }
}
.portfolio a {
  font-size: 14px;
  align-self: end;
}

@media screen and (max-width: 1024px) {
  .about {
    flex-direction: column;
  }
  .about .img, .about .img img {
    display: none;
  }
}
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: var(--Desktop-width);
  padding: 64px 64px 128px 64px;
}

.about .img {
  width: 646px;
  height: 646px;
  background: lightgray 50%;
  border-radius: 24px;
}
.about .img img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.about .text-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about .text-container .heading-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about .text-container .data-container {
  display: flex;
  gap: 32px 24px;
  flex-wrap: wrap;
}
.about .text-container .data-container .data-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 20px;
}
.about .text-container .data-container .data-item span {
  font-weight: 700;
}
.about .text-container .data-container .separator {
  width: 1px;
  background-color: var(--Shark-950);
}

.bg-section {
  background-color: var(--Cerulean-200);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 750px) {
  .heading-btns {
    flex-direction: column;
  }
}
.testimonials-section {
  width: 100%;
  max-width: var(--Desktop-width);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px;
  overflow: hidden;
}
.testimonials-section .heading-btns {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  color: var(--Shark-50);
}
.testimonials-section .heading-btns h2 {
  margin-bottom: 16px;
}
.testimonials-section .heading-btns .btns {
  display: flex;
  gap: 24px;
}
.testimonials-section .heading-btns .btns button {
  background: transparent;
  border: none;
  cursor: pointer;
}
.testimonials-section .heading-btns .btns button img {
  width: 72px;
  height: 100%;
  margin: 0;
}
.testimonials-section .heading-btns .btns button.right img {
  rotate: 180deg;
}
.testimonials-section .testimonials-container {
  display: flex;
  gap: 24px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  position: relative;
  user-select: none;
  touch-action: pan-y pinch-zoom;
  width: 100%;
}
.testimonials-section .testimonials-container .testimonial {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 420px;
  max-width: 100%;
  height: 100%;
  padding: 45px;
  background-color: var(--Shark-50);
  border-radius: 12px;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.12);
  scroll-snap-align: start;
  flex-shrink: 0;
}
.testimonials-section .testimonials-container .testimonial p {
  font-size: 20px;
}
.testimonials-section .testimonials-container .testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials-section .testimonials-container .testimonial .author img {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  object-fit: cover;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
}
.testimonials-section .testimonials-container .testimonial .author .name {
  color: var(--Cerulean-950, #0C3145);
  font-size: 16px;
  font-weight: 700;
  line-height: 32px; /* 200% */
}
.testimonials-section .testimonials-container .testimonial .author .job-title {
  color: var(--Cerulean-950, #0C3145);
  font-size: 14px;
}

.cta-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--Cerulean-500);
}
.cta-bg section.cta {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  max-width: var(--Desktop-width);
  padding: 128px 64px;
}
.cta-bg section.cta h2.big {
  color: var(--Cerulean-50, #F1FAFE);
  font-size: 72px;
  font-weight: 700;
  text-wrap: balance;
}
@media screen and (max-width: 750px) {
  .cta-bg section.cta h2.big {
    font-size: 36px;
  }
}

iframe {
  width: 50%;
  min-width: 350px;
}

.legal-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: var(--Desktop-width);
  padding: 64px;
}
.legal-container .heading-container {
  text-align: center;
  margin-bottom: 64px;
}
.legal-container a {
  color: var(--Cerulean-950);
  font-weight: 900;
}

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