.careers-list .single-career {
  margin: 0 0 20px;
}
.careers-list .single-career .career-btn a {
  display: block;
  background: #ddd;
  text-decoration: none;
  padding: 10px 50px 10px 15px;
  font-weight: 700;
  position: relative;
}
.careers-list .single-career .career-btn a::before {
  content: "";
  background: #fff;
  width: 3px;
  height: 30px;
  transition: all 0.5s linear;
  opacity: 1;
  position: absolute;
  right: 28.5px;
  top: 50%;
  transform: translateY(-50%);
}
.careers-list .single-career .career-btn a::after {
  content: "";
  background: #fff;
  width: 30px;
  height: 3px;
  opacity: 1;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.careers-list .single-career.active .career-btn a::before {
  opacity: 0;
}
.careers-list .single-career .career-content {
  padding: 0.1px 60px;
  background: #fff;
  border: 2px solid #ddd;
  border-top: none;
  display: none;
}
.careers-list .single-career .career-content p:first-child {
  margin-top: 25px;
}
