.jobs {
	padding: 30px 0 100px;

	&-title {
		text-align: center;
		margin-bottom: 20px;
		color : @black;
		font-size : 22px;
		margin-bottom : 50px;
	}

	&-container {
		width: @width-container;
		margin:0 auto;
	}

	&-number {
		color : #606062;
		font-size : 12px;
		padding-left : 30px;
		text-transform : uppercase;
		margin-bottom : 20px;
		display : block;
	}

	&-list {
		list-style-type : none;
	}

	&-list-item {
		margin-top : 10px;

		&:first-child {
			margin-top : 0;
		}
	}

	&-list-item-link {
		display: block;
		padding : 15px 30px;
		background: @grey-background;
		text-decoration : none;
		position : relative;

		&::before {
			content : '';
			width : 25px;
			height : 24px;
			position : absolute;
			right : 30px;
			top : 50%;
			margin-top : -12px;
			background : url(../biomed/img/new-version/jobs/arrows.png) no-repeat top center;
		}

		&:hover {
			background-color : @red;

			.jobs-list-item-title {
				color : @white;
			}

			.jobs-list-item-desc {
				color : @white;
			}

			&::before {
				background-position : bottom center;
			}

		}

	}

	&-list-item-title {
		color : @black;
		font-size : 22px;
		margin-bottom : 5px;
	}

	&-list-item-desc {
		color : @black;
		font-size : 12px;
		text-transform : uppercase;
		margin : 0;
	}

}