<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay .modal {
  background-color: white;
  position: relative;
  padding: 16px;
  background-color: #272343;
  border-radius: 10px;
  color: white;
  text-align: center;
  max-width: 80%;
}
.overlay .modal .modal-img {
  text-align: left;
}
.overlay .modal .modal-content input {
  padding: 10px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 4px;
  border: none;
}
.overlay .modal .col-input {
  display: flex;
  gap: 20px;
}
.overlay .modal .col-input .input {
  width: 100%;
}
.overlay .modal label {
  text-align: left;
  margin-bottom: 10px;
  display: block;
}
.overlay .modal .btn-close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
}
.overlay .modal .btn-download {
  width: 100%;
  border-radius: 4px;
  background-color: #ffd803;
  border: none;
  color: #272343;
  padding: 10px;
  font-size: 16px;
}
.overlay .modal .wrap-modal.hide {
  display: none;
}
.overlay .modal .modal-confirmation {
  display: none;
}
.overlay .modal .modal-confirmation.active {
  display: block;
}
.overlay .modal .modal-confirmation a {
  color: #ffd803;
  text-decoration: underline;
}

.desktop {
  display: flex;
  justify-content: space-between;
  padding: 20px 100px;
  background-color: #272343;
}
@media (max-width: 1200px) {
  .desktop {
    padding: 20px 60px !important;
  }
}
@media (max-width: 800px) {
  .desktop {
    display: none;
  }
}
.desktop ul {
  display: flex;
  margin: 0;
  padding-top: 0;
  align-items: center;
}
.desktop ul li {
  list-style: none;
  margin-left: 20px;
  font-size: 18px;
}
.desktop .logo {
  color: #3edbf0;
}
.desktop img {
  height: 60px;
}
.desktop a {
  text-decoration: none;
  color: white;
}
.desktop a:hover {
  color: #ffd803;
}

.mobile {
  display: none;
  padding: 20px;
  background-color: #272343;
}
@media (max-width: 800px) {
  .mobile {
    display: block;
  }
}
.mobile .content-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 60px;
}
.mobile .content-nav img {
  height: 60px;
}
.mobile .content-nav span i {
  font-size: 30px;
  cursor: pointer;
  color: #ffd803;
}

li span.btn-contact {
  background-color: #ffd803;
  padding: 10px 20px;
  border-radius: 5px;
  color: #272343;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
li span.btn-contact:hover {
  background-color: #ffd803;
  color: #272343;
}

.nav-dropdown {
  background-color: #272343;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  display: none;
}
.nav-dropdown.active {
  display: block;
}
.nav-dropdown ul {
  list-style: none;
}
.nav-dropdown ul li {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.nav-dropdown ul li a {
  text-decoration: none;
  color: white;
}
.nav-dropdown ul li a.btn-contact {
  color: #2d334a;
}
.nav-dropdown ul li .small {
  color: white;
}
.nav-dropdown .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  color: white;
}

.presentation {
  padding: 30px 100px;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}
.presentation img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
@media (max-width: 800px) {
  .presentation {
    display: block;
    padding: 20px;
  }
  .presentation img {
    display: none;
  }
  .presentation .desc {
    margin-right: 0 !important;
    margin-bottom: 30px;
  }
}
.presentation .desc {
  margin-right: 30px;
}
.presentation .desc h1 {
  font-size: 30px;
}
.presentation .desc p {
  font-size: 20px;
  line-height: 34px;
}
.presentation .desc .btn {
  font-size: 20px;
}

#services {
  background-color: #272343;
  overflow: hidden;
  padding: 20px 100px;
}
#services h2 {
  text-align: center;
  color: white;
}
#services .cards {
  text-align: center;
  max-width: 1100px;
  margin: auto;
}
#services .cards .card {
  margin: 20px;
  border-radius: 4px;
  color: white;
}
@media (max-width: 767px) {
  #services .cards .card {
    margin: 0px;
  }
}
#services .cards .card .content-img {
  text-align: center;
}
#services .cards .card .content-img img {
  width: 300px;
}
@media (max-width: 767px) {
  #services .cards .card .content-img img {
    width: 100%;
  }
}
#services .cards .card p {
  padding: 20px;
}
@media (max-width: 767px) {
  #services .cards .card p {
    padding: 20px 0;
    text-align: center;
  }
}
@media (max-width: 800px) {
  #services .cards {
    display: block;
    margin: 0 0px;
  }
}
@media (max-width: 800px) {
  #services {
    padding: 20px !important;
  }
}

.banner {
  background-color: #ffd803;
  padding: 10px;
  font-size: 80px;
  text-align: center;
  font-weight: 300;
}
.banner .title-1 {
  white-space: nowrap;
  animation: scrollRightText 20s linear infinite;
  transform: translateX(100%);
}
.banner .title-2 {
  white-space: nowrap;
  animation: scrollLeftText 20s linear infinite;
  transform: translateX(100%);
}

.projects {
  padding: 20px 100px;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 800px) {
  .projects {
    padding: 20px !important;
  }
}
.projects .content-project {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .projects .content-project {
    display: block;
  }
}
.projects .content-project .project img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  filter: brightness(0.5);
  object-fit: cover;
}
@media (max-width: 800px) {
  .projects .content-project .project img {
    height: 200px;
  }
}
.projects .content-project .project p {
  font-weight: 500;
  display: inline-block;
  border-bottom: 1px solid #272343;
  padding-bottom: 8px;
}

@keyframes scrollLeftText {
  0% {
    transform: translateX(100%); /* Départ à droite du conteneur */
  }
  100% {
    transform: translateX(-100%); /* Arrivée à gauche du conteneur */
  }
}
@keyframes scrollRightText {
  0% {
    transform: translateX(-100%); /* Départ à droite du conteneur */
  }
  100% {
    transform: translateX(100%); /* Arrivée à gauche du conteneur */
  }
}
#why-are-we {
  padding: 60px 100px;
  background-color: #ffd803;
  color: #272343;
  text-align: center;
}
@media (max-width: 800px) {
  #why-are-we {
    display: block;
  }
  #why-are-we .content-img {
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  #why-are-we {
    padding: 20px !important;
  }
}
#why-are-we .content-img {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 767px) {
  #why-are-we .content-img {
    display: block;
  }
}
#why-are-we .content-img img {
  width: 100%;
  max-height: 500px;
  border-radius: 10px;
}
#why-are-we .content-img .info-people {
  margin: 16px 0;
}
#why-are-we .desc {
  max-width: 1100px;
  margin: auto;
}
#why-are-we .desc p {
  line-height: 32px;
  font-size: 20px;
}

.section-reviews {
  padding: 40px 100px;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .section-reviews {
    padding: 40px 20px;
  }
}
.section-reviews .list-reviews {
  position: relative;
  overflow: hidden;
}
.section-reviews .list-reviews .review {
  text-align: center;
  display: none;
}
.section-reviews .list-reviews .review.active {
  display: block;
}
.section-reviews .list-reviews .review .author {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.section-reviews .list-reviews .review img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.section-reviews .list-reviews .review h3 {
  display: inline-block;
}
.section-reviews .list-reviews .content-next-previous {
  position: absolute;
  bottom: 0px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .section-reviews .list-reviews .content-next-previous {
    justify-content: space-between;
  }
}
.section-reviews .list-reviews .content-next-previous button {
  background-color: #272343;
  border-color: #272343;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
}

#contact {
  background-color: #272343;
  color: white;
  padding: 30px 100px 2px;
  text-align: center;
}
@media (max-width: 800px) {
  #contact {
    display: block;
    padding: 20px;
  }
  #contact .row {
    display: block !important;
    margin-top: 0 !important;
  }
  #contact .row .col .content-input {
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
}
#contact .success {
  color: #50CB93;
  text-align: center;
  font-size: 18px;
}
#contact .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}
#contact .row.second {
  grid-template-columns: 2fr 1fr;
}
#contact .row .col {
  overflow: hidden;
}
#contact .row .col .content-input {
  margin-right: 20px;
  overflow: hidden;
}
#contact .row .col:last-child .content-input {
  margin-right: 0;
}
#contact .row .col input {
  background-color: #fffffe;
  line-height: 48px;
  padding: 0 16px;
  width: 100%;
  border: none;
}
#contact .row .col button {
  line-height: 48px;
  border: none;
  background-color: #ffd803;
  color: #272343;
  font-weight: 600;
  width: 100%;
  padding: 0;
  cursor: pointer;
}
#contact .row .col button:hover {
  opacity: 0.7;
}

@media (max-width: 800px) {
  .content-img {
    text-align: center;
  }
  .content-img img {
    max-width: 300px;
  }
  .content-btn {
    text-align: center;
  }
}
@media (min-width: 800px) and (max-width: 1200px) {
  section {
    padding: 20px 60px !important;
  }
}
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

main {
  background-color: #fffffe;
  color: #2d334a;
  overflow: hidden;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  color: #3edbf0;
}

.btn {
  background-color: #ffd803;
  border: none;
  border-style: none;
  padding: 0 32px;
  border-radius: 4px;
  line-height: 48px;
}
.btn:hover {
  opacity: 0.8;
}

button {
  cursor: pointer;
}

.center {
  text-align: center;
}

footer {
  background-color: #272343;
  color: white;
  text-align: center;
  overflow: hidden;
  line-height: 60px;
}
footer a {
  color: #ffd803;
  margin-left: 5px;
}

a {
  text-decoration: none;
  color: #272343;
}

.btn-open-modal {
  cursor: pointer;
  color: white;
}
.btn-open-modal:hover {
  color: #ffd803;
}
.btn-open-modal.small {
  color: #2d334a;
}

/*# sourceMappingURL=main.css.map */
</pre></body></html>