@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* ul {
  list-style-type: none;
}
* a {
  text-decoration: none;
  color: inherit;
}

body p,
body a,
body span,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Figtree", sans-serif;
}
@media (max-width: 767px) {
  body h2, body p, body ul {
    padding: 20px;
  }
}

.nav {
  background-color: #efeded;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav .nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .nav .nav-container {
    max-width: 100%;
  }
}
.nav .logo img {
  width: 100px;
  height: auto;
}
.nav a {
  font-size: 18px;
}
.nav ul.nav-menu {
  display: flex;
  gap: 10px;
  padding: 20px;
}
.nav ul.nav-menu a {
  letter-spacing: 0.5px;
  font-weight: bold;
  color: black;
  transition: all 0.3s ease-in-out;
}
.nav ul.nav-menu a:hover {
  color: #17d492;
}
@media (max-width: 767px) {
  .nav ul.nav-menu {
    display: none;
  }
}
.nav .btn-cta {
  padding: 10px 20px;
  background: #17d492;
  border: 1px solid #17d492;
  border-radius: 5px;
  color: black;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.nav .btn-cta:hover {
  background-color: #0d7853;
  color: white;
}
@media (max-width: 767px) {
  .nav .btn-cta {
    display: none;
  }
}

header.home {
  height: 70vh;
}
@media (max-width: 767px) {
  header.home {
    height: 50vh;
  }
}
header.home .swiper {
  width: 100%;
  height: 100%;
}
header.home .swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
header.home .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header.home .swiper-slide .text {
  position: relative;
  z-index: 1;
  width: 50%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header.home .swiper-slide .text h2 {
  font-size: 64px;
  line-height: 70px;
  font-weight: bold;
}
@media (max-width: 767px) {
  header.home .swiper-slide .text {
    width: 90%;
    padding: 20px;
  }
  header.home .swiper-slide .text h2 {
    font-size: 44px;
    line-height: 50px;
    font-weight: bold;
  }
}
header.home .swiper-slide-active .text h2 {
  animation: roll-in-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section {
  padding: 80px 0;
  height: auto;
}
@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}
section .section-content {
  width: 1200px;
  margin: 0 auto;
  height: auto;
}
@media (max-width: 767px) {
  section .section-content {
    width: 100vw;
    overflow: hidden;
  }
}
section h2 {
  font-size: 44px;
  line-height: 54px;
  font-weight: bold;
}
section h3 {
  background-color: rgba(0, 0, 0, 0.693);
  color: #17d492;
  padding: 10px 20px;
  font-size: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

section.equipe .section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  section.equipe .section-content {
    flex-direction: column;
    gap: 20px;
  }
}
section.equipe .img,
section.equipe .text {
  width: 50%;
}
@media (max-width: 767px) {
  section.equipe .img,
  section.equipe .text {
    width: 100%;
  }
}
section.equipe .img {
  position: relative;
}
@media (max-width: 767px) {
  section.equipe .img {
    display: flex;
    flex-direction: column;
  }
}
section.equipe .img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.equipe .img .experience {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: #17d492;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  padding: 20px;
  gap: 10px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 4px;
}
@media (max-width: 767px) {
  section.equipe .img .experience {
    position: static;
    transform: translateX(0);
  }
}
section.equipe .img .experience p {
  margin-bottom: 0;
}
section.equipe .img .equipe img {
  max-width: 100%;
  height: auto;
}
section.equipe .text h2 {
  margin-top: 20px;
}
section.equipe .text .btn-cta {
  padding: 10px 20px;
  background: black;
  color: #17d492;
  border-radius: 4px;
  font-weight: bold;
}
@media (max-width: 767px) {
  section.equipe .text .btn-cta {
    margin-left: 20px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}
section.equipe .text ul {
  padding-left: 0;
}
@media (max-width: 767px) {
  section.equipe .text ul {
    padding-left: 20px;
  }
}

section.services {
  background: #efeded;
}
section.services .section-content {
  flex-direction: column;
  align-items: center;
}
section.services .section-content h2 {
  text-align: center;
  margin-bottom: 40px;
}
section.services .section-content .liste-services {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 767px) {
  section.services .section-content .liste-services {
    flex-direction: column;
  }
}
section.services .section-content .liste-services .service {
  position: relative;
  width: 400px;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 767px) {
  section.services .section-content .liste-services .service {
    width: 100vw;
  }
}
section.services .section-content .liste-services .service img {
  position: absolute;
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.services .section-content .liste-services .service .chiffre {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  padding: 20px;
  border-radius: 50%;
  color: #17d492;
  z-index: 2;
  font-size: 24px;
  font-weight: bold;
}
section.services .section-content .liste-services .service .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: black;
  color: #17d492;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
section.services .section-content .liste-services .service .text a {
  border: 1px solid #17d492;
  padding: 10px 20px;
  border-radius: 4px;
  color: #17d492;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
section.services .section-content .liste-services .service .text a:hover {
  background-color: #17d492;
  color: black;
}

section.travail .section-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  section.travail .section-content {
    flex-direction: column;
  }
}
section.travail .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 20px;
}
@media (max-width: 767px) {
  section.travail .text {
    width: 100vw;
  }
}
section.travail .text h3 {
  margin-left: 0;
}
@media (max-width: 767px) {
  section.travail .text h3 {
    margin: 0 auto;
  }
}
section.travail .img {
  width: 60%;
  text-align: center;
}
@media (max-width: 767px) {
  section.travail .img {
    width: 100vw;
  }
}
section.travail .img h4 {
  margin: 20px 0;
}
section.travail .img ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  section.travail .img ul {
    padding-left: 20px;
  }
}
section.travail .img ul li {
  background: black;
  padding: 40px;
  border-radius: 4px;
}
section.travail .img ul li h5 {
  color: #17d492;
}
section.travail .img ul li p {
  color: white;
  line-height: 24px;
  letter-spacing: 1px;
}

section.contact {
  background: #efeded;
}
section.contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.contact form input,
section.contact form textarea {
  padding: 10px;
  border-radius: 4px;
  border: none;
}
section.contact form textarea {
  height: 200px;
}
section.contact form button {
  padding: 10px 20px;
  background: black;
  border: none;
  color: #17d492;
  border-radius: 4px;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease-in-out;
}
section.contact form button:hover {
  background-color: #17d492;
  color: black;
}
@media (max-width: 767px) {
  section.contact form {
    padding: 20px;
  }
}
@keyframes roll-in-left {
  0% {
    transform: translateX(-800px) rotate(-540deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes slide-in-elliptic-top-fwd {
  0% {
    transform: translateY(-600px) rotateX(-30deg) scale(0);
    transform-origin: 50% 100%;
    opacity: 0;
  }
  100% {
    transform: translateY(0) rotateX(0) scale(1);
    transform-origin: 50% 1400px;
    opacity: 1;
  }
}
footer {
  background: black;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
  padding: 40px;
}
@media (max-width: 767px) {
  footer {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  footer .logo {
    text-align: center;
  }
}
footer .logo img {
  width: 300px;
  height: auto;
}
@media (max-width: 767px) {
  footer .logo img {
    width: 80%;
    margin: 0 auto;
  }
}
footer .contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .contact i {
  margin-right: 10px;
}/*# sourceMappingURL=style-theme.css.map */