.vacancy {
  margin-top: 100px;
  margin-bottom: 100px;
}
.vacancy__container {
  padding-left: 40px;
  padding-right: 40px;
}

.vacancy__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
}
.vacancy__content--path {
  display: flex;
  flex-direction: column;
  width: 47%;
}

.vacancy__vertical {
  width: 1px;
  height: auto;
  background: #e6e6e6;
}

.vacancy__content--heading {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
}

.vacancy__content--list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vacancy__content--item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 22px 22px;
  background: #f0f1ee;
  align-items: center;
  transition: all 0.4s;
  gap: 20px;
}
.vacancy__content--item:hover {
  background-color: #c3cdb2;
}

.vacancy__content--item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 80%;
}

.vacancy__content--item__tags {
  display: flex;
  flex-direction: row;
  gap: 6px 10px;
  flex-wrap: wrap;
}
.vacancy__content--item__tag {
  color: #434b36;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.arrow_button {
  height: 48px;
  width: 48px;
  border: 1px solid #434b36;
  color: #434b36;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .vacancy__content {
    flex-direction: column;
    gap: 30px;
  }
  .vacancy__content--path {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .vacancy__container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .vacancy {
    margin-top: 60px;
  }
}

/* vacancy-row */
#vacancy.vacancy-row .vacancy__content--list {
  flex-direction: row;
  flex-wrap: wrap;
}
#vacancy.vacancy-row .vacancy__content--path {
  width: 100%;
}
#vacancy.vacancy-row .vacancy__content--item {
  width: 45%;
}
#vacancy.vacancy-row .vacancy__content--list {
  justify-content: space-between;
}
@media screen and (max-width: 1170px) {
  #vacancy.vacancy-row .vacancy__content--item {
    width: 44%;
  }
}
@media screen and (max-width: 1024px) {
  #vacancy.vacancy-row .vacancy__content--item {
    width: 100%;
  }
}

/* vacancy-row */
#vacancy.vacancy-row .vacancy__content--list {
  flex-direction: row;
  flex-wrap: wrap;
}
#vacancy.vacancy-row .vacancy__content--path {
  width: 100%;
}
#vacancy.vacancy-row .vacancy__content--item {
  width: 45%;
}
#vacancy.vacancy-row .vacancy__content--list {
  justify-content: space-between;
}
@media screen and (max-width: 1170px) {
  #vacancy.vacancy-row .vacancy__content--item {
    width: 44%;
  }
}
@media screen and (max-width: 1024px) {
  #vacancy.vacancy-row .vacancy__content--item {
    width: 100%;
  }
}
