.page-template-career {
    overflow-x: visible;
}

.whyWorkRight {
    background-color: #0084ff;
    border-radius: 15px;
    overflow: hidden;

    .wwGrid {
        display: flex;
        flex-wrap: wrap;
        background-color: #0084ff;

        .wwCard {
            width: 50%;
            padding: 35px 35px 50px 35px;
            position: relative;
            display: flex;
            flex-direction: column;
            border-right: 1px solid rgba(255, 255, 255, 0.4);
            border-bottom: 1px solid rgba(255, 255, 255, 0.4);

            &:nth-child(2),
            &:nth-child(4) {
                border-right: unset;
            }

            &:nth-child(3),
            &:nth-child(4) {
                border-bottom: unset;
            }

            .wwIcon {
                font-size: 28px;
                color: #fff;
                position: absolute;
                top: 35px;
                right: 35px;
                width: 50px;
                height: 50px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            .wwCardTitle {
                font-size: 20px;
                font-weight: 700;
                font-family: "Manjari", sans-serif;
                color: #ffffff;
                margin-bottom: 7px;
                margin-top: 60px;
            }

            p {
                color: #fff;
            }
        }
    }

}

/* end why work */

/* start culture */
.cultureSec {
    background-color: var(--light-blue);

    .secH {
        position: relative;
        z-index: 2;

        span {
            &::after {
                background-image: linear-gradient(to right, #E6F5FF, #A8DDFF);
            }
        }
    }

    .cultureImgWrap {
        display: flex;
        gap: 5px;
        align-items: stretch;
        position: sticky;
        top: 120px;

        .cultureImgLft,
        .cultureImgRgt {
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex: 1;

            .cultureImgItem {
                border-radius: 15px;
                overflow: hidden;
                width: 100%;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                &.cultureImgTopLft {
                    height: 380px;
                }

                &.cultureImgBtmLft {
                    height: 250px;
                }

                &.cultureImgTopRgt {
                    height: 250px;
                }

                &.cultureImgBtmRgt {
                    height: 380px;
                }
            }
        }
    }

    .cultureTxtWrap {
        .cultureGrid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;

            .cultureCard {
                width: calc(50% - 10px);
                background-color: #2183e2;
                border-radius: 10px;
                padding: 30px 25px;
                color: #fff;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;

                .cultIcn {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    background-color: #ffffff;
                    padding: 6px;
                    margin-bottom: 14px;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        filter: brightness(0) saturate(100%) invert(38%) sepia(65%) saturate(2414%) hue-rotate(192deg) brightness(97%) contrast(82%);
                    }
                }

                .ccTitle {
                    color: #fff;
                    font-size: 20px;
                    font-weight: 700;
                    margin-bottom: 16px;
                }

                p {
                    color: #ffffff;
                    font-size: 16px;
                    display: none;
                }

                .cultLst {
                    ul {
                        li {
                            position: relative;
                            padding-left: 16px;

                            &:not(:last-child) {
                                margin-bottom: 14px;
                            }

                            &::before {
                                content: "";
                                position: absolute;
                                top: 2px;
                                left: 0;
                                width: 9px;
                                height: 9px;
                                border-radius: 50%;
                                background-color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }

    .countWrap {
        padding-top: 100px;

        .countItem {
            &::before {
                z-index: 1;
                background-image: linear-gradient(to right, #E6F5FF, #A8DDFF);
            }

            h3 {
                position: relative;
                z-index: 2;
            }
        }

    }

    .countItem {
        span {
            img {
                width: 53px;
                height: 60px;
                object-fit: contain;
                padding-left: 5px;
                padding-bottom: 14px;
            }
        }
    }
}

/* end culture  */

/* start job scetion */
.openPositionsSec {
    .jobFilterRow {
        width: 430px;
        margin-left: auto;

        .jobSearchWrap {
            .input-group {
                position: relative;
                border-radius: 5px;

                button {
                    background-color: transparent;
                    position: absolute;
                    width: 50px;
                    height: 44px;
                    border: none;
                    left: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 2;

                    svg {
                        color: var(--blue) !important;
                    }
                }

                input {
                    padding-right: 15px;
                    width: 100%;
                    max-height: 44px;
                    border-radius: 10px;
                    box-shadow: 0 0 10px 0 #d9d9d9;
                    background-color: #fff;
                    padding-left: 55px;
                    text-align: right;
                    border-top-left-radius: 10px !important;
                    border-bottom-left-radius: 10px !important;
                    font-size: 18px;
                }
            }
        }
    }

    .jobTabWrap {
        margin-top: -34px;

        .jobTabList {
            display: flex;
            align-items: center;
            margin-bottom: 40px;

            li {
                padding: 7px 14px 5px;
                font-size: 18px;
                border-radius: 6px;
                line-height: 1rem;
                display: flex;
                align-items: center;
                justify-content: center;

                a {
                    display: inline-block;
                    color: #000000;
                }

                &:not(:last-child) {
                    margin-right: 10px;
                }

                &.active {
                    background-color: #3DC718;

                    a {
                        color: #fff;
                    }
                }
            }
        }
    }

    .pagination {
        margin-top: 30px;
        justify-content: center;
    }
}

.jobCard {
    background-color: #E6F5FF;
    padding: 30px 30px 40px;
    border-radius: 20px;
    transition: .4s;

    .jobCardTop {
        .jobMeta {
            width: 100%;
            display: flex;
            justify-content: flex-end;
            gap: 20px;
            margin-bottom: 40px;

            .metaItem {
                font-size: 18px;
                font-weight: 700;
                color: #000000;
            }
        }

        .jobCardTitle {
            color: #3DC718;
            margin-bottom: 16px;
            font-size: 24px;
            font-weight: 700;
        }
    }

    .jobCardDescWrap {
        margin-bottom: 20px;

        .jobCardDesc {
            position: relative;
            min-height: 300px;
            max-height: 300px;
            overflow: hidden;
            transition: max-height .5s ease;

            &.is-clamped {
                &::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    height: 100px;
                    background: linear-gradient(to bottom, rgba(230, 245, 255, 0), #E6F5FF);
                    pointer-events: none;
                    opacity: 1;
                    transition: all .4s ease;
                }
            }

            &.is-open {
                &::after {
                    height: 0 !important;
                }
            }


            .jobdescDivInn {
                margin-bottom: 12px;
            }

            h6 {
                margin-bottom: 15px;
                font-weight: 700;
                font-size: 20px;
            }

            p {
                margin-bottom: 12px;

                strong {
                    font-weight: 700;
                    color: #000;
                }
            }

            ul {
                list-style-type: none;
                padding-left: 0;
                margin-bottom: 25px;

                li {
                    position: relative;
                    margin-bottom: 12px;
                    padding-left: 15px;
                    line-height: 1.3;

                    &::before {
                        content: '';
                        position: absolute;
                        width: 6px;
                        height: 6px;
                        border-radius: 50%;
                        background-color: #000;
                        left: 0;
                        top: 5px;
                    }
                }

                ul {
                    padding-left: 15px;
                }
            }
        }

        .readMoreBtn {
            display: none;
            margin: 10px 0 20px;
            padding: 0;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 700;
            color: #048FEA;
            cursor: pointer;
            transition: color .3s ease;

            &:hover {
                color: #3DC718;
            }

            &.is-visible {
                display: inline-block;
            }
        }
    }

    .jobCardBtns {
        display: flex;
        align-items: center;
        gap: 10px;

        .commonBtn {
            &:hover {
                border: 1px solid #000000;

                span {
                    color: #000000;
                }
            }

            &.OutlineBtn {
                background: transparent;
                border: 1px solid #000000;

                &::before {
                    width: 0;
                }

                span {
                    color: #000000;
                }

                &:hover {
                    border-color: transparent;

                    &::before {
                        width: 100%;
                    }

                    span {
                        color: #fff;
                    }
                }
            }
        }
    }

    &:hover {
        background-color: #ffffff;
        box-shadow: 1px 0px 40px #00000012;

        .jobCardDescWrap {
            .jobCardDesc {
                &.is-clamped {
                    &::after {
                        background: linear-gradient(to bottom, rgba(230, 245, 255, 0), #ffffff);
                    }
                }

                &.is-open {
                    &::after {
                        height: 0;
                    }
                }
            }
        }
    }
}

.accTrigger {
    display: none;
}

.fileUpldDiv {
    width: 100%;

    .filelabel {
        width: 100%;
        border-radius: 5px;
        display: block;
        transition: border 300ms ease;
        cursor: pointer;
        /* text-align: center; */
        text-align: left;
        margin: 0;
        position: relative;

        .uploadTxt {
            text-align: left;
            background-color: transparent;
            display: block;
            margin-bottom: 5px;
            font-size: 18px;
            color: #000;
            width: 100%;
            border: 1px solid #ccc;
            line-height: 42px;
            height: 42px;
            padding: 0px 15px 5px;
            border-radius: 8px;
            position: absolute;
        }

        .wpcf7-form-control-wrap {
            position: relative;
        }

        #FileInput1,
        #FileInput2,
        #FileInput4 {
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
    }
}

/* end job section */

/* start employee story */
.employeeStrySec {
    background-color: #E5F8E2;

    .headingWrap {
        position: relative;
        z-index: 1;

        .secH {
            & span {
                &::after {
                    background-image: linear-gradient(to right, #E5F8E2, #B7EBAA);
                }
            }
        }
    }

    .employeeStryBtm {
        .employeeSlide {
            .slick-list {
                margin: 0 20px !important;
                padding: 0 !important;
            }

            .echEmployee {
                padding: 0 15px;

                .employeeCard {
                    background-color: #ffffff;
                    border-radius: 15px;
                    padding: 44px 10px;

                    .employeeCardTp {
                        border-bottom: 1px solid #00000025;
                        padding-bottom: 40px;
                        margin-bottom: 40px;
                    }

                    .employeeCardBtm {
                        .employeeCardTitle {
                            font-size: 25px;
                            color: #048FEA;
                            font-weight: 700;
                            font-family: "Manjari", sans-serif;
                        }

                        .employeeCardDes {
                            font-size: 18px;
                            font-weight: 400;
                            font-family: "Manjari", sans-serif;
                            display: block;
                            margin-bottom: 5px;
                        }

                        .employeeCardYr {
                            color: #6D6D6D;
                            display: block;
                            font-size: 14px;
                            font-weight: 400;
                            font-family: "Manjari", sans-serif;
                        }
                    }
                }
            }

            .slick-arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background-color: #ffffff;
                border: 1px solid #e8e8e8;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
                width: 54px;
                height: 54px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
                cursor: pointer;
                z-index: 3;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                font-size: 0;

                &.slick-prev {
                    left: -30px;

                    &::after {
                        content: "\f061";
                        position: absolute;
                        z-index: 4;
                        font-family: fontawesome;
                        font-size: 16px;
                        transform: rotate(180deg);
                        transition: transform 0.3s ease;
                    }
                }

                &.slick-next {
                    right: -30px;

                    &::after {
                        content: "\f061";
                        position: absolute;
                        z-index: 4;
                        font-family: fontawesome;
                        font-size: 16px;
                        transition: transform 0.3s ease;
                    }
                }

                &:hover {
                    transform: translateY(-50%) scale(1.06);
                    background-color: #3DC718;

                    &::after {
                        color: #000000;
                    }
                }
            }
        }
    }
}

/* end employee story */

/* career get in touch */
.careerGetInSec {
    .careerGetInWrap {
        margin: 0 80px;
        border-radius: 20px;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 50px 30px;

        .headingWrap {
            position: relative;
            z-index: 1;
        }

        .formWrap {
            width: 840px;
            background-color: #ffffff;
            padding: 54px 24px;
            border-radius: 20px;

            input[type="text"],
            input[type="email"],
            select,
            input {
                height: 50px;
            }

            .nice-select {
                height: 55px;
                line-height: 55px;
                background-color: #F1F1F1;
                border-radius: 50px;
                border: none;

                &::after {
                    top: 20px;
                }
            }

        }

    }

    .fileCv {
        position: relative;
    }

    .uploadTxt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        padding: 15px 25px;
        background: url(../images/cv-icon.png) no-repeat;
        background-size: 20px;
        background-position: 96%;
        background-color: #F1F1F1;
        outline: none;
        color: #000000;
        border-radius: 25px;
        cursor: pointer;
    }

    input[type="file"] {
        color: #000000;
        padding: 12px 25px;
        appearance: none;
        background: url(../images/cv-icon.png) no-repeat;
        background-size: 20px;
        background-position: 94%;
        background-color: #F1F1F1;
        outline: none;
        opacity: 0;
        position: relative;
        z-index: 9;
    }

    .wpcf7-form-control-wrap {
        position: relative;
    }

    .form-group {
        input[type="text"][placeholder="Profile Role"] {
            background-image: url(../images/user-role.png);
            background-repeat: no-repeat;
            background-size: 22px;
            background-position: 94% 50%;
        }
    }

}

/* end career get in touch */

/* Responsive */
@media (max-width: 1600px) {
    .careerGetInSec {
        .uploadTxt {
            font-size: 16px;
        }
    }

    .fileUpldDiv {
        .filelabel {
            .uploadTxt {
                font-size: 16px;
            }
        }
    }

    .openPositionsSec {
        .jobTabWrap {
            .jobCard {
                .jobCardDescWrap {
                    .jobCardDesc {
                        h6 {
                            font-size: 18px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1440px) {
    .careerGetInSec {
        .uploadTxt {
            font-size: 14px;
        }
    }

    .fileUpldDiv {
        .filelabel {
            .uploadTxt {
                font-size: 14px;
            }
        }
    }

    .openPositionsSec {
        .jobTabWrap {
            .jobCard {
                .jobCardDescWrap {
                    .jobCardDesc {
                        h6 {
                            font-size: 16px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1199px) {
    .cultureSec {
        .countWrap {
            padding-top: 20px;
        }

        .countItem {
            span {
                img {
                    width: 32px;
                    height: auto;
                    padding-bottom: 10px;
                }
            }
        }
    }

    .careerGetInSec {
        .careerGetInWrap {
            margin: 0 15px;

            .formWrap {
                width: 100%;
                padding: 45px 24px;
            }
        }
    }
}

@media (max-width: 1024px) {
    .openPositionsSec {

        .mb-5 {
            margin-bottom: 1rem !important;
        }

        .jobFilterRow {
            width: 100%;
            margin-left: 0;

            .jobSearchWrap {
                .input-group {
                    input {
                        text-align: left;
                        font-size: 16px;
                    }
                }
            }
        }

        .jobTabWrap {
            margin-top: 30px;

            .jobTabList {
                flex-wrap: wrap;
                justify-content: center;
                row-gap: 10px;
            }

            .jobCard {
                .jobCardTop {
                    .jobMeta {
                        margin-bottom: 25px;

                        .metaItem {
                            font-size: 15px;
                        }
                    }

                    .jobCardTitle {
                        font-size: 20px;
                    }
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .cultureSec {
        .row.row_gap20 {
            flex-direction: column-reverse;
        }

        .cultureImgWrap {

            .cultureImgLft,
            .cultureImgRgt {
                .cultureImgItem {
                    &.cultureImgTopLft {
                        height: 260px;
                    }

                    &.cultureImgBtmLft {
                        height: 200px;
                    }

                    &.cultureImgTopRgt {
                        height: 200px;
                    }

                    &.cultureImgBtmRgt {
                        height: 260px;
                    }
                }
            }
        }
    }

    .submitWrap {
        text-align: center;

        .wpcf7-spinner {
            right: auto;
            left: 48%;
            transform: translateX(-50%);
        }
    }

    .cultureSec {
        .cultureTxtWrap {
            .cultureGrid {
                .cultureCard {
                    .cultLst {
                        ul {
                            column-count: 2;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 767px) {
    .cultureSec {
        .cultureTxtWrap {
            .cultureGrid {
                .cultureCard {
                    width: 100%;
                }
            }
        }
    }

    .whyWorkRight {
        .wwGrid {
            .wwCard {
                width: 100%;
                padding: 25px 20px;
                justify-content: center;
                text-align: center;
                align-items: center;

                &:nth-child(3) {
                    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
                }

                .wwIcon {
                    position: static;
                    width: 45px;
                    height: auto;
                }

                .wwCardTitle {
                    margin-top: 20px;
                }
            }
        }
    }

    .openPositionsSec {
        .jobTabWrap {
            .jobTabList {
                li {
                    padding: 7px 9px 5px;
                }
            }

            .jobCard {
                .jobCardTop {
                    .jobMeta {
                        justify-content: flex-start;
                        margin-bottom: 15px;
                    }

                    .jobCardTitle {
                        font-size: 18px;
                    }
                }
            }
        }
    }
}

@media (max-width: 640px) {
    .cultureSec {
        .cultureImgWrap {

            .cultureImgLft,
            .cultureImgRgt {
                .cultureImgItem {
                    &.cultureImgTopLft {
                        height: 200px;
                    }

                    &.cultureImgBtmLft {
                        height: 140px;
                    }

                    &.cultureImgTopRgt {
                        height: 140px;
                    }

                    &.cultureImgBtmRgt {
                        height: 200px;
                    }
                }
            }
        }
    }
}

@media (max-width: 575px) {
    .countWrap {
        .countItem {
            padding: 12px 14px !important;

            &:before {
                width: 85%;
                right: 0;
            }

            &:after {
                width: 100%;
                height: 2px;
                background-color: #e1e1e185;
                content: "";
                position: absolute;
                right: 0;
                top: auto;
                bottom: 0;
            }
        }
    }

    .openPositionsSec {
        .jobTabWrap {
            .jobCard {
                .jobCardTop {
                    .jobMeta {
                        justify-content: flex-start;
                        margin-bottom: 15px;
                        flex-direction: column;
                        gap: 12px;
                    }
                }
            }
        }
    }

    .submitWrap {
        .wpcf7-spinner {
            left: 45%;
        }
    }

    .careerGetInSec {
        .careerGetInWrap {
            padding: 30px 12px;

            .formWrap {
                padding: 40px 15px;
            }
        }
    }
}

@media (max-width: 420px) {
    .cultureSec {
        .cultureTxtWrap {
            .cultureGrid {
                .cultureCard {
                    .cultLst {
                        ul {
                            column-count: 1;
                        }
                    }
                }
            }
        }
    }
}