body .bigprojet {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
body .bigprojet:before {
  content: "";
  left: 0;
  top: 0;
  z-index: 10;
  position: absolute;
  bottom: 0;
  width: 50%;
  background: linear-gradient(to right, #00687C, rgba(0, 104, 124, 0));
  mix-blend-mode: multiply;
}
body .bigprojet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
}
body .bigprojet .wrapper {
  padding: 200px 60px 135px 60px;
  color: white;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 500px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  body .bigprojet .wrapper {
    padding: 80px 30px;
  }
}
body .bigprojet .wrapper h3 {
  color: #00687C;
  background: white;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  height: 36px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 60px;
  margin: 0;
}
body .bigprojet .wrapper h2 {
  font-size: 20px;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  margin: 0;
}
body .bigprojet .wrapper h2 strong {
  font-weight: bold;
}
body .bigprojet .wrapper .separateur {
  width: 25px;
  height: 2px;
  background: white;
}
body .bigprojet .wrapper .texte {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
body .bigprojet .wrapper .more {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 10px;
  border-radius: 80px;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  gap: 10px;
  background: #00687C;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  body .bigprojet .wrapper .more {
    height: 60px;
    padding: 0 20px 0 10px;
    font-size: 16px;
  }
}
body .bigprojet .wrapper .more i.icone {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #00687C;
}
body .bigprojet .wrapper .more:hover {
  background: white;
  color: #00687C;
}
body .bigprojet .wrapper .more:hover i.icone {
  background: #00687C;
  color: white;
}

@keyframes decalage {
  0% {
    transform: translateY(-32.5vh);
  }
  100% {
    transform: translateY(32.5vh);
  }
}
