.section-intro {
  background-image: url("/images/webp/emplois-mb.webp");
  background-position: center;
  padding-top: 118px;
  padding-bottom: 130px;
  position: relative;
}
.flex-column {
  gap: 1em;
}
.flex-row {
  gap: 1em;
}
.emploi h2 {
  background-color: var(--vert);
  color: var(--blanc);
  padding: 10px;
}
.emploi h2 a {
  font-size: 16px;
  color: var(--blanc);
  font-weight: normal;
  text-transform: none;
}
.emploi__toggle {
  cursor: pointer;
}
.emploi .toggle-symbol {
  display: inline-block;
  width: 20px;
  font-weight: bold;
  margin-right: 20px;
  transition: transform 0.3s ease;
  color: var(--blanc);
}
.emploi__desc__container {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
}
.emploi__desc__text {
  background-color: var(--gris);
  padding: 30px 20px;
}
.emploi__desc__text a:hover {
  color: var(--vert);
}
.upload {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
select.active {
  color: black;
}
.flex-select {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .flex-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    grid-column: span 2 / span 2;
  }
}
@media only screen and (min-width: 1024px) {
  .section-intro {
    background-image: url("/images/webp/emplois.webp");
    padding-top: 226px;
    padding-bottom: 168px;
    background-repeat: no-repeat;
    background-position: center -60px;
  }
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 30px;
  }
  .emploi h2 {
    padding: 20px 20px;
  }
  .emploi__desc__text {
    padding: 30px 60px;
  }
}
