#jobs {
	--grid-gap: clamp(1.75rem, 6.39vw + 0.32rem, 5.8rem);
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--grid-gap);
	padding: 0 var(--sec-inlineP) var(--grid-gap);
}
.jobs-head h2 {
	color: var(--color-h2);
	font-size: clamp(2.75rem, 2.76vw + 2.13rem, 4.5rem);
	padding: var(--heading-topP) 0 var(--heading-bottomP);
}
.jobs-head p {
	font-size: clamp(1.5rem, 0.47vw + 1.39rem, 1.8rem);
	margin: 0;
}
.jobs-head > button {
	font-size: 1.3rem;
	font-weight: 500;
	padding: 1rem 2rem;
	margin-top: var(--heading-topP);
	border: none;
	border-radius: 0.25rem;
	color: white;
	background-color: var(--color-btn);
	cursor: pointer;
}
.jobs-body {
	--row-gap: clamp(1.25rem, 2.37vw + 0.72rem, 2.75rem);
	--col-gap: clamp(1.25rem, 1.58vw + 0.90rem, 2.25rem);
	--btnH: 3rem;
	display: flex;
	flex-direction: column;
	gap: var(--row-gap);
	padding: 0;
	margin: 0;
}
.job-head {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: var(--col-gap);
}
.job-head > button {
	position: relative;
	aspect-ratio: 1;
	height: var(--btnH);
	border: 2px solid var(--color-btn-snd);
	border-radius: 50%;
	background-color: white;
	transition: all 0.4s ease-in-out;
	cursor: pointer;
}
.job-head > button::before, .job-head > button::after {
	content: '';
	position: absolute;
	top: calc(50% + -1px);
	left: calc(50% + 1px);
	width: 1.5rem;
	height: 2px;
	transform: translate(-50%, 0);
	background-color: var(--color-btn-snd);
	transition: all 0.4s ease-in-out;
}
.job-head > button::after {
	transform: translate(-50%, 0) rotate(-90deg);
}
.job-head > button.clicked {
	background-color: var(--color-btn-snd);
	transform: scale(1.15);
}
.job-head > button.clicked::before {
	background-color: white;
	transform: translate(-50%, 0) rotate(90deg);
}
.job-head > button.clicked::after {
	background-color: white;
	transform: translate(-50%, 0) rotate(0deg);
}
.job-head > h3 {
	font-size: 1.3rem;
	margin: 0;
}
.job-body {
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}
.job-body > ul {
	padding: var(--row-gap) 0 0 calc(var(--btnH) + var(--col-gap));
	margin: 0;
	list-style: disc outside none;
}
#application {
	padding: 0 var(--sec-inlineP);
}
#application > .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(25rem, 100%);
	margin: auto;
}
#application > .wrapper > h2 {
	font-size: clamp(1.75rem, 1.97vw + 1.31rem, 3rem);
	color: var(--color-h2);
	padding: var(--heading-topP) 0 var(--heading-bottomP);
}
#application > .wrapper > p {
	text-align: center;
	font-size: clamp(1.25rem, 0.39vw + 1.16rem, 1.5rem);
	margin: 0;
}
#job-form {
	--inputP: 0.5rem;
	--col-gap: 2rem;
	display: grid;
	grid-template-columns: 1fr;
	column-gap: var(--col-gap);
	width: 100%;
	margin-top: var(--heading-bottomP);
}
#job-form > h3 {
	--margin-h3: 1.5rem;
	padding-left: var(--inputP);
	margin: 0 0 var(--margin-h3);
}
#job-form > h3:not(:first-of-type) {
	margin-top: var(--margin-h3);
}
#job-form > .fst-cmn, #job-form > .snd-cmn  {
	display: flex;
	flex-direction: column;
}
label {
	padding-left: calc(var(--inputP) + 1px);
	color: #707070;
}
label:not(:first-of-type) {
	margin-top: 1.25rem;
}
input, textarea {
	box-sizing: border-box;
	font-size: 1.2rem;
	font-weight: 300;
	width: 100%;
	padding: var(--inputP);
	margin-top: 0.25rem;
	border: 1px solid #d0d0d0;
	border-radius: 2px;
}
textarea {
	resize: none;
}
#application > .wrapper > button {
	font-size: 1.25rem;
	font-weight: 500;
	text-align: center;
	padding: 1rem 2rem;
	margin: var(--heading-bottomP) 0;
	border: none;
	border-radius: 0.25rem;
	color: white;
	background-color: var(--color-btn);
	cursor: pointer;
}
@media (hover: hover) {
	.job-head > button:hover {
		background-color: var(--color-btn-snd);
		transform: scale(1.15);
	}
	.job-head > button:hover::before, .job-head > button:hover::after {
		background-color: white;
	}
}
@media (min-width: 54em) {
	#application {
		padding-inline: var(--sec-inlineP);
	}
	#application > .wrapper {
		width: min(50rem, 100%);
	}
	#application > .wrapper > form {
		grid-template-columns: repeat(2, 1fr);
	}
	#job-form > h3 { grid-row: 1; }
	#job-form > h3:not(:first-of-type) {
		margin-top: 0;
	}
	div.fst-cmn { grid-column: 1; }
	div.snd-cmn { grid-column: 2; }
}
@media (min-width: 60em) {
	#jobs {
		box-sizing: border-box;
		grid-template-columns: 3fr 4fr;
		align-items: center;
		min-height: calc(100vh - var(--langH) - var(--navH));
		padding: var(--grid-gap) var(--sec-inlineP);
	}
	.jobs-head > h2 {
		padding-top: 0;
	}
	.jobs-head > button {
		margin-top: calc(var(--heading-topP) / 1.5);
	}
}