.candidate-hero {
    background-image: url('/images/client/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.candidate-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(80, 149, 125, 0.85),
            rgba(48, 82, 86, 0.85));
    z-index: 1;
}

.candidate-hero>* {
    position: relative;
    z-index: 2;
}

.candidate-hero .heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 100%;
}

.candidate-hero .sub-heading {
    font-size: 1.5rem;
    /* font-weight: 300; */
    line-height: 150%;
}

.candidate,
.create-account-steps,
.usecase-section,
.dashboard,
.career-tools,
.packages {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.additional-value {
    padding-top: 4rem;
    padding-bottom: 5rem;
}

/* create account section */

.create-account-steps {
    background-color: #1E4D50;
    color: #fff;
}

.create-account-heading {
    font-weight: 600;
}

.create-account-subheading {
    font-size: 1.3rem;
}

.step-text {
    font-size: 1.4rem;
    font-weight: 300;
}

/* usecase section */
.use-title {
    font-size: 3rem;
    font-weight: 700;
}

.use-text {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* dashboard section */

.dashboard {
    background-image: url('/images/client/dashboard-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: #FFF;
    display: flex;
    align-items: center;
}

.dashboard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(80, 149, 125, 0.85),
            rgba(48, 82, 86, 0.85));
    z-index: 1;
}

.dashboard-container {
    position: relative;
    z-index: 3;
}

.dashboard-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6;
}

.dashboard-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
}

.activity-card {
    background-color: #EEF5F2;
    color: #000;
    border-radius: 15px;
}

.activity-icon {
    width: 4.3%;
}

.activity-title {
    font-size: 1.4rem;
}

.activity-text {
    font-size: 1.1rem;
}

/* additiona value */

.additional-value .container {
    max-width: 1092px
}

.additional-value-title {
    font-size: 3rem;
    font-weight: 700;
}

.additional-text {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
}

/* career tools */
.career-tools {
    background: linear-gradient(rgba(80, 149, 125, 0.85),
            rgba(48, 82, 86, 0.85));
}

.career-tools img {
    border: 1px solid #000;
    border-radius: 27px;
}

.tool-text {
    padding-top: 15px;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.4;
}

/* package section */

.packages {
    background-color: #D4E7E0;
}

.package-heading {
    font-size: 3rem;
    font-weight: 700;
}

.package-card {
    background-color: #396365;
    min-height: 123vh;
    height: 100%;
    border-radius: 25px;
    position: relative;
}

.package-content {
    border: 1px solid #fff;
    border-radius: 25px;
}

.package-card .price-btn {
   background-color: #D4E7E0;
    color: #396365;
    border: none;
    padding: 8px 0;
    display: block;
    width: 81%;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    bottom: 30px;
    text-decoration: none;
    /* margin-top: auto; */
    margin: 0 auto;
    font-size: 1.2rem;
    position: absolute;
}

/* .package-card .btn-1 {
    margin-top: 436px;
} */

.package-list li {
    font-size: 1.2rem;
    line-height: 1.4;
}

/* TABLET RESPONSIVE */

@media (max-width:1024px) {

    .create-account-steps,
    .usecase-section,
    .dashboard,
    .career-tools,
    .packages {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .candidate{
        padding: 4rem 0;
    }

    .additional-value {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-text {
        font-size: 1.2rem;
    }

    .use-title {
        padding-bottom: 1.2rem;
    }

    .use-text {
        text-align: center;
    }

    .activity-icon{
        width:8.3%
    }

    .tool-text {
        padding-top: 10px;
        font-size: 1.1rem;
    }

      .packages{
        padding: 3rem 8rem !important;
    }

    .package-heading {
        font-size: 2.5rem;
    }

    .package-card {
        padding: 3rem !important;
    }

    .package-card .btn-1 {
        margin-top: 0;
    }

    .candidate-hero .heading,
    .create-account-heading,
    .use-title,
    .dashboard-title,
    .additional-value-title{
        font-size: 2.1rem;
    }
    
}


/* MOBILE RESPONSIVE */
@media (max-width:500px) {

    .candidate-hero .heading {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .candidate-hero .sub-heading {
        font-size: 1rem;
        line-height: 1.3;
    }

    .create-account-heading,
    .additional-value-title {
        font-size: 1.4rem;
    }

    .step-title {
        text-align: center;
        font-size: 1.3rem;
    }

    .step-text,
    .create-account-subheading {
        font-size: 1rem;
        text-align: center;
    }

    .use-title,
    .dashboard-title,
    .career-tool-header {
        font-size: 1.6rem;
    }

    .package-heading {
        font-size: 1.5rem;
    }

    .use-text,
    .additional-text,
    .activity-title {
        font-size: 1.1rem;
    }

    .package-list li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .dashboard-subtitle,
    .activity-text {
        font-size: 1rem;
    }

    .dashboard {
        padding-top: 2.4rem;
    }

    .package-list {
        padding-left: 1.3rem !important;
    }

    .package-card{
        padding: 2rem !important;
    }

    .packages{
        padding: 3rem 0 !important;
    }

    .package-text{
        margin-bottom:4.5rem !important ;
    }

    .activity-icon {
        width: 14.3%;
    }

    .activity-icon img {
        width: 30px;
        height: 30px;
    }

}