.vacancy-main {
  position: relative;
  height: 240px;
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  .vacancy-main {
    height: 303px;
  }
}
.vacancy-main__image {
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 6px;
  width: 100%;
  height: 100%;
}
.vacancy-main__title {
  position: relative;
  z-index: 1;
  padding-top: 52px;
  text-align: center;
  font-family: "Sverdlovsk", sans-serif;
  font-size: 56px;
  line-height: 50px;
  font-weight: 400;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1200px) {
  .vacancy-main__title {
    margin-left: 0;
    text-align: left;
    max-width: 100%;
    padding: 12px 50px;
    font-size: 130px;
    line-height: 116px;
  }
  .vacancy-main__title br:first-child {
    display: none;
  }
}

.vacancy-list {
  margin-top: 86px;
}
@media screen and (min-width: 1200px) {
  .vacancy-list {
    display: grid;
    grid-template-columns: 1fr 770px;
  }
}
@media screen and (min-width: 1440px) {
  .vacancy-list {
    grid-template-columns: 1fr 880px;
  }
}
.vacancy-list__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 0;
  background: #111111;
  padding: 20px 0;
  height: fit-content;
}
.vacancy-list__link {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 14px;
  line-height: 19px;
  color: #727272;
}
@media screen and (min-width: 1200px) {
  .vacancy-list__link {
    font-size: 20px;
    line-height: 27px;
  }
}
.vacancy-list__link--active {
  color: #ffc092;
  gap: 20px;
}
.vacancy-list__link--active .vacancy-list__link-line {
  height: 1px;
  width: 40px;
  background: #ffc092;
}
.vacancy-list__link-line {
  width: 0;
}
.vacancy-list__vacancy-wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 1200px) {
  .vacancy-list__vacancy-wrapper {
    margin-top: 0;
    gap: 80px;
  }
}
.vacancy-list__vacancy-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vacancy-item {
  background: #1b1b1b;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1200px) {
  .vacancy-item {
    justify-content: space-between;
    flex-direction: row;
  }
}
.vacancy-item__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.vacancy-item__name {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 9px;
}
.vacancy-item__description {
  font-size: 16px;
  line-height: 22px;
  color: #bababa;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .vacancy-item__description {
    margin-bottom: 40px;
  }
}
.vacancy-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.vacancy-item__tag {
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  color: #bababa;
  font-size: 14px;
  line-height: 19px;
  border-radius: 4px;
  border: 1px solid #494949;
}
.vacancy-item__price {
  color: #fff;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 20px;
}
.vacancy-item__price br {
  display: none;
}
.vacancy-item__btn {
  width: 100%;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #ffc092;
  color: #ffc092;
  font-size: 16px;
  line-height: 22px;
  transition: 0.3s;
}
.vacancy-item__btn:hover {
  border: 1px solid #fff;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .vacancy-item__btn {
    width: 119px;
    margin-left: auto;
    margin-top: auto;
  }
}

.vacancy-form {
  position: relative;
  margin-top: 78px;
  padding: 0 20px 20px;
}
@media screen and (min-width: 1200px) {
  .vacancy-form {
    height: 532px;
    margin-top: 100px;
    padding: 50px 40px 72px;
  }
}
.vacancy-form__image {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vacancy-form__title {
  text-align: center;
  font-weight: 400;
  font-family: "Sverdlovsk", sans-serif;
  font-size: 52px;
  line-height: 47px;
  color: #ffc092;
  position: relative;
  top: -30px;
}
@media screen and (min-width: 1200px) {
  .vacancy-form__title {
    text-align: left;
    top: 0;
    margin-bottom: 38px;
    font-size: 76px;
    line-height: 68px;
  }
}
.vacancy-form__tg-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 11px;
  border: 1px solid #ffc092;
  border-radius: 50px;
  font-size: 14px;
  line-height: 19px;
}
@media screen and (min-width: 1200px) {
  .vacancy-form__tg-link {
    font-size: 19px;
    width: fit-content;
    padding: 8px 16px 8px 8px;
  }
  .vacancy-form__tg-link br {
    display: none;
  }
}
.vacancy-form__form {
  margin-top: 300px;
}
@media screen and (min-width: 1200px) {
  .vacancy-form__form {
    margin-top: 60px;
  }
}
.vacancy-form__text {
  display: none;
}
@media screen and (min-width: 1200px) {
  .vacancy-form__text {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 19px;
    font-weight: 300;
    margin-bottom: 29px;
  }
}
.vacancy-form__inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1200px) {
  .vacancy-form__inputs {
    display: grid;
    grid-template-columns: 240px 240px;
    gap: 16px;
  }
}
.vacancy-form__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vacancy-form__input-label {
  font-size: 18px;
  font-weight: 300;
  line-height: 19px;
  color: #ffc092;
}
.vacancy-form__input {
  width: 100%;
  border: 1px solid #ffc092;
  height: 40px;
  padding: 8px;
  color: #ffc092;
  background: transparent;
  outline: none;
  border-radius: 6px;
}
.vacancy-form__input ::placeholder {
  color: #727272;
}
.vacancy-form__submit {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  border: 1px solid #ffc092;
  background: #ffc092;
  color: #1e1e1e;
  margin-top: 28px;
  transition: 0.3s;
  border-radius: 4px;
}
.vacancy-form__submit:hover {
  background: transparent;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .vacancy-form__submit {
    width: 122px;
  }
}

.vacancy-choice {
  margin-top: 60px;
}
.vacancy-choice__title {
  font-family: "Sverdlovsk", sans-serif;
  font-weight: 400;
  text-align: center;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  font-size: 52px;
  line-height: 47px;
}
@media screen and (min-width: 1200px) {
  .vacancy-choice__title {
    margin: 0;
    max-width: 100%;
  }
}
.vacancy-choice__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 90px;
}
@media screen and (min-width: 768px) {
  .vacancy-choice__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .vacancy-choice__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }
}
.vacancy-choice__item {
  background: #1b1b1b;
  border-radius: 8px;
  padding: 40px 20px 28px;
  position: relative;
}
.vacancy-choice__item svg {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .vacancy-choice__item {
    padding: 45px 45px 40px 28px;
  }
  .vacancy-choice__item svg {
    left: 28px;
    transform: translateX(0);
  }
}
.vacancy-choice__item-text {
  font-size: 14px;
  line-height: 19px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .vacancy-choice__item-text {
    text-align: left;
  }
}

.vacancy-condition {
  margin-top: 60px;
}
@media screen and (min-width: 1200px) {
  .vacancy-condition {
    margin-top: 100px;
  }
}
.vacancy-condition__title {
  font-family: "Sverdlovsk", sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 47px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .vacancy-condition__title {
    text-align: left;
    font-size: 76px;
    line-height: 70px;
  }
}
.vacancy-condition__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 50px;
}
@media screen and (min-width: 1200px) {
  .vacancy-condition__list {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.vacancy-condition__item {
  position: relative;
}
.vacancy-condition__item-title {
  font-family: "Sverdlovsk", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 29px;
  color: #ffc092;
  position: relative;
  top: -17px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .vacancy-condition__item-title {
    font-size: 52px;
    line-height: 46px;
    top: -32px;
  }
}
.vacancy-condition__item-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.vacancy-condition__item-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  padding: 0 20px 24px 30px;
}
@media screen and (min-width: 1200px) {
  .vacancy-condition__item-text-wrapper {
    padding: 0 50px 53px 80px;
  }
}
.vacancy-condition ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  padding: 0 20px 24px 30px;
}
@media screen and (min-width: 1200px) {
  .vacancy-condition ul {
    padding: 0 50px 53px 80px;
  }
}
.vacancy-condition ul li {
  font-size: 14px;
  line-height: 19px;
}
.vacancy-condition ul li::marker {
  color: #ffc092;
  position: relative;
  top: 2px;
}
.vacancy-condition__item-text {
  font-size: 14px;
  line-height: 19px;
}
.vacancy-condition__item-text::marker {
  color: #ffc092;
  position: relative;
  top: 2px;
}

.vacancy-media {
  margin-top: 60px;
}
@media screen and (min-width: 1200px) {
  .vacancy-media {
    margin-top: 100px;
  }
}
.vacancy-media__title {
  margin-bottom: 40px;
  font-weight: 400;
  font-family: "Sverdlovsk", sans-serif;
  font-size: 52px;
  line-height: 47px;
}
@media screen and (min-width: 1200px) {
  .vacancy-media__title {
    font-size: 76px;
    line-height: 107px;
    margin-bottom: 70px;
  }
}
.vacancy-media__swiper {
  position: relative;
}
.vacancy-media .swiper-slide {
  width: 92%;
}
@media screen and (min-width: 1200px) {
  .vacancy-media .swiper-slide {
    width: 100%;
  }
}
.vacancy-media__swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vacancy-media__swiper-wrapper .swiper-pagination-progressbar {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .vacancy-media__swiper-wrapper .swiper-pagination-progressbar {
    display: none;
  }
}
.vacancy-media__swiper-wrapper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ffc092;
}
.vacancy-media .swiper-button-prev {
  top: 54%;
  color: #ffc092;
  left: -30px;
  display: none;
}
@media screen and (min-width: 1200px) {
  .vacancy-media .swiper-button-prev {
    display: block;
  }
}
.vacancy-media .swiper-button-next {
  top: 54%;
  color: #ffc092;
  right: -30px;
  display: none;
}
@media screen and (min-width: 1200px) {
  .vacancy-media .swiper-button-next {
    display: block;
  }
}

.popup-vacancy {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  background: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .popup-vacancy {
    width: 620px;
    padding: 72px;
  }
}
.popup-vacancy__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.popup-vacancy svg {
  position: relative;
  z-index: 1;
}
.popup-vacancy__title {
  font-family: "Sverdlovsk", sans-serif;
  font-size: 40px;
  line-height: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .popup-vacancy__title {
    font-size: 52px;
    line-height: 52px;
    max-width: 300px;
  }
}
.popup-vacancy__text {
  font-size: 14px;
  line-height: 19px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .popup-vacancy__text {
    max-width: 335px;
  }
}
.popup-vacancy__close {
  position: absolute;
  top: 17px;
  right: 17px;
  color: #fff;
}
.popup-vacancy__close svg {
  width: 18px;
  height: 18px;
}

/*# sourceMappingURL=style.css.map */
