@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
* button {
  cursor: pointer;
}
* li {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

.alert {
  background: white;
  color: green;
  padding: 40px;
}

body {
  font-family: "Nunito", sans-serif;
  color: #2f2f2f;
}

nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  height: 8vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  z-index: 3;
  background: #0c0d11;
}
nav a.logo {
  height: auto;
}
nav a.logo img {
  width: 160px;
  height: auto;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  nav ul {
    padding-left: 0;
  }
}
nav ul li {
  list-style: none;
}
nav ul li a {
  font-size: 16px;
  color: white;
  position: relative;
}
nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #6c46ff;
  transition: width 0.3s ease-in-out;
}
nav ul li a:hover {
  color: #6c46ff;
}
nav ul li a:hover::after {
  width: 100%;
}
nav a.button-cta {
  background: #6c46ff;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.6s ease;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
}
nav a.button-cta::after {
  display: none;
}
nav a.button-cta:hover {
  background: white;
  color: #6c46ff;
}
nav .toggle {
  display: none;
}
nav .social-links {
  display: flex;
  gap: 20px;
}
nav .social-links a i {
  font-size: 2rem;
}
nav .social-links a:hover {
  color: #6c46ff;
}
@media (max-width: 1024px) {
  nav {
    justify-content: space-between;
  }
  nav ul, nav .button-cta {
    display: none;
  }
  nav a.logo {
    height: auto;
  }
  nav a.logo img {
    width: 150px;
    height: auto;
  }
  nav .toggle {
    display: block;
    cursor: pointer;
  }
  nav .toggle i {
    font-size: 1.7rem;
    color: white;
  }
  nav .toggle i.cross {
    display: none;
  }
  nav .social-links {
    display: none;
  }
  nav.active {
    background-color: #2f2f2f;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 10rem;
  }
  nav.active ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  nav.active .button-cta {
    display: block;
  }
  nav.active .toggle {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
  }
  nav.active .toggle i {
    font-size: 1.7rem;
  }
  nav.active .toggle i.cross {
    display: block;
    color: white;
  }
  nav.active .toggle i.burger {
    display: none;
  }
  nav.active .social-links {
    display: flex;
  }
}

section {
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  section {
    padding: 40px 0;
  }
}
section .container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}
section .container .w-50 {
  width: 50%;
}
section .container .w-75 {
  width: 75%;
}
section .container .w-100 {
  width: 100%;
}
section .container .m-0-auto {
  margin: 0 auto;
}
section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 10px;
  color: #2f2f2f;
  animation: fade-in-bottom 0.6s ease-in both;
}
@media (max-width: 1024px) {
  section h2 {
    font-size: 2rem;
  }
}

.container-privacy {
  color: white;
  background-color: #2f2f2f;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  text-transform: uppercase;
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-500px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-65px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-28px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
/**
* ----------------------------------------
* animation roll-in-blurred-left
* ----------------------------------------
*/
@keyframes roll-in-blurred-left {
  0% {
    transform: translateX(-1000px);
    filter: blur(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
header {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 93vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: url("../images/header-sPDexYZ.webp") no-repeat center/cover fixed;
}
@media (max-width: 1024px) {
  header {
    min-height: 40vh;
  }
}
header h2,
header div,
header button {
  z-index: 1;
}
header .container {
  display: grid;
  grid-template-columns: 70% 30%;
  height: 40%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 0;
}
@media (max-width: 1024px) {
  header .container {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }
}
header .container a {
  font-weight: 700;
  background: #6c46ff;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  color: white;
  transition: all 0.3s ease;
  z-index: 1;
  box-shadow: 0px 10px 20px rgba(14, 12, 74, 0.5);
}
header .container a:hover {
  background: white;
  color: #6c46ff;
}
header .container a i {
  margin-right: 4px;
}
header .container .title {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  color: white;
}
header .container .title h1 {
  position: relative;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 80px;
  animation: roll-in-blurred-left 3s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@media (max-width: 1024px) {
  header .container .title h1 {
    font-size: 2.4rem;
    margin-top: 40px;
  }
}
header .container .title h1 .switch {
  position: absolute;
  left: 0;
  opacity: 0;
  animation: rotateWords 6s infinite ease-in-out;
}
header .container .title h1 .switch:nth-of-type(2) {
  animation-delay: 0s;
}
header .container .title h1 .switch:nth-of-type(3) {
  animation-delay: 3s;
}
@keyframes rotateWords {
  0%, 10% {
    opacity: 0;
    transform: translateY(50px);
  }
  15%, 45% {
    opacity: 1;
    transform: translateY(0);
  }
  50%, 100% {
    opacity: 0;
    transform: translateY(-50px);
  }
}
header .container .title p {
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  header .container .title p {
    font-size: 1.1rem;
  }
}
header .container .title p span {
  color: #6c46ff;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  header .container .title p span {
    font-size: 1.2rem;
  }
}
header .container .profil {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  padding-bottom: 2.2rem;
  /* Faces */
  /* Ombre douce au sol */
  /* Optionnel : animation du cube */
}
@media (max-width: 1024px) {
  header .container .profil {
    width: 100%;
    margin-top: 2rem;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  header .container .profil {
    display: none;
  }
}
header .container .profil .cube {
  position: relative;
  width: 200px;
  height: 200px;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(30deg);
  animation: spin 20s infinite linear;
}
header .container .profil .cube div:not(.img) {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(6px);
  border: 4mm ridge rgba(108, 70, 255, 0.631372549); /* arêtes visibles */
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.064);
  border-radius: 6px;
}
header .container .profil .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0); /* Centre dans l'espace 3D */
  width: 100px; /* Taille de l’image au centre */
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
header .container .profil .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header .container .profil .front {
  transform: translateZ(100px);
}
header .container .profil .back {
  transform: rotateY(180deg) translateZ(100px);
}
header .container .profil .right {
  transform: rotateY(90deg) translateZ(100px);
}
header .container .profil .left {
  transform: rotateY(-90deg) translateZ(100px);
}
header .container .profil .top {
  transform: rotateX(90deg) translateZ(100px);
}
header .container .profil .bottom {
  transform: rotateX(-90deg) translateZ(100px);
}
header .container .profil .cube-shadow {
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 80%);
  position: absolute;
  top: 220px;
  left: 0;
  filter: blur(10px);
  transform: rotateX(90deg);
  z-index: -1;
}
@keyframes spin {
  from {
    transform: rotateX(-20deg) rotateY(0deg);
  }
  to {
    transform: rotateX(-20deg) rotateY(360deg);
  }
}
@media (max-width: 1024px) {
  header .container .profil .cube {
    width: 100px;
    height: 100px;
  }
  header .container .profil .img {
    width: 60px;
    height: 65px;
  }
}
header p {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 1024px) {
  header p {
    font-size: 1.2rem;
  }
}
header p span {
  color: #6c46ff;
  font-weight: 700;
}

#presentation {
  background: url("../images/header-copie-Jzl0pE-.webp") no-repeat center/cover fixed;
}
#presentation .presentation-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 1024px) {
  #presentation .presentation-container {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  #presentation .presentation-container {
    gap: 0;
  }
}
#presentation .presentation-container h2 {
  text-align: left;
  font-size: 3.5rem;
  line-height: 1.2;
  max-width: 720px;
}
#presentation .presentation-container h2 span {
  color: #6c46ff;
}
@media (max-width: 1024px) {
  #presentation .presentation-container h2 {
    font-size: 2.2rem;
    text-align: center;
  }
}
#presentation .presentation-container .presentation-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  #presentation .presentation-container .presentation-content {
    flex-direction: column;
    gap: 2rem;
  }
}
#presentation .presentation-container .presentation-content .presentation-img {
  width: 40%;
}
@media (max-width: 1024px) {
  #presentation .presentation-container .presentation-content .presentation-img {
    width: 100%;
  }
}
#presentation .presentation-container .presentation-content .presentation-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  filter: grayscale(100%);
}
#presentation .presentation-container .presentation-content .presentation-img img:hover {
  transform: scale(1.03);
  filter: grayscale(0%);
}
@media (max-width: 600px) {
  #presentation .presentation-container .presentation-content .presentation-img {
    max-width: 280px;
  }
}
#presentation .presentation-container .presentation-content .presentation-text {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 1024px) {
  #presentation .presentation-container .presentation-content .presentation-text {
    width: 100%;
  }
}
#presentation .presentation-container .presentation-content .presentation-text p {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  #presentation .presentation-container .presentation-content .presentation-text p {
    text-align: center;
  }
}
#presentation .presentation-container .presentation-content .presentation-text .cta-button {
  align-self: flex-start;
  background: #6c46ff;
  border: none;
  color: #6c46ff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #fff;
}
#presentation .presentation-container .presentation-content .presentation-text .cta-button:hover {
  background: white;
  color: #6c46ff;
}
@media (max-width: 1024px) {
  #presentation .presentation-container .presentation-content .presentation-text .cta-button {
    align-self: center;
  }
}

#services {
  background: url("../images/services-S6GbsKr.webp") no-repeat center/cover fixed;
  text-align: center;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
  overflow: hidden;
  padding-top: 360px;
}
@media (max-width: 1024px) {
  #services {
    padding-top: 220px;
  }
}

.slider-track {
  position: absolute;
  top: 40px;
  left: 0;
  height: 300px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .slider-track {
    height: 200px;
  }
}
.slider-track img {
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}
.slider-track img:hover {
  filter: grayscale(0%);
}
.slider-track::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 200px;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  z-index: 2;
  pointer-events: none;
}
.slider-track::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 200px;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
  z-index: 2;
  pointer-events: none;
}

.slider {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.slider img {
  width: 260px;
  height: auto;
  margin-right: 20px;
}

@media (max-width: 1024px) {
  .slider img {
    width: 150px;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}

#title-services {
  font-size: 4rem;
  font-weight: bold;
  width: 100%;
}
#title-services span {
  color: #6c46ff;
}
@media (max-width: 1024px) {
  #title-services {
    font-size: 2rem;
    max-width: 100%;
  }
}

#list-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
#list-services .service {
  text-align: center;
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 4px;
  text-align: left;
  padding: 1rem;
  display: grid;
  grid-template-rows: 27% 10% 70%;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
#list-services .service .line {
  height: -moz-fit-content;
  height: fit-content;
}
#list-services .service .line .line-1 {
  width: 80px;
  height: 80px;
  border: 1px solid #6c46ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
#list-services .service .line .line-1 .line-2 {
  width: 60px;
  height: 60px;
  border: 1px solid #6c46ff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#list-services .service .line .line-1 .line-2 i {
  font-size: 1.6rem;
  color: #6c46ff;
}
#list-services .service .title {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}
#list-services .service .text {
  text-align: center;
}
#list-services .service .choice {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  padding: 0.5rem 1rem;
  background-color: #6c46ff;
  transform: translateY(-100%);
}
#list-services .service:hover {
  transform: scale(1.05);
}

#collaboration {
  background: #131418;
  width: 100vw;
  background: url("../images/header-sPDexYZ.webp") no-repeat center/cover fixed;
  padding-bottom: 100px;
}
#collaboration .collaboration-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #collaboration .collaboration-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
#collaboration .collaboration-container .title-container {
  position: relative;
  width: 100%;
}
#collaboration .collaboration-container .title-container .title {
  position: sticky;
  top: 50%;
  display: flex;
  flex-direction: column;
}
#collaboration .collaboration-container .title-container .title h2 {
  color: white;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 600;
  width: 100%;
  text-align: left;
}
#collaboration .collaboration-container .title-container .title .button-arrow button {
  background: #6c46ff;
  color: white;
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1.5rem;
  margin-right: 6px;
}
#collaboration .collaboration-container .title-container .title .button-arrow i {
  padding: 10px;
  background: #6c46ff;
  color: white;
  font-size: 1.5rem;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  #collaboration .collaboration-container .title-container .title h2 {
    font-size: 2rem;
  }
  #collaboration .collaboration-container .title-container .title .button-arrow button {
    font-size: 1rem;
  }
  #collaboration .collaboration-container .title-container .title .button-arrow i {
    font-size: 1rem;
  }
}
#collaboration .collaboration-container .liste-etape {
  width: 100%;
}
#collaboration .collaboration-container .liste-etape ul {
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (max-width: 1024px) {
  #collaboration .collaboration-container .liste-etape ul {
    gap: 2rem;
    padding-left: 0;
  }
}
#collaboration .collaboration-container .liste-etape ul li {
  height: 260px;
  display: grid;
  grid-template-columns: 1fr 70%;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.8s ease-in-out;
}
#collaboration .collaboration-container .liste-etape ul li.active {
  transition: all 0.5s ease-in-out;
  opacity: 1;
}
#collaboration .collaboration-container .liste-etape ul li.active h3 {
  color: #6c46ff;
}
#collaboration .collaboration-container .liste-etape ul li .line {
  width: 150px;
  max-width: 100%;
  height: 150px;
  display: flex;
  justify-content: flex-end;
  margin-right: 40px;
}
#collaboration .collaboration-container .liste-etape ul li .line .line-1 {
  width: 100%;
  height: 100%;
  border: 1px solid white;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 15px rgba(143, 142, 142, 0.963);
}
#collaboration .collaboration-container .liste-etape ul li .line .line-1 .line-2 {
  width: 70%;
  height: 70%;
  border: 1px solid white;
  border-radius: 100%;
  box-shadow: 0px 0px 35px rgba(255, 255, 255, 0.963);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#collaboration .collaboration-container .liste-etape ul li .line .line-1 .line-2 img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
#collaboration .collaboration-container .liste-etape ul li .text {
  width: 100%;
  color: white;
  position: relative;
}
#collaboration .collaboration-container .liste-etape ul li .text h3 {
  font-weight: 700;
  font-size: 30px;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.5;
  text-transform: uppercase;
}
#collaboration .collaboration-container .liste-etape ul li .text p {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: justify;
}
#collaboration .collaboration-container .liste-etape ul li .number {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  opacity: 0.7;
  font-weight: 300;
  color: #6c46ff;
}
@media (max-width: 1024px) {
  #collaboration .collaboration-container .liste-etape ul li {
    grid-template-columns: 1fr;
    gap: 2rem;
    opacity: 1;
    height: auto;
  }
  #collaboration .collaboration-container .liste-etape ul li .active h3 {
    color: white;
  }
  #collaboration .collaboration-container .liste-etape ul li .line {
    width: 80px;
    height: 80px;
    margin-right: 0;
  }
  #collaboration .collaboration-container .liste-etape ul li .text h3 {
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.5;
    text-transform: uppercase;
  }
  #collaboration .collaboration-container .liste-etape ul li .text p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: justify;
  }
  #collaboration .collaboration-container .liste-etape ul li .text .number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    opacity: 0.7;
    font-weight: 300;
    color: #6c46ff;
  }
}

#cta {
  background: url("../images/services-S6GbsKr.webp") no-repeat center/cover fixed;
  position: relative;
  padding: 2rem 0;
}
#cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6c46ff 40%, transparent 100%);
}
#cta .cta-container {
  width: 100%;
  height: 100%;
  padding: 10rem 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#cta .cta-container p, #cta .cta-container a, #cta .cta-container button {
  color: white;
}
#cta .cta-container .subtitle {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.5;
  color: #f9f9f9;
}
#cta .cta-container .title {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}
#cta .cta-container p {
  font-size: 1.6rem;
  font-weight: 700;
}
#cta .cta-container a {
  margin-top: 1rem;
  background: white;
  color: #6c46ff;
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
#cta .cta-container a:hover {
  background: #2f2f2f;
  color: white;
}
#cta .cta-container i {
  color: #6c46ff;
  font-size: 18px;
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
  #cta .cta-container {
    padding: 1rem;
  }
  #cta .cta-container .subtitle {
    font-size: 1.5rem;
  }
  #cta .cta-container .title {
    font-size: 2rem;
  }
  #cta .cta-container a {
    font-size: 1rem;
  }
  #cta .cta-container p {
    font-size: 1rem;
    font-weight: 700;
  }
}

#portfolio {
  background: url("../images/services-S6GbsKr.webp") center/cover fixed;
  padding: 6rem 2rem;
}
@media (max-width: 1024px) {
  #portfolio {
    padding: 5rem 0;
  }
}
#portfolio h2 {
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 1024px) {
  #portfolio h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
#portfolio h2 span {
  color: #6c46ff;
}
#portfolio .list-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  justify-items: center;
}
@media (max-width: 1024px) {
  #portfolio .list-card {
    grid-template-columns: 1fr;
  }
}
#portfolio .list-card .card {
  background: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}
#portfolio .list-card .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
#portfolio .list-card .card .image {
  height: 200px;
  overflow: hidden;
}
#portfolio .list-card .card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
#portfolio .list-card .card .image:hover img {
  transform: scale(1.05);
}
#portfolio .list-card .card .text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  flex-grow: 1;
}
#portfolio .list-card .card .text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
}
#portfolio .list-card .card .text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
#portfolio .list-card .card .text a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #6c46ff;
  border: 2px solid #6c46ff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
#portfolio .list-card .card .text a i {
  font-size: 1rem;
}
#portfolio .list-card .card .text a:hover {
  background-color: #6c46ff;
  color: #fff;
}
@media (max-width: 1024px) {
  #portfolio .list-card .card .text h3 {
    font-size: 1.2rem;
  }
}

.swiper {
  width: 100%;
  height: 100%;
  max-height: 600px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.302), 0 6px 20px 0 rgba(0, 0, 0, 0.38);
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#testimonials {
  background: url("../images/services-S6GbsKr.webp") center/cover fixed;
}
#testimonials .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}
#testimonials .container .subtitle {
  color: #737373;
  font-size: 1.5rem;
}
#testimonials .container h2 span {
  color: #6c46ff;
}
#testimonials .container .list-testimonatinals {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  justify-items: center;
}
@media (max-width: 1024px) {
  #testimonials .container .list-testimonatinals {
    grid-template-columns: 1fr;
  }
}
#testimonials .container .testimonial {
  background: rgba(249, 249, 249, 0.7294117647);
  width: 100%;
  height: auto;
  padding: 2rem;
}
#testimonials .container .testimonial .testimonial-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
}
#testimonials .container .testimonial .testimonial-container .stars i {
  color: #feb710;
  font-size: 1.5rem;
}
#testimonials .container .testimonial .testimonial-container .text {
  font-size: 1.2rem;
  height: 100%;
}
#testimonials .container .testimonial .testimonial-container .author {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#testimonials .container .testimonial .testimonial-container .author a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
#testimonials .container .testimonial .testimonial-container .author a i {
  color: #6c46ff;
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  #testimonials .container .testimonial .testimonial-container .stars i {
    font-size: 1rem;
  }
  #testimonials .container .testimonial .testimonial-container .text {
    font-size: 1rem;
  }
  #testimonials .container .testimonial .testimonial-container .author a i {
    font-size: 1rem;
  }
}

#faq {
  background: url("../images/contact2-pz-iHr7.webp") no-repeat center/cover fixed;
}
@media screen and (max-width: 1024px) {
  #faq {
    height: auto;
  }
}
#faq h2 {
  color: white;
}
#faq h2 span {
  color: #6c46ff;
}
@media screen and (max-width: 1024px) {
  #faq h2 {
    margin-bottom: 0;
  }
}
#faq h2 i {
  border: 1px solid #6c46ff;
  color: white;
  border-radius: 100%;
  padding: 1rem;
  color: #6c46ff;
}
#faq .list-cards {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 40px;
}
#faq .list-cards .card {
  padding: 20px;
  border: 1px solid white;
  border-radius: 12px;
  width: 100%;
}
#faq .list-cards .card h3, #faq .list-cards .card p {
  color: white;
}
#faq .list-cards .card h3 {
  margin-bottom: 10px;
}

footer {
  background-color: #171717;
  color: white;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
footer div {
  display: flex;
  align-items: center;
  gap: 2rem;
}
footer div p {
  margin-bottom: 0;
}
footer i {
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

#quote-container {
  background: black;
}
#quote-container .title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 20px 0;
  color: white;
  margin-bottom: 40px;
}
#quote-container .title h1 {
  margin-bottom: 10px;
}
#quote-container .title h1 span {
  color: #6c46ff;
}
#quote-container .form-container {
  padding: 40px;
  background: #101a23;
  color: white;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  #quote-container .form-container {
    padding: 10px;
  }
}
#quote-container .form-container form {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
#quote-container .form-container form .input-container {
  width: 30%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  #quote-container .form-container form .input-container {
    width: 100%;
  }
}
#quote-container .form-container form .input-container input {
  outline: none;
  border: none;
  border-bottom: 1px solid white;
  background: transparent;
  padding: 10px 0;
  color: white;
}
#quote-container .form-container form .input-container select {
  outline: none;
  border: none;
  border-bottom: 1px solid white;
  background: transparent;
  padding: 10px;
}
#quote-container .form-container form .message {
  width: 100%;
}
#quote-container .form-container form .message label {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
#quote-container .form-container form .message textarea {
  height: 160px;
  outline: none;
  border: none;
  border-bottom: 1px solid white;
  background: transparent;
  color: white;
}
#quote-container .form-container .choices {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
#quote-container .form-container .choices > label {
  font-size: 20px;
  text-align: center;
}
#quote-container .form-container .list-choices {
  width: 100%;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#quote-container .form-container .list-choices .choice {
  position: relative;
  width: 48%;
  height: 100px;
}
@media (max-width: 1024px) {
  #quote-container .form-container .list-choices .choice {
    width: 100%;
  }
}
#quote-container .form-container .list-choices .choice input {
  padding: 10px;
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border-radius: none;
  z-index: 1;
  transition: all 0.7s ease;
}
#quote-container .form-container .list-choices .choice input:hover + label {
  background: #6c46ff;
  border: 1px solid white;
}
#quote-container .form-container .list-choices .choice input:checked + label {
  background: #6c46ff;
  color: #fff;
  border: 1px solid white;
}
#quote-container .form-container .list-choices .choice label {
  padding: 10px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 4px;
  text-align: center;
  transition: all 0.5s ease;
}
#quote-container .form-container .three-columns {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  #quote-container .form-container .three-columns {
    flex-direction: column;
  }
}
#quote-container .form-container button[type=submit] {
  padding: 10px 20px;
  background: #6c46ff;
  color: white;
  border: none;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#quote-container .form-container button[type=submit]:hover {
  background: white;
  color: #6c46ff;
}

#agency {
  width: 100vw;
  background: url("../images/services-S6GbsKr.webp") no-repeat center/cover fixed;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  #agency .container {
    gap: 10px;
  }
}
#agency h1 {
  text-align: center;
}
#agency h2 {
  margin-bottom: 40px;
}
#agency .promise,
#agency .values {
  padding: 30px 0;
}
#agency .promise {
  width: 100%;
}
#agency .promise .list-cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  #agency .promise .list-cards {
    flex-direction: column;
  }
}
#agency .promise .list-cards .card {
  width: 30%;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.09);
}
@media (max-width: 768px) {
  #agency .promise .list-cards .card {
    width: 100%;
  }
}
#agency .promise .list-cards .card img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
#agency .promise .list-cards .card h3 {
  font-size: 22px;
  text-align: center;
  margin: 10px 0;
}
#agency .promise .list-cards .card p {
  font-size: 18px;
}
#agency .values ul li {
  margin: 20px 0;
}
#agency .values ul li h3 {
  font-size: 22px;
}
#agency .values ul li p {
  font-size: 18px;
}
@media (max-width: 768px) {
  #agency .cta {
    margin-top: 20px;
  }
  #agency .cta p {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
  }
}
#agency .cta a {
  margin-top: 1rem;
  background: white;
  color: #6c46ff;
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease-in-out;
}
#agency .cta a:hover {
  background: #2f2f2f;
  color: white;
}

#rates {
  background: #131418;
  width: 100vw;
  background: url("../images/header-sPDexYZ.webp") no-repeat center/cover fixed;
  padding-bottom: 100px;
  color: white;
}
#rates .title {
  text-align: center;
}
#rates .title p {
  font-size: 24px;
}
#rates .list-btn button {
  background: #6c46ff;
  color: white;
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1.5rem;
  margin-right: 6px;
}
#rates .list-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}
#rates .list-cards .card {
  padding: 20px;
  border: 1px solid white;
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}/*# sourceMappingURL=app.css.map */