.job_wrapper{
	widows: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	gap: 4rem;
}
.job_stripe{
	flex: 1 1 0;
	widows: 100%;
	display: flex;
	justify-content: space-between;
	justify-items: center;
	align-items:stretch;
}
.job_con{
	border-radius: 20px;
	padding: 1rem;
	box-sizing: border-box;
	box-shadow: 1px 1px 10px #cfcfcf;
	width: 30%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 2rem;
}
.job_con_topstripe{
	width: 100%;
	display: flex;
	justify-content: space-between;
	justify-items: center;
	align-items: flex-end;
}
.job_complogo{
	width: 4.3rem;
	border-radius: 20px;
}
.job_otherjobs{
	font-size: .8rem;
	margin: 0;
}
.job_titeljob{
	font-weight: bold;
	margin: 0;
}
.job_jobdesc{
	font-size: .8rem;
	color: #878787;
	margin: 0;
}
.job_infowrapper{
	width: 100%;
	display: flex;
	justify-content: space-between;
	justify-items: center;
	align-items: center;
}
.job_infohigh{
	background-color: #D7E6FF;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	padding-top: .6rem;
	padding-bottom: .6rem;
	padding-left: .5rem;
	padding-right: .5rem;
	gap: .2rem;
}
.job_infotext{
	font-size: .7rem;
	margin: 0;
	color: #0045B9;
}
.textpur{
	color: #9B00B5 !important;
}
.purpel{
	background-color: #F7C8FF;
}
.textyel{
	color: #A07300 !important;
}
.yellow{
	background-color: #FFF1CD;
}
.job_bewerbenbutton{
	width: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	background: #2E29D5;
    background: -moz-linear-gradient(180deg, #2E29D5 0%, #F5770C 75%);
    background: -webkit-linear-gradient(180deg, #2E29D5 0%, #F5770C 75%);
    background: linear-gradient(90deg, #2E29D5 0%, #F5770C 75%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4b31c2",endColorstr="#d66b2e",GradientType=1);
	color: white;
	background-position-x: 50%;
	padding: 1.4rem;
	box-sizing: border-box;
	border-radius: 30px;
	transition: .4s all linear;
}
.job_bewerbenbutton:hover{
	cursor: pointer;
	background-size: 200% 200%;
	background-position-x: 100%;
}
.job_header{
	margin-bottom: 6rem;
}

@media only screen and (max-width: 1100px) {

	.job_wrapper{
		flex-direction: row;
	}
	.job_stripe{
		gap: 2rem;
		flex-direction: column;
	}
	.job_con{
		width: 100%;
	}

}
@media only screen and (max-width: 750px) {
	.job_wrapper{
		gap: 4rem;
		flex-direction: column;
	}
	.job_stripe{
		gap: 4rem;
	}
}