#jobs {}
#jobs > .content-wrapper {}

/*--------------------------------------------------------------------------------*/

#jobs > .content-wrapper > .title {
	text-align: center;
	text-transform: uppercase;
    font-family: "Stretch Pro";
}
@media (min-width: 900px) {
	#jobs > .content-wrapper > .title {
		font-size: 50px;
		margin-bottom: 50px;
	}
}
@media (max-width: 899.99px) {
	#jobs > .content-wrapper > .title {
		font-size: 24px;
		margin-bottom: 30px;
	}
}

/*--------------------------------------------------------------------------------*/

#jobs > .content-wrapper > .filters-wrapper { position: relative; }
@media (min-width: 900px) {
	#jobs > .content-wrapper > .filters-wrapper { margin-bottom: 100px; }
	#jobs > .content-wrapper > .filters-wrapper > .cta {
		position: absolute; bottom: -60px; left: max(700px, min(75%, 50% + 450px)); z-index: 1;
		
		text-align: left;
		font-family: "Stretch Pro";
		font-size: 15px;
	}
	#jobs > .content-wrapper > .filters-wrapper > .cta:before {
		content: '';
		position: absolute; top: -30px; left: -95px; transform: rotate(140deg);
		display: block; height: 110px; width: 110px;
		
		background-image: url("../../images/arrow.gif");
		background-size: contain;
		background-repeat: no-repeat;
	}
}
@media (max-width: 899.99px) {
	#jobs > .content-wrapper > .filters-wrapper { margin-bottom: 50px; }
	#jobs > .content-wrapper > .filters-wrapper > .cta { display: none; }
}

/*--------------------------------------------------------------------------------*/

#jobs > .content-wrapper > .jobs { margin-bottom: 50px; }
#jobs > .content-wrapper > .jobs > .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
@media (min-width: 900px) {
	#jobs > .content-wrapper > .jobs > .grid { column-gap: 30px; }
	@media (min-width: 1200px) {
		#jobs > .content-wrapper > .jobs > .grid > .job { flex: 0 0 calc((100% - 90px) / 4); }
		#jobs > .content-wrapper > .jobs > .grid > .job:not(:nth-child(-n + 4)) { margin-top: 50px; }
	}
	@media (max-width: 1199.99px) {
		#jobs > .content-wrapper > .jobs > .grid > .job { flex: 0 0 calc((100% - 30px) / 2); }
		#jobs > .content-wrapper > .jobs > .grid > .job:not(:nth-child(-n + 2)) { margin-top: 50px; }
	}
	#jobs > .content-wrapper > .jobs > .grid > .job { transition: transform .4s ease-out; }
	#jobs > .content-wrapper > .jobs > .grid > .job:hover { transform: translateY(-20px) rotate(5deg); }
}
@media (max-width: 899.99px) {
	#jobs > .content-wrapper > .jobs > .grid { column-gap: 25px; }
	@media (max-width: 899.99px) {
		#jobs > .content-wrapper > .jobs > .grid > .job { flex: 0 0 100%; }
		#jobs > .content-wrapper > .jobs > .grid > .job:not(:first-child) { margin-top: 25px; }
	}
}

/*--------------------------------------------------------------------------------*/

#jobs > .content-wrapper > div > .cta-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#jobs > .content-wrapper > div > .cta-wrapper > .load-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;
}
#jobs > .content-wrapper > div > .cta-wrapper > .load-btn:hover {
	background-color: #000;
	color: #FFF;
}
#jobs > .content-wrapper > div > .cta-wrapper > .load-btn:before {
	content: '';
	display: block; height: 50px; width: 50px; transform: rotate(90deg);
	
	background-image: url("../../images/emojis/left.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
#jobs > .content-wrapper > div > .cta-wrapper > .load-btn.loading {
	pointer-events: none;
	animation: pulse 1s infinite;
}
@keyframes pulse {
	0%	 { box-shadow: 0 0 3px -3px rgba(200,200,200,1); }
	100% { box-shadow: 0 0 3px 20px rgba(200,200,200,0); }
}