@font-face {
  font-family: "AmericanaStd-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/AmericanaStdFUHA-Regular.woff2") format("woff2");
}
:root {
  --wrapper: 100vw;
  --gutter: 40px;
  --rh: calc((var(--wrapper) - (3 * var(--gutter))) / 4);
}

.career {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 24px;
}
.career__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1240px;
}
.career__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px 0;
  width: 100%;
}
.career__item.-reverse {
  flex-direction: column-reverse;
}
.career__item__image {
  display: block;
  width: 100%;
  max-width: calc(100% - 48px);
  height: 100%;
  object-fit: contain;
}
.career__item__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 80px 0;
  width: calc(100% - 48px);
}
.career__item__text.-padding {
  padding: 0 0 80px 0;
}
.career__captcha {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}
.career__captcha-warning {
  position: absolute;
  left: 0;
  bottom: -20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 200px;
  color: #CC4429;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 20.8px;
  line-height: 1.3rem;
  font-weight: 400;
  font-style: normal;
}
.career__captcha-warning.-hide {
  display: none;
}

.form__container.-checkbox {
  padding: 20px 0 0 0;
}
.form__container.-checkbox.-first {
  padding: 60px 0 0 0;
}
.form__container.-error {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #cc4429;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 0;
  line-height: 26px;
  font-weight: 400;
}
@media only screen and (min-width: 640px) {
  .career__item__image {
    max-width: 560px;
  }
}
@media only screen and (min-width: 1280px) {
  .career__item {
    flex-direction: row;
    justify-content: space-between;
    padding: 55px 0;
  }
  .career__item.-reverse {
    flex-direction: row;
  }
  .career__item__text {
    padding: 0 80px 0 0;
    width: 100%;
  }
  .career__item__text.-padding {
    padding: 0 0 0 80px;
  }
  .career__captcha {
    padding: 20px 0 0 0;
  }
}
@media only screen and (min-width: 1366px) {
  .career__captcha-warning {
    bottom: -25px;
  }
}
@font-face {
  font-family: "AmericanaStd-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/AmericanaStdFUHA-Regular.woff2") format("woff2");
}
:root {
  --wrapper: 100vw;
  --gutter: 40px;
  --rh: calc((var(--wrapper) - (3 * var(--gutter))) / 4);
}

.success {
  z-index: 6;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgba(20, 20, 20, 0.65);
}
.success.-hide {
  display: none;
}
.success__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 40px 0;
  width: calc(100% - 48px);
  max-width: 680px;
  border-top: 8px solid #064C37;
  background-color: #F3F3F3;
}
.success__cross {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.success__cross__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.success__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
}
.success__text strong {
  margin: 0 0 40px 0;
  color: #17C37B;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 600;
}