.v-process {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.v-process .header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v-process .header .eye-brow {
  align-self: center;
  margin: 0;
}
.v-process .header .sub-title {
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  margin: 0;
}
.v-process .header .description {
  color: #333;
  text-align: center;
}
.v-process .header .description p {
  margin: 0;
}
.v-process .steps {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 425px) {
  .v-process .steps {
    flex-direction: column;
    padding: 20px;
  }
}
.v-process .steps .step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  background: white;
  padding: 30px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 425px) {
  .v-process .steps .step {
    align-items: center;
  }
}
.v-process .steps .step .v-icon {
  padding: 20px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: rgba(255, 214, 160, 0.5254901961);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.v-process .steps .step .v-icon-cible {
  background-image: url(../images/step/heart.svg);
}
.v-process .steps .step .v-icon-loupe {
  background-image: url(../images/step/search.svg);
}
.v-process .steps .step .v-icon-personne {
  background-image: url(../images/step/users.svg);
}
.v-process .steps .step .v-icon-chevrons {
  background-image: url(../images/step/sitemap.svg);
}
.v-process .steps .step .v-icon-fleche_montante {
  background-image: url(../images/step/arrow.svg);
}
.v-process .steps .step .number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: red;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.v-process .steps .step .title {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin: 0;
}
.v-process .steps .step .description {
  color: #5a5a5a;
  font-size: 1.1rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 425px) {
  .v-process .steps .step .description {
    text-align: center;
  }
}
.v-process .steps .step .description p {
  margin: 0;
}

/*# sourceMappingURL=process.css.map */
