#vacancy h2{
	font-weight: bold;
	font-size: 30px;
	line-height: 43px;
	text-transform: uppercase;
	color: #455B7B;
	margin-bottom: 40px;
}
.vacancy-items {
	display: none;
}
.vacancy-item {
	border-bottom: 1px solid #D3D3D3;
}
.vacancy-item__head {
	position: relative;
	font-weight: bold;
	font-size: 20px;
	line-height: 32px;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	color: #455B7B;
	cursor: pointer;
	padding: 30px 0;
}
.vacancy-item__head h3 {
	position: relative;
	padding-right: 29px;
}
.vacancy-item__head h3:after {
	content: '';
	position: absolute;
	right: 0;
	top: calc(50% - 4.5px);
	width: 16px;
	height: 9px;
	background: url(../image/icon/arrow-vacancy.png);
	transform: rotate(-90deg);
	transition: 200ms linear;
}
.vacancy-item__head.active h3:after {
	transform: rotate(0deg);
}
.vacancy-item__descption {
	padding-bottom: 60px;
	display: none;
}
.vacancy-item__descption h4 {
	font-weight: 500;
	font-size: 18px;
	line-height: 26px;
	color: #455B7B;
	margin-bottom: 12px;
	margin-top: 20px;
}
.vacancy-item__descption h4:first-child {
	margin-top: 0;
}
.vacancy-item__descption li p {
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
	padding-left: 14px;
	position: relative;
}
.vacancy-item__descption li p:after {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 5px;
	height: 5px;
	background: #F8DB48;
	border-radius: 50%;
}
.city {
	display: grid;
	grid-template-columns: 45px minmax(200px,290px);
	grid-gap: 30px;
	align-items: center;
	padding-bottom: 30px;
	border-bottom: 1px solid #D3D3D3;
}
.city p {
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
}
.city-list {
	width: 100%;
	border: 1px solid #D3D3D3;
	border-radius: 3px;
	position: relative;
	height: 45px;
}
.city-list:after {
	content: '';
	position: absolute;
	right: 20px;
	top: calc(50% - 2px);
	border: 6px solid #D3D3D3;
	border-bottom-width: 0px;
	border-left-width: 4px;
	border-right-width: 4px;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	opacity: 1;
}
.city-list__current {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
	padding: 10px 40px 10px 17px;
	cursor: pointer;
}
.city-list ul {
	position: absolute;
	left: -1px;
	top: calc(100% - 1px);
	background: #fff;
	z-index: 5;
	width: calc(100% + 2px);
	border: 1px solid #D3D3D3;
	border-top: transparent;
	display: none;
}
.city-list ul li {
	padding: 10px 40px 10px 17px;
	font-weight: normal;
	font-size: 14px;
	line-height: 26px;
	color: #494949;
	cursor: pointer;
	transition: 200ms linear;
}
.city-list ul li:hover {
	background: #ECF3FC;
}
@media (max-width: 991px){
	#vacancy .container {
		padding: 0 40px;
	}
}
@media (max-width: 767px){
	.question {
		margin-top: 172px;
	}
	#vacancy .container {
		padding: 0;
	}
	#vacancy h2 {
		padding: 0 20px;
		margin: 26px 0;
		font-size: 20px;
		line-height: 32px;
	}
	.city {
		padding: 0 0 30px 0;
		display: block;
		width: calc(100% - 40px);
		margin: 0 auto;
	}
	.city-list {
		max-width: 360px;
		margin-top: 5px;
	}
	.vacancy-items {
		padding: 0 20px;
	}
	.vacancy-item__head,
	.vacancy-item__descption h4 {
		font-size: 16px;
	}
}

