#common-slider {}

/*--------------------------------------------------------------------------------------------------*/

#common-slider > .content-wrapper:first-child {}
@media (min-width: 900px)	 { #common-slider > .content-wrapper:first-child { margin-bottom: 50px; } }
@media (max-width: 899.99px) { #common-slider > .content-wrapper:first-child { margin-bottom: 30px; } }

/*--------------------------------------------------------------------------------------------------*/

#common-slider > .content-wrapper:last-child {}
@media (min-width: 900px)	 { #common-slider > .content-wrapper:last-child { margin-top: 50px; } }
@media (max-width: 899.99px) { #common-slider > .content-wrapper:last-child { margin-top: 30px; } }

/*--------------------------------------------------------------------------------------------------*/

#common-slider > .content-wrapper > .title,
#common-slider > .content-wrapper > .subtitle {
	text-align: center;
	font-family: "Stretch Pro";
}
#common-slider > .content-wrapper > .title {
	max-width: 980px;
	margin: 0 auto 25px;
	
	text-transform: uppercase;
}
#common-slider > .content-wrapper > .subtitle {
	max-width: 450px;
	margin: 0 auto;
}
@media (min-width: 900px) {
	#common-slider:not(:first-child) > .content-wrapper > .title { font-size: 40px; }
	#common-slider:first-child		 > .content-wrapper > .title { font-size: 50px; }
	#common-slider > .content-wrapper > .subtitle { font-size: 24px; }
}
@media (max-width: 899.99px) {
	#common-slider > .content-wrapper > .title { font-size: 24px; }
	#common-slider > .content-wrapper > .subtitle { font-size: 18px; }
}

/*--------------------------------------------------------------------------------------------------*/

#common-slider > .slider-wrapper > .swiper { overflow: visible; }

/*--------------------------------------------------------------------------------------------------*/

@media (min-width: 900px) {
	#common-slider > .slider-wrapper > .swiper > .swiper-button-next {
		top: 50%; right: 6.25vw; transform: translate(-50%, -50%);
		display: block; height: 150px; width: 150px;
		margin: 0;
		
		background-color: #F2F2F2;
		background-image: url("../../images/emojis/left.png");
		background-position: center;
		background-size: 35% auto;
		background-repeat: no-repeat;
		border-radius: 50%;
	}
	#common-slider > .slider-wrapper > .swiper > .swiper-button-next:after { content: none; }
	.loaded #common-slider > .slider-wrapper > .swiper > .swiper-button-next { transition: background-color .2s ease-out; }
	#common-slider > .slider-wrapper > .swiper > .swiper-button-next:hover { background-color: #FFDA17; }
}
@media (max-width: 899.99px) {
	#common-slider > .slider-wrapper > .swiper > .swiper-button-next { display: none; }
}

/*--------------------------------------------------------------------------------------------------*/

#common-slider > .slider-wrapper > .pagination {}
@media (min-width: 900px) {
	#common-slider > .slider-wrapper > .pagination {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		column-gap: 10px;
		margin-top: 50px;
	}
	#common-slider > .slider-wrapper > .pagination:empty { display: none; }
	#common-slider > .slider-wrapper > .pagination > .swiper-pagination-bullet {
		position: relative;
		display: block; height: 12px; width: 30px;

		background-color: transparent;
		background-clip: content-box;
		border: solid 1px #000;
		border-radius: 6px;

		opacity: 1;

		transition:
			width			 1s ease-out,
			background-color 1s ease-out;
	}
	#common-slider > .slider-wrapper > .pagination > .swiper-pagination-bullet-active {
		width: 12px;
		background-color: #000;
	}
	#common-slider > .slider-wrapper > .pagination > .swiper-pagination-bullet-active + .swiper-pagination-bullet {
		width: 70px;
	}
}
@media (max-width: 899.99px) {
	#common-slider > .slider-wrapper > .pagination { display: none; }
}

/*--------------------------------------------------------------------------------------------------*/

#common-slider > .content-wrapper > .cta-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#common-slider > .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;
}
#common-slider > .content-wrapper > .cta-wrapper > .jobs-btn:hover {
	background-color: #000;
	color: #FFF;
}
#common-slider > .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;
}