.hero {
  display: flex;
  justify-content: center;
  height: 80vh;
  background-image: url("/images/femme-d-affaires-a-la-recherche-d-un-contact-important-au-telephone.webp");
  background-position: center;
  background-size: cover;
  flex-direction: column;
  background-attachment: fixed;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-contain {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  /* backdrop-filter: blur(10px); */
  padding-left: 10%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  width: 50%;
}

h1 {
  font-family: "poppins", sans-serif;
  font-weight: 700;
  font-size: 5rem;
}
h2 {
  font-size: 1.5rem;
}

.card-list {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 5%;
  margin-bottom: 50px;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: -50px;
}
.card {
  width: 400px;
  padding: 30px;
  border-radius: 30px;

  background-color: #fffefb;
  -webkit-box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1);
  max-width: 1000px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  transition: 0.3s;
}

.card-image {
  width: 150px;
  height: 150px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image.orange {
  border: solid 3px #f9c577;
}
.card-image.rose {
  border: solid 3px #ffc4a3;
}
.card-image.vert {
  border: solid 3px #cdeebf;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

h4 {
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
}

p.info {
  font-size: 1rem;
  font-weight: 400;
  color: #969696;
  margin: 10px 0 15px 0;
}

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

.liste-lien {
  width: fit-content;
  margin: 5px 0;
}
.more {
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 20px;
  line-height: 1.2;
  margin: 0 5% 100px 5%;
}
a {
  color: #000000;
}

.card:hover {
  -webkit-box-shadow: 0px 10px 50px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 30px 5px rgba(0, 0, 0, 0.1);

  transform: translateY(-5px);
}

@media (max-width: 1350px) {
  .hero-text {
    width: 100%;
    padding-left: 0;
  }
  .hero-contain {
    padding: 0 5%;
  }
}

@media (max-width: 1000px) {
  .card {
    width: 100%;
  }
}

@media (max-width: 747px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .hero {
    background-attachment: scroll;
    height: 50vh;
  }

  .hero-contain {
    backdrop-filter: blur(3px);
  }
}
