

/* Start:/local/assets/css/hr/vacancies.css?17163607685391*/
.vacancies-banner {
  height: 400px;
}
.vacancies-banner-mob {
  display: none;
}
.vacancies-banner__title {
  margin-top: 174px;
}
.vacancies {
  margin-top: 75px;
}
.vacancies-type__list {
  display: flex;
  gap: 70px;
}
.vacancies-type__list-item {
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #fff;
  cursor: pointer;
  transition: all .2s ease;
}
.vacancies-type__list-item.pick._turquoise {
  color: var(--hr-colors-turquoise);
}
.vacancies-type__list-item.pick._green {
  color: var(--hr-colors-green-new);
}
.vacancies-type__list-item.pick._blue {
  color: var(--hr-colors-blue);
}
.vacancies-type__underline {
  margin-top: 16px;
  width: 100%;
  height: 3px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transform: translateX(-120%);
  transition: all .4s ease-in-out;
}
.vacancies-type__underline::after {
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transition: all .4s ease-in-out;
}
.vacancies-type__underline._turquoise, .vacancies-type__underline._turquoise::after {
  background: var(--hr-colors-turquoise);
}
.vacancies-type__underline._green, .vacancies-type__underline._green::after {
  background: var(--hr-colors-green-new);
}
.vacancies-type__underline._blue, .vacancies-type__underline._blue::after {
  background: var(--hr-colors-blue);
}
.vacancies-list {
  margin-top: 32px;
  flex-direction: column;
  gap: 16px;
  display: none;
}
.vacancies-list.active {
  display: flex;
}
.vacancies-list .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.vacancies-list__item {
  position: relative;
  width: 100%;
  min-height: 350px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 1px 2px 8px 0 rgba(51, 51, 51, 0.1), 0 0 4px 0 rgba(154, 154, 154, 0.08);
  background: linear-gradient(45deg, #020f28 11%, #10253c 100%);
  border-radius: 24px;
  cursor: pointer;
  background-color: #020f28;
  overflow: hidden;
  transition: all .3s cubic-bezier(0,0,.4,1);
}
.vacancies-list__item:hover ._secondary {
	transform: rotate(45deg);
}
.vacancies-list__item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #020f28 11%, #10253c 100%);
  transition: all .3s ease-in-out;
}
.vacancies-list__item:hover::before{
  opacity: 0;
}
.vacancies-list__item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vacancies-list__item-content .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.vacancies-list__item-content .tag-item {
  padding: 2px 16px;
  border-radius: 30px;
  color: var(--palette-dark-bg);
}
.vacancies-list__item-content .tag-item._turquoise {
  background: var(--hr-colors-turquoise);
}
.vacancies-list__item-content .tag-item._green {
  background: var(--hr-colors-green-new);
}
.vacancies-list__item-content .tag-item._blue {
  background: var(--hr-colors-blue);
  color: #fff;
}
.vacancies-list__item-link  {
  position: relative;
}
.vacancies-list__item-link img {
  padding: 13px;
}
.view-more {
  display: none;
}

@media screen and (max-width: 1440px) {
  .vacancies-list .row {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 992px) {
  .vacancies-banner {
    height: 320px;
  }
  .vacancies-banner__title {
    margin-top: 136px;
  }
  .vacancies-list .row {
    grid-template-columns: 1fr;
  }
  .vacancies-type__list {
    gap: 16px;
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  .vacancies-type__list::-webkit-scrollbar {
    height: 0;
    width: 0;
    display: none;
  }
  .vacancies-type__list-item {
    padding: 6px 12px;
    text-wrap: nowrap;
    white-space: nowrap;
    border: 1px solid var(--palette-white-main);
    border-radius: 15px;
  }
  .vacancies-type__list-item.pick {
    color: #fff !important;
  }
  .vacancies-type__list-item.pick._turquoise {
    border-color: var(--hr-colors-turquoise);
    background: var(--hr-colors-turquoise);
  }
  .vacancies-type__list-item.pick._green {
    border-color: var(--hr-colors-green-new);
    background: var(--hr-colors-green-new);
  }
  .vacancies-type__list-item.pick._blue {
    border-color: var(--hr-colors-blue);
    background: var(--hr-colors-blue);
  }
  .vacancies-type__underline {
    display: none;
  }
  .pagination {
    display: none;
  }
  .view-more {
    display: block;
    margin: 32px auto 0;
    padding-left: 24px;
    padding-right: 24px;
    width: fit-content;
  }
  .view-more__button {
    outline-color: #fff;
    color: #fff;
  }
  .view-more__button:hover {
  outline: 1px solid #fff !important;
  }
}

@media screen and (max-width: 480px) {
  .vacancies-banner {
    height: 400px;
    background: linear-gradient(0deg, #27c7914D 0%, #0c1f334D 100%);
  }
  .vacancies-banner-mob {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
  }
  .vacancies-banner__title {
    margin-top: 120px;
  }

  .vacancies-list .row {
    grid-template-columns: 1fr;
  }
  .vacancies-list__item {
    height: 350px;
    padding: 24px;
  }
  .vacancies-list__item-link {
    display: none;
  }
  .vacancies-list__item-content .tag-item {
    font-size: 14px;
  }
	.vacancies-list__item-content .title {
		font-size: 24px;
	}
}

/* End */
/* /local/assets/css/hr/vacancies.css?17163607685391 */
