.career-item{
  background:var(--lightblue);
  margin-bottom:20px;
  border-radius:10px;
  overflow:hidden;
}

.career-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:40px;
  cursor:pointer;
}

.career-header h4{
  color:var(--blue);
  margin:0;
}

.career-content{
  display:none;
  padding:0 40px 40px 40px;
  color:var(--black);
}

.apply-btn{
  margin-top:50px;
  cursor:pointer;
  font-weight: 700;
}

.career-modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  z-index:999;
}

.career-modal-overlay{
  background:rgba(0,0,0,.6);
  width:100%;
  height:100%;
  position:absolute;
}

.career-modal-content{
  position:relative;
  background:#fff;
  max-width:60%;
  margin:100px auto;
  padding:40px;
  z-index:2;
}

.career-close{
  position:absolute;
  right:20px;
  top:20px;
  cursor:pointer;
}

.toggle img{
	width: 36px;
	height: 36px;
	object-fit: contain;
	transition: 0.3s;
}

.career-item.active .toggle img{
  transform:rotate(180deg);
}

.career-content .arrow-btn-18{
	color: var(--blue);
	font-size: 16px;
}

.career-content .arrow-btn-18::before{
	margin-right: 10px;
}