@charset "UTF-8";
@import 'vendors/swiper-bundle.min.css';
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-grey: #CFCECB;
  --color-accent: #324B6B;
  --color-primary: #A09B91;
  --color-secondary: #F2F2F2;
  --font-primary: space-grotesk-variable, Helvetica Neue, sans-serif;
  --font-secondary: microgramma-extended, Helvetica Neue, sans-serif;
}

body {
  background-color: var(--color-secondary);
}

/* ==========================================================================
   1. BOX MODEL RESET (Border-box par défaut)
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ==========================================================================
   2. MARGES PAR DÉFAUT
   ========================================================================== */
body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* ==========================================================================
   3. TYPOGRAPHIE ET INHÉRITANCE
   ========================================================================== */
input,
button,
textarea,
select {
  font: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* ==========================================================================
   4. ACCESSIBILITÉ & IMAGES
   ========================================================================== */
ol, ul {
  line-height: 1;
  padding: 0;
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   5. ÉLÉMENTS SPÉCIFIQUES
   ========================================================================== */
pre,
code {
  overflow: auto;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

h2, h3, h4, h5 {
  font-family: var(--font-primary);
}

h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
}

h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
}

h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
}

h5 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
}

li {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  list-style: disc;
  margin-left: 20px;
}

a {
  font-family: var(--font-primary);
  text-decoration: underline;
  color: inherit;
}

.btn {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  padding-block: 14px;
  padding-inline: 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.2s;
  width: fit-content;
  display: block;
}
.btn--white {
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-white);
}
.btn--white:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.btn--black {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
}
.btn--black:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}
.btn--accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
}
.btn--accent:hover {
  background-color: var(--color-white);
  color: var(--color-accent);
}

.anchors {
  position: relative;
  padding-block: 100px;
  overflow: hidden;
}
.anchors.cards--gallery {
  background: var(--color-grey);
}
.anchors.cards--gallery .container {
  background-color: var(--color-grey);
}
.anchors.cards--gallery .cards .card:first-child::before {
  content: "";
  position: absolute;
  top: calc(100% - 60px);
  left: -50vw;
  right: -50vw;
  height: 10000px;
  background-color: var(--color-secondary);
  z-index: -1;
}
.anchors.cards--gallery .links {
  background-color: var(--color-grey);
}
.anchors .links {
  position: relative;
  z-index: 2;
  display: none;
  gap: 20px;
  width: 80%;
  margin-inline: auto;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .anchors .links {
    display: flex;
    justify-content: center;
  }
}
.anchors .links .link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.anchors .links .link img {
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
  max-height: 100px;
}
.anchors .links a {
  width: 100%;
  font-weight: 700;
}
.anchors .links button {
  background: none;
  border: 1px solid var(--color-accent);
  padding: 10px 20px;
  color: var(--color-accent);
  border-radius: 10px;
  width: 100%;
}
.anchors .links button:hover {
  background-color: var(--color-accent);
  color: var(--color-secondary);
  cursor: pointer;
}
.anchors .cards {
  position: relative;
  z-index: 2;
}
.anchors .cards .card {
  scroll-margin-top: 150px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 1024px) {
  .anchors .cards .card:nth-child(odd) {
    align-items: flex-start;
  }
  .anchors .cards .card:nth-child(odd) .text {
    margin-left: 8%;
  }
  .anchors .cards .card:nth-child(even) {
    align-items: flex-end;
  }
  .anchors .cards .card:nth-child(even) .text {
    margin-right: 8%;
  }
}
.anchors .cards .card img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
@media (min-width: 1024px) {
  .anchors .cards .card img {
    aspect-ratio: 16/8;
  }
}
.anchors .cards .card .text {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 40px;
  z-index: 3;
  position: relative;
  width: calc(100% - 30px);
  margin-inline: auto;
  margin-top: -50px;
}
.anchors .cards .card .text--gallery .line {
  position: relative;
  display: block;
  width: max-content;
  z-index: 3;
  max-width: 280px;
}
.anchors .cards .card .text--gallery .line:not(:last-child) {
  margin-bottom: 26px;
}
@media (min-width: 1024px) {
  .anchors .cards .card .text--gallery .line {
    max-width: none;
  }
}
.anchors .cards .card .text--gallery .line::after {
  content: "";
  position: absolute;
  bottom: -16px;
  height: 16px;
  background-color: var(--color-secondary);
  width: var(--after-width, 0);
  left: var(--after-left, 0);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 2s ease-in-out;
  z-index: 3;
}
.anchors .cards .card .text--gallery .line.animate::after {
  transform: scaleX(1);
}
.anchors .cards .card .text--gallery h2 {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 30px;
  font-family: var(--font-secondary);
  position: absolute;
  bottom: 60px;
  left: 30px;
}
.anchors .cards .card .text h2 {
  margin-bottom: 20px;
  color: var(--color-accent);
}
@media (min-width: 1024px) {
  .anchors .cards .card .text {
    margin-top: -100px;
    width: 50%;
  }
}

.banner {
  width: 100%;
  position: relative;
  display: flex;
  aspect-ratio: 16/15;
}
@media (min-width: 1024px) {
  .banner {
    align-items: flex-end;
    aspect-ratio: 16/4;
  }
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.banner__overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 90%;
}
@media (min-width: 1024px) {
  .banner__overlay {
    width: 50%;
    height: 100%;
  }
}
.banner__overlay .banner__overlay__container__line {
  display: flex;
  position: absolute;
  align-items: flex-end;
  height: 100%;
}
@media (min-width: 1024px) {
  .banner__overlay .banner__overlay__container__line {
    display: none;
  }
}
.banner .container {
  background: transparent;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .banner .container {
    padding-bottom: 40px;
  }
}
.banner .container__line {
  display: none;
}
@media (min-width: 1024px) {
  .banner .container__line {
    display: block;
  }
}
.banner .container .title {
  font-family: var(--font-secondary);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  line-height: 1;
  padding-bottom: 4px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .banner .container .title {
    font-size: 58px;
  }
}
@media (min-width: 1024px) {
  .banner .container .title {
    padding-bottom: 0;
  }
}
.banner .container .line {
  position: relative;
  display: block;
  width: max-content;
}
.banner .container .line::after {
  content: "";
  position: absolute;
  bottom: -20px;
  height: 16px;
  background: #FFF;
  width: var(--after-width, 0);
  left: var(--after-left, 0);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 2s ease-in-out;
}
.banner .container .line.animate::after {
  transform: scaleX(1);
}

.cta {
  margin-top: 100px;
}
.cta .title {
  text-transform: uppercase;
  font-family: var(--font-secondary);
  color: var(--color-black);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: -6px;
  line-height: 1;
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .cta .title {
    font-size: 40px;
    margin-top: 74px;
  }
}
.cta--head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .cta--head {
    flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .cta--head .container {
    display: flex;
    justify-content: flex-end;
  }
}
.cta .content {
  padding: 20px;
  background-color: var(--color-secondary);
  border-bottom-left-radius: 20px;
  position: relative;
  z-index: 2;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta .content__buttons {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .cta .content__buttons {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .cta .content {
    padding-left: 110px;
    padding-top: 150px;
    padding-bottom: 50px;
    margin: 0;
  }
}
.cta .content h3 {
  font-weight: 400;
  font-size: 28px;
  font-family: var(--font-primary);
}
@media (min-width: 1024px) {
  .cta .content h3 {
    max-width: 70%;
  }
}
@media (min-width: 1024px) {
  .cta .content p {
    width: 52%;
  }
}
.cta img {
  aspect-ratio: 16/14;
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .cta img {
    margin-top: -278px;
    aspect-ratio: 16/9;
  }
}
.cta .line {
  position: relative;
  display: block;
  width: max-content;
}
.cta .line:not(:last-child) {
  margin-bottom: 26px;
}
.cta .line::after {
  content: "";
  position: absolute;
  bottom: -16px;
  height: 16px;
  background-color: var(--color-black);
  width: var(--after-width, 0);
  left: var(--after-left, 0);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 2s ease-in-out;
  z-index: 2;
}
.cta .line.animate::after {
  transform: scaleX(1);
}

.cta-color {
  background-color: var(--color-accent);
  padding-block: 100px;
}
.cta-color .container {
  background-color: transparent;
}
.cta-color .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.cta-color .content h2 {
  font-family: var(--font-secondary);
  color: var(--color-white);
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 1024px) {
  .cta-color .content h2 {
    font-size: 40px;
  }
}
.cta-color .content .btn {
  border-color: var(--color-white);
}

.discover {
  padding-block: 150px;
}
.discover.is-slider .wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  background: var(--color-secondary);
  z-index: 0;
}
.discover .swiper-scrollbar {
  margin-top: 20px;
  position: relative;
  background: var(--color-grey);
  height: 8px;
}
.discover .swiper-scrollbar-drag {
  background: var(--color-accent);
}
.discover .container.title {
  text-transform: uppercase;
  font-family: var(--font-secondary);
  color: var(--color-grey);
  font-weight: 700;
  font-size: clamp(27px, 7vw, 87px);
  margin-bottom: -6px;
  line-height: 1;
}
@media (min-width: 1024px) {
  .discover .container.title {
    line-height: 0.8;
  }
}
.discover .wrapper {
  background-color: var(--color-grey);
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}
.discover .wrapper .content {
  background-color: unset;
}
.discover .wrapper .content h3 {
  font-weight: 400;
  font-size: 28px;
  font-family: var(--font-primary);
}
.discover .wrapper .content p {
  padding-block: 20px;
}
@media (min-width: 1024px) {
  .discover .wrapper .content p {
    width: 45%;
  }
}
.discover .wrapper .swiper-wrapper img {
  aspect-ratio: 13/16;
  border-radius: 20px;
  width: 100%;
}
.discover .wrapper .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .discover .wrapper .cards {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.discover .wrapper .cards .card {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .discover .wrapper .cards .card {
    width: 33%;
  }
}
.discover .wrapper .cards .card:first-child::before {
  content: "";
  position: absolute;
  top: calc(100% - 60px);
  left: -100vw;
  right: -100vw;
  height: 10000px;
  background-color: var(--color-secondary);
  z-index: -1;
}
.discover .wrapper .cards .card img {
  aspect-ratio: 13/16;
  border-radius: 20px;
  width: 100%;
}
.discover .wrapper .cards .card .card__cta {
  position: absolute;
  top: 20px;
  right: 20px;
}
.discover .wrapper .cards .card h4 {
  position: absolute;
  bottom: 60px;
  color: var(--color-white);
  padding-left: 30px;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-size: 28px;
}
.discover .wrapper .line {
  position: relative;
  display: block;
  width: max-content;
}
.discover .wrapper .line:not(:last-child) {
  margin-bottom: 26px;
}
.discover .wrapper .line::after {
  content: "";
  position: absolute;
  bottom: -16px;
  height: 16px;
  background-color: var(--color-secondary);
  width: var(--after-width, 0);
  left: var(--after-left, 0);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 2s ease-in-out;
  z-index: 2;
}
.discover .wrapper .line.animate::after {
  transform: scaleX(1);
}

.dropdown {
  margin-block: 100px;
}
.dropdown .title {
  font-family: var(--font-secondary);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-accent);
}
@media (min-width: 1024px) {
  .dropdown .title {
    font-size: 40px;
  }
}
.dropdown .content {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .dropdown .content {
    flex-direction: row;
  }
}
.dropdown .image-column {
  flex: 0 0 50%;
}
.dropdown .image-column img {
  aspect-ratio: 16/12;
  width: 100%;
  border-radius: 20px;
}
.dropdown .dropdown-column {
  flex: 0 0 50%;
}
.dropdown .dropdown-column .item {
  padding: 40px;
  background-color: transparent;
  transition: background-color 0.6s ease;
  cursor: pointer;
  border-bottom: 1px solid var(--color-grey);
}
.dropdown .dropdown-column .item.active {
  border-radius: 20px;
  border: none;
}
.dropdown .dropdown-column .item.prev-active {
  border: none;
}
.dropdown .dropdown-column .item .dropdown-header .dropdown-title {
  font-size: 22px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-accent);
}
@media (min-width: 1024px) {
  .dropdown .dropdown-column .item .dropdown-header .dropdown-title {
    font-size: 30px;
  }
}
.dropdown .dropdown-column .item .dropdown-header .dropdown-title::after {
  content: "";
  background-image: url("../medias/icons/sogitec-arrow--down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  width: 30px;
  height: 10px;
}
.dropdown .dropdown-column .item .dropdown-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-in-out, margin 0.4s ease;
}
.dropdown .dropdown-column .item .dropdown-body .inner-content {
  overflow: hidden;
  min-height: 0;
}
.dropdown .dropdown-column .item .list {
  margin: 0;
  position: relative;
}
.dropdown .dropdown-column .item .list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}
.dropdown .dropdown-column .item .list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  top: 50%;
  left: -10px;
  background-color: var(--color-black);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.dropdown .dropdown-column .item.active {
  background-color: var(--color-white);
  transition: background-color 0.3s ease;
}
.dropdown .dropdown-column .item.active .dropdown-title {
  font-weight: 700;
}
.dropdown .dropdown-column .item.active .dropdown-title::after {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.dropdown .dropdown-column .item.active .dropdown-body {
  grid-template-rows: 1fr;
  margin-top: 20px;
}

.expertises {
  padding-top: 100px;
}
.expertises .title {
  font-family: var(--font-secondary);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-black);
  line-height: 1;
}
.expertises .content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .expertises .content {
    gap: 20px;
  }
}
.expertises .content h3 {
  font-weight: 400;
  font-size: 28px;
  font-family: var(--font-primary);
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .expertises .content h3 {
    margin-top: 20px;
  }
}
.expertises .content p {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .expertises .content p {
    width: 43%;
    margin-top: 0;
  }
}
.expertises .content .stack {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .expertises .content .stack {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 0;
  }
}
.expertises .content .stack .images {
  position: relative;
  width: 100%;
  aspect-ratio: 16/12;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .expertises .content .stack .images {
    margin-bottom: 0;
  }
}
.expertises .content .stack .images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  border-radius: 20px;
}
.expertises .content .stack .images img.active {
  opacity: 1;
  z-index: 2;
}
.expertises .content .stack .texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.expertises .content .stack .texts button {
  padding: 20px;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid var(--color-grey);
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .expertises .content .stack .texts button {
    padding: 37px;
  }
}
.expertises .content .stack .texts button.prev-active {
  border: none;
}
.expertises .content .stack .texts button.active {
  background-color: var(--color-white);
  border-radius: 20px;
  border: none;
}
.expertises .content .stack .texts button.active h3 {
  font-weight: 700;
}
.expertises .content .stack .texts button h3 {
  font-weight: 400;
  font-size: 22px;
  font-family: var(--font-primary);
  margin-top: 0;
  color: var(--color-accent);
}
@media (min-width: 1024px) {
  .expertises .content .stack .texts button h3 {
    font-size: 28px;
  }
}
.expertises .content .stack .texts button img {
  width: 100%;
  object-fit: contain;
  height: auto;
  display: block;
  max-width: 100px;
}
.expertises .content .stack .texts .btn {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .expertises .content .stack .texts .btn {
    margin-top: 37px;
    margin-left: 37px;
  }
}
.expertises .content .btn-dynamic {
  display: none;
}
.expertises .content .btn-dynamic.active {
  display: inline-block;
}
.expertises .line {
  position: relative;
  display: block;
  width: max-content;
}
.expertises .line:not(:last-child) {
  margin-bottom: 26px;
}
.expertises .line::after {
  content: "";
  position: absolute;
  bottom: -16px;
  height: 16px;
  background-color: var(--color-black);
  width: var(--after-width, 0);
  left: var(--after-left, 0);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 2s ease-in-out;
  z-index: 2;
}
.expertises .line.animate::after {
  transform: scaleX(1);
}

.block-form {
  margin-block: 40px;
}
@media (min-width: 1024px) {
  .block-form .wpcf7 {
    width: 40%;
    margin-inline: auto;
  }
}
.block-form form {
  width: 100%;
}
.block-form form label {
  margin-top: 40px;
  display: block;
  padding-bottom: 5px;
}
.block-form form input,
.block-form form textarea,
.block-form form select,
.block-form form .custom-select {
  width: 100%;
  border: 1px solid var(--color-black);
  border-radius: 10px;
  padding-block: 20px;
  padding-inline: 30px;
  font-weight: 700;
  background: transparent;
}
.block-form form input[type=checkbox],
.block-form form textarea[type=checkbox],
.block-form form select[type=checkbox],
.block-form form .custom-select[type=checkbox] {
  width: auto;
}
.block-form form input:focus-within,
.block-form form textarea:focus-within,
.block-form form select:focus-within,
.block-form form .custom-select:focus-within {
  outline: var(--color-accent) auto 1px;
}
.block-form form .wpcf7-list-item {
  margin-left: 0;
}
.block-form form textarea {
  height: 240px;
}
.block-form form .submit-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.block-form form .wpcf7-spinner {
  display: none !important;
}
.block-form form .wpcf7-submit {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  padding-block: 14px;
  padding-inline: 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.2s;
  width: fit-content;
  display: block;
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
  cursor: pointer;
}
.block-form form .wpcf7-submit:hover {
  background-color: var(--color-white);
  color: var(--color-accent);
}
.block-form .custom-select__list {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.block-form .custom-select.is-open .custom-select__list {
  opacity: 1;
  visibility: visible;
}
.block-form .custom-select {
  padding-inline: 0 !important;
  cursor: pointer;
  width: 100%;
  position: relative;
  display: block;
}
.block-form .custom-select.is-open {
  padding-bottom: 0 !important;
}
.block-form .custom-select.is-open .custom-select__button {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-black);
}
.block-form .custom-select.is-open .custom-select__button::after {
  transform: rotate(180deg);
}
.block-form .custom-select__list {
  margin-block: 0;
}
.block-form .custom-select__list li {
  margin-left: 0;
  list-style: none;
}
.block-form .custom-select__option {
  padding-inline: 30px;
  padding-block: 20px;
}
.block-form .custom-select__option:not(:last-child) {
  border-bottom: 1px solid var(--color-black);
}
.block-form .custom-select__option:last-child {
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.block-form .custom-select__option:hover {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}
.block-form .custom-select__button {
  padding-left: 30px;
  position: relative;
  text-align: left;
  width: 100%;
}
.block-form .custom-select__button::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 1.2rem;
  width: 20px;
  height: 10px;
  background: url("../medias/icons/sogitec-arrow--down.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.headings {
  margin-block: 30px;
}
@media (min-width: 1024px) {
  .headings {
    margin-block: 100px;
  }
}
.headings__wrapper {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .headings__wrapper {
    flex-direction: row;
    align-items: baseline;
  }
}
.headings__icon {
  width: 45px;
  height: 45px;
}
.headings__text h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-accent);
}
@media (min-width: 1024px) {
  .headings__text h2 {
    font-size: 60px;
  }
}
.headings__text p {
  font-size: 24px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .headings__text p {
    font-size: 30px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  width: 100%;
  height: 65%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}
@media (min-width: 768px) {
  .hero__overlay {
    width: 50%;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .hero__overlay .hero__overlay__container__line {
    display: none;
  }
}
.hero__overlay__container__line {
  display: flex;
  align-items: flex-end;
  position: absolute;
  height: 100%;
  padding-bottom: 10px;
}
.hero__overlay__container__line.container {
  background-color: transparent;
}
.hero__overlay__container__line .line::after {
  bottom: -26px !important;
}
.hero__overlay__container__line .line:last-child::before {
  bottom: -75px !important;
}
.hero__title {
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  line-height: 1;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 58px;
  }
}
.hero__title span {
  display: block;
}
.hero__title .line:last-child::before {
  content: "";
  display: inline-block;
  vertical-align: middle; /* Pour bien l'aligner avec le texte */
  width: 52px;
  height: 40px;
  bottom: -70px;
  background-color: currentColor;
  -webkit-mask-image: url("../medias/icons/sogitec-arrow--right.svg");
  mask-image: url("../medias/icons/sogitec-arrow--right.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  position: absolute;
  right: 0;
}
@media (min-width: 768px) {
  .hero__title .line:last-child::before {
    width: 76px;
    height: 58px;
    bottom: -90px;
  }
}
.hero .line {
  position: relative;
  display: block;
  width: max-content;
}
.hero .line::after {
  content: "";
  position: absolute;
  bottom: -20px;
  height: 16px;
  background: #FFF;
  width: var(--after-width, 0);
  left: var(--after-left, 0);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 2s ease-in-out;
}
.hero .line.animate::after {
  transform: scaleX(1);
}
.hero .container__line {
  background-color: transparent;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 16vh;
  display: none;
}
@media (min-width: 768px) {
  .hero .container__line {
    display: flex;
  }
}

.key-metrics {
  padding-block: 60px;
}
.key-metrics .swiper {
  width: 100%;
  height: 600px;
}
@media (min-width: 1024px) {
  .key-metrics .swiper {
    height: auto;
  }
}
.key-metrics .swiper-slide {
  height: calc((100% - 20px) / 2) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 30px;
}
@media (min-width: 1024px) {
  .key-metrics .swiper-slide {
    height: 100% !important;
  }
}
.key-metrics .swiper-slide:nth-child(odd) {
  border-bottom: 4px solid var(--color-white);
}
@media (min-width: 1024px) {
  .key-metrics .swiper-slide:nth-child(odd) {
    border-bottom: none;
  }
}
@media (min-width: 1024px) {
  .key-metrics .swiper-slide:not(:last-child) {
    border-right: 4px solid var(--color-white);
  }
}
.key-metrics .swiper-slide p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}
.key-metrics .swiper-slide p.data {
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-accent);
}
.key-metrics .swiper-slide p.data span {
  font-size: 52px;
}
.key-metrics .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 6px;
  margin-inline: 16px;
  background-color: var(--color-grey);
  opacity: 1;
  transition: 0.2s;
}
.key-metrics .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent);
  width: 50px;
}

.text-media .title {
  font-family: var(--font-secondary);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1;
}
@media (min-width: 1024px) {
  .text-media .title {
    font-size: 40px;
    width: 50%;
    margin-left: 50%;
    padding-inline: 0;
  }
}
.text-media .content.container {
  background-color: var(--color-black);
  color: white;
  font-family: var(--font-primary);
  padding-block: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 1024px) {
  .text-media .content.container {
    flex-direction: row;
    gap: 0;
  }
}
.text-media .content.container .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 1024px) {
  .text-media .content.container .text {
    width: 35%;
  }
  .text-media .content.container .text p {
    width: 80%;
  }
}
.text-media .content.container img {
  transform: translateX(-60px);
  border-radius: 20px;
  z-index: 3;
  aspect-ratio: 16/14;
}
@media (min-width: 1024px) {
  .text-media .content.container img {
    width: 50%;
    transform: translateX(-100px);
    margin-top: -170px;
  }
}
.text-media .content.container h3 {
  font-weight: 400;
  font-size: 28px;
}
.text-media .line {
  position: relative;
  display: block;
  width: max-content;
}
.text-media .line:not(:last-child) {
  margin-bottom: 26px;
}
.text-media .line::after {
  content: "";
  position: absolute;
  bottom: -16px;
  height: 16px;
  background-color: var(--color-primary);
  width: var(--after-width, 0);
  left: var(--after-left, 0);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 2s ease-in-out;
  z-index: 2;
}
.text-media .line.animate::after {
  transform: scaleX(1);
}
.text-media .container__line {
  background-color: transparent;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 16vh;
  display: none;
}
@media (min-width: 768px) {
  .text-media .container__line {
    display: flex;
  }
}

.testimony {
  margin-block: 100px;
}
.testimony .swiper-testimony {
  position: relative;
}
.testimony-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .testimony-header {
    flex-direction: row;
    gap: 50px;
    margin-bottom: 60px;
  }
}
.testimony .title {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-size: 28px;
}
@media (min-width: 1024px) {
  .testimony .title {
    font-size: 40px;
    width: 46.5%;
  }
}
.testimony .button-prev img {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
}
.testimony .button-prev, .testimony .button-next {
  width: 50px;
  position: absolute;
  z-index: 3;
  cursor: pointer;
  display: none;
}
@media (min-width: 1024px) {
  .testimony .button-prev, .testimony .button-next {
    display: block;
  }
}
.testimony .button-prev {
  top: 50%;
  left: 0;
}
.testimony .button-next {
  top: 50%;
  right: 0;
}

.testimony {
  padding: 80px 0;
}
.testimony .swiper-testimony {
  position: relative;
  padding-bottom: 50px;
}
.testimony .swiper-wrapper {
  align-items: center;
}
@media (min-width: 1024px) {
  .testimony .swiper-pagination {
    text-align: left;
    left: 19%;
  }
}
.testimony .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  border-radius: 6px;
  margin-inline: 10px;
  background-color: var(--color-grey);
  opacity: 1;
  transition: 0.2s;
}
.testimony .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent);
  width: 50px;
}
@media (min-width: 1024px) {
  .testimony .swiper-slide {
    padding-inline: 80px;
  }
}
.testimony .testimony-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .testimony .testimony-card {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
.testimony .testimony-image {
  flex: 0 0 100%;
  display: none;
}
@media (min-width: 1024px) {
  .testimony .testimony-image {
    display: block;
    flex: 0 0 45%;
  }
}
.testimony .testimony-image img {
  aspect-ratio: 14/16;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.testimony .testimony-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimony .testimony-content .quote-icon {
  width: 100px;
  height: 62px;
  background: url("../medias/icons/sogitec-quotes.svg") no-repeat center;
  background-size: contain;
  margin-bottom: 30px;
}
.testimony .testimony-content .quote-text {
  margin-bottom: 40px;
}
.testimony .testimony-content .author .name {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}
.testimony .testimony-content .author .job, .testimony .testimony-content .author .details {
  display: block;
  padding-left: 20px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 18px;
}

.timeline {
  margin-block: 30px;
}
.timeline .wrapper {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .timeline .wrapper {
    flex-direction: row;
  }
}
.timeline .wrapper .image-column {
  flex: 0 0 50%;
  flex-shrink: 0;
}
.timeline .wrapper .image-column img {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.timeline .wrapper .text-column {
  flex: 0 0 50%;
  position: relative;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .timeline .wrapper .text-column {
    padding: 30px;
  }
}
.timeline .wrapper .text-column .title {
  font-size: 28px;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--color-accent);
}
@media (min-width: 1024px) {
  .timeline .wrapper .text-column .title {
    font-size: 40px;
    margin-bottom: 0;
  }
}
.timeline .wrapper .text-column .times {
  position: relative;
  left: 0;
  right: 0;
  overflow-y: auto;
  height: 400px;
  scrollbar-width: none;
}
.timeline .wrapper .text-column .times::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .timeline .wrapper .text-column .times {
    padding-left: 30px;
    position: absolute;
    top: 100px;
    height: auto;
    bottom: 100px;
  }
}
.timeline .wrapper .text-column .times .time {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 30px;
}
.timeline .wrapper .text-column .times .time:last-of-type {
  margin-bottom: -50px;
}
@media (min-width: 1024px) {
  .timeline .wrapper .text-column .times .time {
    padding-bottom: 120px;
  }
  .timeline .wrapper .text-column .times .time:last-of-type {
    padding-bottom: 0;
    margin-bottom: 160px;
  }
}
.timeline .wrapper .text-column .times .time .index {
  background-color: transparent;
  color: var(--color-accent);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  position: relative;
  z-index: 2;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 700;
}
.timeline .wrapper .text-column .times .time.active .index {
  color: var(--color-white);
  background-color: var(--color-accent);
}
.timeline .wrapper .text-column .times .time::before {
  height: calc(100% - 40px);
  width: 1px;
  content: "";
  position: absolute;
  top: 40px;
  left: 20px;
  background-color: var(--color-accent);
  z-index: 1;
}
@media (min-width: 1024px) {
  .timeline .text {
    width: 70%;
  }
}
.timeline .text h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--color-accent);
}
.timeline .overlay {
  position: sticky;
  bottom: 0;
  height: 120px;
  width: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(242, 242, 242) 100%);
  display: block;
}

.values {
  position: relative;
  margin-block: 100px;
}
.values__background {
  width: 100%;
  aspect-ratio: 16/14;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .values__background {
    aspect-ratio: 16/4;
  }
}
.values__title {
  color: var(--color-white);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 30px;
}
@media (min-width: 1024px) {
  .values__title {
    font-size: 40px;
  }
}
.values .overlay {
  position: absolute;
  aspect-ratio: 16/14;
  width: 100%;
  top: 0;
  background: linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, rgb(10, 10, 10) 100%);
}
@media (min-width: 1024px) {
  .values .overlay {
    aspect-ratio: 16/4;
  }
}
.values .container {
  background-color: transparent;
  margin-top: -100px;
}
@media (min-width: 1024px) {
  .values .container {
    margin-top: -200px;
  }
}
.values .cards {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .values .cards {
    flex-direction: row;
    justify-content: center;
  }
}
.values .cards .card {
  border-radius: 20px;
  background-color: var(--color-white);
  color: var(--color-black);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}
@media (min-width: 1024px) {
  .values .cards .card {
    aspect-ratio: 1;
    width: 25%;
  }
}
.values .cards .card img {
  width: 45px;
  height: 45px;
}
.values .cards .card h3 {
  font-size: 28px;
  width: 85%;
  margin-bottom: 10px;
  color: var(--color-accent);
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-black);
  overflow-x: hidden;
  width: 100%;
  margin: 0;
}

main {
  width: 100%;
}

section {
  width: 100%;
  background-color: var(--color-secondary);
}

.container {
  width: 100%;
  margin-inline: auto;
  background-color: var(--color-secondary);
  position: relative;
  padding-inline: 15px;
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 30px;
  }
}
@media (min-width: 1366px) {
  .container {
    max-width: 1366px;
    padding-inline: 0;
  }
}
.container-simple {
  margin-block: 80px;
}
.container-simple h2, .container-simple h3 {
  margin-block: 1.2rem;
}
.container-nav {
  background-color: transparent;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
}

nav {
  background-color: transparent;
  height: 80px;
  padding-inline: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.is-scrolled {
  background-color: transparent;
  position: relative;
}
nav.is-scrolled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  z-index: -1;
}
nav.is-scrolled .nav__logo--white {
  display: none;
}
nav.is-scrolled .nav__logo--black {
  display: block;
}
nav.is-scrolled .nav__burger span {
  background-color: var(--color-accent);
}
nav.is-scrolled .nav__menu li a {
  color: var(--color-accent);
}
nav.is-scrolled .nav__menu li a::before {
  background-color: var(--color-accent);
}
nav .nav__logo--black {
  display: none;
}
nav .nav__logo--white {
  display: block;
}
nav.is-open .nav__menu {
  transform: translateX(0);
}
nav.is-open .nav__menu li a {
  color: var(--color-accent);
}
nav.is-open .nav__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
nav.is-open .nav__burger span:nth-child(2) {
  opacity: 0;
}
nav.is-open .nav__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 1024px) {
  nav {
    height: 100px;
  }
}
nav img {
  width: 180px;
  height: 30px;
}
@media (min-width: 1024px) {
  nav img {
    width: 271px;
    height: 45px;
  }
}
nav .nav__burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
}
nav .nav__burger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 1024px) {
  nav .nav__burger {
    display: none;
  }
}
nav .nav__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: white;
  margin-top: 100px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px 45px;
  gap: 24px;
}
@media (min-width: 1024px) {
  nav .nav__menu {
    position: relative;
    flex-direction: row;
    height: auto;
    width: auto;
    transform: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
  }
}
nav .nav__menu li {
  list-style: none;
}
nav .nav__menu li.current-menu-item a {
  font-weight: 700;
}
nav .nav__menu li.current-menu-item a::before {
  transform: scaleX(1);
}
nav .nav__menu li a {
  text-decoration: none;
  color: var(--color-white);
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  position: relative;
}
nav .nav__menu li a::after {
  font-weight: 700;
  content: attr(data-after);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
}
nav .nav__menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
nav .nav__menu li a:hover {
  font-weight: 700;
}
nav .nav__menu li a:hover::before {
  transform: scaleX(1);
}

footer {
  background-color: white;
  color: var(--color-accent);
}
footer li {
  list-style: none;
  margin-left: 0;
}
footer .container {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 96px;
  gap: 30px;
}
@media (min-width: 1024px) {
  footer .container {
    flex-direction: row;
    padding-bottom: 50px;
  }
}
footer .footer__logo {
  width: 67px;
  max-width: 150px;
  height: auto;
}
@media (min-width: 1024px) {
  footer .footer__logo {
    width: unset;
  }
}
footer .footer__content {
  dispaly: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
footer .footer__content .footer__menu, footer .footer__content .footer__socials {
  display: flex;
  align-items: center;
}
footer .footer__content .footer__menu {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  footer .footer__content .footer__menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 100px;
  }
}
footer .footer__content .footer__menu a {
  text-decoration: none;
  color: var(--color-accent);
}
footer .footer__content .footer__legals a {
  text-decoration: none;
  color: var(--color-accent);
}
@media (min-width: 1024px) {
  footer .footer__content .footer__legals {
    display: flex;
    gap: 20px;
  }
}
footer .footer__content .footer__socials {
  justify-content: center;
  gap: 19px;
  padding-block: 30px;
}
@media (min-width: 1024px) {
  footer .footer__content .footer__socials {
    padding-block: 0;
  }
}
footer .footer__content .footer__socials p {
  display: none;
}
@media (min-width: 1024px) {
  footer .footer__content .footer__socials p {
    display: block;
    font-family: var(--font-primary);
    font-size: 16px;
    margin-right: 15px;
  }
}
footer .footer__content .footer__bottom {
  font-size: 16px;
  font-family: var(--font-primary);
  border-top: 1px solid var(--color-accent);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-block: 15px;
  align-items: center;
}
@media (min-width: 1024px) {
  footer .footer__content .footer__bottom {
    justify-content: flex-end;
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  footer .footer__content .footer__top {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 100px;
    padding-bottom: 50px;
  }
}

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