main > .topSection {
  background-image: url(../../img/recrutement/top.jpeg);
}
.horizontalContainer > .massageImage {
  width: 200px;
  height: 200px;
  margin: 0;
}
@media screen and (min-width: 800px) {
  .horizontalContainer > .massageImage {
    width: 590px;
    height: 400px;
  }
}
ul {
  width: 100%;
  padding: 20px 0 20px 20px;
  list-style-type: disc;
}
li {
  text-align: justify;
  margin-bottom: 20px;
}
li::marker {
  color: var(--spaPrimary);
}
.textSection > p {
  margin-bottom: 20px;
}
.jobItem {
  position: relative;
  width: 100%;
  background-color: var(--spaWhite);
  border: 1px solid var(--spaWhite);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.jobItem:open {
  border-color: var(--spaPrimary);
}
.jobSummary {
  position: relative;
  width: 100%;
  background-color: var(--spaWhite);
  border: 1px solid var(--spaWhite);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 30px 30px 0 0;
  transition: all 0.3s ease;
}
.jobItem:open > .jobSummary {
  background-color: var(--spaPrimary);
  border-color: var(--spaPrimary);
}
.jobSummary::marker {
  display: none;
}
.jobTitleIcon {
  color: var(--spaPrimary);
  transition: all 0.3s ease;
}
.jobItem:open .jobTitleIcon {
  color: var(--spaWhite);
}
.jobSummary > h5 {
  flex: 1;
  font-size: var(--body-font-size);
  font-weight: 400;
}
.jobItem:open > .jobSummary > h5 {
  color: var(--spaWhite);
}
.jobItem:open .iconButtonLink {
  background-color: var(--spaWhite);
  color: var(--spaPrimary);
  transform: rotate(90deg);
}
.jobContent {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.jobMeta {
  color: var(--spaGray);
  font-style: italic;
}
h6 {
  font-size: var(--body-font-size);
  color: var(--spaPrimary);
}
.jobFooter {
  width: 100%;
}
.jobActions {
  width: 100%;
  display: flex;
  flex-flow: row-reverse nowrap;
  padding: 10px 0;
}
.jobActions > .applyButton,
.formGroup .fileInput::file-selector-button {
  font-size: var(--body-font-size);
  height: 30px;
  width: 150px;
  padding-top: 5px;
}
.close {
  color: var(--spaBlack);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.close:hover,
.close:focus {
  color: var(--spaPrimary);
  text-decoration: none;
  cursor: pointer;
  transform: scale(120%);
}
.formGroup {
  margin-bottom: 20px;
}

.formGroup label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.formGroup input,
.formGroup textarea {
  background-color: var(--spaWhite);
  border: 1px solid var(--spaBlack);
  border-radius: 10px;
}
.formGroup input[type="text"],
.formGroup input[type="tel"],
.formGroup input[type="email"],
.formGroup textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--spaGray);
  box-sizing: border-box;
}

.formGroup textarea {
  min-height: 100px;
  resize: vertical;
}

.formGroup input[type="file"] {
  width: 100%;
  padding: 8px;
  background-color: var(--spaPrimaryTransparent);
  border: 1px dashed var(--spaGray);
  border-radius: 4px;
  box-sizing: border-box;
  font-family: var(--subtitles-font-family);
  color: var(--spaBlack);
}

.fileHelp {
  display: block;
  color: var(--spaGray);
  font-size: 0.85em;
  margin-top: 4px;
}
form > .confirmApply {
  font-size: var(--body-font-size);
  height: 30px;
  width: 200px;
  padding-top: 5px;
}
.offersSection .horizontalContainer {
  gap: 0;
}
.offersSection .verticalContainer {
  gap: 0;
  padding: 0;
}
.offersSection .headMassageImage {
  width: 390px;
  height: 750px;
}
@media screen and (min-width: 800px) {
  .offersSection .horizontalContainer {
    gap: 60px;
  }
}
