/* CSS Document */
.careers-section {
  margin: 50px 0;
}
.careers-section .container {
  opacity: 0;
}
.careers-section.ready .container {
  opacity: 1;
  animation: fadeInUp 1.2s both;
}
.careers-section h2 {
	margin: 0 0 40px;
}

.open-positions {
	margin: 0 0 80px
}
.open-positions > div {
    width: 100%;
}
.open-positions .cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-decoration: none!important;
    margin: 0 0 45px;
}
.open-positions .cta span {
    width: 20%;
    color: var(--darker-text, #525252);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: right;
	padding: 10px;
}
.open-positions .cta .title {
	display: block;
	position:  relative;
    color: var(--teal, #0677A1);
    width: 60%;
    margin: 0;
    text-align: left;
	padding: 10px;
}
.open-positions .cta .title:after {
  content: '';
  position: absolute;
  top: 100%;
  left: unset;
  right: 0;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: all .3s ease;
}
.open-positions .cta:hover .title:after,
.open-positions .cta:focus .title:after{
 left: 0;
 right: unset;
 width: 100%;
 background-color: var(--teal, #0677A1);
}
@media (max-width: 768px) {
	.open-positions .cta {
		flex-direction: column;
		margin: 0 0 30px;
	}
	.open-positions .cta .title, .open-positions .cta span {
		width: 100%;
		text-align: left;
		padding: 5px 0;
	}
}

.work-perks {
	margin: 60px 0 80px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	row-gap: 60px;
	justify-content: center;
}
.work-perks > div {
    position: relative;
	width: calc(25% - 15px);
}
.work-perks .icon {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -30px);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 55px;
	color: #f9f9f9;
	border: 1px solid var(--purple, #59253A);
	background: var(--purple, #59253A);
	color: #FFF;
	font-size: 30px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
}
.work-perks .info {
	display: block;
	border-radius: 8px;
    border: 1px solid var(--purple, #59253A);
    padding: 40px 20px;
	height: 100%;
	text-align: center;
}
.work-perks .info strong {
	display: block;
	color: var(--main, #0E385E);
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0 0 10px;
}

.linkblocks-section {
	margin: 80px 0 50px;
}
.linkblocks-section h2 {
	text-align: center;
}
.linkblocks-section .grid {
	column-gap: 80px;
	row-gap: 40px;
	margin: 40px 0 0;
}
.linkblocks-section .grid .item {
	width: calc(50% - 40px);
}

.single-job .container {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 22px;
}

@media (max-width: 1200px) {
	.work-perks > div {
		width: calc(33.3333% - 14px);
	}
}
@media (max-width: 991px) {}
@media (max-width: 768px) {
	.linkblocks-section .grid .item {
		width: 100%;
	}
	.work-perks > div {
		width: calc(50% - 10px);
	}
}
@media (max-width: 540px) {
	.work-perks > div {
		width: 100%;
	}
}