.stadeEtVille {
  margin-top: 6rem;
  padding: 1rem 4rem;
}
.stadeEtVille .titre {
  margin-bottom: 30px;
}
.stadeEtVille .stades {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 10px;
  width: 100%;
}
.stadeEtVille .stades .stade {
  width: 440px;
  height: 450px;
  margin-bottom: 20px;
  border: 1px #e4e4ee solid;
  border-radius: 10px;
}
.stades .stade img {
  width: 100%;
  height: 350px;
  margin-bottom: 10px;
}

.stades .stade .hh4 {
  margin-left: 10px;
}

.stadeEtVille .stad {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 50px;
}

.stadeEtVille .stad .sec {
  width: 50%;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.stadeEtVille .stad .sec img {
  width: 600px;
  border-radius: 5px;
}

.stadeEtVille .stad .info {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.stadeEtVille .stad .info .detail {
  width: 100%;
  display: flex;
  gap: 20px;
}
.stadeEtVille .stad .info h2 {
  font-size: 40px;
}

.stadeEtVille .stad .info .detail .element {
  margin: 20px 0;
  width: 28%;
  height: auto;
  background: linear-gradient(#e7e7e7, #f5f5f5);
  padding: 10px;
  border-radius: 5px;
}

/*----------------------------------------------------
 Responsive mobile   
 *----------------------------------------------------*/

@media screen and (max-width: 700px) {
  .stadeEtVille {
    margin-top: 6rem;
    padding: 1rem;
  }
  .stadeEtVille .titre {
    margin-bottom: 15px;
  }
  .stadeEtVille .stades {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 10px;
    width: 100%;
  }
  .stadeEtVille .stades .stade {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
    border: 1px #e4e4ee solid;
    border-radius: 10px;
  }
  .stades .stade img {
    width: 100%;
    height: 70%;
    margin-bottom: 10px;
    object-fit: cover;
  }

  .stades .stade .hh4 {
    margin-left: 10px;
  }

  .stadeEtVille .stad {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
    width: 100%;
    margin: 0;
  }
  .fichTech h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .stadeEtVille .stad .sec {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }

  .stadeEtVille .stad .sec img {
    width: 100%;
  }

  .stadeEtVille .stad .info {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    order: 2;
  }
  .stadeEtVille .stad .info .detail {
    width: 100%;
    display: flex;
    gap: 20px;
  }
  .stadeEtVille .stad .info h2 {
    font-size: 25px;
  }

  .stadeEtVille .stad .info .detail .element {
    margin: 20px 0;
    width: 28%;
    height: auto;
    background: linear-gradient(#e7e7e7, #f5f5f5);
    padding: 10px;
    border-radius: 5px;
  }
  .stadeEtVille .stad .info .detail .element h4 {
    font-size: 14px;
  }
  .stadeEtVille .stad .info .detail .element p {
    font-size: 12px;
  }
}
