/* ==========================================================
   CAREER PAGE
========================================================== */

.career-page {
    background: #ffffff;
    color: #2f3540;
}


/* ==========================================================
   GENERAL
========================================================== */

.career-page .section-padding {
    padding: 100px 0;
}

.career-page .section-label {
    display: block;
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;

    color: #a7a7a7;
    text-transform: uppercase;
}

.career-page .career-section-header {
    margin-bottom: 42px;
}

.career-page .career-section-header h2 {
    margin: 0;

    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;

    color: #2f3540;
}


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

.career-hero {
    position: relative;

    width: 100%;
    height: 540px;

    overflow: hidden;

    background: #1d1d1d;
}

.career-hero-slider,
.career-hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.career-hero-slide {
    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.career-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.career-hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.career-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.50),
            rgba(0,0,0,0.08)
        );
}

.career-hero-content {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;

    z-index: 2;
}

.career-hero-title {
    display: inline-block;

    padding: 12px 24px;

    background: rgba(40,40,40,0.72);

    color: #ffffff;

    font-size: 28px;
    font-weight: 400;

    letter-spacing: 0.5px;
}


/* ==========================================================
   HERO DOTS
========================================================== */

.career-hero-dots {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 10px;

    z-index: 5;
}

.career-hero-dots button {
    width: 10px;
    height: 10px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.45);

    cursor: pointer;

    transition: all 0.3s ease;
}

.career-hero-dots button.active {
    width: 30px;

    border-radius: 10px;

    background: #ffffff;
}


/* ==========================================================
   OVERVIEW
========================================================== */

.career-overview {
    background: #ffffff;
}

.career-overview-content {
    max-width: 900px;
}

.career-overview-content p {
    margin-bottom: 14px;

    font-size: 16px;
    font-weight: 300;

    line-height: 1.9;

    color: #5e6670;
}


/* ==========================================================
   OPPORTUNITIES
========================================================== */

.career-opportunities {
    background: #f7f7f7;
}

.career-intro {
    max-width: 900px;

    margin-bottom: 45px;
}

.career-intro p {
    margin: 0;

    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;

    color: #5e6670;
}

.opportunities-list {
    border-top: 1px solid #dddddd;
}

.opportunity-item {
    padding: 28px 0;

    border-bottom: 1px solid #dddddd;
}

.opportunity-item h3 {
    margin-bottom: 10px;

    font-size: 17px;
    font-weight: 500;

    color: #303845;
}

.opportunity-item h3::before {
    content: "— ";

    color: #9b1c31;
}

.opportunity-item p {
    max-width: 1100px;

    margin: 0;

    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;

    color: #69717c;
}


/* ==========================================================
   BERGER PAINTS INDONESIA
========================================================== */

.career-indonesia {
    background: #ffffff;
}

.career-gallery {
    position: relative;
}

.career-gallery-track {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;
}

.career-gallery-slide {
    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.career-gallery-slide.active {
    opacity: 1;
    visibility: visible;
}

.career-gallery-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.career-gallery-dots {
    display: flex;
    justify-content: center;

    gap: 9px;

    margin-top: 22px;
}

.career-gallery-dots button {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 1px solid #6d7480;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    transition: all 0.3s ease;
}

.career-gallery-dots button.active {
    background: #2d5f8f;
    border-color: #2d5f8f;
}


/* ==========================================================
   WORKING WITH US
========================================================== */

.career-working {
    background: #f7f7f7;
}

.working-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 90px;
    row-gap: 45px;
}

.working-item h3 {
    margin-bottom: 14px;

    font-size: 15px;
    font-weight: 500;

    text-transform: uppercase;

    color: #343b46;
}

.working-item p {
    margin: 0;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.9;

    color: #68707a;
}


/* ==========================================================
   TESTIMONIALS
========================================================== */

.career-testimonials {
    background: #ffffff;
}

.testimonial-slider {
    position: relative;
}

.testimonial-slide {
    display: none;

    grid-template-columns: 38% 62%;

    min-height: 380px;
}

.testimonial-slide.active {
    display: grid;
}

.testimonial-image {
    overflow: hidden;

    background: #eeeeee;
}

.testimonial-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.testimonial-content {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px 70px;

    background: #333333;

    color: #ffffff;
}

.quote-mark {
    position: absolute;

    top: 28px;
    left: 55px;

    font-size: 70px;
    font-weight: 300;

    line-height: 1;

    color: rgba(255,255,255,0.8);
}

.testimonial-content blockquote {
    max-width: 620px;

    margin: 0 0 28px;

    font-size: 22px;
    font-weight: 400;

    line-height: 1.65;

    color: #ffffff;
}

.testimonial-name {
    margin: 0 0 4px;

    font-size: 13px;
    font-weight: 500;

    color: #ffffff;
}

.testimonial-position {
    margin: 0;

    font-size: 12px;
    font-weight: 300;

    color: rgba(255,255,255,0.65);
}

.testimonial-dots {
    display: flex;
    justify-content: center;

    gap: 10px;

    margin-top: 24px;
}

.testimonial-dots button {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 1px solid #6d7480;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;
}

.testimonial-dots button.active {
    background: #2d5f8f;
    border-color: #2d5f8f;
}


/* ==========================================================
   CAREER BOTTOM
========================================================== */

.career-bottom {
    background: #f7f7f7;
}

.career-social-links {
    display: flex;

    gap: 45px;
}

.career-social-link {
    display: flex;
    flex-direction: column;

    gap: 14px;

    color: #3a424d;
    text-decoration: none;

    transition: 0.3s ease;
}

.career-social-link i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #2d5f8f;

    color: #ffffff;

    font-size: 24px;
}

.career-social-link span {
    font-size: 14px;
    font-weight: 400;
}

.career-social-link:hover {
    color: #9b1c31;

    transform: translateY(-3px);
}


.career-vacancy-content {
    max-width: 600px;
}

.career-vacancy-content p {
    margin-bottom: 12px;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.8;

    color: #626b76;
}

.career-vacancy-content .vacancy-disclaimer {
    margin-top: 22px;

    font-size: 12px;
}

.career-vacancy-button {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 24px;
    padding: 13px 20px;

    border: 1px solid #2d5f8f;

    color: #2d5f8f;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.3s ease;
}

.career-vacancy-button:hover {
    background: #2d5f8f;

    color: #ffffff;
}


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

@media (max-width: 991px) {

    .career-page .section-padding {
        padding: 75px 0;
    }

    .career-hero {
        height: 450px;
    }

    .career-page .career-section-header h2 {
        font-size: 36px;
    }

    .working-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .testimonial-slide.active {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        height: 400px;
    }

}


@media (max-width: 767px) {

    .career-page .section-padding {
        padding: 60px 0;
    }

    .career-hero {
        height: 380px;
    }

    .career-hero-title {
        font-size: 24px;
    }

    .career-page .career-section-header h2 {
        font-size: 30px;
    }

    .career-gallery-track {
        height: 300px;
    }

    .testimonial-image {
        height: 300px;
    }

    .testimonial-content {
        padding: 50px 30px;
    }

    .testimonial-content blockquote {
        font-size: 18px;
    }

    .quote-mark {
        left: 28px;
    }

    .career-social-links {
        gap: 30px;
    }

}