body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: "Visby CF";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

* {
  box-sizing: border-box;
  color: var(--txt-black);
}

ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

#selecteur {
  color: var();
}

.ctabtn {
  cursor: pointer !important;
  font-size: 1rem !important;
  font-weight: bold !important;
  overflow: hidden !important;
  transition: background-color 0.3s, color 0.3s;
  padding: 0.9rem 1.8rem !important;
  border-radius: 0.3rem !important;
  background-color: var(--primary) !important;
  color: white !important;
  text-align: center !important;
}

.ctabtn:hover {
  background-color: #fb3a04 !important;
}

:root {
  --primary: #fc6136;
  --primary-tran-: #fe7f5b33;
  --txt-black: #202021;
  --txt-gray: #383330;
  --bColor: #d3d3d3;
}

.b1 {
  background-color: red;
}

.b2 {
  background-color: green;
}

.b3 {
  background-color: blue;
}

.b4 {
  background-color: purple;
}

.b5 {
  background-color: orange;
}

.b1-bor {
  border: 1px solid red;
}

.b2-bor {
  border: 1px solid green;
}

.b3-bor {
  border: 1px solid blue;
}

.b4-bor {
  border: 1px solid purple;
}

.b5-bor {
  border: 1px solid orange;
}

.header {
  color: var(--text);
  padding: 19px 40px 20px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  margin-top: 3px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header .navheader {
  width: 100%;
  height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .navheader nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.header .navheader nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.header .navheader nav ul li :hover {
  color: var(--primary);
}
.header .navheader nav ul li :focus {
  color: var(--primary);
}
.header .navheader nav ul li.active {
  color: gray;
}
.header .navheader nav .active {
  color: var(--primary);
}
.header .navheader nav .btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.header .navheader nav .rdv {
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 45px;
}
.header .navheader nav .langue {
  display: flex;
  justify-content: space-between;
}
.header .navheader nav .langue img {
  height: 18px;
  width: 18px;
}
.header .navheader nav .langue #en {
  padding-left: 2px;
  padding-top: 2px;
}
.header .navheader .logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 150px;
  width: auto;
  transition: all 0.3s ease;
}
.header .navheader .menu-hamburger {
  display: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  right: 0;
}

#header-container.sticky {
  position: fixed; /* Fixes the header to the top */
  top: 0; /* Stick to the top of the viewport */
  left: 0; /* Ensure it's aligned with the left edge */
  z-index: 1000; /* Stays above other content */
  width: 100%; /* Full width of the viewport */
  background-color: #fff; /* Ensure background is white */
}
#header-container.sticky .logo-container {
  height: 120px;
}
#header-container.sticky .menu-hamburger {
  right: 0; /* Always on the right */
}

@media (max-width: 768px) {
  .header {
    padding: 10px;
  }
  .header .navheader .menu-hamburger {
    display: block;
    transform: scale(1.5);
  }
  .header .navheader nav {
    display: none;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease;
    overflow: hidden;
    margin-top: 0.5rem;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
  }
  .header .navheader nav.open {
    max-height: 400px;
  }
  .header .navheader nav ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    list-style: none;
    margin: 0;
  }
  .header .navheader nav ul li {
    padding: 10px 0;
    text-align: center;
  }
  .header .navheader nav ul li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
  }
  .header .navheader nav ul li a:hover {
    color: var(--primary);
  }
  .header .navheader nav .btn {
    margin-top: 20px;
    flex-direction: column;
  }
  .header .logo-container {
    height: 100px;
  }
}
footer.fotter-version-x {
  background-color: #242424;
  padding: 0.8rem;
}
footer.fotter-version-x .partie1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 26px;
  background-color: #1a1a1a;
  border-radius: 5px;
}
footer.fotter-version-x .partie1 .left-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
footer.fotter-version-x .partie1 .left-footer h3,
footer.fotter-version-x .partie1 .left-footer p {
  color: white;
  margin: 0;
}
footer.fotter-version-x .partie1 .left-footer form {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 342px;
  margin-top: 20px;
}
footer.fotter-version-x .partie1 .left-footer form input {
  flex: 1;
  height: 44px;
  background-color: #f4f4f4;
  border-radius: 10px 0 0 10px;
  border: none;
  padding-left: 10px;
}
footer.fotter-version-x .partie1 .left-footer form button {
  cursor: pointer;
  background-color: var(--primary);
  border: none;
  border-radius: 0 10px 10px 0;
  height: 44px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer.fotter-version-x .partie1 .left-footer form button img {
  width: 20px;
  height: 20px;
}
footer.fotter-version-x .partie1 .left-footer .imgIcone {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
footer.fotter-version-x .partie1 .left-footer .imgIcone a {
  margin: 0 10px;
}
footer.fotter-version-x .partie1 .left-footer .imgIcone a img {
  width: 1.5rem;
  height: 1.5rem;
}
footer.fotter-version-x .partie1 .middle-footer,
footer.fotter-version-x .partie1 .right-footer {
  text-align: center;
  margin-top: 20px;
}
footer.fotter-version-x .partie1 .middle-footer .singlePro,
footer.fotter-version-x .partie1 .right-footer .singlePro {
  font-weight: 700;
}
footer.fotter-version-x .partie1 .middle-footer ul,
footer.fotter-version-x .partie1 .right-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.fotter-version-x .partie1 .middle-footer li,
footer.fotter-version-x .partie1 .right-footer li {
  color: white;
  padding: 9px;
}
footer.fotter-version-x .partie1 .middle-footer li a,
footer.fotter-version-x .partie1 .right-footer li a {
  color: inherit;
  text-decoration: none;
}
footer.fotter-version-x .partie1 .middle-footer li a span,
footer.fotter-version-x .partie1 .right-footer li a span {
  color: var(--primary);
  font-weight: 700;
}
footer.fotter-version-x .partie1 .middle-footer li:hover a,
footer.fotter-version-x .partie1 .right-footer li:hover a {
  color: var(--primary);
}
footer.fotter-version-x .partie1-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 1.5rem;
  padding: 10%;
  width: 100%;
}
footer.fotter-version-x .partie1-1 h3 {
  color: #fff;
}
footer.fotter-version-x .partie1-1 ul li {
  color: #fff;
}
footer.fotter-version-x .partie1-1 ul li span {
  color: var(--primary);
}
footer.fotter-version-x .cpr {
  background-color: #1a1a1a;
  border-radius: 5px;
  text-align: center;
  padding: 20px 0;
}
footer.fotter-version-x .cpr p {
  color: white;
  margin: 0;
}
@media (min-width: 768px) {
  footer.fotter-version-x .partie1 {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 26px;
  }
  footer.fotter-version-x .partie1 .left-footer {
    align-items: flex-start;
  }
  footer.fotter-version-x .partie1 .left-footer form {
    flex-direction: row;
    width: auto;
    max-width: none;
  }
  footer.fotter-version-x .partie1 .left-footer form input {
    width: 299px;
  }
  footer.fotter-version-x .partie1 .left-footer form button {
    width: auto;
    padding: 12px 30px;
  }
  footer.fotter-version-x .partie1 .left-footer .imgIcone {
    margin-top: 15px;
    justify-content: flex-start;
  }
  footer.fotter-version-x .partie1 .left-footer .imgIcone a {
    margin: 0 10px;
  }
  footer.fotter-version-x .partie1 .left-footer .imgIcone a img {
    width: 30px;
    height: 30px;
  }
  footer.fotter-version-x .partie1 .middle-footer,
  footer.fotter-version-x .partie1 .right-footer {
    text-align: left;
    margin-top: 0;
  }
  footer.fotter-version-x .partie1-1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10%;
    width: 100%;
  }
  footer.fotter-version-x .partie1-1 div {
    flex: 1;
    padding: 0 10px;
  }
  footer.fotter-version-x .partie1-1 div h3 {
    color: white;
    margin-bottom: 10px;
  }
  footer.fotter-version-x .partie1-1 div ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  footer.fotter-version-x .partie1-1 div ul li {
    color: white;
    padding-bottom: 6px;
  }
  footer.fotter-version-x .partie1-1 div ul li:hover {
    color: var(--primary);
  }
}

main {
  margin: auto;
}

section {
  margin: 0;
  display: block;
}

.wrapper {
  width: 80%;
  margin: auto;
}

.experience-client {
  margin: 0;
  position: relative;
}
.experience-client .image-fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.5) 100%), url("../../../assets/images/singleProjet/Tim/wrapper.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}
.experience-client .container {
  position: relative;
  display: flex;
  justify-content: center;
}
.experience-client .container .img-container {
  display: inline-block;
  max-width: 440.84px;
  height: auto;
  object-fit: cover;
}
.experience-client .container .fond {
  background-color: #ffffff;
  margin: 100px;
}
.experience-client .container .text-container {
  width: 534px;
  margin: 0;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experience-client .container .text-container .titre1 {
  font-weight: 700;
  font-size: 55px;
  line-height: 71.5px;
  color: var(--primary);
}
.experience-client .container .text-container .titre3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 37.44px;
}
.experience-client .container .text-container p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24.96px;
}

.production .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 50px;
}
.production .container .img-container {
  display: inline-block;
  width: 440.84px;
  height: auto;
}
.production .container .text-container {
  width: 534px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.production .container .text-container .titre2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 40.44px;
}
.production .container .text-container p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24.96px;
}

.processus-paiment {
  position: relative;
}
.processus-paiment .image-fond {
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 400.2px;
  clip-path: polygon(0% 0%, 0% 66%, 100% 100%, 100% 33%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.9) 100%), url("../../../assets/images/singleProjet/Tim/wrapper.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}
.processus-paiment .container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
.processus-paiment .container .img-container {
  display: inline-block;
  width: 440.84px;
  height: auto;
}
.processus-paiment .container .text-container {
  width: 534px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.processus-paiment .container .text-container .titre2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 40.44px;
}
.processus-paiment .container .text-container p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24.96px;
}

.mission .container {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.mission .container .titre2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 40.44px;
  text-align: center;
}
.mission .container p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24.96px;
}

.design {
  position: relative;
}
.design .image-fond {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 480.2px;
  clip-path: polygon(100% 0%, 100% 66%, 0% 100%, 0% 33%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 100%), url("../../../assets/images/singleProjet/Tim/wrapper.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}
.design .container {
  position: relative;
  margin-top: 100px;
  margin-bottom: 200px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.design .container .img-container {
  display: inline-block;
  height: auto;
}
.design .container .titre2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 40.44px;
  text-align: center;
}
.design .container p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24.96px;
}

.iconographie-nav .container {
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.iconographie-nav .container .titre2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 40.44px;
}
.iconographie-nav .container p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24.96px;
}

.button-item {
  text-align: center;
  margin-bottom: 50px;
}
.button-item button {
  margin: 0 20px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  padding: 10px 50px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  main {
    margin: auto;
    width: 100%;
  }
  .experience-client .container {
    margin-bottom: 50px;
    flex-direction: column;
    align-items: center;
  }
  .experience-client .container .img-container {
    max-width: 243.5px;
    height: auto;
    margin: 45px 75px;
  }
  .experience-client .container .text-container {
    width: 100%;
    margin-top: 20px;
    padding-top: 30px;
  }
  .experience-client .container .text-container .titre1 {
    font-size: 32px;
    line-height: 41.6px;
  }
  .experience-client .container .text-container .titre3 {
    font-size: 15px;
    line-height: 23.4px;
  }
  .experience-client .container .text-container p {
    font-size: 12px;
    line-height: 21.18px;
  }
  .production .container {
    flex-direction: column;
    margin-bottom: 50px;
    align-items: center;
  }
  .production .container .img-container {
    display: inline-block;
    max-width: 243.5px;
    height: auto;
    margin: 45px 50px;
  }
  .production .container .text-container {
    width: 100%;
    margin-top: 0px;
  }
  .production .container .text-container .titre2 {
    font-size: 24px;
    line-height: 37.44px;
  }
  .production .container .text-container p {
    font-size: 12px;
    line-height: 21.18px;
  }
  .processus-paiment .image-fond {
    top: 175px;
    height: 200.2px;
    clip-path: polygon(100% 0%, 100% 66%, 0% 100%, 0% 33%);
    background-size: contain;
  }
  .processus-paiment .container {
    flex-direction: column;
    margin-top: 0px;
    margin-bottom: 45px;
    align-items: center;
  }
  .processus-paiment .container .img-container {
    display: inline-block;
    max-width: 243.5px;
    height: auto;
    margin: 15px 75px;
  }
  .processus-paiment .container .text-container {
    width: 100%;
    margin-top: 0;
  }
  .processus-paiment .container .text-container .titre2 {
    font-size: 24px;
    line-height: 37.44px;
  }
  .processus-paiment .container .text-container p {
    font-size: 12px;
    line-height: 21.18px;
  }
  .mission .container {
    gap: 15px;
  }
  .mission .container .titre2 {
    font-size: 24px;
    line-height: 37.44px;
  }
  .mission .container p {
    font-size: 12px;
    line-height: 21.18px;
  }
  .design .image-fond {
    top: 200px;
    height: 150.2px;
    clip-path: polygon(0% 0%, 0% 66%, 100% 100%, 100% 33%);
  }
  .design .container {
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 15px;
  }
  .design .container .titre2 {
    font-size: 24px;
    line-height: 37.44px;
    text-align: left;
  }
  .design .container p {
    font-size: 12px;
    line-height: 21.18px;
  }
  .iconographie-nav .container {
    margin: 50px auto;
    gap: 15px;
  }
  .iconographie-nav .container .titre2 {
    font-size: 24px;
    line-height: 37.44px;
  }
  .iconographie-nav .container p {
    font-size: 12px;
    line-height: 21.18px;
  }
  .button-item button {
    margin: 10px 10px;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
  }
}

/*# sourceMappingURL=single-projetct.css.map */
