/* VACANCY PAGE */

/* vacancy-title-area */

.vacancy-title-area {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 70px;
  position: relative;
  gap: 0;
  background: var(--color-4);
}

.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: 240px;
  align-items: flex-end;
}

.vacancy-title-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-3);
  position: relative;
  color: #fff;
  width: 70%;
  height: calc(100% - 43px);
}

.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;
  width: 70%;
  padding-top: 10px;
}

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

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

  .vacancy-title-text {
    width: 80%;
    height: calc(100% - 23px);
  }

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

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

@media (max-width: 767px) {
  .vacancy-title-area-content {
    height: 144px;
  }
  
  .vacancy-title-text {
      width: calc(100% - 21px);
  }

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

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

/* vacancy-content */

.vacancy-content {
  padding: 84px 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: 62px 0 56px;
  }
}

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

  .vacancy-content .section-title {
    /*font-size: 24px;*/
  }

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