/* ===============================
   CAREER HERO
=============================== */

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 80px;
    background:url("../image/careers.jpg") center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
}

.hero h1{
    margin:20px 0;
    font-size:3rem;
}

.hero-text{
    max-width:760px;
    margin:auto;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

/* ===============================
   SECTIONS
=============================== */

section{
    width:min(1200px,90%);
    margin:auto;
    padding:80px 0;
}

section h2{
    margin:15px 0;
}

section>p{
    max-width:750px;
}

/* ===============================
   HERO TAG
=============================== */

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #444;
    border-radius:30px;
    font-size:.85rem;
    letter-spacing:1px;
}

/* ===============================
   CARDS
=============================== */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
    margin-top:35px;
}

.product-card{
    background:#111;
    padding:25px;
    border-radius:15px;
}

.product-card h3{
    margin-bottom:15px;
}

/* ===============================
   VALUES
=============================== */

.section-heading{
    width:min(1200px,90%);
    margin:auto;
    padding:80px 0 30px;
    text-align:center;
}

.values-slider{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-top:35px;
}

.value-card{
    background:#111;
    padding:25px;
    border-radius:15px;
    text-align:center;
}

.value-icon{
    font-size:2.8rem;
    margin-bottom:15px;
}

.value-card h3{
    margin-bottom:15px;
}

.value-card a{
    display:inline-block;
    margin-top:15px;
    font-weight:bold;
}

/* ===============================
   CTA
=============================== */

section:last-of-type{
    text-align:center;
}

section:last-of-type .hero-buttons{
    justify-content:center;
}

/* ===============================
   RESPONSIVE
=============================== */

@media(max-width:768px){

.hero{
    padding:100px 20px 70px;
}

.hero h1{
    font-size:2.2rem;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a,
.hero-buttons button{
    width:100%;
}

.cards,
.values-slider{
    grid-template-columns:1fr;
}

}