:root {
  --white-100: #ffffff;
  --dark-100: #212121;
  --red-500: #922529;
  --red-600: #b24f52;
  --green-500: #008c51;
  --green-600: #1fa56d;
}

#Services {
  scroll-behavior: smooth;
}

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

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

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

.brand {
  width: 180px;
}
@media screen and (max-width: 1100px) {
  .brand {
    width: 90px;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  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;
  }
}

.bold {
  font-weight: 900 !important;
  text-transform: uppercase;
}

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

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

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

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

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

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

@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(255, 255, 255);
    padding: 4rem;
    gap: 4rem;
    position: absolute;
    top: 6rem;
    right: 1.5rem;
    width: 320px;
    box-shadow: 30px 40px 80px rgba(33, 33, 33, 0.286);
  }
}

@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: rgb(23, 23, 23);
  background-color: transparent;
  position: relative;
  z-index: 999;
  right: -0.5rem;
  color: rgb(30, 30, 30);
}
@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;
}

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

.border {
  border-bottom: 10px solid rgba(35, 102, 37, 0.166);
}

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

#Services {
  background-color: rgba(214, 214, 214, 0.232);
}

.service-card-container {
  position: relative;
  isolation: isolate;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  gap: 2rem;
}
.service-card-container .bg {
  position: absolute;
  top: -9rem;
  z-index: -1;
}
.service-card-container .service-card {
  padding: 2rem;
  text-align: start;
  border-radius: 5px;
  box-shadow: 0px 10px 20px rgba(158, 159, 241, 0.23);
  background-color: var(--white-100);
}
.service-card-container .service-card .icon img {
  width: 60px;
  height: 60px;
}
.service-card-container .service-card h3 {
  margin: 2rem auto 1rem auto;
  font-size: 1.5rem;
  font-weight: 600;
}
.service-card-container .service-card h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
  color: var(--green-500);
}
.service-card-container .service-card p {
  padding: 2rem 0;
  font-weight: normal;
  font-size: 1rem;
  opacity: 0.7;
}
.service-card-container .service-card .line {
  margin-top: 2rem;
}

#WhyUS {
  padding: 4rem 0;
}

.card-text-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
  gap: 1rem;
  margin-top: 4rem;
}
.card-text-container p {
  display: grid;
  place-content: center;
  text-align: start;
  opacity: 0.8;
  padding: 4rem 2rem;
  border-radius: 5px;
  border: 2px solid rgba(204, 204, 204, 0.2352941176);
  box-shadow: 0px 10px 20px rgba(158, 159, 241, 0.23);
}

#About {
  background-color: rgba(203, 255, 198, 0.362);
}
#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(--green-500);
  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: 600px;
  height: 500px;
  padding: 0 2rem;
  margin: 2rem auto !important;
}
@media screen and (max-width: 630px) {
  .swiper {
    width: 100% !important;
    min-height: 300px !important;
  }
}
@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 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  text-align: center;
  font-size: 1.1rem;
  background-color: var(--green-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;
}

footer {
  padding: 4rem 0;
  color: #ffffff;
  background-color: #212121;
}

.foot-col {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
@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;
}

#Contact {
  color: white;
  background-color: #212121;
}
#Contact .contact-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
#Contact .contact-info .infos {
  display: flex;
  gap: 1rem;
  align-items: center;
}
#Contact .contact-info .infos i {
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: var(--green-500);
  color: white;
}
#Contact .contact-info .infos p {
  opacity: 0.7;
}

.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 */