
.accueil-formation-container {
  width: 90%;
  max-width: 1200px;
  height: fit-content;
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accueil-formation-block {
  width: 100%;
  height: fit-content;

  position: relative;
}

.accueil-formation-top {
  width: 100%;
  height: 200px;
  /* background-image: url(../../img/abstract-wave-background.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.accueil-formation-text {
  width: 80%;
  height: fit-content;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accueil-public-container {
  width: 90%;
  max-width: 1200px;
  height: fit-content;
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.accueil-public {
  width: 100%;
  height: fit-content;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;

  align-items: stretch;
}

.accueil-public-block {
  width: 40%;
  min-width: 350px;
  padding: 30px 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid black;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accueil-public-block h3 {
  font-size: 19px;
  font-weight: bold;
  text-align: center;
}

.accueil-public-logo {
  width: 60px;
  border: 1px solid black;
  border-radius: 50%;
  padding: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
}

.disclamer {
 border: 3px solid #0056B3;
  padding: 1rem;
  font-size: 15px;
  display: flex;
  gap: 1rem;
  align-items: center;
  border-radius: 24px;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

}

.disclamer-logo {
  height: 80px;
}

.disclamer a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

/* version mobile */

@media (max-width: 862px) {

    .accueil-formation-block {
  width: 100%;
  height: fit-content;

  position: relative;
}

.accueil-formation-text {
  width: 100%;
  position: static;
  transform: translate(0);
}

.accueil-public {
  width: 100%;
  height: fit-content;
  padding: 2rem 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;

  align-items: stretch;
}

.accueil-public-block {
  width: 100%;
  min-width: 300px;
  
}

.disclamer {
flex-direction: column;

}

}