div.component-jumbotron-recrutement {
  padding-top: 50px;
  background-color: var(--background-secondary);
  position: relative;
  z-index: 9;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  div.component-jumbotron-recrutement {
    padding-top: 0px;
  }
}
div.component-jumbotron-recrutement .container {
  background-color: var(--primary);
  padding: 60px;
  margin-bottom: -40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  div.component-jumbotron-recrutement .container {
    width: 100%;
    margin-bottom: 0px;
    flex-direction: column;
    padding: 30px;
    gap: var(--spacing-m);
  }
}
div.component-jumbotron-recrutement .container .title {
  color: var(--color-text-light);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 15px;
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  div.component-jumbotron-recrutement .container .title {
    font-size: 32px;
    line-height: 32px;
  }
}
div.component-jumbotron-recrutement .container .content {
  width: 600px;
}
@media screen and (max-width: 768px) {
  div.component-jumbotron-recrutement .container .content {
    width: 100%;
  }
}
div.component-jumbotron-recrutement .container .content p {
  margin-top: 0px;
}
div.component-jumbotron-recrutement .container .cta-container {
  display: flex;
  align-items: center;
}
div.component-jumbotron-recrutement .container .cta-container .button {
  margin: 0px;
}