:root {
  --padded-container-topBot: 70px;
}

.jobContainer {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 24px;
  margin: 0 -12px;
}
.jobContainer .job {
  width: calc(33.3333333333% - 24px);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 36px;
  margin: 0 12px;
}
@media screen and (max-width: 750px) {
  .jobContainer .job {
    padding: 24px;
  }
}
@media screen and (max-width: 600px) {
  .jobContainer .job {
    width: 100% !important;
  }
}
@media screen and (max-width: 370px) {
  .jobContainer .job {
    padding: 18px;
  }
}
.jobContainer .job .job-location {
  font-family: Cabin;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 8px;
}
.jobContainer .job .job-title {
  font-family: Cabin;
  font-size: 28px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (max-width: 1210px) {
  .jobContainer .job .job-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 1070px) {
  .jobContainer .job .job-title {
    font-size: 19px;
  }
}
@media screen and (max-width: 900px) {
  .jobContainer .job .job-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 370px) {
  .jobContainer .job .job-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 900px) {
  .jobContainer {
    flex-direction: column;
    margin: 0;
    row-gap: unset;
  }
  .jobContainer .job {
    width: 50%;
    margin: 0 0 12px 0;
  }
  .jobContainer .job:last-child {
    margin-bottom: 0;
  }
}

.benefitsContainer {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .benefitsContainer {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .benefitsContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .benefitsContainer {
    grid-template-columns: repeat(1, 1fr);
  }
}
.benefitsContainer .benefit {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}
@media screen and (max-width: 450px) {
  .benefitsContainer .benefit {
    padding: 18px;
  }
}
.benefitsContainer .benefit .benefit-description {
  font-family: Cabin;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: center;
}
.benefitsContainer .benefit .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.careerFormContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 700px) {
  .careerFormContainer {
    grid-template-columns: 1fr;
  }
}
.careerFormContainer > div {
  height: 100%;
}
.careerFormContainer .left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.careerFormContainer .left span {
  position: relative;
}
.careerFormContainer input {
  padding-left: 55px;
}
.careerFormContainer input + img {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.careerFormContainer [name=cv] {
  display: none;
}
.careerFormContainer .attach {
  cursor: pointer;
}
.careerFormContainer .attach span {
  margin-left: 5px;
  font-family: Source Sans Pro;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--blue-color);
}
.careerFormContainer .attach .fileSelected {
  color: #535353;
}

.mainHeader1 {
  height: 500px;
  background: linear-gradient(rgba(33, 37, 41, 0.6588235294), rgba(33, 37, 41, 0.6588235294)), url(../img/stronde/headerImageCareers.png) no-repeat;
  background-size: cover !important;
}
.mainHeader1 .imageLg {
  background: none;
}
.mainHeader1 .imageLg h2,
.mainHeader1 .imageLg h3 {
  color: #fff;
}
.mainHeader1 .imageLg h2 {
  font-family: Cabin;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 0em;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .mainHeader1 .imageLg h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}
.mainHeader1 .imageLg h3 {
  font-family: Cabin;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .mainHeader1 .imageLg h3 {
    font-size: 18px;
    line-height: 1.2;
  }
}
.mainHeader1 .imageLg .blueSmallLine {
  background-color: var(--foam-blue-color);
  width: 95px;
  height: 6spx;
}
@media screen and (max-width: 750px) {
  .mainHeader1 {
    height: unset;
    padding: 110px 0 50px 0;
  }
}

#gallerryContainer {
  --grid-gap: 15px;
  gap: var(--grid-gap);
  display: flex;
  align-items: flex-end;
}
#gallerryContainer > * {
  flex: calc((40% - 4 * var(--grid-gap)) / 3) 0 0;
}
#gallerryContainer > *:nth-child(1), #gallerryContainer > *:nth-child(2) {
  flex: 30% 0 0;
}
#gallerryContainer img {
  height: auto;
  width: 100%;
}
#gallerryContainer .subGrid1,
#gallerryContainer .subGrid2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
#gallerryContainer .subGrid1 > * {
  flex: calc(50% - var(--grid-gap) / 2) 0 0;
}
#gallerryContainer .subGrid1 > *:nth-child(1), #gallerryContainer .subGrid1 > *:nth-child(2) {
  margin-bottom: var(--grid-gap);
}
#gallerryContainer .subGrid1 > *:nth-child(3) {
  flex: 100% 0 0;
}
#gallerryContainer .subGrid2 > * {
  flex: 100% 0 0;
}
#gallerryContainer .subGrid2 > *:nth-child(1) {
  margin-bottom: var(--grid-gap);
}
@media screen and (max-width: 600px) {
  #gallerryContainer {
    flex-wrap: wrap;
    align-items: center;
  }
  #gallerryContainer .subGrid1,
  #gallerryContainer .subGrid2 {
    align-items: center;
  }
  #gallerryContainer > * {
    flex: calc((100% - 2 * var(--grid-gap)) / 3) 0 0;
  }
  #gallerryContainer > *:nth-child(1), #gallerryContainer > *:nth-child(2) {
    flex: 100% 0 0;
  }
  #gallerryContainer .subGrid1 > * {
    flex: calc(50% - var(--grid-gap) / 2) 0 0;
  }
  #gallerryContainer .subGrid1 > *:nth-child(1), #gallerryContainer .subGrid1 > *:nth-child(2) {
    margin-bottom: var(--grid-gap);
  }
  #gallerryContainer .subGrid1 > *:nth-child(3) {
    flex: 100% 0 0;
  }
  #gallerryContainer .subGrid2 > * {
    flex: 100% 0 0;
  }
}

@media (min-width: 991px) {
  .navbarWhite .enterpriceLogo-white-d {
    display: none !important;
  }
  .navbarWhite .enterpriceLogo-blue-d {
    display: block !important;
  }
}/*# sourceMappingURL=careers.css.map */