@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Henny+Penny&family=Inter&display=swap");
.contactBtn, .introBtn {
  background-color: #1264d3;
  color: white;
  font-size: 23px;
  border-radius: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
.contactBtn:hover, .introBtn:hover {
  background-color: #0f4a9b;
  color: white;
  border-color: #0f4a9b;
}
.contactBtn:focus, .introBtn:focus {
  background-color: #0f4a9b;
  color: white;
  border-color: #0f4a9b;
}

.price__btn, .needCard__link {
  text-decoration: none;
  color: #1264d3;
  font-size: 20px;
  font-weight: 600;
}
.price__btn:hover, .needCard__link:hover {
  color: #0f4a9b;
  text-decoration: underline;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body {
  background-color: #495560;
  font-family: "Poppins", sans-serif;
  color: rgb(25, 25, 25);
  font-size: 18px;
}

main {
  background-color: white;
}

h1 {
  display: none;
}

h2 {
  font-size: 38px;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
  animation-duration: 5s;
  animation-name: slidein2;
}

h3 {
  font-size: 35px;
  font-weight: 600;
  color: #1053ac;
  font-family: "Work Sans", sans-serif;
}

h4 {
  font-size: 24px;
  font-weight: 600;
  color: rgb(25, 25, 25);
  font-family: "Manrope", sans-serif;
}

h5 {
  font-style: italic;
  color: #495560;
  font-size: 18px;
}

span {
  font-weight: 500;
  font-size: 18px;
  color: rgb(25, 25, 25);
}

.line__horizontal {
  border-bottom: 1px solid #aeafb1;
  width: 50%;
  margin: 50px;
}

.socialNetwork__icon li {
  display: inline-block;
  margin: 0 10px;
  margin: 10px;
}

.animationLeft {
  animation-duration: 4s;
  animation-name: slidein;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 60%;
  }
  to {
    margin-left: 0%;
    width: 60%;
  }
}
.animationOpacity {
  animation-duration: 2s;
  animation-name: slidein2;
}

@keyframes slidein2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animationRight {
  animation-duration: 4s;
  animation-name: slidein3;
}

@keyframes slidein3 {
  from {
    margin-right: 100%;
    display: contents;
  }
  to {
    margin-right: 0%;
  }
}
header {
  background-color: #495560;
}

.navBtnInstall {
  color: rgb(25, 25, 25);
  border-radius: 5px;
  width: 250px;
  font-size: 20px;
  margin: 10px;
}
.navBtnInstall:hover {
  background-color: #495560;
}

.navbar__bg {
  background-color: #495560;
}

.navbarResponsive__bg {
  background-color: #495560;
  width: 100%;
}

.logo {
  width: 45%;
}

a {
  text-decoration: none;
}

.menuNav__link {
  position: relative;
  display: inline-block;
  margin: 10px;
  display: flex;
  align-items: baseline;
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #edeff3;
  transition: color 0.3s; /* Transition de la couleur pour un effet de fondu en survol */
}

.menuNav__link::before {
  content: "";
  position: absolute;
  bottom: -2px; /* Ajuster la distance de la bordure par rapport au texte */
  left: 0;
  right: 0;
  height: 2px; /* Hauteur de la bordure */
  background-color: rgb(25, 25, 25);
  transform: scaleX(0); /* Initialement, la bordure est cachée */
  transform-origin: left; /* L'origine de la transformation est à gauche */
  transition: transform 0.3s; /* Transition de l'effet d'extension */
}

.menuNav__link:hover {
  color: rgb(25, 25, 25);
  font-weight: 600;
}

.menuNav__link:hover::before {
  transform: scaleX(1); /* Lors du survol, étendre la bordure pour qu'elle soit visible */
}

.menuNav__link_active {
  border-bottom: 2px solid black;
  color: rgb(25, 25, 25);
  font-weight: 600;
}

.modal__bg {
  background-color: rgb(25, 25, 25);
  color: #aeafb1;
}

.modalTitle {
  color: #c1d7ff;
}

.modalText {
  color: #c1d7ff;
  font-size: 22px;
}

footer {
  background-color: #edeff3;
}

.footerLogo {
  width: 45%;
  margin-bottom: 20px;
}

.footerLine__vertical {
  border-right: 1px solid #aeafb1;
}

.footerList__link {
  text-decoration: none;
  color: #495560;
  font-family: "Work Sans", sans-serif;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
}
.footerList__link:hover {
  color: #495560;
  text-decoration: underline;
}

.footerPresentation__color {
  color: #edeff3;
  background-color: rgb(25, 25, 25);
}

.addressInfo__item {
  margin-bottom: 0;
  font-style: normal;
  text-decoration: none;
}

address a {
  color: #495560;
}

address a:hover {
  color: #1053ac;
}

address p {
  font-size: 16px;
  margin-bottom: 2px;
  color: #495560;
}

.footerIcon {
  width: 30px;
  height: 30px;
  margin: 10px;
}

@media (max-width: 992px) {
  footer {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#introSection {
  padding: 50px;
  padding-top: 100px;
  margin-top: 115px;
  padding-bottom: 100px;
  color: rgb(25, 25, 25);
  background: linear-gradient(#495560, #c1d7ff 77%, white);
}

.introTitle_text {
  font-size: 23px;
  font-family: "Manrope", sans-serif;
}

.introImg {
  width: 60%;
}

.introText {
  font-size: 22px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  #introSection {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .introBtn {
    width: 100%;
  }
}
#partenerSection {
  padding: 50px;
  background-color: #DDCCD8;
  padding-top: 100px;
  padding-bottom: 100px;
}

.partner__img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px;
  max-width: 230px;
}

@media (max-width: 992px) {
  #partenerSection {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#needSection {
  background-color: white;
  padding: 50px;
  padding-bottom: 100px;
}

.need__card {
  border: none;
}

@media (max-width: 992px) {
  #needSection {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#skillsSection {
  padding: 50px;
  padding-top: 150px;
  padding-bottom: 100px;
}

.descriptionCard__img {
  max-width: 110px;
  padding: 10px;
}

.descriptionCard__border {
  border: none;
  background: none;
}

.descriptionCard__title {
  font-size: 20px;
  color: #495560;
}

@media (max-width: 992px) {
  #skillsSection {
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#presentationSection {
  background-image: url(../img/wave-solution.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.presentationPeople__bloc {
  margin-top: 100px;
  margin-bottom: 150px;
}

.side {
  position: absolute;
  width: 50vw;
  top: 0;
  bottom: 0;
  margin-top: 200px;
  z-index: 10;
}
.side.left {
  left: 0;
}
.side.left:hover ~ .wrapper .front {
  transform: matrix3d(0.94, 0, 0.34, -0.0002, 0, 1, 0, 0, -0.34, 0, 0.94, 0, 1, 0, 10, 1) translateX(-10px);
}
.side.left:hover ~ .wrapper .back {
  transform: matrix3d(0.94, 0, 0.34, -0.00025, 0, 1, 0, 0, -0.34, 0, 0.94, 0, 1, 0, 10, 1) translateX(30px);
}
.side.right {
  right: 0;
}
.side.right:hover ~ .wrapper .front {
  transform: matrix3d(0.94, 0, 0.34, 0.0002, 0, 1, 0, 0, -0.34, 0, 0.94, 0, 1, 0, 10, 1) translateX(30px);
}
.side.right:hover ~ .wrapper .back {
  transform: matrix3d(0.94, 0, 0.34, 0.0005, 0, 1, 0, 0, -0.34, 0, 0.94, 0, 1, 0, 10, 1.1) translateX(-100px);
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.front {
  margin-right: 50px;
  z-index: 1;
}

.back {
  margin-left: 100px;
  margin-top: -150px;
  background-position: bottom;
}

#priceSection {
  background-image: url(../img/wave-price.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
  padding: 50px;
}

td, th {
  text-align: center;
}

.priceNumber {
  font-size: 27px;
  color: rgb(25, 25, 25);
  font-weight: 500;
}

.priceTable {
  padding-top: 200px;
}

.priceTable__title {
  font-size: 25px;
  font-weight: 600;
  color: rgb(25, 25, 25);
  font-family: "Manrope", sans-serif;
}

.priceTableResponsive__title {
  text-decoration: underline;
  margin-bottom: 20px;
  margin-top: 150px;
  text-align: center;
}

#teamSection {
  background: linear-gradient(rgba(25, 25, 25, 0.85), rgba(25, 25, 25, 0.85)), url(../img/img-bg-team.jpg) no-repeat;
  color: white;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  background-size: cover;
  background-attachment: fixed;
}

.budgetText {
  font-size: 22px;
  font-family: "Work Sans", sans-serif;
}

@media (max-width: 992px) {
  #teamSection {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#contactSection {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgb(25, 25, 25);
  font-size: 20px;
  font-family: "Manrope", sans-serif;
}

#form {
  border: 1px solid rgb(25, 25, 25);
  padding: 20px;
  border-radius: 5px;
  background-color: rgb(25, 25, 25);
  color: #edeff3;
}

textarea {
  min-height: 300px;
}

.input-control {
  display: flex;
  flex-direction: column;
}

.input-control input {
  border: 2px solid #edeff3;
  border-radius: 4px;
  display: block;
  font-size: 12px;
  padding: 10px;
  width: 100%;
  background-color: #edeff3;
  color: rgb(25, 25, 25);
}

.input-control textarea {
  border: 2px solid #edeff3;
  border-radius: 4px;
  display: block;
  font-size: 12px;
  padding: 10px;
  width: 100%;
  background-color: #edeff3;
  color: rgb(25, 25, 25);
}

.input-control input:focus {
  outline: 0;
}

.input-control textarea:focus {
  outline: 0;
}

.input-control.success input {
  border: 3px solid green;
}

.input-control.success textarea {
  border: 3px solid green;
}

.input-control.error input {
  border: 3px solid red;
}

.input-control.error textarea {
  border: 3px solid red;
}

.input-control .errorMessage {
  color: red;
  font-size: 12px;
  height: 13px;
}

form span {
  color: #1264d3;
}

.input-control input:focus {
  background-color: #c9d5e5;
  border: 2px solid #edeff3;
}

.input-control textarea:focus {
  background-color: #c9d5e5;
  border: 2px solid #edeff3;
}

.input-control input:hover {
  background-color: #c9d5e5;
  border: 2px solid #edeff3;
}

.input-control textarea:hover {
  background-color: #c9d5e5;
  border: 2px solid #edeff3;
}

.input-control select {
  background-color: #edeff3;
}

.input-control select:focus {
  background-color: #c9d5e5;
  border: 2px solid #edeff3;
}

.input-control select:hover {
  background-color: #c9d5e5;
  border: 2px solid #edeff3;
}

#confirmationSection {
  background-color: rgb(25, 25, 25);
  color: #aeafb1;
}

.confirmation__img {
  width: 40%;
}

#budgetSection {
  background: linear-gradient(rgba(25, 25, 25, 0.85), rgba(25, 25, 25, 0.85)), url(../img/img-bg-budget.jpg) no-repeat;
  color: white;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 50px;
  background-size: cover;
  background-attachment: fixed;
}

.budgetText {
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
}

@media (max-width: 992px) {
  #budgetSection {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#teamProfileSection {
  padding: 50px;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #DDCCD8;
}

.teamCard {
  border: none;
  position: relative;
  background-color: #DDCCD8;
}

.teamCard:hover .teamCard__overlay {
  opacity: 1;
}

.teamCard__img {
  width: 200px;
  clip-path: ellipse(50% 50%);
  display: block;
  cursor: pointer;
}

.teamCard__overlay {
  position: absolute;
  height: 200px;
  width: 200px;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(73, 85, 96, 0.7019607843);
  clip-path: ellipse(50% 50%);
}

.teamProfile_link {
  position: relative;
  display: inline-block; /* Ou tout autre style de mise en page souhaité */
  border-radius: 50%;
  border: 2px solid black;
}

/* Image de fond */
.teamProfile_link img:first-child {
  display: block;
  width: 200px; /* Ajustez la largeur selon vos besoins */
  height: auto; /* La hauteur est ajustée proportionnellement */
}

/* Image superposée (masquée par défaut) */
.teamProfile_link .teamlogoLinkedin__overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* L'image superposée est masquée par défaut */
  width: 200px; /* Ajustez la largeur selon vos besoins, doit être identique à l'image de fond */
  height: auto; /* La hauteur est ajustée proportionnellement */
  transition: opacity 0.3s ease; /* Transition fluide pour l'effet d'hover */
  background-color: rgba(0, 0, 0, 0.344);
  clip-path: ellipse(50% 50%);
  padding: 40px;
}

/* Effet d'hover pour l'image container */
.teamProfile_link:hover .teamlogoLinkedin__overlay {
  opacity: 1; /* L'image superposée devient complètement visible au survol */
}

@media (max-width: 992px) {
  #teamProfileSection {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .line__horizontal {
    width: 75%;
    margin: 10px;
  }
}
#realisationIntroSection {
  background-color: white;
  padding-top: 150px;
  padding-left: 50px;
  padding-right: 50px;
}

#realisationSection {
  padding: 50px;
  padding-top: 150px;
  padding-bottom: 100px;
  background-image: url(../img/wave-solution.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.realisation_img {
  height: 200px;
  width: 100%;
  transition: transform 0.5s;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 5px 6px 10px #353434;
}
.realisation_img:hover {
  -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Safari 3-8 */
  transform: scale(1.2);
}
.realisation_img:focus {
  border: none;
}

.realisationImg_btn {
  padding: 0px;
  width: 100%;
}

.modal-content {
  background: none;
  border: none;
}

.modal-body {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.modal-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.realisationModal_img {
  border-radius: 5px;
}

@media (max-width: 768px) {
  .realisationImg_btn {
    width: 100%;
  }
  #realisationSection {
    background-color: #bdd2f9;
    padding-top: 50px;
  }
  #realisationIntroSection {
    padding-bottom: 50px;
    padding-top: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }
  #realisationSection {
    padding-bottom: 50px;
    padding-top: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .realisationImg_btn {
    width: 60%;
  }
  #realisationSection {
    background-color: #bdd2f9;
    padding-top: 50px;
  }
  #realisationIntroSection {
    padding-bottom: 50px;
    padding-top: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }
  #realisationSection {
    padding-bottom: 50px;
    padding-top: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }
}/*# sourceMappingURL=style.css.map */