/*------------------------------Вакансии---------------------------*/
.vacancies {
	background: url(img/svg/line-1.svg) calc(-20px + (100vw - 1600px) * 0.4) 10%/auto no-repeat, url(img/svg/line-2.svg) 45% 80%/auto no-repeat;
}
@media (max-width: 1200px) {
	.vacancies {
		background: none;
	}
}
@media (max-width: 767px) {
	.vacancies {
		background: #2f2f2f;
	}
}
.vacancies__body {
	padding: 22px 0 80px;
	display: flex;
	align-items: center;
	gap: 20px;
}
@media (max-width: 1000px) {
	.vacancies__body {
		flex-direction: column;
		gap: 40px;
		padding: 24px 0 47px;
	}
}
.vacancies__text {
	flex: 0 1 50%;
}
.vacancies__title {
	color: rgb(0, 0, 0);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 127.5%;
	text-align: left;
	margin-bottom: 5px;
	transition: all 0.5s ease 0s;
}
@media (max-width: 767px) {
	.vacancies__title {
		color: #fff;
		font-size: 2rem;
	}
}
.vacancies__title.element-animation {
	transform: translateY(50px);
	opacity: 0;
}
.vacancies__title.element-animation.element-show {
	transform: translateY(0);
	opacity: 1;
}
.vacancies__subtitle {
	margin-bottom: 17px;
	transition: all 0.5s ease 0.2s;
}
.vacancies__subtitle.element-animation {
	transform: translateY(50px);
	opacity: 0;
}
.vacancies__subtitle.element-animation.element-show {
	transform: translateY(0);
	opacity: 1;
}
@media (max-width: 767px) {
	.vacancies__subtitle {
		color: #fff;
	}
}
.vacancies__link {
	display: flex;
	align-items: center;
	gap: 9px;
	color: rgb(0, 0, 0);
	font-family: EuclidCircular;
	font-weight: 400;
	line-height: 125%;
	transition: all 0.5s ease 0.4s;
}
.vacancies__link.element-animation {
	transform: translateY(50px);
	opacity: 0;
}
.vacancies__link.element-animation.element-show {
	transform: translateY(0);
	opacity: 1;
}
.vacancies__link:hover {
	text-decoration: underline;
}
@media (max-width: 767px) {
	.vacancies__link {
		color: #fff;
	}
}
.vacancies__link-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #000;
}
@media (max-width: 767px) {
	.vacancies__link-icon {
		background: #fff;
	}
}
.vacancies__link-icon svg {
	width: 32px;
	height: 32px;
	color: #fff;
}
@media (max-width: 767px) {
	.vacancies__link-icon svg {
		color: #000;
	}
}
.vacancies__video {
	flex: 0 1 50%;
	transition: all 0.7s ease 0.7s;
}
.vacancies__video .video-item__player {
	aspect-ratio: 1.35/1;
}
.vacancies__video .video-item__player iframe {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media (max-width: 1000px) {
	.vacancies__video .video-item__player {
		aspect-ratio: auto;
		width: 100%;
		height: 100%;
	}
}
.vacancies__video.element-animation {
	transform: scale(0.4);
	opacity: 0;
}
.vacancies__video.element-animation.element-show {
	transform: scale(1);
	opacity: 1;
}

.vacancies-items {
	background: #fff;
}

.vacancies-items__body {
	padding: 46px 0 60px;
}
@media (max-width: 650px) {
	.vacancies-items__body {
		padding: 27px 0 37px;
	}
}
.vacancies-items__title {
	margin-bottom: 8px;
}
.vacancies-items__subtitle {
	text-align: center;
	margin-bottom: 40px;
}
@media (max-width: 650px) {
	.vacancies-items__subtitle {
		margin-bottom: 26px;
	}
}
.vacancies-items__cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}
@media (max-width: 900px) {
	.vacancies-items__cards {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 650px) {
	.vacancies-items__cards {
		grid-template-columns: 1fr;
	}
}

.vacancy__row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin-top: 40px;
}
.vacancy__row  ul{margin-left: 25px;}
.vacancy__row  ul li {
	list-style: disc !important;
}

@media (max-width: 900px) {
	.vacancy__row{
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 650px) {
	.vacancy__row {
		grid-template-columns: 1fr;
	}
}

.vacancy-card {
	border-radius: 20px;
	background: rgb(244, 244, 244);
	padding: 20px 30px;
}
@media (max-width: 650px) {
	.vacancy-card {
		padding: 26px 17px;
	}
}
.vacancy-card__image {
	border-radius: 16px;
	width: 100%;
	overflow: hidden;
	margin-bottom: 16px;
}
.vacancy-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.vacancy-card__title {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 125%;
	margin-bottom: 14px;
}
.vacancy-card__details {
	font-weight: 500;
}
.vacancy-card__list {
	padding-left: 20px;
}
.vacancy-card__list li {
	margin-top: 7px;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 128.571429%;
	list-style-type: disc;
}