@charset "UTF-8";
/* Reset CSS */
/* _colors.scss */
/*$primary-color: #7147E9;
$secondary-color: #B7A3F3;
$background-color: #F7F7FF;
$text-color: #010150;*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  font-family: "QuickSand", sans-serif;
  font-weight: 600;
}

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;
  }
}
/* nunito-sans-300 */
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/nunito-sans-v18-latin-300.woff2") format("woff2");
}
/* nunito-sans-regular */
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/nunito-sans-v18-latin-regular.woff2") format("woff2");
}
/* nunito-sans-italic */
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/nunito-sans-v18-latin-italic.woff2") format("woff2");
}
/* nunito-sans-500 */
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/nunito-sans-v18-latin-500.woff2") format("woff2");
}
/* nunito-sans-600 */
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/nunito-sans-v18-latin-600.woff2") format("woff2");
}
/* nunito-sans-700 */
@font-face {
  font-display: swap;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/nunito-sans-v18-latin-700.woff2") format("woff2");
}
/* quicksand-500 */
@font-face {
  font-display: swap;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/quicksand-v36-latin-500.woff2") format("woff2");
}
/* quicksand-600 */
@font-face {
  font-display: swap;
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/quicksand-v36-latin-600.woff2") format("woff2");
}
/* Typography */
h1 {
  font-family: "QuickSand", sans-serif;
  font-size: 36px;
  font-weight: 600;
}

h2 {
  font-family: "QuickSand", sans-serif;
  font-size: 36px;
  font-weight: 600;
}

h3 {
  font-family: "QuickSand", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

h4 {
  font-family: "QuickSand", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

h5 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  /*margin-bottom: 10px;*/
}

/*p br {
    margin-bottom: 5px;
}*/
.subtitle {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #987AEF;
  margin-bottom: 15px;
}

.quote {
  font-family: "QuickSand", sans-serif;
  font-size: 24px;
  font-weight: 500;
}

.italic {
  font-style: italic;
  font-weight: 400;
}

.small {
  font-size: 14px;
}

strong, b {
  font-weight: 600;
}

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

.btn-primary {
  background-color: #7147E9;
  color: #FFFFFF;
  border: 1px solid #7147E9;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(0) rotate(45deg);
  width: 14px;
  height: 14px;
  background-image: url("../svg/arrow-button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(12px) rotate(45deg);
}

.btn-secondary {
  background-color: transparent;
  color: #B7A3F3;
  border: 1.5px solid #B7A3F3;
  transition: all 0.1s ease-in-out;
}

.btn-tertiary {
  background-color: transparent;
  color: #7147E9;
  border: 1.5px solid #7147E9;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}
.btn-tertiary::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(0) rotate(45deg);
  width: 14px;
  height: 14px;
  background-image: url("../svg/arrow-button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.btn-tertiary:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(12px) rotate(45deg);
}

.btn-fourth {
  background-color: #6AD1F6;
  color: #010150;
  border: 1.5px solid #6AD1F6;
  transition: all 0.3s ease;
}
.btn-fourth::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(0) rotate(45deg);
  width: 14px;
  height: 14px;
  background-image: url("../svg/arrow-button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.btn-fourth:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(12px) rotate(45deg);
}

.btn-plus {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #9475ED;
  color: #FFFFFF;
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover */
.btn-primary:hover {
  padding-right: 2.8rem;
}

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

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

.btn-fourth:hover {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid #6AD1F6;
  padding-right: 2.8rem;
}

/*.btn-plus:hover {
    background-color: $purple-100;
    transform: scale(1.1);
}*/
.team__card--job:hover .btn-plus {
  background-color: #B7A3F3;
  transform: scale(1.1);
}

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

button {
  background-color: transparent;
  border: none;
  color: inherit;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  /*margin: auto;*/
}

/* 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 {
  padding-top: 140px;
  padding-bottom: 96px;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  row-gap: 140px;
}

.service__card-wrapper {
  position: relative;
  overflow: visible;
}

.service__card {
  position: relative;
  background-color: #151666;
  height: 100%;
  border-radius: 35px;
  color: #FFFFFF;
  padding: 120px 30px 55px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service__card:hover {
  transform: scale(1.05);
}

.service__card-inner {
  position: absolute;
  overflow: hidden;
  border-radius: inherit;
  inset: 0;
  z-index: -1;
}

.service__image {
  position: absolute;
  top: -32%;
  left: auto;
  max-width: 320px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
}
.service__card:hover .service__image {
  transform: scale(1.05);
}

/*.service__card-background {
    position: absolute;
    border-radius: inherit;
    inset: 0;
    z-index: -2;
}

.service__card-background-overlay {
    content: "";
    position: absolute;
    inset: 5%;
    background: rgba(148, 159, 244, 0.37);
    border-radius: inherit;
    border: 1px solid rgba(245, 245, 245, 0.3);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: -1;
}*/
.service__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 10;
}

/* Ellipse */
.ellipse {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  z-index: -1;
  transition: transform 0.8s ease-in-out, opacity 0.5s ease-in-out;
}

/* Première ellipse (bleu foncé) */
.ellipse-1 {
  background: #4442DB;
  bottom: 7px;
  left: -150px;
  opacity: 0.5;
  display: none;
}

/* Deuxième ellipse (gris clair) */
.ellipse-2 {
  background: #D4D7E3;
  bottom: -10px;
  left: 50px;
  opacity: 0.7;
  display: none;
}

/* Troisième ellipse (bleu foncé) */
.ellipse-3 {
  background: #4442DB;
  bottom: -50px;
  left: 220px;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  display: none;
}

/* Hover : les faire légèrement bouger */
.service__card:hover .ellipse-1 {
  transform: translate(-20px, -20px) scale(1.2);
  display: block;
}

.service__card:hover .ellipse-2 {
  transform: translate(20px, 20px) scale(1.2);
  display: block;
}

.service__card:hover .ellipse-3 {
  transform: translate(-30px, 30px) scale(1.3);
  display: block;
}

/* Responsive */
@media (min-width: 1024px) {
  .services {
    padding-bottom: 140px;
  }
  .service__image {
    top: -27%;
    left: 8%;
  }
}
/* 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: #FFFFFF;
  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;
}

/* Overlay Menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #171968;
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 40;
  transition: all 0.5s ease;
  /*display: flex;
  justify-content: center;
  align-items: center;*/
}

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

.menu-overlay__content {
  display: flex;
  flex-direction: column;
  align-items: 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: 100vh;
  background-color: #171968;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  padding: 96px 0 120px;
}

.banner__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 120%;
  height: 120%;
  background-image: url("/wp-content/themes/konekto-v1/assets/svg/bg-banner.svg");
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
  animation: scrollBackground 10s linear infinite;
}

@keyframes scrollBackground {
  0% {
    transform: translate(-50%, -50%) scale(1.2) translateX(-17.8%) translateY(-17.8%);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2) translateX(17.8%) translateY(17.8%);
  }
}
.banner__content {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.875rem;
}
.banner__content h1, .banner__content p, .banner__content a {
  position: relative;
  z-index: 10;
}

.banner__title--small {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.banner__scroll {
  position: absolute;
  bottom: 5rem;
  z-index: 10;
  animation: scroll 0.55s ease-in alternate infinite;
  color: #B7A3F3;
}
.banner__scroll img {
  width: 28px;
  height: 28px;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
/* Responsive */
@media (min-width: 1024px) {
  .banner__title--small {
    font-size: 24px;
  }
}
/* Banner Services */
.service__banner {
  position: relative;
  min-height: 100vh;
  background-color: #171968;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
}

.service__bg--img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 120%;
  height: 120%;
  background-image: url("/wp-content/themes/konekto-v1/assets/svg/bg-banner.svg");
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 15%, black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 15%, black 100%);
}

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

.service__banner--img {
  display: block;
  position: relative;
  max-width: 670px;
  z-index: 10;
  order: 0;
  margin: auto;
  /*--_timing: var(--timing, 10s);
  animation: pulse-img var(--_timing) infinite linear;*/
}

.service__banner--text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 10;
  order: 1;
}

/*@keyframes pulse-img {

    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(3deg);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
    }
    75% {
        transform: scale(1.05) rotate(-3deg);
    }
}*/
/* Responsive */
@media (min-width: 1024px) {
  .service__banner--content {
    flex-direction: row;
    gap: 100px;
    padding: 0 0 0 119px;
  }
  .service__banner--img {
    order: 1;
  }
  .service__banner--text {
    max-width: 500px;
    order: 0;
  }
}
/* Banner About */
.about__banner {
  position: relative;
  background-color: #171968;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.about__banner--wrapper {
  overflow: visible;
}

.about__banner--inner {
  position: absolute;
  overflow: hidden;
  inset: 0;
  z-index: 1;
}

.about__banner--content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 60px;
}

.about__banner--text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 10;
  order: 1;
}

.about__banner--img {
  min-width: 300px;
}

/* Responsive */
@media (min-width: 1024px) {
  .about__banner {
    height: 80vh;
    padding: 0;
  }
  .about__banner--content {
    flex-direction: row;
    gap: 90px;
    padding: 200px 119px 0;
  }
  .about__banner--text {
    max-width: 562px;
    order: 0;
    padding-bottom: 96px;
  }
}
/* Banner Project single */
.projet__banner {
  position: relative;
  height: 80vh;
  background-color: #010150;
  color: white;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}

.projet__banner--img {
  height: 100%;
}

.projet__banner--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.projet__banner--img.img-pos-top img {
  object-position: top;
}

.projet__banner--img.img-pos-center img {
  object-position: center;
}

.projet__banner--img.img-pos-bottom img {
  object-position: bottom;
}

.projet__banner--title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: #FFFFFF;
  padding: 96px 0;
}

.projet__banner--scroll {
  left: 50%;
  transform: translateX(-50%);
  bottom: 10em;
  color: #FFFFFF;
}

/* Textes */
.intro {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

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

.intro__graphic {
  position: absolute;
  width: 465px;
  bottom: -205px;
  right: -120px;
  z-index: -1;
}

/* Responsive */
@media (min-width: 1024px) {
  .intro {
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    padding: 0 119px 140px;
  }
}
/* 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;
  }
}
/* Accordion */
.section__accordion {
  padding-top: 96px;
}

.accordion__title {
  text-align: center;
  max-width: 668px;
  margin: auto;
  margin-bottom: 60px;
}

.accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.accordion__tabs {
  display: flex;
  flex-direction: column;
}

.tab__btn {
  background: none;
  padding: 20px 30px;
  font-size: 24px;
  color: rgba(1, 1, 80, 0.4);
  text-align: left;
  border-bottom: 1px solid rgba(1, 1, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tab__btn.active {
  background: linear-gradient(90deg, #5C5ABD, #302F9C, #7B7FD3);
  border-radius: 20px;
  color: white;
}
.tab__btn.active .accordion__arrow {
  border: 1.5px solid #FFFFFF;
}
.tab__btn.active .arrow {
  color: #FFFFFF;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

.accordion__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid #7147E9;
  border-radius: 50px;
  background-color: transparent;
}

.arrow {
  transform: rotate(-45deg);
  color: #7147E9;
}

.tab__btn:hover .arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}

.accordion__item {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.accordion__item.active {
  display: flex;
  margin: 20px 0;
}

.accordion__img {
  max-height: 232px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

/* Responsive */
@media (min-width: 1024px) {
  .section__accordion {
    padding: 140px 119px 0;
  }
  .accordion {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .tab__btn {
    padding: 40px 60px;
  }
  .tab__btn.active .arrow {
    transform: rotate(0deg);
  }
  .tab__btn:hover .arrow {
    transform: rotate(0deg);
  }
  .accordion__item.active {
    margin: 0;
  }
}
@media (max-width: 1023px) {
  .accordion__content {
    display: none;
  }
}
/* Nav Solutions */
.section__solution--nav {
  padding-bottom: 96px;
}

.solution__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.solution__nav--card {
  color: #FFFFFF;
  padding: 40px 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
  flex-wrap: wrap;
}
.solution__nav--card h2 {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 24px;
  max-width: 336px;
  hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}

.solution__nav--card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/konekto-v1/assets/svg/bg-btn.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
  transform: scale(0.97);
}

.solution__nav--card:hover::before {
  transform: scale(1.2);
}

.solution__nav--card:hover .arrow--white {
  transform: rotate(0deg) scale(1.1);
}
.solution__nav--card:hover .nav__arrow {
  transform: scale(1.1);
}

.solution__nav--card.prev::before {
  transform: scale(0.97) scaleX(-1);
}

.solution__nav--card.prev:hover::before {
  transform: scale(1.2) scaleX(-1);
}

/* Arrow */
.nav__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid #FFFFFF;
  border-radius: 50px;
  background-color: transparent;
  transition: transform 0.3s ease-in-out;
  flex: 0 0 auto;
}

.arrow--white {
  transform: rotate(-45deg);
  color: #FFFFFF;
  transition: transform 0.3s ease-in-out;
}

/* Cards Background */
.solution__nav--card.prev {
  background-color: #7653EC;
}

.solution__nav--card.next {
  background-color: #151666;
}

/* Responsive */
@media (min-width: 576px) {
  .solution__nav--card {
    padding: 60px 50px;
    flex-wrap: nowrap;
  }
  .solution__nav--card h2 {
    font-size: 36px;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
  .nav__arrow {
    width: 68px;
    height: 68px;
  }
  .nav__arrow svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .section__solution--nav {
    padding: 0 119px 120px;
  }
}
@media (min-width: 1181px) {
  .solution__nav {
    flex-direction: row;
  }
}
/* Header */
header {
  /*background-color: $blue-200;*/
  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 {
    max-width: 33%;
}*/
.logo {
  min-width: 170px;
}
.logo img {
  vertical-align: middle;
}

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

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

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

.header__content__buttons {
  display: none;
}

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

header.header--bg {
  background-color: #171968;
}

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

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

/* ========== Responsive ========== */
@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    /*padding: 1rem;*/
    text-align: center;
  }
  .header__content__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .header__content__burger {
    display: none;
  }
  /* Dropdown */
  .nav-menu li {
    position: relative;
  }
  .nav-menu li a {
    position: relative;
    padding: 1rem;
    display: inline-block;
  }
  .nav-menu li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 8px;
    margin-left: 12px;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.389' height='7.778' viewBox='0 0 14.389 7.778'%3E%3Cpath d='M.167.17A.582.582%2C0%2C0%2C1%2C.99.17L7.048%2C6.228l.148.148%2C6.2-6.2A.581.581%2C0%2C1%2C1%2C14.219%2C1L7.643%2C7.574a.617.617%2C0%2C0%2C1-.1.079.443.443%2C0%2C0%2C1-.127.081.58.58%2C0%2C0%2C1-.63-.127L.171.99a.582.582%2C0%2C0%2C1%2C0-.82'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: currentColor;
  }
  .nav-menu li ul {
    display: none;
    position: absolute;
    background-color: #7147E9;
    z-index: 10;
    min-width: 180px;
    border-radius: 10px;
    padding: 24px 32px;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .nav-menu li:hover > ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
    padding-right: 2.8rem;
  }
  .nav-menu li ul li {
    text-align: left;
  }
  .sub-menu li a {
    padding: 0;
    padding-right: 24px;
  }
  .sub-menu li a:hover {
    color: #FFFFFF;
  }
  .sub-menu li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0) rotate(45deg);
    width: 14px;
    height: 14px;
    background-image: url("../svg/arrow-button.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .sub-menu li a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(12px) rotate(45deg);
  }
}
/* ========== Header Contact ========== */
.header--contact .logo img {
  content: url("/wp-content/themes/konekto-v1/assets/img/logo-blue.svg");
}

.header--contact .nav-menu a {
  color: #010150;
}

.header--contact .nav-menu a:hover {
  color: #7147E9;
}

.header--contact .burger-line {
  background-color: #010150;
}

.header--contact .sub-menu li a {
  color: #FFFFFF;
}
.header--contact .sub-menu li a:hover {
  color: #FFFFFF;
}

/* Scroll Contact */
.header--contact.header--bg .logo img {
  content: url("/wp-content/themes/konekto-v1/assets/img/logo-white.svg");
}

.header--contact.header--bg .nav-menu a {
  color: white;
}

.header--contact.header--bg .nav-menu a:hover {
  color: #B7A3F3;
}

.header--contact.header--bg .burger-line {
  background-color: white;
}

/* Footer */
.footer {
  background-color: #00003E;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.footer a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer--bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(1.4);
  background-image: url("/wp-content/themes/konekto-v1/assets/svg/bg-banner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 10%, black 50%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 10%, black 50%);
}

.footer__container {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.footer__logo {
  max-width: 165px;
  margin-bottom: 20px;
}

.footer__infos p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer--phone a {
  padding: 10px 0;
}
.footer--phone a:hover {
  color: #B7A3F3;
}

.footer__cheques {
  max-width: 165px;
  margin-top: 20px;
}

.footer__bloc--title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  text-decoration: underline;
  text-decoration-color: #B7A3F3;
  text-underline-offset: 12px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
}
.footer__menu a {
  padding: 10px 0;
}
.footer__menu a:hover {
  color: #B7A3F3;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer__social--link:hover {
  color: #B7A3F3;
}

/* Secondary footer */
.footer__bottom {
  padding-bottom: 20px;
  text-align: center;
}

.footer__bottom--text {
  font-family: "QuickSand", sans-serif;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.5;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 576px) {
  .footer__container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 80px;
    row-gap: 40px;
  }
}
@media (min-width: 1024px) {
  .footer__container {
    padding-bottom: 20px;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
  .footer__cheques {
    margin-top: 25px;
  }
  .footer__bloc--social {
    padding-right: 2rem;
  }
}
/* Benefits */
.benefits {
  background-color: #010150;
  color: #FFFFFF;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.benefits__title {
  margin: auto;
  margin-bottom: 70px;
  max-width: 668px;
}

.benefits__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 72px;
}

.benefits__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 300px;
}

.benefits__graphic {
  position: absolute;
  width: 625px;
  bottom: -157px;
  left: -318px;
}

/* Responsive */
@media (min-width: 1024px) {
  .benefits__list {
    margin: 0 149px;
    gap: 72px;
  }
}
/* Section about */
.about {
  padding-top: 96px;
  padding-bottom: 96px;
}

.about__wrapper {
  display: flex;
  flex-direction: column;
}

.about__title {
  margin-bottom: 20px;
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0 30px;
}

.about__card h4 {
  margin-bottom: 15px;
}

.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;
}

.about__col {
  position: relative;
}

.about__rectangle {
  position: relative;
  width: 306px;
  bottom: 70px;
  margin: auto;
}

/* Rectangle transparent avec flou */
.about__rectangle--transparent {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

/* Rectangle mauve flou */
.about__rectangle--purple {
  width: 100%;
  background: rgba(113, 71, 233, 0.5);
  backdrop-filter: blur(50px) saturate(2) contrast(50%);
  border-radius: 10px;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}

/* Rectangle avec bordure flou */
.about__rectangle--bordered {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(245, 245, 245, 0.3);
  backdrop-filter: blur(50px) saturate(2) contrast(34%);
  border-radius: 10px;
  position: relative;
  z-index: 3;
}

.about__card--icon {
  padding: 30px 25px;
  color: #FFFFFF;
}

.about__icon {
  margin-bottom: 15px;
}

/* Responsive */
@media (min-width: 576px) {
  .about__wrapper {
    gap: 62px;
  }
  .about__title {
    margin-bottom: 30px;
  }
  .about__image {
    max-width: 90%;
    height: 443px;
  }
  .about__image img {
    object-position: center center;
  }
  .about__rectangle {
    position: absolute;
    bottom: 20px;
    right: 0;
  }
  .about__cards {
    display: flex;
    flex-direction: row;
    gap: 62px;
  }
}
@media (min-width: 1024px) {
  .about {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .about__image {
    width: 472px;
  }
}
@media (min-width: 1300px) {
  .about__content {
    margin-right: 108px;
  }
}
/* Reviews client */
.review {
  background-color: #010150;
  color: #FFFFFF;
  position: relative;
}

.review__container {
  padding-top: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

.review__card {
  background-color: #171968;
  border-radius: 20px;
  padding: 30px 20px;
  border: 1px solid rgba(245, 245, 245, 0.1);
}

.review__card--header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review__logo {
  background-color: #F1F0FF;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}
.review__logo img {
  object-fit: cover;
  /*width: 100%;
  height: 100%;*/
  display: block;
}

.review__card--content {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  margin-top: 8px;
}

.review__content {
  margin-top: 25px;
}

.voir-plus-wrapper {
  margin-top: 50px;
  width: 100%;
  text-align: center;
}
.voir-plus-wrapper button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto;
}

.icon-plus {
  width: 16px;
  height: 16px;
}

.review__graphic {
  position: absolute;
  height: 1050px;
  top: 60px;
  transform: scaleX(-1);
  opacity: 0.7;
}

/* Logos client */
.client__logos {
  padding: 96px 39px;
  opacity: 0.7;
}

.client__logos--content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.client__logos--item {
  width: 40%;
  transition: opacity 0.5s ease;
}
.client__logos--item img {
  object-fit: contain;
  width: 100%;
  max-height: 91px;
}

.client__logos--item:nth-child(n+5) {
  display: none;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* ========== Responsive ========== */
@media (min-width: 576px) {
  .voir-plus-wrapper {
    width: auto;
  }
}
@media (min-width: 768px) {
  .client__logos--item:nth-child(n+5) {
    display: block;
  }
  .client__logos--item {
    width: auto;
  }
  .client__logos--content {
    gap: 60px;
  }
}
@media (min-width: 1024px) {
  .review__container {
    padding: 140px 119px 0;
  }
  .review__grid {
    grid-template-columns: 1fr 1fr;
  }
  .review__card {
    padding: 30px 42px;
  }
}
/* Push Contact */
.push-contact {
  padding-top: 96px;
  padding-bottom: 96px;
}

.push-contact__container {
  background-color: #181969;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 60px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.push-contact__content {
  position: relative;
  z-index: 2;
}
.push-contact__content a {
  width: 100%;
}

.push-contact__text {
  max-width: 600px;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Ellipses floues en fond */
.ellipse--contact {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
}

/* milieu à gauche */
.ellipse--contact-1 {
  background-color: rgba(68, 66, 219, 0.8);
  top: -50%;
  left: -30%;
}

.ellipse--contact-2 {
  background-color: rgba(212, 215, 227, 0.7);
  top: -80%;
  left: -40%;
}

.ellipse--contact-3 {
  background-color: rgb(68, 66, 219);
  opacity: 0.5;
  top: -50%;
  left: -50%;
}

/* bas à droite */
.ellipse--contact-4 {
  background-color: rgba(68, 66, 219, 0.6);
  top: 50%;
  right: -50%;
}

.ellipse--contact-5 {
  background-color: rgba(212, 215, 227, 0.6);
  top: 80%;
  right: -80%;
}

/* ========== Responsive ========== */
@media (min-width: 768px) {
  .push-contact__content a {
    width: auto;
  }
  /* milieu à gauche */
  .ellipse--contact-1 {
    top: -30%;
    left: -20%;
  }
  .ellipse--contact-2 {
    top: -30%;
    left: -50%;
  }
  .ellipse--contact-3 {
    top: -30%;
    left: -55%;
  }
  /* bas à droite */
  .ellipse--contact-4 {
    top: 10%;
    right: -30%;
  }
  .ellipse--contact-5 {
    top: 20%;
    right: -50%;
  }
}
@media (min-width: 1024px) {
  .push-contact {
    padding: 140px 0 120px;
  }
  .ellipse--contact {
    width: 800px;
    height: 800px;
  }
  /* milieu à gauche */
  .ellipse--contact-1 {
    top: -50%;
    left: -240px;
  }
  .ellipse--contact-2 {
    top: -50%;
    left: -440px;
  }
  .ellipse--contact-3 {
    top: -50%;
    left: -640px;
  }
  /* bas à droite */
  .ellipse--contact-4 {
    top: 25px;
    right: -520px;
  }
  .ellipse--contact-5 {
    top: 110px;
    right: -680px;
  }
}
/* Projects section */
.project {
  padding-bottom: 140px;
  position: relative;
}

.project__title {
  text-align: center;
  max-width: 668px;
  margin: 0 auto;
}

.project__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 60px 0 0;
}

.project__grid--item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.project__grid--thumb {
  line-height: 0;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.project__grid--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project__grid--thumb:hover {
  transform: scale(1.1);
}

.project__grid--title {
  position: absolute;
  bottom: 30px;
  margin: 0 30px;
  color: #FFFFFF;
  z-index: 2;
}

.project__graphic {
  position: absolute;
  width: 655px;
  top: 18px;
  left: -178px;
  z-index: -1;
}

/* Project CTA */
.project__cta--btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
  font-family: "QuickSand", sans-serif;
  font-weight: 600;
  font-size: 24px;
}

.project__cta {
  background-color: #7653EC;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}

.project__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/wp-content/themes/konekto-v1/assets/svg/bg-btn.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
  transform: scale(1);
}

.project__cta:hover::before {
  transform: scale(1.2);
}

.project__cta:hover .project__button {
  transform: rotate(45deg) scale(1.1);
}

/* Overlay gradient */
.project__grid--overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 1, 80, 0.8), rgba(1, 1, 80, 0));
  z-index: 1;
}

/* ========== Responsive ========== */
@media (min-width: 576px) {
  .project__cta {
    padding: 77px 60px;
  }
  .project__cta--btn {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .project__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 20px;
    margin: 60px 119px 0;
  }
  .project__grid--item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    height: 368px;
  }
  .project__grid--item:nth-child(2) {
    grid-column: 2;
    grid-row: 1/span 2;
    height: 490px;
  }
  .project__grid--item:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    height: 368px;
  }
  .project__cta {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }
}
/* CTA section */
.cta {
  background-color: #181969;
  position: relative;
  color: #FFFFFF;
}

.cta--bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(1.35);
  background-image: url("/wp-content/themes/konekto-v1/assets/svg/bg-banner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 10%, black 50%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 10%, black 50%);
}

.cta__content {
  padding-top: 250px;
  padding-bottom: 96px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.cta__content--left {
  order: 1;
}
.cta__content--left h2 {
  margin-bottom: 30px;
}
.cta__content--left p {
  margin-bottom: 40px;
}
.cta__content--left .btn {
  width: 100%;
  text-align: center;
}

.cta__image {
  position: relative;
  max-width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to top left, transparent 0%, rgba(0, 0, 0, 0.4) 15%, black 20%);
  mask-image: linear-gradient(to top left, transparent 0%, rgba(0, 0, 0, 0.4) 15%, black 20%);
}
.cta__image img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 125%;
  display: block;
}

.cta__content--right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

.cta--right {
  width: 100%;
  position: relative;
}

.cta__inner {
  position: absolute;
  overflow: hidden;
  border-radius: inherit;
  inset: 0;
}

/* Ellipses floues en fond */
.ellipse {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
}

/* Bas à gauche */
.ellipse--1 {
  background-color: rgba(68, 66, 219, 0.6);
  top: 190px;
  left: -400px;
}

.ellipse--2 {
  background-color: rgba(212, 215, 227, 0.6);
  top: 270px;
  left: -640px;
}

/* milieu à droite */
.ellipse--3 {
  background-color: rgba(68, 66, 219, 0.8);
  top: -130px;
  right: -220px;
}

.ellipse--4 {
  background-color: rgba(212, 215, 227, 0.7);
  top: -40px;
  right: -450px;
}

.ellipse--5 {
  background-color: rgb(68, 66, 219);
  opacity: 0.5;
  top: -120px;
  right: -600px;
}

/* ========== Responsive ========== */
@media (min-width: 560px) and (max-width: 1023px) {
  .cta__image {
    max-width: 600px;
    margin: auto;
  }
  .cta__content {
    padding-top: 350px;
  }
}
@media (min-width: 1024px) {
  .cta__content {
    padding: 96px 119px 0;
    flex-direction: row;
  }
  .cta__content--left {
    width: 50%;
    padding-bottom: 96px;
    order: 0;
  }
  .cta__content--left .btn {
    width: auto;
  }
  .cta__content--right {
    position: absolute;
    bottom: auto;
    top: auto;
  }
  .cta--right {
    width: 70%;
  }
}
@media (min-width: 1300px) {
  .cta__content--left {
    max-width: 554px;
  }
  .cta__content--right {
    bottom: 60px;
  }
}
/* PAGE ABOUT */
/* Values */
.values {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  row-gap: 30px;
  margin-top: 60px;
}

.values__card {
  background-color: #151666;
  color: white;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.values__card.active {
  grid-row: span 2;
  height: auto;
}

.values__card--text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.values__card--number {
  margin-bottom: 20px;
}

.values__card--image {
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  width: 100%;
  height: 200px;
  background-color: #F1F0FF;
  display: block;
}

.values__card--image img {
  max-width: 100%;
  height: auto;
  margin: 20px auto 0 auto;
  display: block;
}

.values__graphic {
  position: absolute;
  width: 655px;
  bottom: 96px;
}

.values__graphic--left {
  left: -230px;
}

.values__graphic--right {
  right: -300px;
}

/* Ellipse */
.values__card-inner {
  position: absolute;
  overflow: hidden;
  border-radius: inherit;
  inset: 0;
  z-index: -1;
}

.values__ellipse-1 {
  background: #4442DB;
  bottom: 50px;
  left: -5px;
  opacity: 0.5;
  display: none;
}

.values__ellipse-2 {
  background: #D4D7E3;
  bottom: 100px;
  left: 300px;
  opacity: 0.7;
  display: none;
}

.values__card:hover .values__ellipse-1,
.values__card.active .values__ellipse-1 {
  transform: translate(-20px, -20px) scale(1.2);
  display: block;
}

.values__card:hover .values__ellipse-2,
.values__card.active .values__ellipse-2 {
  transform: translate(20px, 20px) scale(1.2);
  display: block;
}

/* ========== Responsive ========== */
@media (min-width: 425px) {
  .values__grid {
    grid-template-columns: repeat(auto-fit, minmax(348px, 1fr));
  }
}
@media (min-width: 1024px) {
  .values {
    padding: 140px 119px;
  }
  .values__card {
    height: 280px;
    cursor: pointer;
  }
  .values__card--image {
    display: none;
  }
  .values__card.active .values__card--image {
    display: block;
  }
  .values__card:not(.active) .values__card--content {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
  }
  .values__card:not(.active):nth-child(4) .values__card--content,
  .values__card:not(.active):nth-child(5) .values__card--content,
  .values__card:not(.active):nth-child(1) .values__card--content {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }
  .values__card:not(.active) .values__card--content:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: #151666;
  }
  .values__card:not(.active):hover .values__card--content:after {
    background: linear-gradient(to right, rgb(24, 24, 103) 0%, rgb(33, 33, 126) 50%, rgb(39, 39, 137) 100%);
  }
}
@media (min-width: 1440px) {
  .values__card:nth-child(4).active {
    grid-row: 1/span 2;
    grid-column: 2;
  }
  .values__card:nth-child(5).active {
    grid-row: 1/span 2;
    grid-column: 3;
  }
}
/* Team */
.team {
  background-color: #010150;
  color: #FFFFFF;
}

.team__container {
  padding-top: 96px;
  padding-bottom: 96px;
}
.team__container h2, .team__container .subtitle {
  text-align: center;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
  row-gap: 40px;
  margin-top: 60px;
}

.team__card--content {
  position: relative;
}

.team__card--image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.team__card--image img {
  object-fit: cover;
  object-position: top;
  display: block;
  height: 100%;
  width: 100%;
}

.team__card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
.team__card-content h4 {
  margin-bottom: 8px;
}

.team__card--function {
  color: #B7A3F3;
}

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

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

.team__card--job {
  border: 2px dashed #7147E9;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== Responsive ========== */
@media (min-width: 425px) {
  .team__grid {
    grid-template-columns: repeat(auto-fit, minmax(328px, 1fr));
  }
  .team__card--image img {
    object-position: center;
  }
}
@media (min-width: 1024px) {
  .team__container {
    padding: 96px 119px;
  }
  .team__card--image {
    aspect-ratio: auto;
    height: 259px;
  }
  .team__card--image img {
    object-position: top;
  }
}
/* Cheques Entreprise */
.about__cheques {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  z-index: 10;
}
.about__cheques h2 {
  max-width: 656px;
}

.about__cheques--cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 60px;
}

.about__cheques--col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about__cheques--col .btn {
  text-align: center;
}

.about__cheques--benefits {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__cheques--benefits li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about__cheques--img {
  max-width: 226px;
}

/* ========== Responsive ========== */
@media (min-width: 1024px) {
  .about__cheques {
    padding: 70px 119px;
  }
  .about__cheques h2 {
    max-width: 656px;
  }
  .about__cheques--cols {
    grid-template-columns: repeat(auto-fit, minmax(470px, 1fr));
  }
  .about__cheques--col .btn {
    width: fit-content;
  }
}
@media (min-width: 1440px) {
  .about__cheques--cols {
    gap: 170px;
  }
}
/* Posts Linkedin */
.post-linkedin {
  padding-top: 140px;
}

.post__container {
  text-align: center;
}
.post__container h2 {
  max-width: 554px;
  margin: auto;
  margin-bottom: 60px;
}

/* Contact */
.contact {
  padding-top: 100px;
  padding-bottom: 96px;
}

.contact__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.contact__info {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact__info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact__info-list li a {
  color: inherit;
}
.contact__info-list li a:hover {
  color: #7147E9;
}

.contact__form {
  max-width: 636px;
  width: 100%;
}
.contact__form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form__select {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.label {
  font-family: "QuickSand", sans-serif;
  font-weight: 600;
  font-size: 12px;
}

.contact__graphic {
  position: absolute;
  width: 450px;
  bottom: -270px;
  left: -82px;
  z-index: -1;
}

/* Checkbox */
.checkbox {
  margin-bottom: 10px;
}

.checkbox a {
  text-decoration: underline;
  color: inherit;
}

.checkbox a:hover {
  color: #7147E9;
}

.checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #7147E9;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  vertical-align: middle;
  padding: 0;
}

.checkbox input[type=checkbox]:checked {
  background-color: #7147E9;
  border-color: #7147E9;
}

.checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  background-image: url("/wp-content/themes/konekto-v1/assets/svg/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 7px;
  opacity: 0;
}

.checkbox input[type=checkbox]:checked::after {
  opacity: 1;
}

/* Select, input, textarea */
select, input, textarea {
  padding: 12px 20px;
  border: 1px solid #B7A3F3;
  border-radius: 10px;
  background-color: transparent;
}

input::placeholder,
textarea::placeholder {
  color: #010150;
  opacity: 0.7;
  font-family: "QuickSand", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

textarea {
  height: 120px;
}

input, textarea, .checkbox {
  font-family: "QuickSand", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #B7A3F3;
  border-color: #7147E9;
}

select {
  color: #010150;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

select:invalid {
  color: #010150;
  opacity: 0.7;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.select__wrapper {
  position: relative;
}

.select__wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  width: 100%;
}

.select__wrapper::after {
  content: "";
  position: absolute;
  background-image: url("/wp-content/themes/konekto-v1/assets/svg/arrow-select.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  pointer-events: none;
  color: #010150;
  width: 14px;
  height: 8px;
}

/* CV */
.upload-drop {
  border: 2px dashed #B7A3F3;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.3s;
}

.upload-placeholder {
  font-size: 14px;
  color: #010150;
}

.choose-file {
  color: #010150;
  text-decoration: underline;
}

.upload-file {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.remove-file {
  background: none;
  border: none;
  font-size: 16px;
  color: red;
  cursor: pointer;
}

#cv-drop-area.dragover {
  border-color: #7147E9;
}

.file-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}
.file-preview svg {
  display: none;
}

/* Message */
.message-erreur {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  padding: 15px 20px;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
}

.message-success {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
  padding: 30px 20px;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
}

.close-button {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: inherit;
  cursor: pointer;
}

/* ========== Responsive ========== */
@media (min-width: 768px) {
  .form__grid {
    grid-template-columns: 1fr 1fr;
  }
  .upload-drop {
    padding: 25px;
  }
  .upload-file {
    padding: 10px 15px;
  }
  .file-preview svg {
    display: block;
  }
  .contact__form form .btn {
    width: fit-content;
  }
}
@media (min-width: 1024px) {
  .contact {
    padding-top: 170px;
    padding-bottom: 120px;
  }
  .contact__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (min-width: 1300px) {
  .contact {
    padding-right: 119px;
  }
}
/* Projects page */
.section__project--page {
  padding-top: 120px;
  padding-bottom: 96px;
  background-color: #010150;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.project__banner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 90px;
  position: relative;
  z-index: 2;
}

.project__grid--card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.project__grid--card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  flex-shrink: 0;
}

.project__grid--overlay--less {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1, 1, 80, 0.8) 0%, rgba(1, 1, 80, 0.4) 25%, rgba(1, 1, 80, 0) 40%);
  z-index: 1;
}

.project-page__graphic {
  position: absolute;
  width: 655px;
  transform: scaleX(-1);
  z-index: 0;
}

.graphic-1 {
  top: 104px;
  left: -112px;
}

.graphic-2 {
  bottom: 32px;
  right: -155px;
}

/* Section Clients */
.project__client__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  z-index: 3;
}

.project__client--logo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
}
.project__client--logo img {
  width: 163px;
  margin: auto;
}

/* ========== Responsive ========== */
@media (min-width: 768px) {
  .project__client--logo {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 30px;
  }
}
@media (min-width: 1024px) {
  .section__project--page {
    padding-top: 170px;
    padding-bottom: 120px;
  }
  .project__banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .project__banner h1 {
    max-width: 636px;
  }
  .project__banner--text {
    max-width: 472px;
  }
  .projects__grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 90px;
  }
  .project__client__content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .project__client--logo {
    column-gap: 72px;
  }
}
/* Project single */
.projet__infos {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.projet__services--list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.projet__services--list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.projet__services--list li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.968' height='12.343' viewBox='0 0 14.968 12.343'%3E%3Cpath d='M8.823,12.343a.534.534,0,0,1-.378-.911l4.718-4.717L.53,6.557A.54.54,0,0,1,0,6.027V5.99l0-.007A.527.527,0,0,1,.52,5.488l12.615.16L8.392.907A.531.531,0,1,1,9.143.156L14.8,5.808a.548.548,0,0,1,.129.185.527.527,0,0,1-.116.582L9.2,12.187a.534.534,0,0,1-.377.156' fill='%237147e9'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.col--right {
  max-width: 554px;
}
.col--right h2 {
  margin-bottom: 30px;
}

/* Responsive */
@media (min-width: 1024px) {
  .projet__infos {
    padding: 70px 119px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
  }
}
/* Modules */
.module {
  position: relative;
  overflow: hidden;
}
.module:nth-child(3) .single__graphic {
  display: block;
  left: -90px;
  bottom: -170px;
}
.module:nth-child(5) .single__graphic {
  display: block;
  top: -150px;
  right: -218px;
}

.module__text {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
}

.single__graphic {
  display: none;
  position: absolute;
  width: 460px;
  z-index: -1;
}

.module__text:nth-child(3) {
  padding-top: 0;
}

.texte.deux-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(328px, 1fr));
  gap: 20px;
}

.texte.deux-cols .col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.module__img img {
  width: 100%;
  display: block;
  object-position: center;
}

/* Responsive */
@media (min-width: 768px) {
  .texte.deux-cols {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .module__text {
    padding: 120px 119px;
    grid-template-columns: 1fr 2fr;
  }
  .module__text h2 {
    width: 308px;
  }
}
@media (min-width: 1430px) {
  .module__text {
    gap: 82px;
  }
  .texte.deux-cols {
    gap: 82px;
  }
}
/* Nav */
.projet__nav {
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex: auto 0 0;
  flex-wrap: wrap;
}

.projet__nav--link {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #010150;
}

.projet__nav--prev {
  margin-right: auto;
}

.projet__nav--next {
  margin-left: auto;
}

.projet__nav--arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid #7147E9;
  border-radius: 50px;
  background-color: transparent;
  transition: transform 0.3s ease-in-out;
  flex: 0 0 auto;
}
.projet__nav--arrow svg {
  color: #7147E9;
}

.arrow--right {
  color: #7147E9;
  transition: transform 0.3s ease-in-out;
}

.arrow--left {
  transform: rotate(180deg);
}

.projet__nav--link:hover {
  color: #7147E9;
}
.projet__nav--link:hover .projet__nav--arrow {
  transform: scale(1.2);
}

/* Privacy Policy */
.privacy-policy__content {
  padding-top: 140px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1224px;
}

.privacy__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.privacy__section li {
  list-style: inside;
  margin: 20px;
}
.privacy__section a {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  color: #7147E9;
}

.subsections {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.subsections h3 {
  margin-bottom: 20px;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: #7147E9;
}

.privacy__link a {
  display: inline-block;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}

.privacy-policy__subtitle {
  margin-top: 10px;
}

.separator:last-child {
  display: none;
}

/* ========== Responsive ========== */
@media (min-width: 1024px) {
  .privacy-policy__content {
    padding-left: 119px;
    padding-right: 119px;
  }
}