/*******************************/
/********* Job Offer CSS *******/
/*******************************/
.job-item {
    margin-bottom: 30px;
    background: #fdfdfd;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.job-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.job-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.job-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-title-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #030f27;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.job-title-box h3 {
    margin: 0;
    padding-left: 20px;
    color: #fdbe33;
    font-size: 18px;
    font-weight: 700;
}

.job-plus {
    width: 60px;
    height: 60px;
    background: #fdbe33;
    color: #030f27;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.job-plus:hover {
    background: #e6a71e;
}

.job-text {
    padding: 25px;
}

.job-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    font-style: italic;
    border-bottom: 2px solid #fdbe33;
    display: inline-block;
    padding-bottom: 5px;
}

.job-desc {
    color: #666;
    margin-bottom: 0;
}