/*--------------------------------------------------------------
# Job
--------------------------------------------------------------*/
.job .department {
  position: relative;
  box-shadow: 0px 2px 15px rgba(133, 31, 31, 0.274);
  padding: 10px;
  margin: 40px auto 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  transition: 0.5s;
}

.job .department:hover {
  transform: translateY(-10px);
}

.job .department .job-info {
  display: block;
  text-align: center;
  margin: auto;
}

.job .department h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #b42121;
}

.job-list .job-box {
  -webkit-box-shadow: 0 0 35px 0 rgba(130, 130, 130, 0.2);
          box-shadow: 0 0 35px 0 rgba(130, 130, 130, 0.2);
  border-radius: 10px;
  padding: 10px 35px;
}

.job-box ul {
  list-style: none;
}

.job-box .img-holder {
  height: 65px;
  width: 65px;
  background-color: #4e63d7;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(78, 99, 215, 0.9)), to(#5a85dd));
  background-image: linear-gradient(to right, rgba(78, 99, 215, 0.9) 0%, #5a85dd 100%);
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 65px;
}

.job-content ul li {
  font-weight: 600;
  opacity: 0.75;
  border-bottom: 1px solid #ccc;
  padding: 10px 5px;
}
  
@media (min-width: 768px) {
.job-content ul li {
  border-bottom: 0;
  padding: 0;
}
}

.job-content ul li i {
font-size: 20px;
position: relative;
top: 1px;
}
.mb-30 {
  margin-bottom: 30px;
}

.job-button a {
  color: white;
}