.site-template--career {
	gap: 5em;
	display: grid;
	width: fit-content;
	background-color: #F2F4F5;
	grid-template-columns: 1fr 550px;
}

.site-template--career .site-template__content {
	min-height: 200px;
	padding-bottom: 2.5em;
}

.site-career__block + .site-career__block {
	margin-top: 2em;
	padding-top: 1.5em;
	border-top: solid 1px #D6D6D6;
}

.site-template--career .site-template__content h2 {
	font-weight: 600;
	font-size: 2.125rem;
	color: var(--e-global-color-primary);
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;

}

.site-template--career .site-template__content h3 {
	font-weight: 600;
	font-size: 1.125rem;
	margin-top: 0.95em;
	line-height: 1.75rem;
	text-transform: uppercase;
	color: var(--e-global-color-primary);
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
}

.site-template--career .site-template__content .site-career__block-texts {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	color: var(--e-global-color-primary);
	font-family: var(--e-global-typography-primary-font-family), Sans-serif;
}

.site-template--career .site-template__content .site-career__block-texts p:last-child {
	margin-bottom: 0;
}

.site-template--career .site-template__sidebar {
	position: relative;
}

.site-template--career .site-template__sidebar-body {
	width: 100%;
	display: flex;
	color: #ffffff;
	max-width: 550px;
	height: fit-content;
	border-radius: 20px;
	flex-direction: column;
}

.site-template--career .site-template__content-breadcrumbs {
	text-align: left;
}


/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.site-template--career .site-template__content h2 {
		font-size: 1.65rem;

	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

	.site-template--career .site-template__sidebar-body {
		max-width: 550px;
	}

}

/*mobile and tablet*/
@media (max-width: 1024px) {

	.site-template--career {
		gap: 2em;
		grid-template-columns: 1fr;
	}

	.site-template--career .site-template__sidebar-body {
		margin: 0 auto;
	}

	.site-template--career .site-template__sidebar {
		padding-bottom: 2em;
	}

}

/*desktop*/
@media (min-width: 1025px) {

	.site-template--career .site-template__sidebar {
		padding: 10% 0 5% 0;
	}

	.site-template--career .site-template__sidebar-body {
		top: 15%;
		position: sticky;
	}

}

/*laptop 1*/
@media (min-width: 1025px) and (max-width: 1439px) {

	.site-template--career {
		gap: 2.5em;
		grid-template-columns: 1fr 480px;
	}

	.site-template--career .site-template__sidebar-body {
		max-width: 480px;
	}

}

/*laptop 2*/
@media (min-width: 1440px) and (max-width: 1700px) {

	.site-template--career {
		gap: 3em;
		grid-template-columns: 1fr 500px;
	}

	.site-template--career .site-template__sidebar-body {
		max-width: 500px;
	}

}

/*RESPONSIVE*/
