/* VACANCY PAGE */

/* vacancy-title-area */

.vacancy-title-area {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 70px;
  position: relative;
  gap: 0;
  background: #c9b6f4;
}

.vacancy-title-area-breadcrumbs {
  background: #f2f2f2;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 1;
}

.vacancy-title-area-breadcrumbs .breadcrumbs-list {
  padding-left: 0;
}

.vacancy-title-area-content {
  display: flex;
  height: 333px;
  align-items: flex-end;
}

.vacancy-title-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 0 40px;
  background: #4b2c5e;
  position: relative;
  color: #fff;
  width: 70%;
}

.vacancy-title-text:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: -100%;
  background: inherit;
}

.vacancy-title-text:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  right: -100%;
  background: inherit;
}

.vacancy-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
}

.vacancy-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

@media (max-width: 1024px) {
  .vacancy-title-area-content {
    height: 257px;
  }

  .vacancy-title-text {
    width: 80%;
  }

  .vacancy-subtitle {
    font-size: 18px;
  }

  .vacancy-title {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .vacancy-title-area-content {
    height: 200px;
  }

  .vacancy-subtitle {
    font-size: 14px;
  }

  .vacancy-title {
    font-size: 24px;
  }
}

/* vacancy-content */

.vacancy-content {
  padding: 74px 0 66px;
}

.vacancy-content article {
  width: 60%;
}

.vacancy-content p {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
  padding: 20px 0;
}

.vacancy-content h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.vacancy-content ul,
ol {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.vacancy-content li {
  margin-left: 20px;
  padding: 5px 0;
}

@media (max-width: 1024px) {
  .vacancy-content article {
    width: 100%;
  }

  .vacancy-content .section-title {
    font-size: 44px;
  }

  .vacancy-content {
    padding: 64px 0 56px;
  }
}

@media (max-width: 767px) {
  .vacancy-content {
    padding: 35px 0 54px;
  }

  .vacancy-content .section-title {
    font-size: 28px;
  }

  .vacancy-content h3 {
    font-size: 20px;
  }
}
