.our_job{
	width: 100%;
	padding: 20px;
	padding-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.our_job_intro{
	color: var(--blue);
	font-size: 1rem;
	margin: 0;
	margin-bottom: 32px;
}
.our_job_title{
	font-size: 2.2rem;
	text-align: center;
	font-weight: 800;
	margin: 0;
	margin-bottom: 32px;
}
.our_job_subtitle{
	font-size: 1.3rem;
	font-weight: 300;
	text-align: center;
	margin: 0;
	margin-bottom: 64px;
	max-width: 900px;
}
.our_job_subtitle b{
	font-weight: 700;
}
.our_job_cards_container{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.our_job_card{
	width: 100%;
	max-width: 350px;
	border-radius: 20px;
	position: relative;
	background-color: rgb(253, 253, 253);
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.our_job_card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: linear-gradient(
    45deg,
    magenta,
    blue,
    black
  );
  z-index: -1;
}
.our_job_card_title_container{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	gap: 12px;
}
.our_job_card_title{
	margin: 0;
	font-size: 1.4rem;

}
.our_job_card_list{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}
.our_job_card_list li{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}
.our_job_card_list li span{
	font-size: 1.1em;
	font-weight: 300;
}
.our_job_pc_icon{
  width: 48px;
  height: 48px;
  background: url("../images/frontPage/computer.svg") no-repeat center;
  background-size: contain;
}
.our_job_cap_icon{
  width: 48px;
  height: 48px;
  background: url("../images/frontPage/graduation-cap.svg") no-repeat center;
  background-size: contain;
}
.our_job_zap_icon{
  width: 48px;
  height: 48px;
  background: url("../images/frontPage/zap.svg") no-repeat center;
  background-size: contain;
}
.our_job_check_icon{
  width: 24px;
  height: 24px;
  background: url("../images/frontPage/check.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 900px) {
	.our_job_cards_container{
		flex-direction: row;
	}
	.our_job_title{
		font-size: 3rem;
	}
	.our_job_subtitle{
		margin-bottom: 120px;
		line-height: 1.8rem;
	}
}
@media (min-width: 1200px) {
	.our_job_cards_container{
		gap: 40px;
	}
}