:root {
  --dark-100: hsl(240, 34%, 13%);
  --dark-200: hsl(240, 4%, 20%);
  --red-300: hsl(353, 87%, 30%);
  --red-400: hsl(353, 87%, 40%);
  --red-500: hsl(353, 87%, 50%);
  --red-600: hsl(353, 87%, 60%);
  --bleu-200: hsl(239, 60%, 20%);
  --bleu-300: hsl(239, 60%, 30%);
  --bleu-400: hsl(239, 60%, 40%);
  --bleu-500: hsl(239, 60%, 50%);
  --bleu-600: hsl(239, 60%, 60%);
}

#Services {
  scroll-behavior: smooth;
}

/**
 * Smooth scrolling on the whole document
 */
html {
  scroll-behavior: smooth;
  overflow-x: visible !important;
}

body {
  font-family: "Graphik";
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  background-color: var(--dark-100);
  overflow-x: hidden;
}

.testimonial {
  overflow-x: hidden !important;
}
.testimonial ::-webkit-scrollbar {
  display: none;
}

header {
  background-color: var(--dark-100);
  background-image: url("../assets/header-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.brand {
  width: 130px;
}
.brand img {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 1100px) {
  .brand {
    width: 80px;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (max-width: 840px) {
  .hero h1 {
    line-height: 1.5;
    text-align: center;
  }
}
.hero p {
  margin: 1rem 0;
}
@media screen and (max-width: 840px) {
  .hero p {
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .hero a {
    margin: 0 auto;
  }
}

.link_relative {
  position: relative;
}
.link_relative:hover .dropdown {
  display: block;
}
.link_relative .dropdown {
  display: none;
  position: absolute;
  padding: 0.7rem 0.5rem;
  border-radius: 5px;
  text-transform: uppercase;
  width: 200px;
  background-color: #ffffff;
  transition: all 0.3s;
}
.link_relative .dropdown:hover {
  background-color: #d6d6d6;
}
.link_relative .dropdown a {
  font-size: 0.8rem;
  font-weight: bold;
  color: #212121;
}

.btn-red {
  background-color: var(--red-500);
  transition: all 0.5s ease-in-out;
}

.btn-red:hover {
  background-color: var(--red-600);
}

.btn-blue {
  border: 2px solid var(--bleu-400);
  background-color: var(--bleu-300);
  transition: all 0.5s ease-in-out;
}

.btn-blue:hover {
  border: 2px solid var(--bleu-600);
  background-color: var(--bleu-400);
  box-shadow: 0px 10px 20px rgba(41, 43, 163, 0.235);
}

nav {
  position: relative;
  z-index: 9999;
}

.hero h1 span:not(.sm) {
  color: var(--bleu-600);
  text-decoration: underline;
}
.hero h1 .sm {
  padding: 0.1rem;
  background-color: white;
  font-size: 1rem;
  color: var(--red-500);
}

@media screen and (max-width: 950px) {
  .nav_links .nav_links-menu {
    flex-direction: column;
    text-align: start;
    justify-content: start;
    align-items: start;
    background-color: rgb(41, 41, 88);
    padding: 4rem;
    gap: 4rem;
    position: absolute;
    top: 6rem;
    right: 1.5rem;
    width: 320px;
    box-shadow: 30px 40px 80px rgba(9, 23, 26, 0.1);
  }
}

@media screen and (max-width: 950px) {
  [data-active=false] {
    display: none;
  }
}

@media screen and (max-width: 950px) {
  [data-active=true] {
    display: block;
  }
}

.btn_control {
  cursor: pointer;
  font-size: 1.5rem;
  outline: none;
  border: none;
  background-color: white;
  background-color: transparent;
  position: relative;
  z-index: 999;
  right: -0.5rem;
  color: white;
}
@media screen and (min-width: 950px) {
  .btn_control {
    display: none;
  }
}

@media screen and (max-width: 950px) {
  .nav_button {
    display: none;
  }
}

section {
  padding: 4rem 0;
}

.partenaire {
  padding: 4rem 0;
}
.partenaire .part h2 {
  font-size: 3rem;
  font-weight: 700;
}
.partenaire .part p {
  margin: 4rem 0;
  font-size: 1.2rem;
  width: 60%;
  margin-left: 0;
  line-height: 1.6;
  opacity: 0.7;
}
@media screen and (max-width: 760px) {
  .partenaire .part p {
    width: 100%;
  }
}
.partenaire .part p b {
  font-weight: 900;
}

.img-logo {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 570px) {
  .img-logo {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
}
@media screen and (max-width: 540px) {
  .img-logo {
    display: grid;
    grid-template-columns: 150px 150px;
    gap: 1rem;
    justify-content: center;
  }
}
@media screen and (max-width: 347px) {
  .img-logo {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
}

.logo-image {
  overflow: hidden !important;
  width: 150px;
  height: 80px;
  display: grid;
  border-radius: 5px;
  place-content: center;
  background-color: white;
}
.logo-image img {
  width: 150px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-title h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  text-transform: lowercase;
}
.section-title h2::first-letter {
  text-transform: capitalize;
}
.section-title p {
  opacity: 0.7;
}

.service-card-container {
  position: relative;
  isolation: isolate;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.service-card-container .bg {
  position: absolute;
  top: -9rem;
  z-index: -1;
}
.service-card-container .service-card {
  text-align: center;
}
.service-card-container .service-card .gray {
  background-color: rgba(114, 110, 77, 0.334);
}
.service-card-container .service-card .blue {
  background-color: rgba(104, 138, 202, 0.334);
}
.service-card-container .service-card .red {
  background-color: rgba(200, 101, 101, 0.194);
}
.service-card-container .service-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.service-card-container .service-card .icon img {
  width: 50px;
  height: 50px;
}
.service-card-container .service-card h3 {
  margin: 1rem auto;
  font-size: 2rem;
  font-weight: 600;
}
.service-card-container .service-card h4 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
  color: var(--bleu-600);
}
.service-card-container .service-card p {
  font-weight: normal;
  font-size: 1rem;
  opacity: 0.7;
}

#WhyUS {
  padding: 4rem 0;
  position: relative;
  isolation: isolate;
  background: rgb(35, 35, 85);
  background: linear-gradient(40deg, rgb(35, 35, 85) 0%, rgb(22, 22, 44) 49%, rgb(62, 17, 85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#232355",endColorstr="#3e1155",GradientType=1);
}
#WhyUS .bg {
  position: absolute;
  top: 5rem;
  z-index: -1;
}

.card-text-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}
.card-text-container p {
  display: grid;
  place-content: center;
  text-align: center;
  opacity: 0.8;
  padding: 1rem;
  border-radius: 5px;
  border: 2px solid var(--bleu-500);
  background-color: var(--bleu-200);
}

#About {
  position: relative;
  background-color: var(--dark-100);
  background-image: url("../assets/b1.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
#About .bg {
  position: absolute;
  top: -6rem;
  right: 0;
}
#About .section-title .p {
  flex-wrap: wrap;
  margin: 2rem 0;
}
#About .section-title .p p {
  flex: 1 1 280px;
}
#About .section-title .p p i {
  font-weight: 900;
  opacity: 1 !important;
}
#About .p-bt {
  margin-top: 2rem;
}
#About .p-bt i {
  font-weight: 900;
}

.col {
  display: flex;
  gap: 2rem;
  margin-top: 5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.col .col-1 {
  width: 30%;
}
@media screen and (max-width: 975px) {
  .col .col-1 {
    width: 80%;
  }
}
.col .col-2 {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 975px) {
  .col .col-2 {
    width: 100%;
  }
  .col .col-2 h4 {
    text-align: center !important;
  }
  .col .col-2 p {
    text-align: center !important;
  }
  .col .col-2 .desc {
    width: 80%;
    margin: 0 auto;
  }
  .col .col-2 .desc .social {
    width: 200px;
    margin: 0 auto;
  }
  .col .col-2 .desc p {
    opacity: 0.6;
  }
  .col .col-2 .card-info {
    top: 0;
    left: 0 !important;
    margin: 0 auto;
    width: 80% !important;
  }
}
.col .col-2 h4 {
  font-size: 2rem;
  font-weight: 700;
}
.col .col-2 p:not(.desc p) {
  opacity: 0.8;
  text-transform: uppercase;
}
.col .col-2 .desc {
  margin-top: 2rem;
}
.col .col-2 .desc p {
  font-size: 1rem;
}
.col .col-2 .desc .social {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.col .col-2 .desc .social i {
  display: grid;
  place-content: center;
  font-size: 1.4rem;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--bleu-400);
  background-color: var(--bleu-300);
}
.col .col-2 .card-info {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  margin-top: 2rem;
  position: relative;
  left: -5rem;
  top: 0rem;
  flex-wrap: wrap;
  border-radius: 5px;
  border: 2px solid var(--bleu-500);
  gap: 1rem;
  background-color: var(--bleu-300);
  width: 500px;
}
.col .col-2 .card-info p {
  margin: 0.4rem 0;
  opacity: 1;
  font-size: 0.9rem;
}

.gallery {
  margin-top: 8rem;
  position: relative;
}
.gallery .gallery-image {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 844px) {
  .gallery .gallery-image {
    -moz-columns: 3;
         columns: 3;
  }
}
@media screen and (max-width: 520px) {
  .gallery .gallery-image {
    -moz-columns: 2;
         columns: 2;
  }
}
.gallery .gallery-image div:not(:first-child) {
  margin-top: 1rem;
}

@media screen and (max-width: 400px) {
  .section-title p {
    width: 100% !important;
    font-size: 0.9rem;
  }
}

/*

// testimonial
*/
.testimonial .section-title p {
  text-align: center;
  margin: 4rem 0;
}

.swiper {
  width: 500px;
  min-height: 320px;
  margin: 2rem auto !important;
}
@media screen and (max-width: 630px) {
  .swiper {
    width: 400px;
  }
}
@media screen and (max-width: 530px) {
  .swiper {
    width: 300px;
  }
}
@media screen and (max-width: 430px) {
  .swiper {
    width: 260px;
  }
}
.swiper h4 {
  font-size: 1.4rem;
  font-weight: 700;
}
.swiper p {
  margin: 2rem 0;
}

.swiper-slide {
  padding: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  text-align: center;
  font-size: 1.1rem;
  background-color: var(--bleu-300);
  border: 2px solid var(--bleu-500);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}
.swiper-slide p {
  opacity: 0.8;
}

.img-slider {
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin: 1rem auto;
}
.img-slider img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact .section-title p {
  text-align: center;
  width: 70%;
  margin: 4rem auto;
}
@media screen and (max-width: 600px) {
  .contact .section-title p {
    width: 100%;
  }
}

.form {
  margin-top: 4rem;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .form {
    width: 100%;
  }
}
.form .input_field {
  width: 100%;
  display: block;
  margin: 2rem 0;
}
.form .input_field input,
.form .input_field label,
.form .input_field textarea {
  display: block;
}
.form .input_field input {
  width: 100%;
  height: 3.75rem;
  padding-left: 1rem;
  border-radius: 5px;
  background-color: var(--bleu-400);
  border: none;
  outline: none;
  color: white;
  transition: all 0.5s ease;
  border: 1px solid transparent;
}
.form .input_field input:hover, .form .input_field input:focus-within {
  border: 1px solid var(--bleu-600);
  background-color: var(--bleu-500);
}
.form .input_field ::-moz-placeholder {
  color: white !important;
  opacity: 0.6;
}
.form .input_field ::placeholder {
  color: white !important;
  opacity: 0.6;
}
.form .input_field textarea {
  width: 100%;
  background-color: var(--bleu-400);
  border: none;
  outline: none;
  transition: all 0.5s ease;
  border-radius: 5px;
  padding: 1rem;
  color: white;
  border: 1px solid transparent;
}
.form .input_field textarea:hover, .form .input_field textarea:focus-within {
  border: 1px solid var(--bleu-600);
  background-color: var(--bleu-500);
}
.form button {
  cursor: pointer;
  margin-top: 2rem;
  width: 280px;
  height: 3.75rem;
  background-color: var(--red-400);
  color: white;
  border-radius: 5px;
  outline: none;
  border: none;
  transition: all 0.5s ease;
}
.form button:hover {
  background-color: var(--red-500);
}
@media screen and (max-width: 500px) {
  .form button {
    width: 100%;
  }
}

footer {
  padding: 4rem 0;
  background-color: rgb(7, 7, 26);
}

.foot-col {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .foot-col {
    justify-content: start;
  }
}
.foot-col .foot a {
  display: block;
  margin: 0.5rem 0;
  opacity: 0.7;
}
.foot-col .foot p {
  margin: 0.5rem 0;
  opacity: 0.7;
}
.foot-col .foot h4 {
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 900;
  margin: 2rem 0;
}

.copyright {
  margin-top: 4rem;
  opacity: 0.5;
}

.hidden {
  opacity: 0;
  visibility: 0;
  transform: translateY(20px);
  transition: all 1s ease;
  filter: blur(5px);
}

.show {
  opacity: 1;
  visibility: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: all 1s ease;
}

.hidden:nth-child(2) {
  transition-delay: 0ms;
}

.hidden:nth-child(3) {
  transition-delay: 200ms;
}

.hidden:nth-child(4) {
  transition-delay: 400ms;
}

.hidden:nth-child(5) {
  transition-delay: 600ms;
}

.hidden:nth-child(6) {
  transition-delay: 800ms;
}

.hidden:nth-child(7) {
  transition-delay: 1000ms;
}

.hidden:nth-child(8) {
  transition-delay: 1200ms;
}

.hidden:nth-child(9) {
  transition-delay: 1400ms;
}

.hidden:nth-child(10) {
  transition-delay: 1600ms;
}

.hidden:nth-child(11) {
  transition-delay: 1800ms;
}

.hidden:nth-child(12) {
  transition-delay: 2000ms;
}

.hidden:nth-child(13) {
  transition-delay: 2200ms;
}

.hidden:nth-child(14) {
  transition-delay: 2400ms;
}

.hidden:nth-child(15) {
  transition-delay: 2600ms;
}

.hidden:nth-child(16) {
  transition-delay: 2800ms;
}

.hidden:nth-child(17) {
  transition-delay: 3000ms;
}

.hidden:nth-child(18) {
  transition-delay: 3200ms;
}

.hidden:nth-child(19) {
  transition-delay: 3400ms;
}

.hidden:nth-child(20) {
  transition-delay: 3600ms;
}

.hidden:nth-child(21) {
  transition-delay: 3800ms;
}

.hidden:nth-child(22) {
  transition-delay: 4000ms;
}

.hidden:nth-child(23) {
  transition-delay: 4200ms;
}

.hidden:nth-child(24) {
  transition-delay: 4400ms;
}

.hidden:nth-child(25) {
  transition-delay: 4600ms;
}

.hidden:nth-child(26) {
  transition-delay: 4800ms;
}

.hidden:nth-child(27) {
  transition-delay: 5000ms;
}

.hidden:nth-child(28) {
  transition-delay: 5200ms;
}

.hidden:nth-child(29) {
  transition-delay: 5400ms;
}

.hidden:nth-child(30) {
  transition-delay: 5600ms;
}

.hidden:nth-child(31) {
  transition-delay: 5800ms;
}

.hidden:nth-child(32) {
  transition-delay: 6000ms;
}

.hidden:nth-child(33) {
  transition-delay: 6200ms;
}

.hidden:nth-child(34) {
  transition-delay: 6400ms;
}

.hidden:nth-child(35) {
  transition-delay: 6600ms;
}

.hidden:nth-child(36) {
  transition-delay: 6800ms;
}

.hidden:nth-child(37) {
  transition-delay: 7000ms;
}

.hidden:nth-child(38) {
  transition-delay: 7200ms;
}

.hidden:nth-child(39) {
  transition-delay: 7400ms;
}

.hidden:nth-child(40) {
  transition-delay: 7600ms;
}

.hidden:nth-child(41) {
  transition-delay: 7800ms;
}

@media (prefers-reduced-motion: no-preference) {
  .hidden {
    transition: all 0.5s;
  }
}/*# sourceMappingURL=main.css.map */