.offres-emploi {
    display: flex;
    flex-direction: column;
  }
  
  .offre-emploi {
  background-color: #e6e6e6;
  border: 1px dotted #595959;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 10px;
	  transition: all 0.5s ease-in-out;
}
  
  .offre-emploi h2 {
    font-size: 24px;
  }
  
  .text-noir {
    color: #000;
  }
  
  .offre-emploi:hover {
    background-color: #001f3f;
  }
  
  .offre-emploi:hover .text-noir {
    color: #fff;
  }
  
  .offre-emploi:hover h2 {
    color: #fff;
  }

.bloc_recherche {
	background-color: #eee;
  border: 1px dotted #595959;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
  /* ________single emploi_____ */

 .offres-emploi-container {
  display: flex;
  align-items: flex-start;
 /* background-color: #f2f2f2;
  padding: 20px;*/
	 width: 95%;
  max-width: 1100px;
  margin: auto;
	gap: 15px;
	margin-top: 20px;
  
}
.sidebar-emploi {
	min-width: 225px;
  max-width: 400px;
  width: 30%;
	/*background: #00a4bd;*/
  
  display: grid;
  /*box-shadow: #00000080 -5px 5px 5px;*/
	
}
.info-emploi {
	background: #00a4bd;
	color: #fff;
	position: relative;
	padding: 10px;
	}
a.bt-emploi {
  padding: 5px 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: #69b757;
  border: none;
  text-align: center;
  border-radius: 100px;
  margin-top: 10px;
}
.offre-emploi-box {
   /* border: 1px solid #ddd;*/
    background-color: #fff;
    padding: 0 20px; /* Augmente l'espacement intérieur */
	width: 100%;
    max-width: 800px;
}

.offre-details {
  border: 1px dotted #000;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 3px;
  line-height: 1em;
}

.offre-titre {
    text-align: center;
    font-size: 24px; /* Augmente la taille du titre */
    line-height: 1.2;
}

.offre-separation {
    width: 100%;
    border-top: 1px solid #ddd;
    margin: 20px 0; /* Ajuste la marge autour de la séparation */
}

.offre-contenu {
    flex: 1; /* Utilise tout l'espace disponible dans la colonne de droite */
    font-size: 18px; /* Ajuste la taille du texte du contenu */
}
#candidature
{
  background: linear-gradient(170deg, rgb(9, 172, 96) 23%, rgb(47, 125, 77) 100%) !important;
  padding: 30px;
  margin-top: 40px;
	margin-bottom: 0px;
}
#candidature > div
{
  max-width: 1100px;
  margin: auto;
}
#candidature h3
{
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
	
	.offres-emploi-container
{
  margin-left: 20px;
  flex-wrap: wrap;
}
	
}