.join_family_container {
    background: linear-gradient(3deg, #FFF 2.41%, #F6F9FF 93.56%);
    width: 100%;
}

.join_family_content {
    width: 100%;
    max-width: 1160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 20px;
}

.join_family_description {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.join_family_description h1 {
    color: var(--grey, #222A3F);
    font-family: Manrope;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
    max-width: 300px;
    width: 100%;
}

.join_family_content img {
    width: 675px;
    border-radius: 20px;
    height: 645px;
    position: relative;
    right: -47px;
}

.join_family_content button {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    backdrop-filter: blur(50px);
    background: var(--Primary-Left--right, linear-gradient(90deg, #005575 0.28%, #01314A 99.7%));
    color: var(--base-white, #FFF);
    /* text-align: justify; */
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    border: 0px;
    width: fit-content;
    cursor: pointer;
}

.join_family_content button:hover {
    box-shadow: 0px 6px 10.5px 0px rgba(1, 60, 87, 0.43);
}

.our_culture_container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 80px;
}

.our_culture_content {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    border-radius: 44px;
    background: var(--linear-gradient, linear-gradient(3deg, #F0F5FF 2.41%, #F6FAFF 97.59%));
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.our_culture_description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.our_culture_description h1 {
    width: 100%;
    max-width: 284px;
    height: 67px;
    flex-shrink: 0;
    color: var(--grey, #222A3F);
    font-family: Manrope;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
}

.our_culture_description h2 {
    width: 100%;
    max-width: 532px;
    color: var(--text-secondary, #5F6368);
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.our_culture_list_container {
    list-style-type: none;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.our_culture_list_item {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 9px 5px 39px 0px #EAEFF7;
    width: 306px;
}

.our_culture_list_item img {
    width: 64px;
    height: 64px;
}

.our_culture_list_item h3 {
    display: flex;
    height: 56px;
    flex-direction: column;
    justify-content: center;
    color: var(--grey, #222A3F);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.current_openings_contianer {
    width: 100%;
}

.current_openings_content {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.job_cards_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.current_openings_header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 8px;
    align-items: center;
}

.current_openings_title {
    color: var(--grey, #222A3F);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 61px;
}

.anchor_ele_container {
    list-style-type: none;
    display: flex;
    width: 333px;
    padding: 12px 43px;
    justify-content: space-between;
    align-items: center;
}

.anchor_ele_container li {
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: #5F6368;
    line-height: 16px;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
}

.active_element {
    background: var(--Primary-Left--right, linear-gradient(90deg, #005575 0.28%, #01314A 99.7%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    height: 18px;
}

/* Initial state of the underline (hidden) */
.current_openings_link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    /* Start with width 0 */
    height: 2px;
    background: var(--Primary-Left--right, linear-gradient(90deg, #005575 0.28%, #01314A 99.7%));
    transform-origin: bottom left;
    transition: transform 0.3s ease, width 0.3s ease;
}

/* Active link - show underline and set it to 70% of the width */
.current_openings_link.active_element::after {
    width: 70%;
    /* Set to 70% of the text width */
    transform: scaleX(1);
    /* Show the underline */
    transform-origin: bottom left;
}

.job_card_container {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 0px 32px 0px #EAEFF7;
    padding: 16px 24px;
    width: 100%;
    transform: transform 0.5s ease-in-out;
    scroll-margin-top: 100px;
}

.job_card_accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.job_card_accordion img {
    transition: transform 0.6s ease-in-out;
}

.job_card_accordion.active img {
    transform: rotate(180deg);
}

.job_details {
    display: flex;
    /* Set initial display as flex */
    flex-direction: column;
    gap: 16px;
    max-height: 0;
    /* Initially collapsed */
    opacity: 0;
    /* Initially invisible */
    overflow: hidden;
    /* Prevent content overflow during transition */
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    /* Transition both max-height and opacity */
}

.job_details.active {
    max-height: 500px;
    /* Set a value high enough to allow expansion */
    opacity: 1;
    /* Make it fully visible */
    overflow: visible;
}

.active {
    display: flex;
}

.job_card_container.active_job {
    box-shadow: 9px 5px 32px 0px #EAEFF7 !important;
    padding: 24px !important;
}

.job_card_title {
    color: var(--grey, #222A3F);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.location_exp_con {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
}

.location_exp_con h3 {
    color: var(--text-secondary, #5F6368);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    display: flex;
    gap: 16px;
}

.location_exp_con span {
    color: var(--grey, #222A3F);
}

hr {
    width: 100%;
    border: 0;
    border-top: 1px solid #DADCE0;
    /* Create the line with border-top */
    margin: 0px !important;
}

.work_desc_con {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.work_desc_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.work_desc_content h3 {
    width: 100%;
    max-width: 507px;
}

.level_of_exp_con {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.level_of_exp_desc {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.level_of_exp_desc h3 {
    width: 100%;
    max-width: 507px;
}

.level_of_exp_desc span {
    color: var(--grey, #222A3F);
    /* text-align: justify; */
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap;
}

.skills_contianer {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skills_desc_con {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.skills_desc_con1 {
    width: 100%;
    max-width: 511px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skills_desc_items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skills_desc_con h3 {
    line-height: 28px !important;
}

.skills_desc_con2 {
    width: 100%;
    max-width: 507px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skills_list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 24px;
    list-style-type: disc;
}

.skills_list li {
    color: var(--text-secondary, #5F6368);
    /* text-align: justify; */
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.skills_list li::marker {
    font-size: 14px;
    color: #5F6368;
}

.additional_skills_con {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.additional_skills_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.additional_skills_content h3 {
    line-height: 28px;
}

.additional_skills_content1 {
    width: 100%;
    max-width: 511px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.additional_skills_content2 {
    width: 100%;
    max-width: 507px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job_requirements_title {
    color: var(--grey, #222A3F);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.job_requirements_desc {
    color: var(--text-secondary, #5F6368);
    /* text-align: justify; */
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.experience_desc {
    color: var(--text-secondary, #5F6368);
    /* text-align: justify; */
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.drop_img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.drop_up_img {
    width: 24px;
    height: 24px;
}

.drop_up_img_con {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.drop_up_img_con p {
    color: var(--grey, #222A3F);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.resume_btn_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.send_resume_btn {
    border-radius: 8px;
    border: 0px;
    background: var(--Primary-Left--right, linear-gradient(90deg, #005575 0.28%, #01314A 99.7%));
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    color: var(--base-white, #FFF);
    /* text-align: justify; */
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    width: fit-content;
}

.send_resume_btn:hover {
    box-shadow: 0px 6px 10.5px 0px rgba(1, 60, 87, 0.43);
}

.send_resume_link {
    text-decoration: none;
    color: var(--base-white, #FFF);
}

.rectangle {
    width: 10px;
    height: 16px;
    transform: rotate(-90deg);
    flex-shrink: 0;
    border-radius: 0px 0px 221px 0px;
    background: var(--Unifo-Gradient-Green, linear-gradient(134deg, rgba(26, 189, 163, 0.86) 27.96%, rgba(82, 229, 206, 0.86) 123.32%));
    display: block;
    margin-right: 14px;
    margin-top: 6px;
    margin-left: 3px;
}

.work_qualification_con {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.data_processing_work {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.data_processing_qualification {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.what_doing_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 511px;
}

.what_doing_container h3 {
    line-height: 28px;
}

.qualification_contianer h3 {
    line-height: 28px;
}

.qualification_contianer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 507px;
}

@media screen and (max-width: 1200px) {
    .join_family_content {
        max-width: 744px !important;
        padding-top: 52px !important;
        padding-bottom: 10px !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 32px;
    }

    .join_family_description {
        align-items: center;
    }

    .join_family_description h1 {
        text-align: center;
    }

    .join_family_content img {
        width: 677px !important;
        height: 646px !important;
        right: 0px !important;
    }

    .our_culture_container {
        padding-top: 40px !important;
        padding-bottom: 60px !important;
    }

    .our_culture_content {
        max-width: 744px !important;
        padding: 36px !important;
        gap: 24px !important;
        border-radius: 32px !important;
    }

    .our_culture_description {
        gap: 8px !important;
    }

    .our_culture_description h1 {
        font-size: 36px !important;
        line-height: normal !important;
        max-width: 205px !important;
        height: 50px !important;
    }

    .our_culture_description h2 {
        font-size: 20px !important;
        line-height: 30px !important;
        max-width: 672px !important;
    }

    .our_culture_list_container {
        gap: 16px !important;
    }

    .our_culture_list_item {
        width: 328px !important;
    }

    .our_culture_list_container li:nth-child(-n+4) {
        margin-bottom: 4px;
    }

    .our_culture_list_item img {
        width: 60px !important;
        height: 60px !important;
    }

    .current_openings_content {
        max-width: 744px !important;
    }

    .current_openings_header {
        gap: 16px !important;
        margin-bottom: 0px !important;
    }

    .current_openings_title {
        font-size: 36px !important;
    }

    .work_desc_content {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .work_desc_content h3 {
        max-width: 100% !important;
    }

    .level_of_exp_desc {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .level_of_exp_desc h3 {
        max-width: 100% !important;
    }

    .skills_list {
        gap: 8px !important;
    }

    .skills_desc_con {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .skills_desc_con1 {
        max-width: 100% !important;
    }

    .skills_desc_con2 {
        max-width: 100% !important;
    }

    .additional_skills_content {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .additional_skills_content1 {
        max-width: 100% !important;
    }

    .additional_skills_content2 {
        max-width: 100% !important;
    }

    .work_qualification_con {
        flex-direction: column !important;
        gap: 16px !important;
    }

    .what_doing_container {
        width: 100% !important;
    }

    .qualification_contianer {
        width: 100% !important;
    }
}

@media screen and (max-width: 850px) {
    .join_family_content {
        max-width: 636px !important;
        gap: 40px !important;
        padding-bottom: 8px !important;
    }

    .join_family_content img {
        width: 671px !important;
        height: 640px !important;
        right: 0px !important;
    }

    .our_culture_container {
        padding-bottom: 40px !important;
    }

    .our_culture_content {
        max-width: 636px !important;
        padding: 36px 32px !important;
        border-radius: 24px !important;
    }

    .our_culture_list_container li:nth-child(-n+4) {
        margin-bottom: 0px;
    }

    .our_culture_list_item {
        width: 278px !important;
    }

    .our_culture_description h1 {
        max-width: 572px !important;
    }

    .our_culture_description h2 {
        font-size: 18px !important;
        max-width: 572px !important;
    }

    .current_openings_content {
        max-width: 636px !important;
        gap: 16px !important;
    }

    .job_cards_container {
        gap: 16px !important;
    }

    .anchor_ele_container {
        margin-bottom: 8px !important;
        margin-top: 0px !important;
    }

    .location_exp_con h3 {
        font-size: 14px !important;
        gap: 8px !important;
    }

    .job_requirements_title {
        font-size: 16px !important;
    }

    .rectangle {
        margin-top: 4px !important;
    }

    .job_requirements_desc {
        font-size: 14px !important;
    }

    .experience_desc {
        font-size: 14px !important;
    }

    .work_desc_con {
        gap: 8px !important;
    }

    .work_desc_content {
        gap: 8px !important;
    }

    .work_desc_content h3 {
        font-size: 14px !important;
    }

    .level_of_exp_desc {
        gap: 8px !important;
    }

    .skills_list {
        gap: 12px !important;
    }

    .skills_list li {
        font-size: 14px !important;
        line-height: 24px !important;
    }

    .skills_desc_con h3 {
        line-height: 24px !important;
    }

    .additional_skills_content h3 {
        line-height: 24px !important;
    }
}

@media screen and (max-width: 699px) {
    .join_family_container {
        padding: 42px 10px 24px 10px !important;
    }

    .join_family_content {
        max-width: 398px !important;
        padding: 0px !important;
        gap: 36px !important;
    }

    .join_family_description {
        gap: 24px !important;
    }

    .join_family_description h1 {
        font-size: 32px !important;
        line-height: 41px !important;
    }

    .join_family_content button {
        font-size: 14px !important;
        padding: 12px 16px !important;
    }

    .join_family_content img {
        width: 100% !important;
        max-width: 428px !important;
        height: auto !important;
    }

    .our_culture_content {
        max-width: 428px !important;
        padding: 24px 16px !important;
        gap: 24px !important;
        border-radius: 16px !important;
    }

    .our_culture_description h1 {
        font-size: 32px !important;
        max-width: 182px !important;
    }

    .our_culture_description h2 {
        font-size: 20px !important;
        max-width: 428px !important;
    }

    .our_culture_container {
        padding: 32px 16px !important;
    }

    .our_culture_list_item {
        width: 100% !important;
        max-width: 100% !important;
    }

    .current_openings_contianer {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .current_openings_content {
        max-width: 428px !important;
    }

    .current_openings_title {
        font-size: 32px !important;
        display: flex;
        height: 46px;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
    }

    .rectangle {
        height: 11.872px !important;
        margin-right: 10px !important;
    }

    .anchor_ele_container {
        padding-left: 0px !important;
        padding-right: 0px !important;
        width: 100% !important;
        justify-content: center !important;
        gap: 31px !important;
    }

    .anchor_ele_container li {
        font-size: 16px !important;
    }

    .job_card_container {
        box-shadow: 0px 0px 32px 0px #EAEFF7 !important;
    }

    .location_exp_con {
        flex-direction: column;
        gap: 4px !important;
        align-items: flex-start;
    }

    .send_resume_btn {
        font-size: 14px !important;
        padding: 12px 16px !important;
    }

    .job_card_container.active_job {
        padding: 24px 16px !important;
    }
}