@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background-color: #faf7f6;
  font-family: "Inter";
}

section {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

header {
  position: fixed;
  width: 100%;
  background-color: #faf7f6;
  z-index: 2;
}
header nav {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  align-items: center;
}
header nav ul {
  display: flex;
  gap: 20px;
  margin-top: auto;
  margin-bottom: auto;
  align-items: center;
  font-style: normal;
  font-size: 14px;
}
@media (max-width: 1180px) {
  header nav ul {
    gap: 0px;
  }
}
@media (max-width: 1100px) {
  header nav ul {
    font-size: 14px;
  }
}
header nav li {
  list-style: none;
  border-radius: 80px;
  padding: 14px 40px;
  cursor: pointer;
}
header nav li a {
  list-style: none;
  text-decoration: none;
  color: black;
  padding: 20px 0px;
}
header nav li.active {
  background: #1d1d1b;
}
header nav li.active a {
  color: white;
}
@media (max-width: 700px) {
  header nav li {
    padding: 7px 18px;
  }
}
@media (max-width: 400px) {
  header nav li {
    padding: 6px 12px;
  }
  header nav li a {
    font-size: 12px;
  }
}
@media (max-width: 1350px) {
  header nav {
    width: 80%;
  }
}
@media (max-width: 700px) {
  header nav {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  header nav {
    padding: 10px;
    flex-direction: column;
  }
}

.projet {
  display: flex;
  padding: 150px 0 50px 0;
}
.projet img {
  width: 57%;
  box-shadow: 20px 19px 28px 0px rgba(0, 0, 0, 0.08);
}
.projet .projet-text {
  text-align: left;
  position: fixed;
  right: 216px;
}
.projet .projet-text h1 {
  font-size: 40px;
  padding-left: 20px;
  font-weight: 600;
  color: rgb(22, 22, 22);
  width: 411px;
}
.projet .projet-text h2 {
  font-size: 16px;
  text-align: center;
  background-color: rgb(53, 43, 110);
  color: #faf7f6;
  width: 378px;
  padding: 10px;
  border-radius: 8px;
  margin: 20px;
}
.projet .projet-text p {
  padding: 10px 0 30px 0;
  font-size: 20px;
  padding-left: 20px;
  color: #626262;
  width: 418px;
}
@media (max-width: 1350px) {
  .projet .projet-text {
    position: fixed;
    right: 100px;
  }
}
@media (max-width: 1100px) {
  .projet {
    flex-direction: column-reverse;
    justify-content: center;
    padding-top: 250px;
  }
  .projet img {
    width: 100%;
  }
  .projet .projet-text {
    position: initial;
    align-items: center;
  }
  .projet .projet-text h1,
  .projet .projet-text p {
    width: 100%;
  }
  .projet .projet-text h2 {
    width: 90%;
  }
}
@media (max-width: 700px) {
  .projet .projet-text h1 {
    font-size: 30px;
  }
  .projet .projet-text h2 {
    font-size: 14px;
  }
  .projet .projet-text p {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .projet .projet-text h1 {
    font-size: 25px;
  }
  .projet .projet-text h2 {
    font-size: 12px;
  }
  .projet .projet-text p {
    font-size: 15px;
  }
}

footer {
  background-color: #1d1d1b;
}
footer .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1d1d1b;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
footer .footer .footer-mention {
  display: flex;
  margin: 40px 0px 40px 0px;
  justify-content: space-between;
}
footer .footer .footer-mention .mention {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
footer .footer .footer-mention .mention .icons {
  cursor: pointer;
}
footer .footer .footer-mention .mentions-l {
  width: 50%;
}
footer .footer .footer-mention .mentions-left h3,
footer .footer .footer-mention .mentions-right h3 {
  font-size: 15px;
  color: #c5c5c5;
  font-weight: 700;
  padding-bottom: 20px;
}
footer .footer .footer-mention .mentions-left p,
footer .footer .footer-mention .mentions-right p {
  color: #faf7f6;
  padding-bottom: 10px;
  font-size: 14px;
}
@media (max-width: 700px) {
  footer .footer {
    flex-direction: column;
  }
  footer .footer .footer-logo {
    padding-top: 20px;
  }
}
@media (max-width: 580px) {
  footer .footer {
    width: 90%;
  }
  footer .footer .mentions-l {
    width: 50%;
  }
}

.scroll-to-top {
  position: fixed;
  padding: 15px 16px;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
}
.scroll-to-top img {
  height: 50px;
  width: auto;
}
.scroll-to-top:hover {
  transform: translateY(-5px);
}
.scroll-to-top.show {
  opacity: 1;
}/*# sourceMappingURL=style-projet.css.map */