@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;900&display=swap');

:root{
    --implats-primary:#004282;
    --implats-primary-dark:#003366;
    --implats-secondary:#00559f;
    --implats-grey:#A2AAB2;
    --implats-dark-grey:#6D6E72;
    --implats-light:#F4F6F8;
    --implats-turquoise:#00B0C7;
}

html,
body{
    font-family:'Roboto', sans-serif !important;
    font-weight:400;
    color:#4C4D4F;
	font-size: 1rem;
    overflow-x:hidden;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'Roboto', sans-serif;
    font-weight:500;
    letter-spacing:-0.02em;
}

.banner-tag,
.section-tag{
    font-family:'Roboto', sans-serif;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
}

.banner-content p,
.feature-card p,
.evp-section p,
.careers-cta p{
    font-weight:300;
    line-height:1.8;
}

.btn,
.btn-careers{
    font-family:'Roboto', sans-serif;
    font-weight:500;
}

/* ==========================================
   HERO BANNER
========================================== */

.careers-hero{
    position:relative;
    background:var(--implats-primary);
    overflow:hidden;
}

.community-mosaic-hero{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    grid-auto-rows:minmax(220px, 1fr);
    min-height:540px;
    width:100%;
    background:#004282;
    isolation:isolate;
}

.mosaic-tile{
    position:relative;
    min-height:220px;
    overflow:hidden;
}

.mosaic-text{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:20px;
    padding:36px;
    background:#004282;
    color:#fff;
    text-align:center;
    z-index:2;
}

.mosaic-text span{
    display:block;
    max-width:360px;
    font-size:1.55rem;
    font-weight:500;
    line-height:1.18;
}

.mosaic-image img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.05);
    animation:mosaicImageSwap 12s infinite ease-in-out;
}

.mosaic-image img:first-child{
    opacity:1;
}

.mosaic-image img:nth-child(2){
    animation-delay:6s;
}

.tile-care{
    grid-column:1 / span 1;
    grid-row:1;
}

.tile-image-one{
    grid-column:2 / span 1;
    grid-row:1;
}

.tile-image-two{
    grid-column:1 / span 1;
    grid-row:2;
}

.tile-choice{
    grid-column:3 / span 1;
    grid-row:1;
}

.tile-image-three{
    grid-column:4 / span 1;
    grid-row:1;
}

.tile-image-four{
    grid-column:3 / span 1;
    grid-row:2;
}

.tile-image-five{
    grid-column:5 / span 1;
    grid-row:1;
}

.tile-sustainable{
    grid-column:2 / span 1;
    grid-row:2;
}

.tile-image-six{
    grid-column:5 / span 1;
    grid-row:2;
}

.tile-grow{
    grid-column:4 / span 1;
    grid-row:2;
}

.btn-careers{
    background:var(--implats-primary);
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    transition:all .3s ease;
}

.btn-careers:hover{
        background:var(--implats-primary-dark);
    color:#fff;
    text-decoration:none;
}

.mosaic-text .btn-careers{
    background:#fff;
    color:#004282;
    padding:12px 24px;
    border-radius:4px;
}

.mosaic-text .btn-careers:hover{
    background:var(--implats-turquoise);
    color:#fff;
}

@keyframes mosaicImageSwap{
    0%, 42%{
        opacity:1;
        transform:scale(1.05);
    }
    50%, 92%{
        opacity:0;
        transform:scale(1.12);
    }
    100%{
        opacity:1;
        transform:scale(1.05);
    }
}

/* ==========================================
   EVP SECTION
========================================== */

.evp-section{
    padding:50px 0;
}

.section-tag{
    color:var(--implats-primary);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}
.section-tagw{
	   color:var(--implats-turquoise);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
	
}
.evp-section h2,
.why-work h2,
.career-pathways h2,
.careers-cta h2{
	    color:var(--implats-primary);
    font-size:2rem;
    font-weight:500;
    line-height:1.1;
    margin:15px 0 25px;
}
.careers-cta2 h2{
	    color:#fff;
    font-size:2rem;
    font-weight:500;
    line-height:1.1;
    margin:15px 0 25px;
}
.latest-opportunities h2{
	    color:var(--implats-primary);
    font-size:2rem;
    font-weight:500;
    line-height:1.1;
    margin:15px 0 25px;
}

/* ==========================================
   WHY WORK WITH US
========================================== */

.why-work{
    background:#f8f9fa;
    padding:50px 0;
}

.feature-card{
    background:#fff;
    padding:40px;
    height:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card h4{
    color:var(--implats-primary);
    margin-bottom:15px;
    font-weight:700;
}

/* ==========================================
   CAREER PATHWAYS
========================================== */

.career-pathways{
    padding:50px 0;
}

.pathway-card{
    background:var(--implats-primary);
    color:#fff;
    border-radius:15px;
    text-align:center;
    padding:50px 20px;
    margin-bottom:30px;
    transition:.3s;
}

.pathway-card:hover{
    transform:translateY(-8px);
}

.pathway-card h5{
    margin:0;
    font-weight:700;
}

/* ==========================================
   CTA
========================================== */

.careers-cta{
    padding:50px 0;
    background:var(--implats-primary);
    color:#fff;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width:991px){

    .community-mosaic-hero{
        grid-template-columns:repeat(3, 1fr);
        grid-auto-rows:minmax(190px, 1fr);
        min-height:auto;
    }

    .mosaic-tile{
        min-height:190px;
    }

    .mosaic-text span{
        font-size:1.35rem;
    }

    .tile-care,
    .tile-image-one,
    .tile-image-two,
    .tile-choice,
    .tile-image-three,
    .tile-image-four,
    .tile-image-five,
    .tile-sustainable,
    .tile-image-six,
    .tile-grow{
        grid-column:auto;
        grid-row:auto;
    }

    .evp-section h2,
    .why-work h2,
    .career-pathways h2,
    .careers-cta h2{
        font-size:2.2rem;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .community-mosaic-hero{
        grid-template-columns:repeat(2, 1fr);
        grid-auto-rows:minmax(165px, 1fr);
    }

    .mosaic-tile{
        min-height:165px;
        animation-name:none;
    }

    .mosaic-text{
        padding:24px;
    }

    .mosaic-text span{
        font-size:1.1rem;
    }

    .evp-section,
    .why-work,
    .career-pathways,
    .careers-cta{
        padding:70px 0;
    }

    .evp-section h2,
    .why-work h2,
    .career-pathways h2,
    .careers-cta h2{
        font-size:2rem;
    }
}

@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1410px;
    }
}

/* ==========================================
   LATEST OPPORTUNITIES
========================================== */

.latest-opportunities{
    padding:50px 0;
    background:#f8fafc;
}

.section-intro{
    max-width:700px;
    margin:20px auto 40px;
    color:#666;
}

/* ==========================================
   VALUES
========================================== */

.values-section{
    padding:50px 0;
    background:#f8fafc;
}


.values-header h2{
    font-size:2rem;
    color:var(--implats-primary);
    margin:15px 0 25px;
}

.values-intro{
    font-size:1.5rem;
    line-height:1.6;
    color:var(--implats-primary);
    font-weight:300;
}

.value-card{
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    height: 100%;
    border-top: 4px solid var(--implats-turquoise);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
    z-index: 1;
}
.value-card.respect::before{
    background-image:url("/sites/implatscommunity/image/jpeg/w4.jpg");
}


.value-card.care::before{
    background-image:url("/sites/implatscommunity/image/jpeg/w5.jpg");
}

.value-card.deliver::before{
    background-image:url("/sites/implatscommunity/image/jpeg/w6.jpg");
}
.value-card::before{
    content:"";
    position:absolute;
    inset:0;

    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;

    opacity:.06;
    filter:grayscale(100%);
    z-index:0;
}
.value-card:hover::before{
    opacity:.13;
    transform:scale(1.05);
}

.value-card > *{
    position:relative;
    z-index:2;
}
.value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.value-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(0,176,199,.1);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.value-icon i{
    font-size:30px;
    color:var(--implats-primary);
}

.value-card h3{
    color:var(--implats-primary);
    margin-bottom:25px;
    font-size:2rem;
}

.value-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.value-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:15px;
    line-height:1.6;
}

.value-card ul li:before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--implats-turquoise);
}
.career-story-section{
    padding:50px 0;
    background:#fff;
}

.video-header h3{
    color:var(--implats-primary);
    margin-bottom:20px;
}

.video-link{
    color:var(--implats-primary);
    font-weight:700;
    text-decoration:none;
}

.video-link:hover{
    text-decoration:none;
    color:var(--implats-turquoise);
}

.careers-cta2{
    padding:50px 0;
    background:var(--implats-primary);
    color:#fff;
}
.career-story-section h2{
    color:var(--implats-primary);
}

section.career-story-section p {
    font-size: 1.1rem;
    line-height: 1.7;
	    font-weight: 300;
	    color: #4C4D4F;
	font-style: normal;
}
section.latest-opportunities p {
    font-size: 1.1rem;
    line-height: 1.7;
	    font-weight: 300;
	    color: #4C4D4F;
	font-style: normal;
}
section.evp-section p {
    font-size: 1.1rem;
    line-height: 1.7;
	    font-weight: 300;
	    color: #4C4D4F;
	font-style: normal;
}
section.careers-cta2 p {
    font-size: 1.1rem;
    line-height: 1.7;
	    font-weight: 300;
	    color: #ffffff;
	font-style: normal;
}

/* ==========================================
   SUPPORT SECTION
========================================== */

.support-section{
    padding:80px 0 40px;
    background:#f8fafc;
}

.support-card{
  
    margin:0 auto;
    text-align:center;

}

.support-card h3{
    color:var(--implats-primary);
    font-size:2rem;
    margin-bottom:20px;
}

.support-card p{
    font-size:1.1rem;
    line-height:1.8;
    color:#4C4D4F;
    margin-bottom:30px;
}

/* ==========================================
   SOCIAL LINKS
========================================== */

.social-section{
    padding:0 0 60px;
    background:#f8fafc;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:20px;
}

.social-links a{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:var(--implats-primary);
    font-size:22px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:all .3s ease;
}

.social-links a:hover{
    transform:translateY(-5px);
    color:#fff;
    background:var(--implats-primary);
}
.page-content {
    padding-bottom: 0px;
}

.main-navigation {
    border-bottom: solid 1px var(--implats-primary);

}
.careers-cta2 .btn-light{
    background:#fff;
    color:var(--implats-primary);
    border:none;
    padding:14px 30px;
    border-radius:40px;
    font-family:'Roboto', sans-serif;
    font-weight:500;
    transition:all .3s ease;
}

.careers-cta2 .btn-light:hover{
    background:#f4f6f8;
    color:var(--implats-primary-dark);
    text-decoration:none;
}


.culture-summary h2{
    color: var(--implats-primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.culture-summary p{
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4C4D4F;
    font-weight: 300;
}
.culture-divider{
    margin: 15px 0;
    text-align: center;
}

.culture-divider i{
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background: rgba(0,176,199,.12);
    color: var(--implats-turquoise);
    font-size: 18px;
}
.culture-subtitle{
 
    margin: 0 auto 35px;
    color: #6D6E72;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
}
.community-banner {
    background-color: #00B0C0;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.community-banner strong {
    font-weight: 700;
    margin-right: 8px;
}

.community-banner i {
    margin-right: 8px;
    color: #f4c542;
}

.community-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00B0C7; /* Implats Turquoise */
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.community-label {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;

    color: #ffffff;
    border-right: 4px solid #00B0C7;
    padding-right: 12px;

    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

section.portal-intro.py-5 {
    BACKGROUND-COLOR:#efefef;
 
}
section.portal-intro.py-5 {
    BACKGROUND-COLOR: #efefef;
    line-height: 31px;
}