#vacancies-text-block {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.vacancies-text__left,
.vacancies-text__right {
	width: 50%;
	height: fit-content;
}
.vacancies-text__left {
	padding: 50px 40px;
	background-color: var(--background-secondary);
	border-radius: 40px;
	border: 1px solid var(--background-thirdly);
}
.vacancies-text__title {
	color: var(--head-primary);
	font-size: var(--font-size-28-48);
	font-weight: 500;
	line-height: 100%;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.vacancies-text__text {
	color: var(--main-text-primary);
	font-size: var(--font-size-18-24);
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 40px;
}
.vacancies-text__image {
	border-radius: 40px;
	overflow: hidden;
	width: 100%;
	height: 100%;
	max-height: 340px;
	object-fit: cover;
}
@media (max-width: 1024px) {
	#vacancies-text-block {
		flex-direction: column-reverse;
		gap: 15px;
	}
	.vacancies-text__text {
		margin-bottom: 15px;
	}
	.vacancies-text__left,
	.vacancies-text__right {
		width: 100%;
		height: fit-content;
	}
}
@media(max-width: 768px) {
	.vacancies-text__left {
		padding: 20px 15px;
	}
}