.hero-jobs{
    position: relative;
    /* min-height: 650px; */
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    overflow: hidden;
}

.hero-jobs::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,35,25,.82),
        rgba(4,90,60,.72)
    );
}

.hero-jobs .container{
    position:relative;
    z-index:5;
}

.hero-jobs .hero-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 12px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    color:#fff;
    backdrop-filter:blur(15px);
    font-weight:500;
    margin-bottom:20px;
}

.hero-jobs h1 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    line-height: 1.08;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
}
.hero-jobs .text-gradient{
    background:linear-gradient(
        90deg,
        #5CF28D,
        #00D084,
        #A8FF78
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-jobs p{
    color:rgba(255,255,255,.82)!important;
    font-size:1.25rem;
    line-height:1.9;
    max-width:760px;
}