.benefits {
	width: 100%;
	background: #ffffff;
	padding: 80px;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.title-text {
	font-weight: 700;
	font-size: 48px;
	line-height: 56px;
	color: #17252f;
	text-align: center;
}

.benefits-row {
	margin-top: 64px;

	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}

.benefits-row > div {
	max-width: 360px;
}

.position {
	width: 80%;
	padding: 80px;
	margin: 0 auto;
}

.position-content {
	margin-top: 64px;
}

.position-types {
	display: flex;
	align-items: center;
}

.position-type {
	width: 100%;
	padding: 15px;
	position: relative;

	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	color: #878f98;
	text-align: center;
}

.position-type::after {
	display: flex;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #c4cbd2;
	height: 2px;
	border-radius: 10px;
}

.current {
	font-weight: 500;
	color: #17252f;
}

.current::after {
	background: #17252f;
}

.get-back-form {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 64px;
	min-height: 440px;
}

.get-back-left {
	background: #f0f1f7;
	border: 1px solid #c4cbd2;
	box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.16);
	border-radius: 24px;
	padding: 24px;

	display: flex;
	flex-direction: column;
	gap: 28px;
	height: 100%;
	min-height: 440px;
}

.get-back-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.get-back-benefit {
	position: relative;
	color: #17252f;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	padding-left: 5px;
}

.get-back-benefit::before {
	content: '';
	display: block;
	position: absolute;
	top: 12px;
	left: -12px;

	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #17252f;
}

.title-of-vacancy {
	font-weight: 700;
	font-size: 36px;
	line-height: 46px;
	color: #17252f;
}

.get-back-right {
	background: #f0f1f7;
	border: 1px solid #c4cbd2;
	box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.16);
	border-radius: 24px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	min-height: 440px;
}

.get-back-right-upper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.leave-info {
	color: #878f98;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	text-align: center;

	margin-bottom: 24px;
}

.info-input {
	background: #ffffff;
	border: 1px solid #c4cbd2;
	border-radius: 10px;
	padding: 14px 16px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;

	width: 100%;
}

.send-request-btn {
	width: 100%;
	background: #17252f;
	border-radius: 90px;
	padding: 18px;

	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #ffffff;
}

.we-need-you {
	width: 100%;
	padding: 80px;

	display: flex;
	justify-content: center;
	align-items: center;
}

.need-you-left {
	display: flex;
	flex-direction: column;
	gap: 64px;
	width: 50%;
}

.points {
	display: flex;
	flex-direction: column;
	gap: 42px;
}

.point-container {
	display: flex;
	align-items: center;
	gap: 12px;
}

.point-text {
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	color: #17252f;
}

.slider-element-content {
	display: flex;
	justify-content: space-between;
	gap: 70px;
	flex: 0 0 100%;
	padding-right: 80px;
}

/* Scroll css */

.slider {
	padding: 80px 0 80px 80px;
	background: #f2f2f2;

	position: relative;
	overflow: hidden;
}

.slider-content {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.dots {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.dot {
	width: 8px;
	height: 8px;
	background-color: #c4cbd2;
	border-radius: 50%;
	margin: 0 6px;
	cursor: pointer;
}

.dot.active {
	background-color: #878f98;
}

.points-element {
	flex-basis: 48%;
}

@media screen and (max-width: 767px) {
	.slider {
		padding: 40px 0 40px 14px;
	}

	.slider-element-content {
		padding-right: 14px;
		gap: 0;
	}

	.title_main {
		text-align: center;
		font-size: 48px;
		line-height: 56px;
	}

	.secondary_main {
		text-align: center;
	}

	.main_mobile_picture {
		height: 378px;
	}

	.dots {
		margin-top: 24px;
	}

	.benefits {
		padding: 40px 14px;
	}

	.title-text {
		font-size: 36px;
		line-height: 46px;
	}

	.benefits-row {
		margin-top: 48px;
		gap: 24px;
	}

	.points-element {
		flex-basis: 100%;
	}

	.position {
		padding: 40px 14px;
		width: 100%;
	}

	.get-back-form {
		width: 80%;
		margin-inline: auto;
		flex-direction: column;
	}

	.get-back-left {
		min-height: auto;
	}

	.we-need-you {
		padding: 60px 24px;
		flex-direction: column-reverse;
		gap: 64px;
	}

	.need-you-left {
		width: 100%;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.slider {
		padding: 60px 0 60px 24px;
	}

	.slider-element-content {
		padding-right: 24px;
		gap: 0;
	}

	.secondary_main {
		font-size: 20px;
		line-height: 28px;
	}

	.benefits {
		padding: 60px 20px;
	}

	.benefits-row {
		margin-top: 52px;
		justify-content: center;
	}

	.get-back-form {
		width: 80%;
		margin-inline: auto;
		flex-direction: column;
	}

	.get-back-left {
		min-height: auto;
	}

	.points-element {
		flex-basis: 48%;
		margin-bottom: 32px;
	}

	.points-element:nth-child(odd) {
		margin-right: 20px;
	}

	.position {
		padding: 60px;
		width: 100%;
	}

	.we-need-you {
		padding: 60px 24px;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
	.slider {
		padding: 60px 0 60px 24px;
	}

	.slider-element-content {
		padding-right: 24px;
		gap: 30px;
	}

	.secondary_main {
		font-size: 20px;
		line-height: 28px;
	}

	.benefits {
		padding: 60px 20px;
	}

	.benefits-row {
		margin-top: 52px;
		justify-content: center;
	}

	.points-element {
		flex-basis: 48%;
		margin-bottom: 32px;
	}

	.points-element:nth-child(odd) {
		margin-right: 20px;
	}

	.position {
		padding: 60px;
		width: 100%;
	}
}

@media screen and (min-width: 1600px) {
	.points-element {
		flex-basis: 30%;
	}

	.benefits-row > div {
		max-width: none;
	}
}
