#career {}

/*--------------------------------------------------------------------------------------------------*/

#career > .content-wrapper {
	text-align: center;
}
#career > .content-wrapper > .title {
	max-width: 950px;
	margin: 0 auto 50px;
	
	text-transform: uppercase;
	font-family: 'Stretch Pro';
	font-size: 40px;
}
@media (min-width: 900px)	 { #career > .content-wrapper > .title { font-size: 50px; } }
@media (max-width: 899.99px) { #career > .content-wrapper > .title { font-size: 24px; } }
#career > .content-wrapper > .description {
	max-width: 460px;
	margin: 0 auto 50px;
	
	line-height: 20px;
	font-size: 14px;
	font-weight: 500;
}

/*--------------------------------------------------------------------------------------------------*/

#career > .content-wrapper > .cta-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#career > .content-wrapper > .cta-wrapper > .jobs-btn {
	display: flex; height: 150px; width: 150px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 10px;
	padding: 20px;
	
	background-color: #F2F2F2;
	border-radius: 50%;
	
	text-align: center;
	line-height: 18px;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	
	cursor: pointer;
	
	transition:
		background-color .2s ease-out,
		color			 .2s ease-out;
}
#career > .content-wrapper > .cta-wrapper > .jobs-btn:hover {
	background-color: #000;
	color: #FFF;
}
#career > .content-wrapper > .cta-wrapper > .jobs-btn:before {
	content: '';
	display: block; height: 35px; width: 50px;
	
	background-image: url("../../images/emojis/submit.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}