#lets-grow {
    position: relative;
    top: 125px;
    padding: 54px 0px;
}

.lets-card {
    border-radius: 18px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 54px;
    text-align: center;
}

.lets-card h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0151cc;
    padding-bottom: 24px;
}

.lets-card p {
    font-size: 1.25rem;
}

#jobs-listings {
    position: relative;
    top: 125px;
    padding: 54px 0px;
}

.job-card {
    /* width: 24rem; */
    /* border: 1px solid red; */
    padding: 54px 54px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    margin: 12px 4px;
}

h2.job-title {
    color: #0151cc;
    font-size: 2rem;
    font-weight: bold;
}

span.job-labels {
    color: #141b2e;
    font-size: 1.25rem;
    width: fit-content;
    text-align: center;
    padding: 4px 24px;
    border-radius: 24px;
    background: #f4f4f7;
    margin: 0px 0px 0px 12px;
}

span.job-labels:hover{
    cursor: default;
    background: #f7f7fb;
}

.view-detials-btn{
    border: none;
    padding: 6px 24px;
    border-radius: 24px;
    background:#227ef9;
    color: #ffffff;
    transition: 0.456s all;
}

a.view-detials-btn:hover{
    cursor: pointer;
    background: #0151cc;
    transition: 0.456s all;
    color: #ffffff;
}

.show-mobile{
    display:none;
}

@media (max-width: 767px) {
    #lets-grow {
        position: relative;
        top: 125px;
        padding: 24px 12px;
    }
    #jobs-listings {
        position: relative;
        top: 125px;
        padding: 24px 12px;
    }

    .lets-col{
        width: auto !important;
    }

    .show-mobile{
        display:block;
    }

    span.job-labels {
        margin: 0px 0px 0px 0px;
    }
    
}
/* ---------------------------------------------------------------
            Carrers Detaills CSS Only
------------------------------------------------------------------ */

#job-details{
    position: relative;
    top: 125px;
    padding: 54px 0px;
}

h2.jd-title{
    font-size: 2.5rem;
    font-weight: bold;
    color: #0151cc;
}

ul.jd-ul li{
    padding: 6px 0px;
}

li.btn-li{
    margin-top:12px;
}

a.apply-now-btn{
    padding: 12px 24px;
    margin-top: 12px;
    border-radius: 24px;
    background: #227ef9;
    color: #ffffff;
    transition: 0.456s all;
}

a.apply-now-btn:hover{
    cursor: pointer;
    background: #0151cc;
    transition: 0.456s all;
    color: #ffffff;
}

hr.my-hr{
    margin: 24px 0px;
    color: #0151cc;
}

@media (max-width: 767px) {
    #job-details {
        position: relative;
        top: 125px;
        padding: 24px 12px;
    }
}