/* ==========================================================
   NAVBAR
========================================================== */

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;

    background: rgba(2, 78, 132, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

    transition: all .35s ease;

    min-height: 80px;
}

/* ketika discroll */

.custom-navbar.scrolled {
    background: #024E84;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .20);
}


/* ==========================================================
   CONTAINER
========================================================== */

.custom-navbar .container {
    max-width: 1400px;
}


/* ==========================================================
   LOGO
========================================================== */

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-bi {
    height: 24px;
}

.logo-ojk {
    height: 18px;
}

.logo-aspi {
    height: 18px;
}

.logo-fintech {
    height: 20px;
}

.logo-apuvindo {
    height: 14px;
}

.logo-lppi {
    height: 14px;
}


/* ==========================================================
   MENU
========================================================== */

.navbar-nav {

    align-items: center;

}

.nav-item {

    margin: 0 3px;

}

.nav-link {

    color: #fff !important;

    font-size: 15px;

    font-weight: 600;

    padding: 12px 16px !important;

    transition: .3s;

    position: relative;

}

.nav-link:hover {

    color: #D6ECFF !important;

}


/* underline */

.nav-link::after {

    content: "";

    position: absolute;

    left: 16px;

    right: 16px;

    bottom: 8px;

    height: 2px;

    background: #fff;

    transform: scaleX(0);

    transition: .25s;

}

.nav-link:hover::after {

    transform: scaleX(1);

}


/* ==========================================================
   BUTTON
========================================================== */

.navbar-buttons {

    display: flex;

    align-items: center;

}

.btn-gradient {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 110px;

    height: 42px;

    padding: 0 26px;

    border-radius: 999px;

    color: white !important;

    font-weight: 700;

    border: none;

    background: linear-gradient(90deg, #A83BC9, #6B59F7);

    transition: .25s;

}

.btn-gradient:hover {

    color: #fff !important;

    text-decoration: none;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(107, 89, 247, .35);

}


/* ==========================================================
   DROPDOWN
========================================================== */

.dropdown-menu {

    border: none;

    border-radius: 15px;

    padding: 10px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}

.dropdown-item {

    border-radius: 8px;

    transition: .25s;

    padding: 10px 15px;

}

.dropdown-item:hover {

    background: #EEF5FF;

}


/* ==========================================================
   TOGGLER
========================================================== */

.navbar-toggler {

    border: none;

    outline: none !important;

    box-shadow: none !important;

}

.navbar-toggler:focus {

    outline: none;

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:991px) {
    .navbar-brand {
        margin: 0;
    }

    .custom-navbar {

        min-height: 70px;

    }

    .logo-bi {

        height: 15px;

    }

    .logo-ojk {

        height: 15px;

    }

    .logo-aspi {

        height: 9px;

    }

    .logo-fintech {

        height: 9px;

    }

    .logo-apuvindo {

        height: 6px;

    }

    .logo-lppi {

        height: 9px;

    }

    .navbar-collapse {

        background: #024E84;

        margin-top: 15px;

        border-radius: 15px;

        padding: 20px;

    }

    .navbar-nav {

        text-align: left;

    }

    .nav-item {

        width: 100%;

    }

    .nav-link {

        padding: 14px !important;

    }

    .nav-link::after {

        display: none;

    }

    .navbar-buttons {

        margin-top: 20px;
        display: flex;
        flex-direction: flex;
        width: 100%;

        gap: 10px;

    }

    .btn-gradient {

        width: 100%;

        margin: 5px 0 !important;

    }

}

/* ==========================
   HERO SECTION
========================== */

.hero-section {
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    z-index: 0;
    background-color: #016bb2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;

    mask-image: linear-gradient(to bottom, black 10%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black 10%, transparent);
}

.hero-content {
    position: absolute;
    left: 90px;
    bottom: -158px;
    z-index: 10;
}

/* ==========================
   BUTTON
========================== */

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 48px;
    padding: 0 42px;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .8);

    color: #fff;
    font-weight: 800;
    font-size: 16px;

    background: linear-gradient(135deg,
            #A144A2,
            #8F3390,
            #7E2D7F);

    box-shadow: 0 12px 28px rgba(143, 51, 144, .45);

    transition: .3s;
}

.hero-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(143, 51, 144, .55);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991.98px) {

    .hero-section {
        min-height: 450px;
        padding: 80px 0;
    }

    .hero-bg {
        top: 0px;
    }

    .hero-content {
        left: 20px;
        bottom: 60px;
    }

    .hero-btn {
        height: 48px;
        padding: 0 38px;
        font-size: 15px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767.98px) {

    .hero-section {
        min-height: 380px;
        padding: 0;
        align-items: flex-end;
    }

    .hero-bg {
        top: 0px;
    }

    .hero-bg-image {
        width: auto;
        height: 100%;
        object-fit: cover;
        object-position: 65% center;
    }

    .hero-content {
        left: 15px;
        bottom: 90px;
    }

    .hero-btn {
        height: 35px;
        width: 50% !important;
        padding: 0 36px;
        font-size: 15px;
    }

}

/* ==========================
   LANDSCAPE MOBILE
========================== */

@media (max-height: 500px) and (orientation: landscape) {

    .hero-content {
        left: 40px;
        bottom: 20px;
    }

}

/* ==========================
   SECTION
========================== */

.agenda-section {
    background-color: #016bb2;
    padding: 40px 0 80px;
}

/* ==========================
   CARD 1
========================== */

.agenda-gradient {
    padding: 2px;
    border-radius: 28px;
    height: 100%;
    margin: 0;
    background: linear-gradient(90deg, #EC4899, #A855F7);

    box-shadow: 0 0 40px rgba(220, 80, 255, .4);
}

.agenda-card {
    background: rgba(61, 132, 197, .95);
    backdrop-filter: blur(14px);

    border-radius: 26px;
    padding: 40px;
    height: 100%;
}

.agenda-card .d-flex {
    gap: 20px;
}

/* ==========================
   CARD 2
========================== */

.border-card {
    border: 2px solid rgba(29, 78, 216, .6);
}

/* ==========================
   ICON
========================== */

.agenda-icon {
    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 22px;
}

.agenda-icon-purple {
    background: #795BAD;
}

.agenda-icon-blue {
    background: #286DBA;
}

/* ==========================
   TEXT
========================== */

.agenda-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 0;
}

.agenda-date {
    margin-top: 32px;
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    margin-bottom: 0;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:991px) {
    .agenda-gradient {
        margin-bottom: 20px;
    }

    .agenda-card {
        padding: 32px;
    }

}

@media (max-width:767px) {

    .agenda-card {
        padding: 24px;
    }

    .agenda-title {
        font-size: .95rem;
    }

    .agenda-date {
        margin-top: 24px;
        font-size: .85rem;
    }

    .agenda-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .assessment-card-inner {
        padding: 0;
    }

    .assessment-stat h3 {
        font-size: 18px !important;
    }

    .assessment-progress {
        margin: 0 10px;
    }

}


/* ======================================
   SECTION
====================================== */

.about-section {
    background: linear-gradient(to bottom,
            #187CBC,
            #2F81C3,
            #3E88CB);

    padding: 60px 0;
}

/* ======================================
   OUTER CARD
====================================== */

.about-wrapper {

    border-radius: 34px;
    overflow: hidden;
    position: relative;
}

/* ======================================
   GLASS CARD
====================================== */

.about-card {

    position: relative;
    z-index: 2;

}

/* ======================================
   CONTENT
====================================== */

.about-content {

    background: #17457B;

    border-radius: 22px;

    padding: 35px;
}

/* ======================================
   TITLE
====================================== */

.about-title {

    color: #fff;

    text-align: center;

    font-weight: 700;

    font-size: 2rem;

    margin-bottom: 35px;

    line-height: 1.4;
}

/* ======================================
   PARAGRAPH
====================================== */

.about-content p {

    color: #C6D4E6;

    font-size: 1rem;

    line-height: 2;

    font-weight: 600;

    text-align: justify;

    margin-bottom: 0;

}

/* ======================================
   FOOTER
====================================== */

.about-footer {

    text-align: right;

    color: rgba(255, 255, 255, .9);

    font-weight: 700;

}

/* ======================================
   TABLET
====================================== */

@media (max-width:991px) {

    .about-card {

        padding: 0;
        margin: 15px;

    }

    .about-title {

        font-size: 1.7rem;

    }

    .about-content {

        padding: 25px;

    }

}

/* ======================================
   MOBILE
====================================== */

@media (max-width:767px) {

    .about-wrapper {

        border-radius: 24px;

    }

    .about-card {

        margin: 0;

        padding: 0;

        border-radius: 20px;

    }

    .about-content {

        padding: 20px;

    }

    .about-title {

        font-size: 1.35rem;

        margin-bottom: 25px;

    }

    .about-content p {

        font-size: .95rem;

        line-height: 1.9;

    }

    .about-footer {

        text-align: center;

        margin-top: 30px;

    }

}

/* =====================================================
   PROBLEM STATEMENT
===================================================== */

.problem-section {
    background: #3E88CB;
    padding: 70px 0;
}

.problem-title {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-align: center;
}

/* =====================================================
   CARD
===================================================== */

.problem-card {
    background: #285F9F;
    border-radius: 28px;
    padding: 35px 25px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .18);

    height: 100%;

    transition: .35s;
}

.problem-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 45px rgba(0, 0, 0, .25);

}

.category-title {

    color: #fff;

    font-size: 20px;

    font-weight: 700;

    text-align: center;

    line-height: 1.6;

    margin-bottom: 35px;

    min-height: 90px;

}

/* =====================================================
   ACCORDION
===================================================== */

.accordion-item {

    margin-bottom: 16px;

}

.accordion-btn {

    width: 100%;

    background: #3B78BE;

    border: none;

    border-radius: 15px;

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    text-align: left;

    padding: 16px 50px 16px 18px;

    position: relative;

    cursor: pointer;

    transition: .3s;

    outline: none;

}

.accordion-btn:hover {

    background: #4A8AD6;

}

.accordion-btn:focus {

    outline: none;

    box-shadow: none;

}

/* Icon + */

.accordion-btn::after {

    content: "+";

    position: absolute;

    right: 18px;

    top: 50%;

    transform: translateY(-50%);

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: #fff;

    color: #2D67A8;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    font-weight: bold;

}

/* ketika terbuka */

.accordion-btn[aria-expanded="true"] {

    background: #4F93E8;

}

.accordion-btn[aria-expanded="true"]::after {

    content: "−";

}

/* =====================================================
   BODY
===================================================== */

.accordion-body {

    background: #ffffff;

    margin-top: 8px;

    border-radius: 15px;

    padding: 18px;

    font-size: 14px;

    line-height: 1.8;

    color: #4d4d4d;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:991px) {

    .problem-section {

        padding: 60px 0;

    }

    .problem-title {

        font-size: 32px;

        margin-bottom: 45px;

    }

    .category-title {

        min-height: auto;

        margin-bottom: 25px;

    }

}

@media (max-width:767px) {

    .problem-section {

        padding: 45px 0;

    }

    .problem-title {

        font-size: 26px;

        letter-spacing: 1px;

    }

    .problem-card {

        padding: 25px 18px;

        border-radius: 20px;

    }

    .category-title {

        font-size: 18px;

    }

    .accordion-btn {

        font-size: 14px;

        padding: 14px 45px 14px 15px;

    }

    .accordion-btn::after {

        width: 24px;
        height: 24px;
        font-size: 16px;

    }

    .accordion-body {

        font-size: 13px;

    }

}

/*==================================
TIMELINE
===================================*/

.timeline-section {

    background: linear-gradient(90deg,
            #98B7EA 0%,
            #7DA7DE 30%,
            #6298D5 65%,
            #4A8CCB 100%);
    padding: 80px 0;

}

.timeline-title {

    color: #fff;

    text-align: center;

    font-size: 38px;

    font-weight: 700;

    margin-bottom: 70px;

}

/* garis */

.timeline {

    position: relative;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    bottom: 0;

    width: 3px;

    background: rgba(255, 255, 255, .35);

    transform: translateX(-50%);

}

/* item */

.timeline-item {

    position: relative;

    width: 50%;

    padding: 0 55px;

    margin-bottom: 60px;

}

.timeline-item.left {

    left: 0;

    text-align: right;

}

.timeline-item.right {

    left: 50%;

}

/* card */

.timeline-content {

    background: #fff;

    border-radius: 22px;

    padding: 25px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

}

.timeline-date {

    display: inline-block;

    color: #4B84C7;

    font-weight: 700;

    margin-bottom: 10px;

}

.timeline-content h4 {

    color: #204B87;

    font-size: 20px;

    font-weight: 700;

}

.timeline-content p {

    color: #333;

}

.timeline-content small {

    color: #777;

    line-height: 1.8;

    display: block;

}

/* icon */

.timeline-icon {

    position: absolute;

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: #5B93D6;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    top: 20px;

    border: 5px solid rgba(255, 255, 255, .3);

    z-index: 20;

}

.timeline-item.left .timeline-icon {

    right: -28px;

}

.timeline-item.right .timeline-icon {

    left: -28px;

}

/*============================
RESPONSIVE
============================*/

@media(max-width:991px) {

    .timeline::before {

        left: 28px;

    }

    .timeline-item {

        width: 100%;

        left: 0 !important;

        padding-left: 75px;

        padding-right: 0;

        text-align: left !important;

    }

    .timeline-item .timeline-icon {

        left: 0 !important;

        right: auto;

    }

    .timeline-title {

        font-size: 30px;

    }

}

/*==========================================
SECTION
==========================================*/

.benefit-section {

    position: relative;

    overflow: hidden;

    padding: 80px 0;

    background: linear-gradient(90deg,
            #B9C8F2,
            #75A9E0,
            #3C88CE);

}

/*==========================================
TITLE
==========================================*/

.benefit-title {

    color: #fff;

    font-size: 42px;

    font-weight: 900;

    text-align: center;

    margin-bottom: 70px;

    letter-spacing: 2px;

}

/*==========================================
LEFT CARD
==========================================*/

.prize-card {

    position: relative;

    border-radius: 30px;

    overflow: hidden;

    padding: 70px 40px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    height: 100%;

    background: linear-gradient(135deg,
            #642D8F 0%,
            #8B3DAF 20%,
            #0A6FB8 65%,
            #0CA3DB 100%);

}

/* Glow */

.prize-glow {

    position: absolute;

    width: 320px;

    height: 320px;

    background: rgba(255, 80, 180, .35);

    border-radius: 50%;

    left: -120px;

    bottom: -60px;

    filter: blur(80px);

}

/* Prize */

.prize-content {

    position: relative;

    z-index: 10;

}

.prize-content h3 {

    color: #fff;

    font-size: 38px;

    font-weight: 700;

}

.prize-content h1 {

    color: #fff;

    font-size: 150px;

    line-height: 1;

    font-weight: 900;

    margin: 15px 0;

    text-shadow:
        0 12px 25px rgba(0, 0, 0, .25);

}

/*==========================================
RIGHT CARD
==========================================*/

.benefit-card {

    background: rgba(42, 109, 174, .92);

    border-radius: 30px;

    padding: 45px;

    height: 100%;

}

/*==========================================
HEADING
==========================================*/

.benefit-heading {

    color: #fff;

    text-align: center;

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 50px;

}

/*==========================================
ITEM
==========================================*/

.benefit-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}

/*==========================================
ICON
==========================================*/

.benefit-icon {

    width: 82px;

    height: 82px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(8px);

    display: flex;

    justify-content: center;

    align-items: center;

}

.benefit-icon i {

    color: #fff;

    font-size: 38px;

}

/*==========================================
TEXT
==========================================*/

.benefit-item p {

    margin-top: 22px;

    color: #fff;

    font-size: 22px;

    font-weight: 600;

    line-height: 1.4;

}

/*==========================================
BOTTOM WAVE
==========================================*/

.wave {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    line-height: 0;

}

.wave svg {

    display: block;

    width: 100%;

    height: 80px;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px) {

    .benefit-title {

        font-size: 34px;

        margin-bottom: 45px;

    }

    .prize-content h1 {

        font-size: 110px;

    }

    .prize-content h3 {

        font-size: 30px;

    }

    .benefit-card {

        margin-top: 30px;

    }

}

@media(max-width:767px) {

    .benefit-section {

        padding: 50px 0;

    }

    .benefit-title {

        font-size: 28px;

    }

    .benefit-card {

        padding: 30px 20px;

        border-radius: 22px;

    }

    .prize-card {

        padding: 45px 20px;

        border-radius: 22px;

    }

    .prize-content h1 {

        font-size: 90px;

    }

    .prize-content h3 {

        font-size: 24px;

    }

    .benefit-heading {

        font-size: 26px;

    }

    .benefit-icon {

        width: 64px;

        height: 64px;

    }

    .benefit-icon i {

        font-size: 28px;

    }

    .benefit-item p {

        font-size: 16px;

    }

}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    background: #0E71B8;
    padding: 70px 0;
    position: relative;
}

.faq-title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
}

/* =====================================================
   SEARCH
===================================================== */

.faq-search {

    position: relative;

    margin-bottom: 35px;

}

.faq-search input {

    width: 100%;

    height: 64px;

    border: none;

    border-radius: 10px;

    padding: 0 25px 0 60px;

    font-size: 16px;

    color: #444;

    outline: none;

    transition: .3s;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);

}

.faq-search input:focus {

    box-shadow:
        0 0 0 4px rgba(0, 123, 255, .15);

}

.faq-search i {

    position: absolute;

    left: 22px;

    top: 50%;

    transform: translateY(-50%);

    color: #999;

    font-size: 18px;

}

/* =====================================================
   TAB
===================================================== */

.faq-tabs {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #fff;

    border-radius: 60px;

    padding: 8px;

    margin-bottom: 35px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .10);

}

.faq-tab {

    flex: 1;

    height: 48px;

    border: none;

    border-radius: 40px;

    background: transparent;

    color: #222;

    font-weight: 600;

    transition: .3s;

    cursor: pointer;

}

.faq-tab:hover {

    background: #ececec;

}

.faq-tab.active {

    background: #96369C;

    color: #fff;
    padding: 5px;

    box-shadow:
        0 8px 18px rgba(150, 54, 156, .35);

}

/* =====================================================
   CONTENT
===================================================== */

.faq-content {

    display: none;

}

.faq-content.active {

    display: block;

}

/* =====================================================
   ITEM
===================================================== */

.faq-item {

    background: #fff;

    border-radius: 10px;

    margin-bottom: 15px;

    overflow: hidden;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .05);

}

/* =====================================================
   QUESTION
===================================================== */

.faq-question {

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px 25px;

    transition: .3s;

}

.faq-question:hover {

    background: #fafafa;

}

.faq-question span {

    color: #222;

    font-size: 15px;

    font-weight: 500;

    padding-right: 20px;

    line-height: 1.7;

}

/* =====================================================
   ICON
===================================================== */

.faq-question i {

    color: #1673B8;

    font-size: 16px;

    transition: .25s;

    flex-shrink: 0;

}

/* ketika accordion terbuka */

.faq-question[aria-expanded="true"] i {
    transform: rotate(2deg);
    color: #E53935;
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -o-transform: rotate(2deg);
}

/* =====================================================
   ANSWER
===================================================== */

.faq-answer {

    background: #F5F5F5;

    color: #444;

    padding: 20px 25px;

    font-size: 15px;

    line-height: 1.9;

}

/* =====================================================
   COLLAPSE ANIMATION
===================================================== */

.collapse {

    transition: .25s;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:991px) {

    .faq-title {

        font-size: 32px;

    }

}

@media(max-width:767px) {

    .faq-section {

        padding: 45px 0;

    }

    .faq-title {

        font-size: 28px;

        margin-bottom: 30px;

    }

    .faq-search input {

        height: 54px;

        padding-left: 52px;

        font-size: 14px;

    }

    .faq-search i {

        left: 18px;

        font-size: 16px;

    }

    .faq-tabs {

        border-radius: 20px;

        flex-direction: column;

        gap: 8px;

        padding: 10px;

    }

    .faq-tab {

        width: 100%;

        border-radius: 12px;

        height: 46px;

    }

    .faq-question {

        padding: 18px;

    }

    .faq-question span {

        font-size: 14px;

    }

    .faq-answer {

        padding: 18px;

        font-size: 14px;

        line-height: 1.8;

    }

}

/* =====================================================
   SCROLLBAR (Opsional)
===================================================== */

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-thumb {

    background: #dfdfe0;

    border-radius: 20px;

}

::-webkit-scrollbar-track {

    background: #0E71B8;

}

.row {
    margin: 0 !important;
}

#vacancy_container {
    margin-top: 130px !important;
}


/*==========================================
LINK
==========================================*/

.job-card-link {

    display: block;

    text-decoration: none;

    color: inherit;

    margin-bottom: 18px;

}

.job-card-link:hover {

    text-decoration: none;

    color: inherit;

}

/*==========================================
CARD
==========================================*/

.job-card {

    background: #fff;

    border: 1px solid #e9ecef;

    border-radius: 18px;

    padding: 22px;

    transition: .25s;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .05);

}

.job-card:hover {

    border-color: #0d6efd;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(13, 110, 253, .15);

}

/*==========================================
LOGO
==========================================*/

.company-logo {

    width: 80px;

    height: 80px;

    margin: auto;

    border-radius: 16px;

    border: 1px solid #f1f1f1;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

}

.company-logo img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    padding: 8px;

}

/*==========================================
TITLE
==========================================*/

.job-title {

    color: #212529;

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 8px;

    transition: .25s;

}

.job-card:hover .job-title {

    color: #0d6efd;

}

/*==========================================
COMPANY
==========================================*/

.company-name {

    color: #495057;

    font-size: 16px;

    font-weight: 600;

    margin-bottom: 6px;

}

/*==========================================
LOCATION
==========================================*/

.job-location {

    color: #6c757d;

    font-size: 14px;

    display: flex;

    align-items: center;

}

.job-location i {

    margin-right: 8px;

    color: #0d6efd;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:768px) {

    .job-card {

        padding: 18px;

    }

    .job-card .row {
        gap: 10px;
        flex-direction: column;
    }

    .company-logo {

        width: 65px;

        height: 65px;

    }

    .job-title {

        font-size: 17px;

    }

    .company-name {

        font-size: 15px;

    }

    .job-location {

        font-size: 13px;

    }

}

/*==========================================
FILTER CONTAINER
==========================================*/

.vacancy_filter_wrp {

    list-style: none;

    padding: 0;

    margin: 0;

    display: block;

    width: 100%;

}

/*==========================================
FILTER ITEM
==========================================*/

.vacancy_filter {

    width: 100%;

    display: block;

    height: auto;
    /* jangan fixed height */

    overflow: visible;
    /* penting */

    margin-bottom: 15px;

}

/*==========================================
FILTER BUTTON
==========================================*/

.vacancy_filter>span {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 10px 18px;

    min-height: 44px;

    background: #fff;

    border: 1px solid #dee2e6;

    border-radius: 50px;

    color: #495057;

    font-size: 14px;

    font-weight: 500;

    cursor: pointer;

    transition: .25s;

    user-select: none;

    white-space: nowrap;

}

.vacancy_filter>span:hover {

    border-color: #0d6efd;

    color: #0d6efd;

    box-shadow: 0 4px 12px rgba(13, 110, 253, .15);

}

.vacancy_filter>span::after {

    content: "\f078";

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    font-size: 11px;

    margin-left: 10px;

}

/*==========================================
DROPDOWN
==========================================*/

.vacancy_filter_select_wrp {

    display: none;

    margin-top: 10px;

    border: 1px solid #e9ecef;

    border-radius: 10px;

    background: #fff;

    overflow-y: scroll;
    /* margin: 33px; */
    height: 200px;
    min-height: 300px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);

}

/*==========================================
LIST
==========================================*/

.vacancy_filter_select_wrp ul {

    margin: 0;

    padding: 8px 0;

    list-style: none;

}


.vacancy_filter_select_wrp li {

    padding: 12px 18px;

    cursor: pointer;

    font-size: 14px;

    color: #495057;

    transition: .2s;

}

.vacancy_filter_select_wrp li:hover {

    background: #f8f9fa;

    color: #0d6efd;

}

/*==========================================
SCROLLBAR
==========================================*/

.vacancy_filter_select_wrp::-webkit-scrollbar {

    width: 6px;

}

.vacancy_filter_select_wrp::-webkit-scrollbar-thumb {

    background: #ced4da;

    border-radius: 20px;

}

/*==========================================
SHOW DROPDOWN
==========================================*/

.vacancy_filter.active .vacancy_filter_select_wrp {

    display: block;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:768px) {

    .vacancy_filter_wrp {

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 8px;

        scrollbar-width: none;

    }

    .vacancy_filter_wrp::-webkit-scrollbar {

        display: none;

    }

    .vacancy_filter {

        flex-shrink: 0;

    }

    .vacancy_filter_select_wrp {
        margin: 10px 0;
        min-width: auto;

        max-height: 50vh;
        z-index: 10;

    }

}

/*==========================================
PAGE
==========================================*/

#vacancy_container {

    margin: 40px auto 60px;

}

#vacancy_container .card {

    border: none;
    overflow: hidden;

    background: #fff;

}

/*==========================================
HEADER
==========================================*/

#vacancy_header {

    background: #ffffff;

    border-bottom: 1px solid #edf1f5;

    padding: 30px;

}

#vacancy_header h1 {

    margin: 0;

    font-size: 34px;

    font-weight: 700;

    color: #243447;

}

.filter-card {
    background-color: white;
    padding: 20px;
    margin-top: 60px;
}

/*==========================================
BODY
==========================================*/

#vacancy_wrp {
    background: #ffffff;
}

/*==========================================
LEFT FILTER
==========================================*/
#vacancy_wrp>.row>.col-md-3 {
    padding: 0;
}

#vacancy_wrp>.row>.col-md-3:first-child {

    position: sticky;

    top: 20px;
    padding: 0;
    align-self: flex-start;

}

/*==========================================
CENTER
==========================================*/

#vacancy_wrp h1 {

    font-size: 25px;

    font-weight: 700;

    color: #2c3e50;

    margin: 25px 18px;

}

/*==========================================
SEARCH
==========================================*/

#search {

    height: 56px;

    border-radius: 50px;

    border: 1px solid #dee2e6;

    padding: 0 22px;

    font-size: 15px;

    transition: .3s;

    box-shadow: none;

}

#search:focus {

    border-color: #0d6efd;

    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .15);

}

/*==========================================
LOADING
==========================================*/

.loading_wrp {

    min-height: 450px;

}

/*==========================================
SKELETON
==========================================*/

.vacancy_result_wrp {

    background: #fff;

    border-radius: 18px;

    padding: 18px;

    margin-bottom: 18px;

    border: 1px solid #edf1f5;

    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);

}

.box {

    width: 90px;

    height: 90px;

    margin: auto;

    border-radius: 14px;

    background: linear-gradient(90deg,
            #f1f3f5,
            #e9ecef,
            #f1f3f5);

    background-size: 300%;

    animation: skeleton 1.4s infinite;

}

.vacancy_text {

    height: 14px;

    border-radius: 20px;

    margin-bottom: 14px;

    background: linear-gradient(90deg,
            #f1f3f5,
            #e9ecef,
            #f1f3f5);

    background-size: 300%;

    animation: skeleton 1.4s infinite;

}

.vacancy_text:nth-child(1) {

    width: 80%;

}

.vacancy_text:nth-child(2) {

    width: 60%;

}

.vacancy_text:nth-child(3) {

    width: 45%;

}

.vacancy_text:nth-child(4) {

    width: 70%;

}

@keyframes skeleton {

    from {

        background-position: 100% 0;

    }

    to {

        background-position: -100% 0;

    }

}

/*==========================================
ADS
==========================================*/

#ads_wrp {

    position: sticky;

    top: 20px;

}

.space_of_ads {

    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    margin-bottom: 20px;

    border: 1px solid #edf1f5;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);

    transition: .3s;

}

.space_of_ads:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

}

.space_of_ads img {

    width: 100%;

    display: block;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px) {

    #vacancy_wrp {

        padding: 20px;

    }

    #vacancy_header {

        padding: 25px 20px;

    }

    #vacancy_header h1 {

        font-size: 28px;

    }

    #vacancy_wrp h1 {

        font-size: 24px;

    }

    #vacancy_wrp>.row>.col-md-3:first-child,

    #ads_wrp {

        position: static;

        margin-bottom: 25px;

    }

}

@media(max-width:767px) {

    #vacancy_header h1 {

        font-size: 24px;

    }

    #vacancy_wrp {

        padding: 15px;

    }

    #search {

        height: 50px;

    }

    .vacancy_result_wrp {

        padding: 15px;

    }

    .box {

        width: 70px;

        height: 70px;

    }

    #search_wrp {
        height: auto;
        padding: 0;
    }

}

.error-main {
    margin-top: 130px;
}

/*==============================
SEARCH CARD
==============================*/

.search-card {
    padding: 35px;
}



#search_wrp input[type=search],
#search_wrp select {
    color: #212529;
    padding: 0;
    border: 0;
    box-shadow: none;
}

/*==============================
HEADER
==============================*/

.search-header {
    text-align: center;
    margin-bottom: 28px;
}

.search-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #183153;
    margin-bottom: 8px;
}

.search-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

/*==============================
SEARCH BOX
==============================*/

.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 60px;
    overflow: hidden;
    transition: .3s;
}

.search-box:hover,
.search-box:focus-within {
    border-color: #2A6DAE;
    box-shadow: 0 0 0 6px rgba(42, 109, 174, .12);
}

/*==============================
ICON
==============================*/

.search-icon {
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2A6DAE;
    font-size: 20px;
}

/*==============================
INPUT
==============================*/

.search-input {
    flex: 1;
    border: none;
    outline: none;
    height: 65px;
    font-size: 17px;
    padding-right: 20px;
}

.search-input::placeholder {
    color: #adb5bd;
}

/*==============================
BUTTON
==============================*/

.search-btn {
    border: none;
    background: linear-gradient(135deg, #2A6DAE, #4B8FD3);
    color: #fff;
    padding: 0 35px;
    height: 65px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.search-btn:hover {
    background: linear-gradient(135deg, #245f97, #397fc5);
}

.search-btn:focus {
    outline: none;
}

.search-btn,
.search-input {
    height: 47px;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px) {

    .search-card {
        padding: 20px;
    }

    .search-header h2 {
        font-size: 24px;
    }

    .search-box {
        flex-direction: column;
        border-radius: 20px;
        overflow: visible;
        border: none;
        box-shadow: none;
    }

    .search-icon {
        display: none;
    }

    .search-input {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 15px;
    }

    .search-btn {
        width: 100%;
        border-radius: 15px;
    }

}

.mobile-filter {
    height: 90vh;
    border-radius: 24px 24px 0 0;
}

.mobile-filter .offcanvas-header {
    border-bottom: 1px solid #eee;
}

.mobile-filter-item {
    border-bottom: 1px solid #f3f3f3;
    padding: 18px 0;
}

.mobile-filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.mobile-filter-content {
    display: none;
    margin-top: 15px;
}

.filter-chip {
    display: inline-block;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 8px 18px;
    background: #fff;
    transition: .2s;
}

.filter-chip:hover {
    background: #eef6eb;
    border-color: #cfdcb8;
}

.assessment-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(180deg,
            #2488CF 0%,
            #2795DA 50%,
            #1C7DC3 100%);
}

.assessment-badge {

    display: inline-flex;

    align-items: center;

    padding: 8px 18px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .12);

    border: 1px solid rgba(255, 255, 255, .18);

    color: #fff;

    font-weight: 600;

}

.assessment-title {

    margin-top: 25px;

    color: #fff;

    font-size: 52px;

    font-weight: 700;

    line-height: 1.2;

}

.assessment-title span {

    display: block;

    color: #17D37D;

}

.assessment-description {

    margin: 30px 0;

    color: #d7efff;

    font-size: 18px;

    line-height: 32px;

}

.assessment-feature {

    display: flex;

    gap: 20px;

    margin-bottom: 30px;

}

.assessment-icon {

    width: 60px;

    height: 60px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    font-size: 22px;

}

.assessment-feature h5 {

    color: #fff;

    margin-bottom: 8px;

}

.assessment-feature p {

    color: #d7efff;

    margin: 0;

}

.assessment-btn {

    display: inline-flex;

    align-items: center;

    margin-top: 20px;

    padding: 15px 34px;

    border-radius: 12px;

    background: #23538D;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.assessment-btn:hover {

    background: #173B67;

    color: #fff;

}

.assessment-card {

    background: #23538D;

    border-radius: 32px;

    padding: 25px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);

}

.assessment-card-inner {

    background: #2C6AA8;

    border-radius: 28px;

    padding: 25px;

}

.assessment-stat {

    background: #326FAF;

    border-radius: 20px;

    padding: 28px 15px;

    text-align: center;

}

.assessment-stat h3 {

    font-size: 38px;

    font-weight: 700;

}

.assessment-stat span {

    color: #fff;

    font-size: 15px;

}

.assessment-progress {

    height: 10px;

    border-radius: 30px;

    background: #4D7FB7;

}

.assessment-progress .progress-bar {

    background: #17D37D;

}

.assessment-progress-text {

    margin-top: 18px;

    text-align: center;

    color: #d7efff;

}

@media(max-width:991px) {

    .assessment-section {

        padding: 70px 0;

    }

    .assessment-title {

        font-size: 36px;

    }

    .assessment-description {

        font-size: 16px;

        line-height: 28px;

    }

    .assessment-feature {

        gap: 15px;

    }

    .assessment-icon {

        width: 50px;

        height: 50px;

        font-size: 18px;

    }

    .assessment-btn {

        width: 100%;

        justify-content: center;

    }

    .assessment-card {

        margin-top: 20px;

    }

}

/* ==========================================
   RECOMMENDED
========================================== */

.recommended-list {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.recommended-list::-webkit-scrollbar {
    height: 6px;
}

.recommended-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .35);
    border-radius: 20px;
}

.recommended-list::-webkit-scrollbar-track {
    background: transparent;
}

.recommended-card {
    flex: 0 0 280px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .95);
    border-radius: 16px;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.recommended-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
    text-decoration: none;
}

.recommended-card img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #eee;
    flex-shrink: 0;
    padding: 6px;
}

.recommended-info {
    flex: 1;
    min-width: 0;
}

.recommended-info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommended-info span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #777;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {

    .recommended-card {
        flex: 0 0 250px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .recommended-list {
        gap: 12px;
        margin-top: 20px;
    }

    .recommended-card {
        flex: 0 0 220px;
        padding: 12px;
    }

    .recommended-card img {
        width: 48px;
        height: 48px;
    }

    .recommended-info h6 {
        font-size: 14px;
    }

    .recommended-info span {
        font-size: 12px;
    }

}

.recommended-wrapper {
    margin-top: 35px;
}

.recommended-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 20px;
}

.recommended-title i {
    color: #ffd54f;
}

/* ==========================================
   RECOMMENDED LIST
========================================== */

.recommended-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 15px;
    margin-top: 30px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.recommended-list::-webkit-scrollbar {
    height: 8px;
}

.recommended-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.35);
    border-radius: 30px;
}

/* ==========================================
   CARD
========================================== */

.recommended-card {

    flex: 0 0 360px;

    min-height: 130px;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 22px;

    background: #fff;

    border-radius: 22px;

    text-decoration: none;

    box-shadow: 0 12px 35px rgba(0,0,0,.12);

    transition: all .3s ease;

}

.recommended-card:hover{

    transform: translateY(-6px);

    box-shadow: 0 18px 45px rgba(0,0,0,.18);

}

/* ==========================================
   LOGO
========================================== */

.recommended-card img{

    width:80px;

    height:80px;

    object-fit:contain;

    border-radius:16px;

    background:#fff;

    border:1px solid #ececec;

    padding:10px;

    flex-shrink:0;

}

/* ==========================================
   CONTENT
========================================== */

.recommended-info{

    flex:1;

    min-width:0;

}

.recommended-info h6{

    font-size:18px;

    font-weight:700;

    color:#222;

    margin-bottom:8px;

    line-height:1.45;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.recommended-info span{

    display:block;

    color:#6b7280;

    font-size:15px;

    margin-bottom:10px;

}

.recommended-info small{

    display:block;

    color:#9ca3af;

    font-size:13px;

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

    .recommended-card{

        flex:0 0 320px;

        min-height:120px;

    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .recommended-list{

        gap:15px;

    }

    .recommended-card{

        flex:0 0 300px;

        padding:18px;

    }

    .recommended-card img{

        width:70px;

        height:70px;

    }

    .recommended-info h6{

        font-size:16px;

    }

    .recommended-info span{

        font-size:14px;

    }

}