.joblist {
    background-color: #f7f7f7;
}

.joblist-card {
    position: relative;
    background-color: #ffffff;
    padding: 1.5rem;
    margin: 10px 0;
    border-radius: 10px 10px 0 10px;
    box-shadow: 0 2px 4px #d1d1d150;
    transition: all .2s ease-in-out;
}
.joblist-card::after{
    content: "";
    display: inline-block;
    width: 140px;
    height: 90px;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--main);
    clip-path: polygon(100% 0, 100% 100% , 0 100%);
    z-index: 1;
}
.joblist-card:hover {
    transform: translateY(1.5px);
    box-shadow: none;
}

.joblist-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.joblist-card-title {
    font-size: 18px;
    line-height: 1.5;
    z-index: 98;
}

.btn-job {
    position: absolute;
    bottom: -20px;
    right: -70px;
    margin-top: 17px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border-radius: 500px;
    padding: 4px 20px;
    z-index: 2;
  }
 
@media (max-width:991px) {
    .btn-job {
        right: -80px;
      }
}
@media (max-width:767px) {
    .btn-job {
        right: -30px;
      }
}
@media (max-width:576px) {
    .joblist-card-title{
        margin-top: 15px;
    }
}