

/* Start:/local/templates/redesign/css/404.css?17703910571782*/
.page-404__wrap {
  position: relative;
  background-color: #F69903;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
}

.page-404__title {
  color: var(--Text-text-oncolor-primary, #FFF);
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
}

.page-404__subtext {
  color: var(--Text-text-oncolor-primary, #FFF);
  font-weight: 500;
  line-height: normal;
  margin: 0;
  position: relative;
  z-index: 2;
}

.page-404__img {
  position: absolute;
}

.page-404__img-cow {
  left: 0;
  bottom: 0;
}

.page-404__img-dog {
  right: 0;
  bottom: 0;
}

.page-404__btn {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 1880px) {
  .page-404__img-cow {
    width: 50%;
  }

  .page-404__img-dog {
    width: 53%;
  }
}

@media (max-width: 1440px) {
  .page-404__wrap {
    min-height: 420px;
  }

  .page-404__img-cow {
    left: -227px;
    width: 50%;
  }

  .page-404__img-dog {
    width: 53%;
  }
}

@media (max-width: 1280px) {
  .page-404__wrap {
    min-height: 27.4vw;
  }

  .page-404__img-cow {
    left: -12px;
    bottom: -14px;
  }

  .page-404__img-dog {
    width: 49%;
  }
}

@media (max-width: 768px) {
  .page-404__wrap {
    min-height: 37.4vw;
  }

  .page-404__img-cow {
    left: -4vw;
    bottom: 0;
  }

  .page-404__img-dog {
    width: 60%;
  }
}

@media (max-width: 460px) {
  .page-404__wrap {
    min-height: 400px;
  }

  .page-404__img-cow {
    display: none;
  }

  .page-404__img-dog {
    right: auto;
    left: 0;
    width: 100%;
  }

  .page-404__btn {
    margin-top: 18px;
    padding: 12px;
  }
}
/* End */


/* Start:/local/templates/redesign/components/bitrix/news/vacancies/bitrix/news.detail/.default/style.css?17703910574288*/
.vacancies-list__item {
  border-radius: var(--corner-card-s, 12px);
  background: var(--Sale-yellow-light, #FFF1CA);
}

.vacancies-list__item:not(:last-child) {
  margin-bottom: 16px;
}

.vacancies-list__item-link {
  display: block;
}

.vacancies-list__item-link:hover i.i-arrow-right {
  border-color: #303030;
  background-color: #303030;
  color: #fff;
}

.vacancies-list__item-name {
  justify-content: space-between;
  color: var(--Text-text-primary, #303030);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 21px;
}

.vacancies-list__item-name i {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 56px;
  border: 1px solid var(--Devider-divider-on-bg, #E5E5E5);
  background: var(--Butttons-button-fill-oncolor, #FFF);
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}

.vacancies-list__item-city {
  color: var(--Text-text-primary, #303030);
  font-weight: 400;
  line-height: 120%;
  gap: 24px;
}

.vacancies-list__item-city i {
  font-size: 24px;
}

.vacancies-list__item-city > div {
  gap: 12px;
}

.sect-review .reviews__item + .reviews__item {
  margin-top: 20px;
}

@media (max-width: 1440px) {
  .vacancies-list__item-name i {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 1280px) {
  .vacancies-list__item:not(:last-child) {
    margin-bottom: 14px;
  }
}

@media (max-width: 768px) {
  .vacancies-list__item:not(:last-child) {
    margin-bottom: 12px;
  }

  .vacancies-list__item-name i {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .vacancies-list__item-city {
    gap: 12px;
  }

  .vacancies-list__item-city i {
    font-size: 16px;
  }
}

@media (max-width: 460px) {
  .vacancies .section__bottom {
    margin-top: 15px;
  }

  .vacancies__more {
    width: 100%;
  }

  .vacancies-list__item-name i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* детальная */

.vacancy-detail {
  display: flex;
  gap: 2.15%;
}

.vacancy-aside {
  width: 41.74%;
}

.vacancy-aside__heading {
  font-size: 24px;
  font-weight: 500;
}

.vacancy-content {
  width: 56%;
}

.vacancy-content__list-title {
  font-weight: 700;
}

.vacancy-content__list-items {
  counter-reset: num;
}

.vacancy-content__list-items li {
  vertical-align: middle;
}

.vacancy-content__list-items li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #5f5e5e;
  margin-right: 16px;
}

.vacancy-content__list-items li + li {
  margin-top: 12px;
}

.vacancy-content__list-items._number li {
  counter-increment: num;
}

.vacancy-content__list-items._number li::before {
  content: counter(num) ".";
  background: transparent;
  width: auto;
  height: auto;
  margin: 0 28px 0 12px;
  color: var(--Text-text-primary, #303030);
  font-weight: 500;
}

.vacancy-content__bottom p {
  font-weight: 700;
  line-height: normal;
}

.vacancy-content__public-date {
  gap: 12px;
  color: var(--Text-text-secondary, #5f5e5e);
  font-weight: 400;
}

.vacancy-content__public-date::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--Content-Content-03, #ff8d50);
}

@media (max-width: 1440px) {
  .vacancy-content__list-items._number li::before {
    margin-right: 24px;
  }
}

@media (max-width: 1280px) {
  .vacancy-content__list-items li::before {
    margin-right: 14px;
  }

  .vacancy-content__list-items._number li::before {
    margin: 0 22px 0 10px;
  }
}

@media (max-width: 768px) {
  .vacancy-detail {
    flex-direction: column;
  }

  .vacancy-aside {
    width: 100%;
  }

  .vacancy-content {
    width: 100%;
    margin-bottom: 30px;
  }

  .vacancy-content__list-items li::before {
    margin-right: 8px;
  }

  .vacancy-content__list-items._number li::before {
    margin-right: 18px;
  }
}

@media (max-width: 460px) {
  .vacancy-aside__heading {
    font-size: 22px;
  }

  .vacancy-aside__btn {
    width: 100%;
  }
}
/* End */
/* /local/templates/redesign/css/404.css?17703910571782 */
/* /local/templates/redesign/components/bitrix/news/vacancies/bitrix/news.detail/.default/style.css?17703910574288 */
