@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@400;500;700&family=Exo+2:wght@400;500&display=swap");
body {
  overflow-x: hidden;
  width: 100dvw;
  max-width: 100%;
}

.custom-btn {
  background: linear-gradient(45deg, #233E7B, #3a8ca3, #f5d77c);
  color: white;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  border: 2px solid white;
  transition: 0.8s;
  width: 250px;
}
@media screen and (max-width: 768px) {
  .custom-btn {
    width: 180px;
  }
}
.custom-btn:hover {
  transform: scale(1.2);
}

.btn-devis-offre {
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c);
  color: white;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  border: 2px solid white;
  transition: 0.8s;
}

section {
  scroll-margin-top: 100px;
}

h2 {
  font-size: 2rem;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px solid #233E7B;
}
h2 i {
  color: #f5d77c;
  font-size: 40px;
}

h3 {
  font-size: 1.5rem;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  font-style: normal;
}

p {
  font-size: 1rem;
  color: #233E7B;
}

/* Empêche le décalage dû au padding ajouté par Bootstrap */
body.modal-open {
  padding-right: 0 !important;
}

/* Centre correctement le modal et empêche tout dépassement */
.modal-dialog {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 100% !important;
}

/* Largeur réelle du viewport sur Chrome mobile */
@supports (width: 100dvw) {
  .modal {
    width: 100dvw;
    max-width: 100dvw;
    height: 100dvh;
    max-height: 100dvh;
  }
}
/* Footer non masqué par la barre du bas */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .modal-footer {
    padding-bottom: calc(var(--bs-modal-padding) + env(safe-area-inset-bottom));
  }
}
/* Scroll interne propre */
.modal-body {
  overflow-y: auto;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  color: #233E7B;
  margin: 0;
  padding: 0;
}
body header img {
  width: 100px;
  height: auto;
}
body header nav {
  z-index: 2000;
  border-bottom: 1px solid #233E7B;
  width: 100dvw;
  background: #0b1d3a;
  padding: 1rem 0;
}
body header nav button {
  width: auto !important;
}
body header nav .navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}
body header nav .nav-link {
  color: black;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  body header nav .nav-link {
    letter-spacing: 10px;
  }
}
body header nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c);
  transition: width 0.3s ease;
}
body header nav .nav-link:hover::after {
  width: 100%;
}
body header nav .nav-link.active {
  color: #f5d77c;
}
body header nav .nav-link.active::after {
  width: 100%;
}
body header nav .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none !important;
}
body header nav .navbar-toggler:focus {
  box-shadow: none !important;
}
body header nav .navbar-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
body main img {
  border: 2px solid #233E7B;
  border-radius: 10px;
}
body main #hero {
  color: white;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c);
  text-align: center;
  padding: 50px 20px;
  /* Curseur clignotant */
  /* Animation fluide */
}
body main #hero .typing-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  /* largeur max du bloc */
  margin: auto;
  /* centre le bloc */
  text-align: center;
  height: 3rem;
  /* fixe la hauteur du h1 pour éviter tout décalage */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body main #hero .typing-wrapper {
    height: 8rem;
  }
}
body main #hero .typing {
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #fff;
  /* curseur */
  animation: blink 0.7s infinite;
}
@media screen and (max-width: 768px) {
  body main #hero .typing {
    white-space: inherit;
    border-right: none;
    animation: none;
  }
}
body main #hero .ghost {
  visibility: hidden;
  white-space: nowrap;
  display: block;
}
@keyframes blink {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
  100% {
    border-color: transparent;
  }
}
body main #hero .services {
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  line-height: 1.8;
  list-style: none;
  padding: 0;
}
body main #hero .services li {
  margin-bottom: 0.6rem;
}
body main #hero a {
  background: linear-gradient(45deg, #233E7B, #3a8ca3, #f5d77c);
  color: white;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  border: 2px solid white;
  transition: 0.8s;
  width: 250px;
  width: 250px;
}
@media screen and (max-width: 768px) {
  body main #hero a {
    width: 180px;
  }
}
body main #hero a:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 768px) {
  body main #hero a {
    width: 180px;
  }
}
body main #hero p,
body main #hero ul {
  font-size: 1.3rem !important;
  color: white;
}
body main #hero ul {
  font-size: 1.1rem !important;
}
body main #hero #logo {
  width: 290px;
  height: auto;
  border: none;
}
@media screen and (max-width: 768px) {
  body main #hero #logo {
    width: 200px;
  }
}
body main #hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  body main #hero h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  body main #hero h1 {
    font-size: 3.5rem;
  }
}
body main #hero #votreAgence {
  font-size: 24px !important;
}
body main #hero p {
  font-size: 1rem;
}
body main #hero .container.overflow-hidden {
  overflow: hidden;
}
body main #hero .scroll-track {
  flex-wrap: nowrap;
  gap: 30px;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 10s linear infinite;
}
@media screen and (max-width: 768px) {
  body main #hero .scroll-track {
    gap: 60px;
    animation: scroll-left 10s linear infinite;
  }
}
body main #hero .scroll-track i {
  flex-shrink: 0;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body main #agence i {
  color: #f5d77c;
}
body main #agence i:hover {
  transform: scale(1.4);
  transition: 0.5s;
}
body main #agence img {
  width: 55vw;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
@media screen and (max-width: 768px) {
  body main #agence img {
    width: 90vw;
  }
}
@media screen and (max-width: 768px) {
  body main #agence p {
    text-align: center;
    line-height: 40px;
  }
}
body main #agence #paragraphe1 {
  font-size: 20px;
}
body main #agence #paragraphe2 {
  font-size: 18px;
}
body main #agence a {
  background: linear-gradient(45deg, #233E7B, #3a8ca3, #f5d77c);
  color: white;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  border: 2px solid white;
  transition: 0.8s;
  width: 250px;
  width: 250px !important;
}
@media screen and (max-width: 768px) {
  body main #agence a {
    width: 180px;
  }
}
body main #agence a:hover {
  transform: scale(1.2);
}
body main #services {
  /* Sélecteurs pour les flèches prev/next Bootstrap 5 */
}
body main #services ul {
  font-size: 18px;
}
body main #services i {
  color: #f5d77c;
}
body main #services .carousel-control-prev,
body main #services .carousel-control-next {
  filter: none !important;
  /* supprime toute transformation visuelle */
  background-color: transparent !important;
  /* supprime couleur de fond hover */
}
body main #services .carousel-control-prev:hover,
body main #services .carousel-control-next:hover,
body main #services .carousel-control-prev:focus,
body main #services .carousel-control-next:focus {
  background-color: transparent !important;
  /* désactive le hover */
  box-shadow: none !important;
  /* supprime ombre */
  transform: none !important;
  /* supprime zoom ou déplacement */
}
body main #services .carousel-caption {
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c) !important;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  body main #services {
    /* Le carousel occupe la largeur dispo, pas besoin de toucher à la hauteur globale */
  }
  body main #services h3 {
    font-size: 20px;
  }
  body main #services ul {
    margin-bottom: 5px;
    font-size: 13px;
  }
  body main #services #carouselExampleCaptions .carousel-item {
    position: relative;
  }
  body main #services #carouselExampleCaptions .carousel-item img {
    width: 100%;
    /* Format portrait simulé + crop */
    aspect-ratio: 3/4;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
  }
  body main #services #carouselExampleCaptions .carousel-caption {
    position: absolute;
    left: 20px;
    right: 20px;
    padding: 10px 30px;
    /* On se cale sur le tiers bas de l'image */
    bottom: 20px;
    height: auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  body main #services #carouselExampleCaptions .carousel-caption h5,
  body main #services #carouselExampleCaptions .carousel-caption p {
    margin: 0;
  }
}
body main #services p {
  color: white;
}
body main #offres .pack {
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c);
  color: white;
  border-radius: 20px;
}
body main #offres h3 {
  font-size: 2.2rem;
}
body main #offres ul {
  line-height: 35px;
}
body main #offres .hr-white {
  border: none;
  height: 1px;
  /* épaisseur */
  background-color: #fff;
  opacity: 1;
  /* important avec Bootstrap */
  margin: 20px 0;
  /* espace autour */
}
body main #offres ul {
  font-size: 18px;
  color: #233E7B;
}
body main #offres .btn-special {
  color: #fff;
  border: 2px solid #fff;
  font-size: 20px;
  width: 100%;
  transform: none !important;
}
body main #offres .technosPacks i {
  color: #f5d77c;
}
body main #offres #avantages {
  border: 2px solid #233E7B;
  border-radius: 20px;
  background-color: rgb(238, 238, 238);
}
body main #offres #avantages i {
  background: linear-gradient(45deg, #1e4d6e, #3a8ca3, #f5d77c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
body main #offres #avantages h3,
body main #offres #avantages h4 {
  color: #233E7B;
}
body main #offres #avantages h4 {
  font-size: 20px;
}
body main #offres a {
  background: linear-gradient(45deg, #233E7B, #3a8ca3, #f5d77c);
  color: white;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  border: 2px solid white;
  transition: 0.8s;
  width: 250px;
}
@media screen and (max-width: 768px) {
  body main #offres a {
    width: 180px;
  }
}
body main #offres a:hover {
  transform: scale(1.2);
}
body main #valeurs h3 {
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c);
  color: white;
  border-radius: 10px;
  border: 1px solid white;
  width: 25vw;
  margin: auto;
}
@media screen and (max-width: 768px) {
  body main #valeurs h3 {
    width: 70vw;
  }
}
body main #valeurs .zone {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  height: 50vh;
  border: 1px solid #233E7B;
}
body main #valeurs .zone .overlay,
body main #valeurs .zone .texte {
  position: absolute;
  inset: 0;
  transition: 0.5s ease;
}
body main #valeurs .zone .overlay {
  background-color: rgba(11, 29, 58, 0);
}
body main #valeurs .zone .texte {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 30px;
}
@media screen and (max-width: 768px) {
  body main #valeurs .zone .texte {
    font-size: 1.3rem;
    line-height: 3rem;
  }
}
body main #valeurs .zone:hover .overlay {
  background-color: rgba(11, 29, 58, 0.7);
}
body main #valeurs .zone:hover .texte {
  opacity: 1;
}
body main #valeurs #zone1 {
  background-image: url("../images/poignee_mains.webp");
  position: relative;
}
body main #valeurs #zone2 {
  background-image: url("../images/conference.webp");
}
body main #valeurs #zone3 {
  background-image: url("../images/montre_connectee.webp");
}
body main #valeurs #zone4 {
  background-image: url("../images/pouce_leve.webp");
}
body main #valeurs #zone5 {
  background-image: url("../images/ordinateur.webp");
}
body main #valeurs #zone6 {
  background-image: url("../images/performance.webp");
}
body main #realisations .modal {
  height: auto;
}
body main #realisations img {
  width: 95%;
  transform: scale(1);
  transition: 0.4s;
  z-index: 0;
  filter: none;
  border: 2px solid #233E7B;
  border-radius: 10px;
  width: 100%;
  /* Format portrait simulé + crop */
}
@media screen and (max-width: 768px) {
  body main #realisations img {
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
  }
  body main #realisations img:hover {
    transform: scale(1.1);
    transition: 0.6s;
    z-index: 10;
  }
}
body main #realisations h1 {
  justify-content: center !important;
  font-size: 2.6em;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px solid #233E7B;
}
@media screen and (max-width: 767px) {
  body main #realisations h1 {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 1200px) {
  body main #realisations h2 {
    font-size: 1.2rem;
  }
}
body main #realisations ul {
  color: #233E7B;
}
body main #realisations #projets i {
  background: linear-gradient(45deg, #1e4d6e, #3a8ca3, #f5d77c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
body main #realisations #palette {
  color: #f5d77c !important;
}
@media screen and (min-width: 768px) {
  body main #realisations .carousel-indicators {
    width: 50%;
    margin: auto;
  }
}
body main #realisations .modal {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  body main #realisations .modal {
    height: auto;
    margin-top: 20vh;
  }
}
body main #realisations .modal-footer a,
body main #realisations .modal-footer button {
  background: linear-gradient(45deg, #233E7B, #3a8ca3, #f5d77c);
  color: white;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  border: 2px solid white;
  transition: 0.8s;
  width: 250px;
}
@media screen and (max-width: 768px) {
  body main #realisations .modal-footer a,
  body main #realisations .modal-footer button {
    width: 180px;
  }
}
body main #realisations .modal-footer a:hover,
body main #realisations .modal-footer button:hover {
  transform: scale(1.2);
}
body main #realisations ul {
  list-style: square;
}
body main #realisations #boutonContact {
  background: linear-gradient(45deg, #233E7B, #3a8ca3, #f5d77c);
  color: white;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  border: 2px solid white;
  transition: 0.8s;
  width: 250px;
  font-size: 22px;
  width: 280px !important;
}
@media screen and (max-width: 768px) {
  body main #realisations #boutonContact {
    width: 180px;
  }
}
body main #realisations #boutonContact:hover {
  transform: scale(1.2);
}
body main #photoProfil {
  width: 70vw;
  height: auto;
  filter: contrast(1.2);
}
@media screen and (max-width: 1024px) {
  body main #photoProfil {
    width: 100dvw;
    height: 50vh;
    /* Format portrait simulé + crop */
    aspect-ratio: 3/4;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transform: scale(1.1);
  }
}
body main #profil {
  position: absolute;
  right: 3vw;
  border-radius: 20px;
  color: white;
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c);
}
@media screen and (max-width: 1200px) {
  body main #profil {
    position: relative;
    right: 0vw;
    width: 100dvw;
    border-radius: 0px;
  }
}
body main #profil h3 {
  font-size: 2.4em;
}
body main #profil p {
  color: white;
}
body main #carriere img {
  border: none;
  width: 4vw;
  border-radius: 0px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  body main #carriere img {
    width: 25vw;
    height: auto;
    margin: 20px auto;
  }
}
@media screen and (max-width: 768px) {
  body main #carriere #logosEntreprises i {
    transform: rotate(90deg);
  }
}
body main #carriere .zoom-img {
  transition: transform 0.8s ease;
}
body main #carriere .zoom-img:hover {
  transform: scale(2);
}
body main #numbers {
  color: #f5d77c;
  font-size: 400%;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 500;
}
body main #numbers .number {
  text-shadow: -1px 0 #233E7B, 0 1px #233E7B, 1px 0 #233E7B, 0 -1px #233E7B;
}
body main #numbers p {
  font-size: 20px;
  font-family: "Exo 2";
}
body main #contact {
  background-image: url(../images/terre.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
}
@media screen and (max-width: 768px) {
  body main #contact {
    background-attachment: scroll;
  }
}
body main #contact p {
  color: white;
  font-size: 21px;
}
body main #contact h2 {
  border-bottom: 1px solid white;
}
body main #contact #formContainer {
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c);
  border-radius: 10px;
  max-width: 800px;
}
body main #contact label {
  font-weight: bold;
}
body main #contact #envoyer {
  background: linear-gradient(45deg, #233E7B, #3a8ca3, #f5d77c);
  color: white;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  border: 2px solid white;
  transition: 0.8s;
  width: 250px;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  body main #contact #envoyer {
    width: 180px;
  }
}
body main #contact #envoyer:hover {
  transform: scale(1.2);
}
body main #contact #confirmation {
  border-radius: 20px;
}
body footer {
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c);
  color: white;
}
body footer img {
  width: 17vw;
}
@media screen and (max-width: 768px) {
  body footer img {
    width: 50vw;
  }
}
body footer i {
  transition: 1.5s;
}
body footer i:hover {
  transform: translateX(100px) translateY(-100px);
  transition: 1.5s;
}
body footer .nav-link {
  margin-top: 20px;
}
body footer .modal-header {
  background: linear-gradient(45deg, #0b1d3a, #1e4d6e, #0E518A, #3a8ca3, #f5d77c);
}
body footer h3 {
  margin-top: 25px;
}
body footer #fermer {
  background: linear-gradient(45deg, #233E7B, #3a8ca3, #f5d77c);
  color: white;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: 700;
  border: 2px solid white;
  transition: 0.8s;
  width: 250px;
}
@media screen and (max-width: 768px) {
  body footer #fermer {
    width: 180px;
  }
}
body footer #fermer:hover {
  transform: scale(1.2);
}/*# sourceMappingURL=style.css.map */