/* You can add global styles to this file, and also import other style files */
/* ___ Google Poppins Fonts *** */

@font-face {
    font-family: 'GT Walsheim Pro';
    src: url("../Font/GTWalsheimPro-Regular.ttf");

}

@font-face {
    font-family: first;
    src: url("../Font/GTWalsheimPro-Regular.ttf");
}

@font-face {
    font-family: sec;
    src: url("../Font/GTWalsheimPro-Medium.ttf");
}

@font-face {
    font-family: third;
    src: url("../Font/GTWalsheimPro-Bold.ttf");
}

@font-face {
    font-family: fourth;
    src: url("../Font/GTWalsheimPro-Black.ttf");
}

:root {
    --primary: #4f378b;
    --secondary: #d9dce3;
}

/* ___ CSS Reusable Codes *** */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    font-size: 62.5%;
    /* 1rem = 10px */
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #f8f8f8;
}

html,
body {
    font-family: 'GT Walsheim Pro', sans-serif !important;
}

.fontAwesome {
    font-family: Helvetica, 'FontAwesome', sans-serif;
}

h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #010101;

}

h2 {
    font-size: 5rem;
    font-weight: 600;
    color: #000000;
}

h3 {
    font-size: 4rem;
    color: #020020;
    font-weight: 500;
}

h4 {
    font-size: 3rem;
    color: #292828;
    font-weight: 400;
}

h5 {
    font-size: 2rem;
    color: #0b0b0b;
    font-weight: normal;
}

h6 {
    font-size: 1.56rem;
    color: #292828;
    font-weight: normal;
}

p {
    font-size: 1.56rem;
    color: #343333;
    font-weight: normal;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: #0b0b0b;
}

a:hover {
    text-decoration: none;
    color: var(--primary);
}

li {
    list-style: none;
}

.flex {
    display: flex;

}

.grid {
    display: grid;

}

.grid-gap {
    column-gap: 2rem;
    row-gap: 3rem;
}

.grid-two-col {
    grid-template-columns: repeat(2, 1fr);
}

.grid-three-col {
    grid-template-columns: repeat(3, 1fr);
}

.grid-four-col {
    grid-template-columns: repeat(4, 1fr);
}

.grid-five-col {
    grid-template-columns: repeat(5, 1fr);
}

.common-container {
    max-width: 120rem;
    margin: 0 auto;
}

.common-container-2 {
    max-width: 110rem;
    margin: 0 auto;
}

.common-container-3 {
    max-width: 130rem;
    margin: 0 auto;
}


/* ___ Our header css codes *** */

.header-comp {
    position: relative;
    width: 100%;
    padding: 1rem 1.78rem;
    background-color: #ffffff;
    z-index: 9999999;
}

.header-flex-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.right-header-box,
.A-flex-box,
.language-selct-box,
.user-main-box,
.left-logo-menu-box {
    display: flex;
    align-items: center;
}
.left-logo-menu-box {
    width: 100%;
    justify-content: space-between;
}

.logo {
    position: relative;
    /* width: 55%; */
}

.logo img {
    width: 100%;
    max-width: 14rem;
    height: auto;
    max-height: 55px;
    margin-inline: 2%;
    z-index: 99999;
}

.menu-bar {
    position: relative;
    padding: 1rem 1rem;
    width: 4.2rem;
    background-color: var(--secondary);
    margin-left: 5rem;
    border-radius: .45rem;
    cursor: pointer;
}

.line {
    width: 100%;
    height: .25rem;
    background-color: var(--primary);
    border-radius: 1rem;

}

.line2 {
    margin: .5rem 0 .5rem 0;
}
.A-flex-box{
    margin-right: 4rem;
}
.A-flex-box a {
    margin-right: 0rem !important;
}
.A-flex-box div, .A-flex-box a{
    width: min-content !important;
}

.a-box a {
    position: relative;
    font-size: 1.2rem;
    color: #0b0b0b;
    font-weight: 700;


}

.abox-minus a::before {
    content: "\f068";
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    right: -1rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: .87rem;
}

.abox-plus a::before {
    content: "\2b";
}

.a-box2 a {
    color: var(--primary);
}

.a-box2 {
    margin: 0 2rem;
}

.language-selct-box {
    position: relative;
}

.language-selct-box::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1.5rem;
    width: .2rem;
    height: 100%;
    background-color: #0b0b0b;
}

.lang-icon i {
    font-size: 1.87rem;
    color: #0b0b0b;
    margin-right: .34rem;
}

select {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: -.2rem;
    cursor: pointer;
}

.user-main-box {
    margin-left: 2.5rem;
    position: relative;
    cursor: pointer;
}



.user-main-box p {
    font-size: 1.56rem;
    color: #000000;
    font-weight: 550;
    margin-right: .5rem;
    margin-top: .45rem;
}

.user-img img {
    width: 82%;
    height: auto;
}

.user-profile-box {
    position: absolute;
    top: 6.5rem;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: #fff;
    transition: 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.user-main-box:hover .user-profile-box {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

}

.profile-bx {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: .1rem solid #eee;
    padding: 1rem 1.6rem;
    transition: 500ms ease;
}

.profile-bx:hover {
    background-color: var(--secondary);
}

.profile-bx2 {
    border-bottom: none;
}

.left-p-bx p {
    font-size: 1.45rem;
    color: #242424;
    font-weight: 500;
}

.profile-img i {
    font-size: 1.5rem;
    color: var(--primary);
}


.home-comp {
    position: relative;
    padding: 1rem 1.78rem;
    background-color: var(--secondary);
    padding: 2rem 0 10rem 0;

}

.home-heading-box {}

.home-heading-box h2 {
    font-size: 2.76rem;
    font-weight: 700;
    color: #2b2b2b;

}

/* ___ Jobs grid box comp *** */

.jobs-grid-box-comp {
    position: relative;
    padding: 1rem 1.78rem;
    margin-top: -9.5rem;
}

.job-box {
    position: relative;
    background-color: #ffffff;
    border: .5rem;
    border: .1rem solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 4.5rem 1.87rem;
}

.job-box::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: .6rem;
    height: 40%;
    background-color: var(--primary);
    border-radius: 1rem;
}

.job-box h4 {
    font-size: 3rem;
    color: #0b0b0b;
    font-weight: 700;
    margin-bottom: 1.45rem;
}

.job-box p {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000000;
}

/* ___ upcoming jobs interview css codes *** */

.upcoming-jobs-interveiw-comp {
    position: relative;
    width: 100%;
    padding: 1rem 1.78rem;
    margin-top: 1rem;
}

.job-intervw-box {
    position: relative;
    width: 100%;
    padding: 1.5rem 1.78rem;
    border: .15rem solid #65BEFF;
    border-radius: .5rem;
    background-color: #ffffff;

}


.job-intvw-head-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.job-intvw-head-box h4 {
    font-size: 1.6rem;
    color: #000000;
    font-weight: 500;
}

.view-all-btn {
    margin-top: -.3rem;
}

.job-intvw-head-box a {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 500;
}

.job-intvw-list-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 1.5rem;
    border-bottom: .14rem solid #eee;
    padding-bottom: 1.5rem;
}

.job-intvw-list-box-2 {
    padding-bottom: 0 !important;
    border-bottom: none !important;

}

.job-intervw-box-2 {
    border-color: var(--primary);
}

.job-intervw-box-3 {
    border-color: #F0273F;
}

.job-li-left-box h5 {
    font-size: 1.5rem;
    color: #242424;
    font-weight: 600;
}

.job-li-left-box p {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
}

.vw-det-btn {
    margin-top: -.78rem;
}

.vw-det-btn a {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}

.job-li-right-box p {
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--primary);

}

.job-li-right-box h6 {
    margin-top: -.7rem;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    text-align: right;
}


.candidate-join-agency-comp {
    position: relative;
    margin-top: 2rem;
    padding: 1rem 1.78rem;
}

.cndte-jn-bx {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border: .1rem solid #ffffff;
    border-radius: .5rem;
    padding: 2rem 1.87rem;
}

.cndte-main-list-box {
    margin-top: 1.5rem;
}

.cndte-jn-det-box {
    padding: 1.5rem 0;
    border-bottom: .1rem solid #eee;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.left-cndte-det-box {
    display: flex;
    align-items: center;


}

.cdnt-img {
    margin-right: 1.5rem;

}

.cdnt-img img {
    width: 100%;
    height: auto;
}

.cndte-info-box .job-li-left-box p {
    line-height: 1.2;
}

.cndte-info-box .job-li-left-box .vw-det-btn {
    margin-top: -.4rem;
}

.right-cdnte-date-join-box h6 {
    font-size: 1.5rem;
    color: #242424;
    font-weight: 500;
    text-align: right;
}


.right-cdnte-date-join-box p {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 2rem;
}

.right-cdnte-date-join-box p span {
    font-weight: 700;
    font-size: 1.4rem;
}

.cndte-agncy-bx {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: .1rem solid #eee;
    padding: 1.5rem 0 1.5rem 0;
}

.cndte-agncy-logo img {
    width: 100%;
    height: auto;
}

.cdnte-agncy-info {
    margin-left: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
}

.cdnte-agncy-info p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #242424;
}

.agncy-location-box {
    display: flex;
    align-items: center;
    margin-top: -1rem;
}

.loc-map-icon {
    margin-top: -.5rem;
    margin-right: .5rem;
}

.loc-map-icon i {
    font-size: 1.4rem;
    color: #9c9a9f;

}

.agncy-location-box p {
    font-size: 1.35rem;
    color: #000000;
    font-weight: 500;
}

.vw-det-btn-2 {
    margin-top: -.5rem;
}

.cndte-agncy-bx-2 {
    border-bottom: none;
    padding: 1rem 0 0 0;
}

/* ___ Side nav comp css codes *** */

.side-nav-comp {
    position: fixed;
    top: 0;
    left: 0;
    width: 5rem;
    height: 100vh;
    z-index: 99999;
    padding-block: 15rem;
    transition: 700ms ease;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.active.side-nav-comp {
    width: 25rem;
}




.navbar,
.nav,
.nav-ul {
    position: relative;
    width: 100%;
}





.nav-li-box {
    margin-bottom: 1rem;
}

.nav-li-box,
.nav-li {

    transition: 500ms ease;
}

.active .nav-li-box {
    background-color: #663896;
    width: 100%;

}

.nav-li {
    position: relative;
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    height: 5rem;
    width: 100%;

}

.n-icon {
    position: relative;
    width: 2rem;
    display: grid;
    place-items: center;
    text-align: center;
}

.n-icon i {
    font-size: 1.65rem;
    color: #ebeaea;
}

.user-sm-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.mark-img {
    position: absolute;
    bottom: .2rem;
    left: .8rem;
}

.cndte-img2 {
    position: absolute;
    top: -1.6rem;
    left: .3rem;
}

.cndte-img {
    position: absolute;
    bottom: 0;
    left: 0%;
    /* transform: translateX(-50%); */
}

.n-list-bx {
    position: relative;
    width: 20rem;
}

.n-list {
    position: absolute;
    top: -.98rem;
    left: 0;
    margin-left: 1.78rem;
    font-size: 1.4rem;
    color: #ffffff;
    transition: 500ms ease;
    opacity: 0;
}

.active .n-list {
    animation: animate .76s ease forwards;
    opacity: 0;
    animation-delay: .3s;



}

@keyframes animate {

    100% {
        opacity: 1;
    }

}

.n-list2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    width: 20rem;
    height: 5rem;
    padding: 0 1rem;
    background-color: #663896;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
    transition: 500ms ease;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-li:hover .n-list2 {
    opacity: 1;
    visibility: visible;
}

.active .nav-li:hover .n-list2 {
    opacity: 0;
    visibility: hidden;
}

.darkbg.nav-li {
    background-color: #663896;
}

.nav-li:hover {
    background-color: #663896;
}



.footer-comp {
    background-color: #ffffff;
    padding: 2rem 1.78rem 1.5rem 1.78rem;
    margin-top: 2rem;
}

.footer-main-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-copyright-box p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #242424;
    margin-right: 5rem;
}

.terms-privacy-box {
    display: flex;
    align-items: center;
    margin-top: -1rem;
}

.f-link a {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    text-decoration: underline;
    margin-right: 2.5rem;
}

/* ___ Register form yourslef comp css  *** */

.register-job-btns {
    display: flex;
    align-items: center;
    margin-left: 4rem;
}

.reg-btn {
    padding: .87rem 0.78rem;
    position: relative;
    background-color: transparent;
    border: none;
    border: .1rem solid var(--primary);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.reg-btn.active {
    background-color: var(--primary);
    color: #fff;
}

.register-yourself-comp {
    position: relative;
    margin-top: 5rem;
    padding: 2rem 1.78rem;

}

.form-grid {
    grid-template-columns: 1fr 2fr;
    column-gap: 0;
}

.left-form-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.left-form-img-box img {
    width: 75%;
    height: auto;
}

.form-main-box {
    background: #fff;
    padding: 3rem 3rem;
}

.form-main-box h4 {
    font-size: 2.4rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 2rem;
}

.regter-applyjob-post-job-btn-box,
.right-regter-btns-flex {
    display: flex;
    align-items: center;
}

.left-regter-text p {
    font-size: 1.6rem;
    color: #242424;
    font-weight: 500;
}

.right-regter-btns-flex {
    margin-left: 5rem;
}

.rg-job-btn {
    display: flex;
    align-items: center;
    margin-right: 5rem;
    cursor: pointer;
}

.clikc-box {
    position: relative;
    width: 1.3rem;
    height: 1.3rem;
    background-color: transparent;
    border: .1rem solid var(--primary);
    border-radius: 50%;
    margin-top: -.87rem;
    margin-right: 1rem;
}

.clikc-box:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background-color: transparent;
    border-radius: 50%;

}

.rg-job-btn p {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 500;
}

.active .clikc-box:before {
    background-color: var(--primary);
}

.form {
    margin-top: 2rem;
}

.r-yf-inpt-bx {
    display: flex;
    flex-direction: column;
}

.r-yf-inpt-bx label {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: .78rem;
}

.r-yf-inpt-bx input {
    background-color: var(--secondary);
    border: none;
    border: .1rem solid var(--secondary);
    padding: 1rem 1rem;
    font-size: 1.3rem;
    color: #242424;
}

.r-yf-inpt-bx input::placeholder {
    color: #808080;
}


.mob-num-email {
    margin: 2rem 0;
}

.gender-main-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2.5rem 0 0 0;
}

.gnder-type-bx {
    display: flex;
    align-items: center;
    margin-inline-end: 9rem;
}

.select-state-bx {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.select-state-bx label {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 1.45rem;
}

.select-state-bx select {
    width: 100%;
    padding: 1.04rem 0;
    background-color: var(--secondary);
    font-size: 1.3rem;
    color: #808080;
    font-weight: 500;
}

.submit-btn-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
}

.submit-btn input {
    width: 15rem;
    padding: 1rem 1rem;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    border-radius: 4rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.4rem;
    margin-right: 2rem;
    transition: 500ms ease;
}

.submit-btn input:hover {
    background-color: transparent;
    color: var(--primary);
}

.login-btn {
    width: 20rem;
    padding: 1rem 1rem;
    background-color: transparent;
    border: .1rem solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    font-size: 1.4rem;
    transition: 500ms ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 4rem;
}

.login-btn:hover {
    background-color: var(--primary);
    color: #fff;
}


/* register navbar *** */

.nav-link2 {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.nav-link2 .active {
    color: var(--primary) !important;
}


.nav-link2 a {
    font-size: 1.5rem;
    color: #242424;
    font-weight: bold;
    margin-right: 4rem;
    letter-spacing: 1px;
    width: 100%;
    width: 7rem;
    transition: 500ms ease;
}

.nav-link2 a:hover {
    color: var(--primary);
}

.nav-link2 a:active {
    color: var(--primary);
}

/* ___ Otp comp css *** */

.regter-otp-comp {
    margin-top: 5rem;
    padding: 2rem 1.78rem;
}

.reg-opt-grid {
    grid-template-columns: 1fr 2fr;
}

.left-otp-img-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-otp-img-box img {
    width: 100%;
    height: auto;
}

.right-otp-bx {
    background-color: #fff;
    padding: 4rem 5rem;

}

.right-otp-bx h5 {
    font-size: 2.2rem;
    color: #242424;
    font-weight: 650;
    margin-bottom: .5rem;
}

.right-otp-bx p {
    font-size: 1.5rem;
    color: #242424;
    font-weight: 500;
}

.mob-num-box-otp {
    margin-top: 3rem;
}

.mob-num-box-otp p {
    font-size: 1.25rem;
    color: #242424;
    font-weight: 500;
}

.mob-num-text {
    display: flex;
    align-items: center;
    margin-top: -.5rem;
}

.mob-num-text p {
    font-size: 1.6rem;
    color: #e2e1e1;
    font-weight: normal;
    margin-right: 1rem;
}

.edit-icon {
    margin-top: -.89rem;

}

.edit-icon i {
    font-size: 1.4rem;
    color: gray;

}

.otp-flex-bx {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.otp-ent-box {
    position: relative;
    width: 6rem;
    height: 6rem;
    background-color: var(--secondary);
    border: .1rem solid var(--secondary);
    display: grid;
    place-items: center;
    margin-right: 2rem;
    padding: 1.5rem;
}

.otp-ent-box input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: .1rem dashed var(--primary);
    font-size: 1.35rem;
    color: #808080;
    font-weight: 500;
    text-align: center;
}

.not-recve-otp-main-bx p {
    font-size: 1.45rem;
    color: var(--primary);
    font-weight: 500;
}

.not-recve-otp-main-bx p a {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;

}

.otp-tick-main-bx {
    margin-top: 3rem;
}

.otp-tic-text-bx {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.tic-otp-bx {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fff;
    border: .1rem solid #eee;
    margin-top: .7rem;
    margin-right: 1rem;
    cursor: pointer;
}

.tic-otp-bx:before {
    content: "\f00c";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    background-color: var(--primary);
    display: none;
}

.tic-otp-bx.active:before {
    display: flex;
}

.otp-tic-text-bx p {
    max-width: 50rem;
    font-size: 1.6rem;
    color: #242424;
    font-weight: 500;
}

.otp-tic-text-bx2 p {
    max-width: 100%;
}

.otp-tic-text-bx2 p a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
}

.otp-tic-text-bx2 p span {
    color: var(--primary);
}

.login-btn-otp {
    width: 80%;
    text-align: center;
    background-color: #808080;
    padding: 1.2rem 1rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 4rem;
    margin-top: 3rem;
    opacity: 0.88;
    cursor: pointer;
}

/* ___ succefuly register comp css *** */

.succesfuly-reg-comp {
    margin-top: 5rem;
    padding: 2rem 1.78rem;

}

.succfly-reg-grid-bx {
    grid-template-columns: 1fr 2fr;
    row-gap: 3rem;
}

.left-sucffly-reg-img-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.right-succfuly-reg-det-bx {
    background-color: #ffffff;
    padding: 3rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

}

.right-succfuly-reg-det-bx h6 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #242424;
    margin-bottom: 3rem;
    max-width: 42rem;
    line-height: 1.4;
}

.vector-bx {
    position: relative;
    width: 12rem;
    height: 12rem;
    display: grid;
    place-items: center;
    margin-bottom: 3rem;

}

.vector-bx:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.vector-bx2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

}

.mail-sub-img-bx {
    position: relative;

}

.mail-sub-img-bx img {
    height: auto;
}

.sub-img {
    position: absolute;
    bottom: -.55rem;
    right: -.2rem;
    width: 35%;
}

.mail-img {
    width: 80%;
}

.verifly-bx p:first-child {
    font-size: 1.55rem;
    font-weight: 700;
    color: #000000;

}

.verifly-bx p:last-of-type {
    font-size: 1.4rem;
    max-width: 30rem;
    line-height: 1.6;
    color: #242424;
    font-weight: 500;
}


/* ___ Apply job form comp css codes *** */

.apply-job-comp {
    position: relative;
    margin-top: 5rem;
    padding: 2rem 1.78rem;
}

.applyjob-grid {
    grid-template-columns: 1fr 2fr;
    column-gap: 1rem;
}

.left-applyjob-img {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.left-applyjob-img img {
    width: 90%;
    height: auto;
}

.right-applyjob-form-bx {
    background-color: #fff;
    padding: 3rem 4rem;
    width: 100%;
}

.right-applyjob-form-bx h5 {
    font-size: 2rem;
    font-weight: 700;
    color: #242424;

}

.jobapply-fresher-bx {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yes-no-applyjob-bx {
    display: flex;
    align-items: center;
    margin-inline-end: 15rem;
}

.r-yf-inpt-bx-2 select {
    background-color: var(--secondary);
    padding: 1.04rem 0;
    font-size: 1.3rem;
    font-weight: 500;
    color: #808080;
    margin-top: 0;
}

.date-inpt {
    position: relative;
    width: 100%;

}

.date-inpt input {
    width: 100%;
}

.date-inpt::before {
    content: "\f073";
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #808080;
    font-size: 1.4rem;
    opacity: 0.45;

}

.r-yf-textarea-bx textarea {
    padding: 1rem 1rem;
    background-color: var(--secondary);
    font-size: 1.3rem;
    color: #808080;
    font-weight: 500;
    resize: none;
    border: transparent;
}

.r-yf-textarea-bx textarea::placeholder {
    font-weight: normal;
}

.work-exp {
    margin-top: 1.45rem;
    margin-bottom: 3rem;
}

.work-exp a {
    font-size: 1.54rem;
    color: var(--primary);
    font-weight: 500;
}

.apply-job-submt-skipnow-btn {
    display: flex;
    justify-content: center;
    align-items: center;

}

.job-form-subt-btn input {
    padding: 1rem 1rem;
    width: 15rem;
    border-radius: 4rem;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    display: grid;
    place-items: center;
    text-align: center;
    transition: 400ms ease;
    margin-right: 4rem;
}

.job-form-subt-btn input:hover {
    background-color: transparent;
    color: var(--primary);
}

.skipnow-btn {
    width: 12rem;
    padding: 1rem 1rem;
    font-size: 1.3rem;
    color: #808080;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.main-applyjob-form-bx {
    position: relative;
    background-color: #fff;
    margin-top: -2rem;

}



.form-bx {
    width: 100%;
    padding: 3rem 3rem;
    background-color: #fff;
}

.form-fresher {}

.form-bx {
    display: none;
}

.form-bx.active {
    display: block;
}


.qua-add {
    margin-top: 2rem;
}

.edu-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.click-edu-btn {
    position: relative;
    width: 1.4rem;
    height: 1.4rem;
    background-color: transparent;
    border: .1rem solid var(--primary);
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: -.79rem;
}

.click-edu-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: 500ms ease;
}

.active.edu-btn .click-edu-btn:before {
    opacity: 1;
}

.techcal-academic-qualification-main-bx {
    position: relative;
    margin-top: 3rem;
    height: 8.5rem;
}

.tech-qual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


}

.sel-qual {
    transition: 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.sel-qual.hidden {
    display: none;
}

.active.sel-qual {
    opacity: 1;
    visibility: visible;
}

.no-educt-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.no-educt-text p {
    font-size: 1.4rem;
    color: #242424;
    font-weight: 500;
}

/* ___ Upload Cv comp css *** */

.upload-cv-comp {
    margin-top: 5rem;
    padding: 2rem 1.78rem;
}

.uplod-cv-grid {
    grid-template-columns: 1fr 2fr;
}

.left-cv-img-bx {
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

.left-cv-img-bx img {
    width: 90%;
    height: auto;
}

.right-upload-cv-det-bx {
    position: relative;
    padding: 3rem 3rem;
    background-color: #fff;
}

.right-upload-cv-det-bx h5 {
    font-size: 1.9rem;
    color: #242424;
    font-weight: 700;
    margin-bottom: 3rem;
}


.upload-cv-bx {
    position: relative;
    width: 100%;
}

.upload-cv-bx p {
    font-size: 1.35rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cv-bx {
    width: 100%;
    height: 15rem;
    background-color: var(--secondary);
    padding: 1rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    cursor: pointer;
}

.cv-icon-bx {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.vec-17 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.cv-bx p {
    margin-top: .5rem;
    font-size: 1.35rem;
    color: #808080;
    font-weight: 500;
    opacity: 0.77;
}

.sel-lang-main-bx {
    margin-top: 2rem;
}

.sel-lang-bx {
    margin-bottom: 2.76rem;
}

.sel-lang-text-opt-main-bx {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 3rem;
}

.sel-lang-text p {
    font-size: 1.35rem;
    color: #242424;
    font-weight: 500;
}

.lang-opt-bx {
    display: flex;
    align-items: center;
}

.lang-tic-bx {
    position: relative;
    width: 1.3rem;
    height: 1.3rem;
    border: .1rem solid #eee;
    background-color: #fff;
    margin-top: -.7rem;
    margin-right: .7rem;
}

.lang-tic-bx:before {
    content: "\f00c";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    transition: 500ms ease;
    opacity: 0;

}

.lang-opt-bx.active .lang-tic-bx:before {
    opacity: 1;
}

.add-lang-bx {
    margin-top: 2rem;
    font-size: 1.45rem;
    color: var(--primary);
    font-weight: 550;
    background-color: transparent;
    border: none;
}

/* ____ Login comp css codes *** */

.login-jobseeker-comp {
    position: relative;
    margin-top: 5rem;
    padding: 2rem 1.78rem;
}

.login-grid {
    grid-template-columns: 1fr 2fr;
}

.right-login-main-bx {
    position: relative;
    padding: 5em 5rem;
    background-color: #fff;
}

.right-login-main-bx h5 {
    font-size: 2rem;
    color: #242424;
    font-weight: 700;

}


.right-login-main-bx p {
    font-size: 1.35rem;
    color: #000000;
    font-weight: 500;
    line-height: 1.4;
}

.login-form {
    margin-top: 2rem;
    width: 100%;
    position: relative;
}

.lgin-input-bx {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;

}

.lgin-input-bx label {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: .65rem;
}

.lgin-inpt {
    position: relative;
    width: 100%;
    background-color: var(--secondary);
    padding: 1.35rem 1rem;

}

.lgin-inpt:before {
    content: "\f0e0";
    position: absolute;
    top: 53%;
    left: 2rem;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.45rem;
    color: #696767;
}

.lgin-inpt input {
    width: 100%;
    background-color: transparent;
    border: none;
    font-size: 1.45rem;
    color: #000000;
    font-weight: 500;
    margin-left: 3.65rem;

}

.lgin-inpt input::placeholder {
    font-weight: normal;
}

.pass-lgin-inpt:before {
    content: "\f023";
}

.pass-lgin-inpt:after {
    content: "\f06e";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.45rem;
    color: #696767;
    cursor: pointer;

}

.lgin-inpt input:focus {
    background-color: transparent;
    box-shadow: none;
}

.forgt-passwrd-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: .76rem;
}

.forgt-passwrd-btn a {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

.lgin-btun {
    margin-top: 2rem;
    width: 100%;
}

.lgin-btun input {
    width: 100%;
    padding: 1.43rem 1rem;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    background-color: var(--primary);
    border: none;
    border: .1rem solid var(--primary);
    border-radius: 5rem;
    transition: 550ms ease;
}

.lgin-btun input:hover {
    background-color: transparent;
    color: var(--primary);
}

.otp-login-nt-have-account-bx {
    margin-top: 1.4rem;
    text-align: center;
}

.otp-login-bx a {
    font-size: 1.36rem;
    color: var(--primary);
    font-weight: 500;

}

.or-choice-text {
    margin: 1rem 0;
    position: relative;
    font-size: 1.35rem;
    color: #808080;
    font-weight: 500;
}


.or-choice-text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 47%;
    height: .1rem;
    background-color: #808080;
    opacity: 0.3;
    border-radius: 4rem;
}

.or-choice-text:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 47%;
    height: .1rem;
    background-color: #808080;
    opacity: 0.3;
    border-radius: 4rem;
}

.not-hve-accunt-bx {
    width: 22rem;
    padding: 1.2rem 1rem;
    background-color: transparent;
    border: .1rem solid var(--primary);
    margin: 2.5rem auto;
    border-radius: 4rem;
}

.not-hve-accunt-bx a {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 500;
}

.left-login-bg-img-bx {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-login-bg-img-bx:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.login-some-det-bx {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    padding: 3.87rem 2.45rem 1.76rem 2.45rem;
}

.login-some-det-bx h5 {
    font-size: 1.9rem;
    color: #242424;
    font-weight: 700;
}

.login-det-list-bx {
    margin-top: 2rem;
}

.log-det-bx {
    position: relative;
}


.log-det-bx:before {
    content: "\f00c";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.34rem;
    color: #000000;

}

.log-det-bx p {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    line-height: 1.4;
    margin-left: 2.5rem;

}

.login-btn-main-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.login-btn-2 {
    text-align: center;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    width: 80%;
    padding: .87rem .87rem;
    border-radius: 4rem;
    cursor: pointer;
}

.lgin-emp-img {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 65%;
    height: auto;
}

.login-btn-2 a {
    font-size: 1.35rem;
    color: #fff;
    font-weight: 500;
}

.lgin-emp-hand {
    position: absolute;
    top: 36%;
    left: 23%;
    z-index: 4;
    width: 23%;
    height: auto;

}

.v-key {
    position: absolute;
    top: 16rem;
    right: 6rem;
}

.v-lock {
    position: absolute;
    top: 5rem;
    right: 5rem;
}

.v-c-1 {
    position: absolute;
    top: 6rem;
    left: 15rem;
}

.v-c-2 {
    position: absolute;
    top: 5.2rem;
    left: 20rem;
}

.v-c-3 {
    position: absolute;
    top: 4rem;
    left: 18rem;
}

.v-book {
    position: absolute;
    top: 6rem;
    left: 2.3rem;
    width: 8rem;
}

.right-lgin-otp-bx {
    padding: 5em 5rem 3rem 5rem;

}

.otp-btn {
    margin-top: 18rem;
}

.otp-btn input {
    background-color: #bcbcbc;
    border-color: #bcbcbc;


}

.lgin-otp-mob-num-bx {
    display: flex;
    align-items: center;
}

.lgin-otp-mob-num-bx input {
    margin-left: 1.6rem;
    margin-top: -.1rem;
}

.lgin-otp-mob-num-bx:before {
    display: none;
}

.india-num-text {
    margin-left: 1rem;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

/* ___ Login OTP 2 css codes *** */

.right-login-otp-2 {
    padding: 4rem 7rem;
}

.otp-btn-2 {
    margin-top: 7rem;
}

.otp-img-2 {
    position: absolute;
    bottom: 10rem;
    left: 50%;
    transform: translateX(-50%);
}

.otp-img-2 img {
    height: auto;
}

/* ____ forgot password css codes *** */

.usernme-inpt:before {
    display: none;
}

.usernme-inpt input {
    margin-left: 1rem;
}


.forgt-passwrd-btn-2 {
    margin-top: 5rem;
}

.submit-btn {
    margin-top: 18rem;
}

.forgt-passwrd-btn input {
    background-color: #808080;
    opacity: 0.7;
    border-color: #808080;
}

.login-btn-switch {
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 9rem;

}

.login-btn-switch a {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

/* ___ forgot password 2 css codes *** */

.forg-passwrd-main-bx-2 {
    padding: 13rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


/* ___ save password css codes **** */

.save-passwrd-btn {
    margin-top: 8.67rem;
    margin-bottom: 14rem;
}

.nw-passwrd-inpt-bx input {
    margin-left: 1rem;
}

.nw-passwrd-inpt-bx:before {
    display: none;
}

/* ____ candidate  css code s*** */

.home-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.appl-filt-fom {
    display: grid;
    grid-template-columns: 3fr 1fr;
    column-gap: 2rem;
}



.right-home-switch-btn span {
    font-size: 1.4rem;
    color: #808080;
    font-weight: normal;
}

.right-home-switch-btn span a {
    color: var(--primary);
    font-weight: 500;
}



.apply-filter-comp {
    margin-top: -8rem;

}

.apply-filter-form-bx {
    background-color: #fff;
    position: relative;
    width: 100%;
    padding: 3rem 4rem;
    box-shadow: 0 1px 5px #eee;
    border-radius: .5rem;
}

.appl-sel-impt-bx-grid {
    column-gap: 2rem;
}

.apply-filter-form-bx h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

.reg-open-docu-btn-flex-candidate-part {
    padding-top: 2rem;
    padding-bottom: 1rem;
}


.cand-apply-filt-btn .clikc-box:before {
    opacity: 0;
}

.cand-apply-filt-btn.active .clikc-box:before {
    opacity: 1;
}

.gender-btns-flex-bx {
    display: flex;
    flex-direction: column;
    align-items: flex-start;



}

.gender-sel-btns {
    display: flex;
    align-items: center;

}

.gen-sel-btn {
    margin: 0 2rem 0 0;
}

.labelt-title-gend {
    margin-top: 0;
    margin-bottom: 1.4rem;
}

.labelt-title-gend label {
    font-size: 1.3rem;
    color: #010101;
    font-weight: 500;
}

.gen-sel-btn .clikc-box:before {
    opacity: 0;
}

.gen-sel-btn.active .clikc-box:before {
    opacity: 1;
}

.reset-search-btns-cand {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cand-btn {
    padding: 1.2rem 1.78rem;
    width: 17rem;
    background-color: transparent;
    border: none;
    border: .1rem solid var(--primary);
    border-radius: 5rem;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 500;
    margin-right: 1.5rem;
}

.Search-btn {
    background-color: var(--primary);
    color: #fff;

}


.app-filt-fom-bx {
    display: none;
}



.app-filt-fom-bx.active {
    display: block;
}


/* ___ table bx comp *** */

.apfl-table-comp {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 1.78rem;


}

.apfl-table-main-bx {
    background-color: #fff;
    box-shadow: 0 1px 5px #eee;
    padding: 3rem 3rem;

}

.apfil-table-flex-bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabl-left-bx {
    display: flex;
    align-items: center;
}

.tabl-search-bx {
    position: relative;
    width: 25rem;
    background-color: #f9f5fd;
    padding: 1.1rem .5rem;
    border: .1rem solid var(--secondary);

}

.tabl-search-bx:before {
    content: "\f002";
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 1.55rem;
    color: #242424;
    font-weight: 900;
    opacity: 0.88;
    font-family: "Font Awesome 6 Free";
}

.tabl-search-bx input {
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    border: none;
    font-size: 1.4rem;
    color: #0b0b0b;
    margin-left: 3rem;
}


.record-text-bx {
    margin-left: 1.87rem;
    margin-top: .45rem;
}

.record-text-bx p {
    font-size: 1.4rem;
    color: #242424;
    font-weight: 600;
}

.right-table-bx,
.page-switch-next-prev-bx {
    display: flex;
    align-items: center;
}

.sel-page-bx {
    display: flex;
    align-items: center;
}

.sel-page-bx select {
    width: 7rem;
    padding: 1rem .54rem;
    background-color: #f9f5fd;
    border: .1rem solid var(--secondary);
    font-size: 1.3rem;
    font-weight: normal;
}

.sel-page-bx span {
    margin-left: 1rem;
    margin-top: -.3rem;
    margin-right: 2rem;
    font-size: 1.3rem;
    color: #242424;
    font-weight: 500;
}

.page-switch-next-prev-bx {
    margin-left: 4rem;
}

.pg-prev-btn {
    margin-right: 1.5rem;
    color: #242424;
    font-size: 1.65rem;
    opacity: 0.77;
    cursor: pointer;

}

.pg-num-bx {
    margin-right: 2rem;
    margin-left: 1rem;
    padding: .87rem .65rem;
    background-color: #f9f5fd;
    border: .1rem solid var(--secondary);
    width: 3.56rem;
    display: grid;
    place-items: center;
    font-size: 1.26rem;
    color: #242424;
    font-weight: 500;
}

.totl-page-bx {
    margin-right: 2rem;
    font-size: 1.3rem;
    color: #242424;
    font-weight: 500;
}

.pg-next-btn {
    opacity: 1;
}

.apfl-table-bx {
    position: relative;
    width: 100%;
    overflow-x: auto;
    margin-top: 4rem;
}

table {
    border-collapse: collapse;
    white-space: nowrap;
    width: 100%;
}

thead {
    background-color: var(--primary);
    border: .1rem solid var(--primary);

}

thead tr th {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    padding: 1.2rem 1.2rem;
    text-align: center;


}

tbody tr {
    background-color: #fff;

}

tbody tr td {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1.2rem 1.2rem;
    color: #242424;
    text-align: center;

}

tbody tr:nth-child(2n + 1) {
    background-color: #F7F5F2;
}


/* Our Landing Page CSS __________________________________________________*************** */

.menu-bar-btn {
    width: 2.5rem;
    margin-right: 1.6rem;
    cursor: pointer;
    display: none;

}

.menu-bar-btn img {
    width: 100%;
    height: auto;
}

.nav-logo {
    /* width: 18rem; */
    display: flex;
    justify-content: space-between;
}

.bell-icon {
    width: 2.4rem;
    margin-left: 1.6rem;
    cursor: pointer;
    display: none;
}

.bell-icon img {
    width: 100%;
    height: auto;
}

/* ******* Our landing page stay connected css  ***** */

.stay-connted-comp {
    position: relative;
    margin-top: 1rem;
    /* padding: 3rem 1.78rem 3rem 1.78rem; */
    padding: 1rem 1.78rem 3rem 1.78rem;
    width: 100%;
    overflow: hidden;
    z-index: 4;
}

.stay-connted-comp:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 43%;
    height: 100%;
    background: radial-gradient(circle at center, #DCD5E6 26%, #e5e5e500 46%);
    z-index: -1;
}


.stay-connted-comp:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 9rem;
    height: 50rem;
    background: url('../images/sty-cnnted-path.png')no-repeat center center/cover;
    z-index: -1;
}

.stay-connted-main-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 5rem 6rem;
    border-radius: 1rem;
}

.stay-connted-main-bx:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20rem;
    height: 1rem;
    background-color: var(--primary);
    border-radius: 4rem;
}

.s-cted-text-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.s-cted-text-bx h4 {
    font-size: 4rem;
    letter-spacing: .8px;
    font-weight: 900;
    color: #000000;
    line-height: 31px;
    font-family: sec;
}

.s-cted-text-bx p {
    font-size: 1.4rem;
    color: #000000;
    font-weight: 400;
    max-width: 80rem;
    line-height: 1.6;
    margin: 0;
}

.s-cted-mini-form-bx {
    margin-top: 3.5rem;
    width: 100%;

}

.s-cted-grid-from {
    grid-template-columns: 1fr 2fr 1fr;
    z-index: 2;
}

.s-cted-inpt-bx {
    padding: 2rem;
    height: 8rem;
    background-color: var(--secondary);
    border: .1rem solid var(--secondary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.s-cted-two-mini-inpt-bx .s-cted-inpt-bx:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 78%;
    left: 0;
    top: 7px;
    background: #999;
}

.s-cted-inpt-bx i .fa-search {
    font-size: 1.8rem !important;
    color: #808080;
    font-weight: 500;
}

.s-cted-inpt-bx input {
    background-color: transparent;
    border: none;
    padding: 0 0 0 10px;
    color: #808080;
    font-weight: 500;
    font-size: 1.8rem;
    width: 100%;
    letter-spacing: .5px;

}

.s-cted-grid-from.grid .grid-two-col {
    background: var(--secondary);
}


.s-cted-inpt-bx input::placeholder {
    color: #808080;
    opacity: 0.66;
    font-weight: 400;
    font-size: 1.4rem;
}



.s-cted-sel-inpt-bx {
    position: relative;
    width: 97%;
    padding: 0 .76rem 0 1.2rem;
    height: 6rem;
    background-color: var(--secondary);
    border: .1rem solid var(--secondary);
    margin-top: 0;
    color: #808080;
    font-weight: 400;
    font-size: 1.45rem;
}





.s-cted-sel-inpt-bx option {
    color: #000;
    font-weight: 400;
    font-size: 1.45rem;
}

.s-cted-search-btn {
    position: relative;
    width: 100%;
    padding: 0 .76rem 0 1.2rem;
    height: 8rem;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    color: #fff;
    font-weight: 400;
    font-size: 1.45rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    cursor: pointer;

}



.s-cted-inpt-bx-radius {
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem;
    position: relative;

}

.s-cted-inpt-bx-radius:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 78%;
    right: 0;
    top: 7px;
    background: #999;
}


/* _Our top company css **************** */

.top-company-comp {
    /* margin-top: 0rem; */
    padding: 1rem;
    margin-top: 2%;
    background: white;
    border-radius: 20px;
    /* padding-top: 3% !important; */
    max-width: 100%;
    overflow: hidden;
}

.top-comp-flx {
    display: flex;
    gap: 10%;
}

.top-comp-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 105rem;

}

.top-comp-flexx {
    display: flex;
    /* justify-content: space-between; */
    justify-content: space-around;
    align-items: center;
    width: 95%;
    /* gap: 11%; */
    overflow: auto;
    margin-inline: 2%;
}

.top-comp-flex .t-comp-bx:first-child {
    /* width: 5rem; */
}

.t-comp-bx {
    /* margin-bottom: 2rem; */
    position: relative;
    /* width: 7rem; */
    z-index: 5;

}

.t-comp-bx img {
    width: 90px;
    /* width: 100%;
    height: auto; */

}

/* ___ Our Job and about comp CSS **** */
.about-job-grid-left-box {
    display: flex;
}

.have_job-grid {
    max-width: 120rem;
    margin: 0 auto;
    margin-top: 3%;
}

.have_job-grid .job-grid .job-bx {
    max-width: 12rem;
}

.about-job-comp {
    /* margin-top: 1rem; */
    padding: 2rem 1.78rem;
}

.about-main-bx {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
}

.about-main-bx span {
    font-size: 1.78rem;
    color: var(--primary);
    font-weight: 500;
    line-height: 18px;
    font-family: sec;
}

.about-main-bx h3 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;

}

.about-main-bx h4 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
}

.about-main-bx p {
    /* line-height: 22px;
    font-size: 14px;
    color: #808080;
    font-weight: normal;
    */
    font-size: 1.4rem;
    color: #000000;
    font-weight: 400;
    max-width: 80rem;
    line-height: 1.8;
    margin-top: 0.78rem;
    text-align: justify;
}

.we-have-job-sec {
    /* margin-top: 1rem; */
    padding-right: 40px;
}

.we-have-job-sec h3 {
    font-size: 3.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
}

.job-bx {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.job-bx .job-icon-bx {
    position: relative;
    background-color: var(--secondary);
    display: grid;
    place-items: center;
    height: 10rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.we-have-job-sec .grid-gap {
    column-gap: 2.5rem;
}

.job-icon-bx img {
    height: auto;
}

.job-icon-text {
    text-align: center;
}

.job-icon-text h6 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.trendg-job-list-bx-main {
    margin-top: 1rem;
    background-color: #fff;
    padding: 1rem 1.5rem;
    border: .1rem solid var(--secondary);
    border-radius: .5rem;

}

.trendng-job-list-bx {
    position: relative;
    padding: .65rem .67rem;
    /* border-bottom: .1rem solid #eee; */
}

.trendng-job-list-bx:before {
    content: "";
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/finger-img.png')no-repeat center;
    width: 2rem;
    height: 2rem;
    padding: 1.5rem 1.6rem;
    background-color: var(--secondary);
    border-radius: 50%;
}

.trendng-job-list-bx p {
    position: relative;
    font-size: 1.4rem;
    color: #000000;
    font-weight: 400;
    margin-left: 3.5rem;
    line-height: 22px;

}

.trendng-job-list-bx-5 {
    padding: 1rem .67rem 0 .67rem !important;
    border-bottom: none !important;
}

.trendng-job-list-bx-5:before {
    top: 60%;

}

.new-text {
    padding: 0 10px;
    background-color: red;
    place-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    font-style: normal;
    display: inline-block;
    margin: 0 0 0 5px;
}

.new-text2 {
    right: 0%;
}

/* _____________ Our Hiring comp css */

.hiring-comp {
    /* margin-top: 4rem; */
    padding: 2rem 1.78rem;
}

.hiring-main-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .1rem solid var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1.78rem 0 1.78rem;
    overflow: hidden;
}

.left-higher-bx {
    display: flex;
    align-items: center;

}

.higher-text-main-bx {
    display: flex;
    align-items: center;
}

.higher-title-bx {
    margin-left: 7rem;
}

.higher-title-bx span {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 500;

}

.higher-title-bx h4 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;

}

.higher-title-bx p {
    line-height: 1;
}

.hogher-para {
    /* max-width: 15rem; */
    /* margin-left: 4rem; */
}

.hogher-para p {
    font-size: 1.65rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--primary);
    font-family: sec;
}

.higher-aply-btn {
    /* margin-left: 5rem; */
    padding: 1.1rem 1.78rem;
    width: 20rem;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    display: grid;
    place-items: center;
    border-radius: 4rem;
}

.higher-aply-btn a {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;

}

.right-hgiher-bx {
    position: relative;
}

.right-hgiher-bx img {
    height: auto;
}

.vec-3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2rem;
}

.hir-rigt-img {
    padding-right: 4rem;
}

/* ____ ey-stp-jb-apply-comp *********** */

.ey-stp-aply-jb-comp {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 1.78rem;
    background: linear-gradient(360deg, #AF87D994 34%, #F1E3FEBA 50.9%, #f8f8f8 100%);


}

.ey-stp-aply-jb-line {
    position: relative;
}

.common-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.common-heading span {
    font-size: 1.87rem;
    color: var(--primary);
    font-weight: 500;
    /* margin-right: 8rem; */
}

.common-heading h4 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: .5px;
    color: #000000;
    font-family: sec;
}

.ey-stp-aply-jb-grid {
    margin-top: 4rem;
    place-items: center;

}

.ey-aply-jb-bx {
    position: relative;
    /* width: 25rem; */
    height: 100%;
    padding: 2.76rem 1.76rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: #fff;
}



.ey-stp-jb-img img {
    width: 90%;
    height: auto;
}

.ey-stp-jb-det {
    padding-top: 2rem;
}

.ey-stp-jb-det a h5 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 500;
}

.ey-stp-jb-det p {
    font-size: 1.5rem;
    color: #000000;
    font-weight: normal;
}

.ey-stp-aply-jb-line {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: .2rem;
    background: url('../images/Rectangle 1972.png')no-repeat center;
}


.ey-stp-aply-jb-line:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 26.5rem;
    transform: translateY(-50%);
    width: 30%;
    height: 5rem;
    background: url('../images/Group 55530.png')no-repeat center;
}

.ey-stp-aply-jb-line:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 67rem;
    transform: translateY(-50%);
    width: 30%;
    height: 5rem;
    background: url('../images/Group 55530.png')no-repeat center;
}

.c-1 {
    position: absolute;
    bottom: 15rem;
    left: -3rem;
}

.c-3 {
    position: absolute;
    bottom: 24rem;
    left: 5rem;
}

.c-2 {
    position: absolute;
    bottom: 26.5rem;
    left: 7rem;
}

.c-4 {
    position: absolute;
    bottom: 2.7rem;
    left: 16rem;
}

.c-6 {
    position: absolute;
    bottom: 11.7rem;
    left: 13rem;
}

.c-5 {
    position: absolute;
    bottom: 11.7rem;
    right: 0;
}

.c-7 {
    position: absolute;
    bottom: 1.65rem;
    right: 5rem;
}

.c-8 {
    position: absolute;
    bottom: 15.65rem;
    right: 7rem;
}


/* Our Job fairs comp ************* */

.neares-tjob-fairs-comp {
    margin-top: 2rem;
    padding: 2rem 1.78rem;
}

.job-fairs-slider-main-bx {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    padding: 0 10px;
}



.job-carousel {
    position: relative;
    display: inline-flex;
    /* overflow-x: hidden; */
}

.job-fair-bx {
    position: relative;
    width: 100%;
    background-color: #f3f3f3;
    padding: 1.2rem 1.2rem 0 1.2rem;
    z-index: 2;
    border-radius: 10px;
}

.job-carousel .item {
    padding: 0 8px;
}

.job-fair-bx::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 3rem;
    background: url('../images/card-bg.png')no-repeat center center/cover;
    z-index: -1;
    transform: translateY(100%);
}

.job-carousel.owl-theme .owl-prev i,
.job-carousel.owl-theme .owl-next i {
    display: none;
}

.job-carousel.owl-theme .owl-prev {
    background: url(../images/arrow-btn.png) no-repeat !important;
    width: 20px;
    height: 20px;
    padding: 0 !important;
    position: absolute;
    top: 180px;
    background-size: 10px !important;
    left: -13px;
}

.job-carousel.owl-theme .owl-next {
    background: url(../images/arrow-btn.png) no-repeat !important;
    width: 20px;
    height: 20px;
    padding: 0 !important;
    position: absolute;
    top: 180px;
    background-size: 10px !important;
    right: -13px;
    transform: rotate(180deg);
}

.neares-tjob-fairs-comp .common-container {
    max-width: 125rem;
}



.jb-fair-img {
    position: relative;
    width: 100%;

}

.jb-fair-img img {
    /* width: 100%;
        height: auto; */
}

.jb-fair-det-bx {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    padding: 1rem 0;
}

.jb-fair-det-bx span {
    font-size: 1.2rem;
    color: #000000;
    font-weight: normal;
    padding-bottom: .4rem;
}

.jb-fair-det-bx h5 a {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.jb-fair-det-bx p {
    font-size: 1.4rem;
    font-weight: normal;
    color: #808080;
    min-height: 22px;
}

.learn-more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10rem;
    margin: .45rem auto;
    padding: .56rem .78rem;
    background-color: var(--primary);
    border-radius: 4rem;
    border: .1rem solid var(--primary);


}

.learn-more-btn a {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}




/* Our ranking comp css ************ */

.our-ranking-comp {
    position: relative;
    margin-top: 4rem;

}

.our-ranking-comp:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('../images/rank-bg.png')no-repeat center center/cover; */
    background: linear-gradient(to right, rgba(79, 55, 139, 0.8), rgba(79, 55, 139, 0.8)), url('../images/countbg1.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* z-index: -1; */
}

.ranking-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-block: 12rem;
}

.ranking-box {
    position: relative;
    width: 16rem;
}

.rank-img {
    position: relative;
    width: 100%;
    height: 15rem;
    background-color: #fff;
    display: grid;
    place-items: center;
    padding: 2rem 2rem;
    border-radius: 50%;
}


.rank-img img {
    /* height: auto; */
    height: 70px;
}

.rank-info {
    margin-top: 1rem;
    text-align: center;

}

.rank-info h5 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 700;
}

.rank-info span {
    margin-top: .5rem;
    font-size: 1.54rem;
    color: #fff;
}

.client-review-comp {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 1.78rem;
}

.test-grid {
    margin-top: 2.5rem;
    column-gap: 2rem;
    row-gap: 2rem;
}

.client-rev-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .1rem solid #d2d2d2;
}

.clent-rev-info {
    padding: .87rem;
    padding-bottom: 1rem;
}

.clent-rev-info p {
    font-size: 1.4rem;
    color: #808080;
    line-height: 1.7;
    text-align: justify;
}

.custo-bx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 1;
}

.custo-bx:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: url('../images/cus-bg.png')no-repeat center center/cover;
    z-index: -1;
}

.custo-bx3:before {
    background: url('../images/cus-bg-2.png')no-repeat center center/cover;

}

.cust-img img{
    width: 100%;
}
.cust-img {
    background: #d8cde7;
    border-radius: 50%;
    padding: 10px;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.cust-img .cust-img_inner {
    width: 100%;
    overflow: hidden;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.cust-img .cust-img_inner img{
    width: 100%;
}
.cus-info {
    padding: 2rem .56rem;
}

.cus-info h5 {
    font-size: 1.89rem;
    color: var(--primary);
    font-weight: 600;
    min-height: 5rem;
}

.cus-info p {
    font-size: 1.45rem;
    color: #242424;
    font-weight: normal;
}

.cus-info2 h5 {
    color: #ffffff;
}

.cus-info2 p {
    color: #f5f5f5;
}


/* Our footer comp *************** */

.footer-comp-2 {
    margin-top: 2rem;
    /* padding: 4rem 1.78rem; */
    background-color: #fdfefd;
}


.mini-footer {
    margin-top: 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    column-gap: 5rem;
    row-gap: 4rem;
}

.foot-bx {
    position: relative;
    width: 100%;
}

.f-logo {
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.f-logo img {
    height: 100px;
    margin-bottom: 1.5rem;
}

.foot-bx p {
    font-size: 1.4rem;
    color: #808080;
    font-weight: normal;
    line-height: 1.7;
    text-align: justify;
}

.mail-phone-foot-main-bx {
    margin-top: 3.45rem;
}

.mail-phone-foot-main-bx h6 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #020020;
}

.mail-phone-flex-bx-foot {
    margin-top: 1.4rem;
    display: flex;
    align-items: center;
}

.f-mail-bx {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.f-mil-icon {
    font-size: 1.45rem;
    color: var(--primary);
    margin-right: 1.3rem;
}

.f-mail-bx a {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 500;
}

.f-soc-icon-bx {
    margin-top: 1.45rem;
    display: flex;
    align-items: center;
}

.f-soc-icn {
    margin-right: 1.4rem;
}

.f-soc-icn a i{
    font-size: 18px;
}
.f-soc-icn a {
    padding: .4rem .5rem;
    width: 2.8rem;
    background-color: var(--primary);
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;


}

.foot-bx h5 {
    font-size: 1.55rem;
    color: #242424;
    font-weight: 700;
}

.foot-list {
    margin-top: 1.76rem;
}

.foot-list li {
    margin-bottom: 1.45rem;
}

.foot-list li a {
    font-size: 1.3rem;
    color: #242424;
    font-weight: 500;
}

.foot-list2 {
    margin-top: 3.5rem;
}









/* @media queiris */

@media all and (min-width: 1123px) and (max-width: 1234px) {

    /* Our about job comp ********** */

    .about-job-comp-container {
        max-width: 110rem;
    }

}

@media all and (min-width: 1024px) and (max-width: 1123px) {

    /* html */
    html {
        font-size: 56.2%;
    }

}

@media all and (min-width: 768px) and (max-width: 1024px) {

    /* html */
    html {
        font-size: 56.2%;
    }

    /* Our header part */

    /* .A-flex-box{
        display: none;
    }

    .language-selct-box{
        display: none;
    }

    .bell-icon{
        display: block;
    }

    .nav-lgp{
        position: fixed;
        top: 0;
        left: 0;
        width: 30rem;
        height: 100vh;
        background-color: #fef3ff;
        overflow: hidden;
    }

    .nav-link2{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 0;
        padding-block: 8rem;
        width: 100%;
    }

    .nav-link2 li{
        width: 100%;
        padding: 1.4rem 0;
        border-bottom: .1rem solid #eee;
        font-size: 1.5rem;
        margin-left: 0;


    }

    .nav-link2 li a{
        font-size: 1.5rem;
        margin-left: 0;
        padding: 0 1rem;

    }

    .nav-link2 li:hover{
        background-color: #f9f4ff;

    } */



}

@media all and (min-width: 320px) and (max-width: 767px) {

    /* html */
    html {
        font-size: 56.2%;
    }

}

/* Landing page section two for jobs started:kunal:1338:start */


/* ___ Jobs grid box comp *** */

.jobs-grid-box-comp {
    position: relative;
    padding: 1rem 1.78rem;
    margin-top: -9.5rem;
}

.job-box {
    position: relative;
    background-color: #ffffff;
    border: .5rem;
    border: .1rem solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 4.5rem 1.87rem;
}

.job-box::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: .6rem;
    height: 40%;
    background-color: var(--primary);
    border-radius: 1rem;
}

.job-box h4 {
    font-size: 3rem;
    color: #0b0b0b;
    font-weight: 700;
    margin-bottom: 1.45rem;
}

.job-box p {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000000;
}

/* ___ upcoming jobs interview css codes *** */

.upcoming-jobs-interveiw-comp {
    position: relative;
    width: 100%;
    padding: 1rem 1.78rem;
    margin-top: 1rem;
}

.job-intervw-box {
    position: relative;
    width: 100%;
    padding: 1.5rem 1.78rem;
    border: .15rem solid #65BEFF;
    border-radius: .5rem;
    background-color: #ffffff;

}


.job-intvw-head-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.job-intvw-head-box h4 {
    font-size: 1.6rem;
    color: #000000;
    font-weight: 500;
}

.view-all-btn {
    margin-top: -.3rem;
}

.job-intvw-head-box a {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 500;
}

.job-intvw-list-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 1.5rem;
    border-bottom: .14rem solid #eee;
    padding-bottom: 1.5rem;
}

.job-intvw-list-box-2 {
    padding-bottom: 0 !important;
    border-bottom: none !important;

}

.job-intervw-box-2 {
    border-color: var(--primary);
}

.job-intervw-box-3 {
    border-color: #F0273F;
}

.job-li-left-box h5 {
    font-size: 1.5rem;
    color: #242424;
    font-weight: 600;
}

.job-li-left-box p {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
}

.vw-det-btn {
    margin-top: -.78rem;
}

.vw-det-btn a {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}

.job-li-right-box p {
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--primary);

}

.job-li-right-box h6 {
    margin-top: -.7rem;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    text-align: right;
}


.candidate-join-agency-comp {
    position: relative;
    margin-top: 2rem;
    padding: 1rem 1.78rem;
}

.cndte-jn-bx {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border: .1rem solid #ffffff;
    border-radius: .5rem;
    padding: 2rem 1.87rem;
}

.cndte-main-list-box {
    margin-top: 1.5rem;
}

.cndte-jn-det-box {
    padding: 1.5rem 0;
    border-bottom: .1rem solid #eee;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.left-cndte-det-box {
    display: flex;
    align-items: center;


}

.cdnt-img {
    margin-right: 1.5rem;

}

.cdnt-img img {
    width: 100%;
    height: auto;
}

.cndte-info-box .job-li-left-box p {
    line-height: 1.2;
}

.cndte-info-box .job-li-left-box .vw-det-btn {
    margin-top: -.4rem;
}

.right-cdnte-date-join-box h6 {
    font-size: 1.5rem;
    color: #242424;
    font-weight: 500;
    text-align: right;
}


.right-cdnte-date-join-box p {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 2rem;
}

.right-cdnte-date-join-box p span {
    font-weight: 700;
    font-size: 1.4rem;
}

.cndte-agncy-bx {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: .1rem solid #eee;
    padding: 1.5rem 0 1.5rem 0;
}

.cndte-agncy-logo img {
    width: 100%;
    height: auto;
}

.cdnte-agncy-info {
    margin-left: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
}

.cdnte-agncy-info p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #242424;
}

.agncy-location-box {
    display: flex;
    align-items: center;
    margin-top: -1rem;
}

.loc-map-icon {
    margin-top: -.5rem;
    margin-right: .5rem;
}

.loc-map-icon i {
    font-size: 1.4rem;
    color: #9c9a9f;

}

.agncy-location-box p {
    font-size: 1.35rem;
    color: #000000;
    font-weight: 500;
}

.vw-det-btn-2 {
    margin-top: -.5rem;
}

.cndte-agncy-bx-2 {
    border-bottom: none;
    padding: 1rem 0 0 0;
}

/* ___ Side nav comp css codes *** */

.side-nav-comp {
    position: fixed;
    top: 0;
    left: 0;
    width: 5rem;
    height: 100vh;
    z-index: 99999;
    padding-block: 15rem;
    transition: 700ms ease;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.active.side-nav-comp {
    width: 25rem;
}




.navbar,
.nav,
.nav-ul {
    position: relative;
    width: 100%;
}





.nav-li-box {
    margin-bottom: 1rem;
}

.nav-li-box,
.nav-li {

    transition: 500ms ease;
}

.active .nav-li-box {
    background-color: #663896;
    width: 100%;

}

.nav-li {
    position: relative;
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    height: 5rem;
    width: 100%;

}

.n-icon {
    position: relative;
    width: 2rem;
    display: grid;
    place-items: center;
    text-align: center;
}

.n-icon i {
    font-size: 1.65rem;
    color: #ebeaea;
}

.user-sm-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.mark-img {
    position: absolute;
    bottom: .2rem;
    left: .8rem;
}

.cndte-img2 {
    position: absolute;
    top: -1.6rem;
    left: .3rem;
}

.cndte-img {
    position: absolute;
    bottom: 0;
    left: 0%;
    /* transform: translateX(-50%); */
}

.n-list-bx {
    position: relative;
    width: 20rem;
}

.n-list {
    position: absolute;
    top: -.98rem;
    left: 0;
    margin-left: 1.78rem;
    font-size: 1.4rem;
    color: #ffffff;
    transition: 500ms ease;
    opacity: 0;
}

.active .n-list {
    animation: animate .76s ease forwards;
    opacity: 0;
    animation-delay: .3s;



}

@keyframes animate {

    100% {
        opacity: 1;
    }

}

.n-list2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    width: 20rem;
    height: 5rem;
    padding: 0 1rem;
    background-color: #663896;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
    transition: 500ms ease;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav-li:hover .n-list2 {
    opacity: 1;
    visibility: visible;
}

.active .nav-li:hover .n-list2 {
    opacity: 0;
    visibility: hidden;
}

.darkbg.nav-li {
    background-color: #663896;
}

.nav-li:hover {
    background-color: #663896;
}



.footer-comp {
    background-color: #ffffff;
    padding: 2rem 1.78rem 1.5rem 1.78rem;
    margin-top: 2rem;
}

.footer-main-box {
    display: flex;
    align-items: center;
}

.f-copyright-box p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #242424;
    margin-right: 5rem;
}

.terms-privacy-box {
    display: flex;
    align-items: center;
    margin-top: -1rem;
}

.f-link a {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 500;
    text-decoration: underline;
    margin-right: 2.5rem;
}

/* ___ Register form yourslef comp css  *** */

.register-job-btns {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.reg-btn {
    padding: .87rem 0.78rem;
    position: relative;
    background-color: transparent;
    border: none;
    border: .1rem solid var(--primary);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 500;
}

.reg-btn.active {
    background-color: var(--primary);
    color: #fff;
}

.register-yourself-comp {
    position: relative;
    margin-top: 5rem;
    padding: 2rem 1.78rem;

}

.form-grid {
    grid-template-columns: 1fr 2fr;
    column-gap: 0;
}

.left-form-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.left-form-img-box img {
    width: 75%;
    height: auto;
}

.form-main-box {
    background: #fff;
    padding: 3rem 3rem;
}

.form-main-box h4 {
    font-size: 2.4rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 2rem;
}

.regter-applyjob-post-job-btn-box,
.right-regter-btns-flex {
    display: flex;
    align-items: center;
}

.left-regter-text p {
    font-size: 1.6rem;
    color: #242424;
    font-weight: 500;
}

.right-regter-btns-flex {
    margin-left: 5rem;
}

.rg-job-btn {
    display: flex;
    align-items: center;
    margin-right: 5rem;
    cursor: pointer;
}

.clikc-box {
    position: relative;
    width: 1.3rem;
    height: 1.3rem;
    background-color: transparent;
    border: .1rem solid var(--primary);
    border-radius: 50%;
    margin-top: -.87rem;
    margin-right: 1rem;
}

.clikc-box:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background-color: transparent;
    border-radius: 50%;

}

.rg-job-btn p {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 500;
}

.active .clikc-box:before {
    background-color: var(--primary);
}

.form {
    margin-top: 2rem;
}

.r-yf-inpt-bx {
    display: flex;
    flex-direction: column;
}

.r-yf-inpt-bx label {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: .78rem;
}

.r-yf-inpt-bx input {
    background-color: var(--secondary);
    border: none;
    border: .1rem solid var(--secondary);
    padding: 1rem 1rem;
    font-size: 1.3rem;
    color: #242424;
}

.r-yf-inpt-bx input::placeholder {
    color: #808080;
}


.mob-num-email {
    margin: 2rem 0;
}

.gender-main-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2.5rem 0 0 0;
}

.gnder-type-bx {
    display: flex;
    align-items: center;
    margin-inline-end: 9rem;
}

.select-state-bx {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.select-state-bx label {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 1.45rem;
}

.select-state-bx select {
    width: 100%;
    padding: 1.04rem 0;
    background-color: var(--secondary);
    font-size: 1.3rem;
    color: #808080;
    font-weight: 500;
}

.submit-btn-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
}

.submit-btn input {
    width: 15rem;
    padding: 1rem 1rem;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    border-radius: 4rem;
    color: #fff;
    font-weight: 500;
    font-size: 1.4rem;
    margin-right: 2rem;
    transition: 500ms ease;
}

.submit-btn input:hover {
    background-color: transparent;
    color: var(--primary);
}

.login-btn {
    width: 20rem;
    padding: 1rem 1rem;
    background-color: transparent;
    border: .1rem solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    font-size: 1.4rem;
    transition: 500ms ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 4rem;
}

.login-btn:hover {
    background-color: var(--primary);
    color: #fff;
}


/* register navbar *** */

.nav-link2 {
    display: flex;
    align-items: center;
    /* margin-left: 28rem; */
}






.nav-link2 a:hover {
    color: var(--primary);
}

/* ___ Otp comp css *** */

.regter-otp-comp {
    margin-top: 5rem;
    padding: 2rem 1.78rem;
}

.reg-opt-grid {
    grid-template-columns: 1fr 2fr;
}

.left-otp-img-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-otp-img-box img {
    width: 100%;
    height: auto;
}

.right-otp-bx {
    background-color: #fff;
    padding: 4rem 5rem;

}

.right-otp-bx h5 {
    font-size: 2.2rem;
    color: #242424;
    font-weight: 650;
    margin-bottom: .5rem;
}

.right-otp-bx p {
    font-size: 1.5rem;
    color: #242424;
    font-weight: 500;
}

.mob-num-box-otp {
    margin-top: 3rem;
}

.mob-num-box-otp p {
    font-size: 1.25rem;
    color: #242424;
    font-weight: 500;
}

.mob-num-text {
    display: flex;
    align-items: center;
    margin-top: -.5rem;
}

.mob-num-text p {
    font-size: 1.6rem;
    color: #e2e1e1;
    font-weight: normal;
    margin-right: 1rem;
}

.edit-icon {
    margin-top: -.89rem;

}

.edit-icon i {
    font-size: 1.4rem;
    color: gray;

}

.otp-flex-bx {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.otp-ent-box {
    position: relative;
    width: 6rem;
    height: 6rem;
    background-color: var(--secondary);
    border: .1rem solid var(--secondary);
    display: grid;
    place-items: center;
    margin-right: 2rem;
    padding: 1.5rem;
}

.otp-ent-box input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: .1rem dashed var(--primary);
    font-size: 1.35rem;
    color: #808080;
    font-weight: 500;
    text-align: center;
}

.not-recve-otp-main-bx p {
    font-size: 1.45rem;
    color: var(--primary);
    font-weight: 500;
}

.not-recve-otp-main-bx p a {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;

}

.otp-tick-main-bx {
    margin-top: 3rem;
}

.otp-tic-text-bx {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.tic-otp-bx {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #fff;
    border: .1rem solid #eee;
    margin-top: .7rem;
    margin-right: 1rem;
    cursor: pointer;
}

.tic-otp-bx:before {
    content: "\f00c";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    background-color: var(--primary);
    display: none;
}

.tic-otp-bx.active:before {
    display: flex;
}

.otp-tic-text-bx p {
    max-width: 50rem;
    font-size: 1.6rem;
    color: #242424;
    font-weight: 500;
}

.otp-tic-text-bx2 p {
    max-width: 100%;
}

.otp-tic-text-bx2 p a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
}

.otp-tic-text-bx2 p span {
    color: var(--primary);
}

.login-btn-otp {
    width: 80%;
    text-align: center;
    background-color: #808080;
    padding: 1.2rem 1rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 4rem;
    margin-top: 3rem;
    opacity: 0.88;
    cursor: pointer;
}

/* ___ succefuly register comp css *** */

.succesfuly-reg-comp {
    margin-top: 5rem;
    padding: 2rem 1.78rem;

}

.succfly-reg-grid-bx {
    grid-template-columns: 1fr 2fr;
    row-gap: 3rem;
}

.left-sucffly-reg-img-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.right-succfuly-reg-det-bx {
    background-color: #ffffff;
    padding: 3rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

}

.right-succfuly-reg-det-bx h6 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #242424;
    margin-bottom: 3rem;
    max-width: 42rem;
    line-height: 1.4;
}

.vector-bx {
    position: relative;
    width: 12rem;
    height: 12rem;
    display: grid;
    place-items: center;
    margin-bottom: 3rem;

}

.vector-bx:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Vector\ \(12\).png')no-repeat center center/cover;
}

.vector-bx2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Vector\ \(16\).png')no-repeat center center/cover;
}

.mail-sub-img-bx {
    position: relative;

}

.mail-sub-img-bx img {
    height: auto;
}

.sub-img {
    position: absolute;
    bottom: -.55rem;
    right: -.2rem;
    width: 35%;
}

.mail-img {
    width: 80%;
}

.verifly-bx p:first-child {
    font-size: 1.55rem;
    font-weight: 700;
    color: #000000;

}

.verifly-bx p:last-of-type {
    font-size: 1.4rem;
    max-width: 30rem;
    line-height: 1.6;
    color: #242424;
    font-weight: 500;
}


/* ___ Apply job form comp css codes *** */

.apply-job-comp {
    position: relative;
    margin-top: 5rem;
    padding: 2rem 1.78rem;
}

.applyjob-grid {
    grid-template-columns: 1fr 2fr;
    column-gap: 1rem;
}

.left-applyjob-img {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
}

.left-applyjob-img img {
    width: 90%;
    height: auto;
}

.right-applyjob-form-bx {
    background-color: #fff;
    padding: 3rem 4rem;
    width: 100%;
}

.right-applyjob-form-bx h5 {
    font-size: 2rem;
    font-weight: 700;
    color: #242424;

}

.jobapply-fresher-bx {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yes-no-applyjob-bx {
    display: flex;
    align-items: center;
    margin-inline-end: 15rem;
}

.r-yf-inpt-bx-2 select {
    background-color: var(--secondary);
    padding: 1.04rem 0;
    font-size: 1.3rem;
    font-weight: 500;
    color: #808080;
    margin-top: 0;
}

.date-inpt {
    position: relative;
    width: 100%;

}

.date-inpt input {
    width: 100%;
}

.date-inpt::before {
    content: "\f073";
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #808080;
    font-size: 1.4rem;
    opacity: 0.45;

}

.r-yf-textarea-bx textarea {
    padding: 1rem 1rem;
    background-color: var(--secondary);
    font-size: 1.3rem;
    color: #808080;
    font-weight: 500;
    resize: none;
    border: transparent;
}

.r-yf-textarea-bx textarea::placeholder {
    font-weight: normal;
}

.work-exp {
    margin-top: 1.45rem;
    margin-bottom: 3rem;
}

.work-exp a {
    font-size: 1.54rem;
    color: var(--primary);
    font-weight: 500;
}

.apply-job-submt-skipnow-btn {
    display: flex;
    justify-content: center;
    align-items: center;

}

.job-form-subt-btn input {
    padding: 1rem 1rem;
    width: 15rem;
    border-radius: 4rem;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    display: grid;
    place-items: center;
    text-align: center;
    transition: 400ms ease;
    margin-right: 4rem;
}

.job-form-subt-btn input:hover {
    background-color: transparent;
    color: var(--primary);
}

.skipnow-btn {
    width: 12rem;
    padding: 1rem 1rem;
    font-size: 1.3rem;
    color: #808080;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.main-applyjob-form-bx {
    position: relative;
    background-color: #fff;
    margin-top: -2rem;

}



.form-bx {
    width: 100%;
    padding: 3rem 3rem;
    background-color: #fff;
}

.form-fresher {}

.form-bx {
    display: none;
}

.form-bx.active {
    display: block;
}


.qua-add {
    margin-top: 2rem;
}

.edu-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.click-edu-btn {
    position: relative;
    width: 1.4rem;
    height: 1.4rem;
    background-color: transparent;
    border: .1rem solid var(--primary);
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: -.79rem;
}

.click-edu-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: 500ms ease;
}

.active.edu-btn .click-edu-btn:before {
    opacity: 1;
}

.techcal-academic-qualification-main-bx {
    position: relative;
    margin-top: 3rem;
    height: 8.5rem;
}

.tech-qual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


}

.sel-qual {
    transition: 500ms ease;
    opacity: 0;
    visibility: hidden;
}

.sel-qual.hidden {
    display: none;
}

.active.sel-qual {
    opacity: 1;
    visibility: visible;
}

.no-educt-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.no-educt-text p {
    font-size: 1.4rem;
    color: #242424;
    font-weight: 500;
}

/* ___ Upload Cv comp css *** */

.upload-cv-comp {
    margin-top: 5rem;
    padding: 2rem 1.78rem;
}

.uplod-cv-grid {
    grid-template-columns: 1fr 2fr;
}

.left-cv-img-bx {
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

.left-cv-img-bx img {
    width: 90%;
    height: auto;
}

.right-upload-cv-det-bx {
    position: relative;
    padding: 3rem 3rem;
    background-color: #fff;
}

.right-upload-cv-det-bx h5 {
    font-size: 1.9rem;
    color: #242424;
    font-weight: 700;
    margin-bottom: 3rem;
}


.upload-cv-bx {
    position: relative;
    width: 100%;
}

.upload-cv-bx p {
    font-size: 1.35rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cv-bx {
    width: 100%;
    height: 15rem;
    background-color: var(--secondary);
    padding: 1rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    cursor: pointer;
}

.cv-icon-bx {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.vec-17 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.cv-bx p {
    margin-top: .5rem;
    font-size: 1.35rem;
    color: #808080;
    font-weight: 500;
    opacity: 0.77;
}

.sel-lang-main-bx {
    margin-top: 2rem;
}

.sel-lang-bx {
    margin-bottom: 2.76rem;
}

.sel-lang-text-opt-main-bx {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 3rem;
}

.sel-lang-text p {
    font-size: 1.35rem;
    color: #242424;
    font-weight: 500;
}

.lang-opt-bx {
    display: flex;
    align-items: center;
}

.lang-tic-bx {
    position: relative;
    width: 1.3rem;
    height: 1.3rem;
    border: .1rem solid #eee;
    background-color: #fff;
    margin-top: -.7rem;
    margin-right: .7rem;
}

.lang-tic-bx:before {
    content: "\f00c";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--primary);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    transition: 500ms ease;
    opacity: 0;

}

.lang-opt-bx.active .lang-tic-bx:before {
    opacity: 1;
}

.add-lang-bx {
    margin-top: 2rem;
    font-size: 1.45rem;
    color: var(--primary);
    font-weight: 550;
    background-color: transparent;
    border: none;
}

/* ____ Login comp css codes *** */

.login-jobseeker-comp {
    position: relative;
    margin-top: 5rem;
    padding: 2rem 1.78rem;
}

.login-grid {
    grid-template-columns: 1fr 2fr;
}

.right-login-main-bx {
    position: relative;
    padding: 5em 5rem;
    background-color: #fff;
}

.right-login-main-bx h5 {
    font-size: 2rem;
    color: #242424;
    font-weight: 700;

}


.right-login-main-bx p {
    font-size: 1.35rem;
    color: #000000;
    font-weight: 500;
    line-height: 1.4;
}

.login-form {
    margin-top: 2rem;
    width: 100%;
    position: relative;
}

.lgin-input-bx {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;

}

.lgin-input-bx label {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    margin-bottom: .65rem;
}

.lgin-inpt {
    position: relative;
    width: 100%;
    background-color: var(--secondary);
    padding: 1.35rem 1rem;

}

.lgin-inpt:before {
    content: "\f0e0";
    position: absolute;
    top: 53%;
    left: 2rem;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.45rem;
    color: #696767;
}

.lgin-inpt input {
    width: 100%;
    background-color: transparent;
    border: none;
    font-size: 1.45rem;
    color: #000000;
    font-weight: 500;
    margin-left: 3.65rem;

}

.lgin-inpt input::placeholder {
    font-weight: normal;
}

.pass-lgin-inpt:before {
    content: "\f023";
}

.pass-lgin-inpt:after {
    content: "\f06e";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.45rem;
    color: #696767;
    cursor: pointer;

}

.lgin-inpt input:focus {
    background-color: transparent;
    box-shadow: none;
}

.forgt-passwrd-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: .76rem;
}

.forgt-passwrd-btn a {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

.lgin-btun {
    margin-top: 2rem;
    width: 100%;
}

.lgin-btun input {
    width: 100%;
    padding: 1.43rem 1rem;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    background-color: var(--primary);
    border: none;
    border: .1rem solid var(--primary);
    border-radius: 5rem;
    transition: 550ms ease;
}

.lgin-btun input:hover {
    background-color: transparent;
    color: var(--primary);
}

.otp-login-nt-have-account-bx {
    margin-top: 1.4rem;
    text-align: center;
}

.otp-login-bx a {
    font-size: 1.36rem;
    color: var(--primary);
    font-weight: 500;

}

.or-choice-text {
    margin: 1rem 0;
    position: relative;
    font-size: 1.35rem;
    color: #808080;
    font-weight: 500;
}


.or-choice-text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 47%;
    height: .1rem;
    background-color: #808080;
    opacity: 0.3;
    border-radius: 4rem;
}

.or-choice-text:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 47%;
    height: .1rem;
    background-color: #808080;
    opacity: 0.3;
    border-radius: 4rem;
}

.not-hve-accunt-bx {
    width: 22rem;
    padding: 1.2rem 1rem;
    background-color: transparent;
    border: .1rem solid var(--primary);
    margin: 2.5rem auto;
    border-radius: 4rem;
}

.not-hve-accunt-bx a {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 500;
}

.left-login-bg-img-bx {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.left-login-bg-img-bx:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/login-bg.png')no-repeat center center/cover;
    z-index: -1;
}

.login-some-det-bx {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    padding: 3.87rem 2.45rem 1.76rem 2.45rem;
}

.login-some-det-bx h5 {
    font-size: 1.9rem;
    color: #242424;
    font-weight: 700;
}

.login-det-list-bx {
    margin-top: 2rem;
}

.log-det-bx {
    position: relative;
}


.log-det-bx:before {
    content: "\f00c";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.34rem;
    color: #000000;

}

.log-det-bx p {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 500;
    line-height: 1.4;
    margin-left: 2.5rem;

}

.login-btn-main-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.login-btn-2 {
    text-align: center;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    width: 80%;
    padding: .87rem .87rem;
    border-radius: 4rem;
    cursor: pointer;
}

.lgin-emp-img {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 65%;
    height: auto;
}

.login-btn-2 a {
    font-size: 1.35rem;
    color: #fff;
    font-weight: 500;
}

.lgin-emp-hand {
    position: absolute;
    top: 36%;
    left: 23%;
    z-index: 4;
    width: 23%;
    height: auto;

}

.v-key {
    position: absolute;
    top: 16rem;
    right: 6rem;
}

.v-lock {
    position: absolute;
    top: 5rem;
    right: 5rem;
}

.v-c-1 {
    position: absolute;
    top: 6rem;
    left: 15rem;
}

.v-c-2 {
    position: absolute;
    top: 5.2rem;
    left: 20rem;
}

.v-c-3 {
    position: absolute;
    top: 4rem;
    left: 18rem;
}

.v-book {
    position: absolute;
    top: 6rem;
    left: 2.3rem;
    width: 8rem;
}

.right-lgin-otp-bx {
    padding: 5em 5rem 3rem 5rem;

}

.otp-btn {
    margin-top: 18rem;
}

.otp-btn input {
    background-color: #bcbcbc;
    border-color: #bcbcbc;


}

.lgin-otp-mob-num-bx {
    display: flex;
    align-items: center;
}

.lgin-otp-mob-num-bx input {
    margin-left: 1.6rem;
    margin-top: -.1rem;
}

.lgin-otp-mob-num-bx:before {
    display: none;
}

.india-num-text {
    margin-left: 1rem;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

/* ___ Login OTP 2 css codes *** */

.right-login-otp-2 {
    padding: 4rem 7rem;
}

.otp-btn-2 {
    margin-top: 7rem;
}

.otp-img-2 {
    position: absolute;
    bottom: 10rem;
    left: 50%;
    transform: translateX(-50%);
}

.otp-img-2 img {
    height: auto;
}

/* ____ forgot password css codes *** */

.usernme-inpt:before {
    display: none;
}

.usernme-inpt input {
    margin-left: 1rem;
}


.forgt-passwrd-btn-2 {
    margin-top: 5rem;
}

.submit-btn {
    margin-top: 18rem;
}

.forgt-passwrd-btn input {
    background-color: #808080;
    opacity: 0.7;
    border-color: #808080;
}

.login-btn-switch {
    margin-top: 1rem;
    text-align: center;
    margin-bottom: 9rem;

}

.login-btn-switch a {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
}

/* ___ forgot password 2 css codes *** */

.forg-passwrd-main-bx-2 {
    padding: 13rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


/* ___ save password css codes **** */

.save-passwrd-btn {
    margin-top: 8.67rem;
    margin-bottom: 14rem;
}

.nw-passwrd-inpt-bx input {
    margin-left: 1rem;
}

.nw-passwrd-inpt-bx:before {
    display: none;
}

/* ____ candidate  css code s*** */

.home-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.appl-filt-fom {
    display: grid;
    grid-template-columns: 3fr 1fr;
    column-gap: 2rem;
}



.right-home-switch-btn span {
    font-size: 1.4rem;
    color: #808080;
    font-weight: normal;
}

.right-home-switch-btn span a {
    color: var(--primary);
    font-weight: 500;
}



.apply-filter-comp {
    margin-top: -8rem;

}

.apply-filter-form-bx {
    background-color: #fff;
    position: relative;
    width: 100%;
    padding: 3rem 4rem;
    box-shadow: 0 1px 5px #eee;
    border-radius: .5rem;
}

.appl-sel-impt-bx-grid {
    column-gap: 2rem;
}

.apply-filter-form-bx h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

.reg-open-docu-btn-flex-candidate-part {
    padding-top: 2rem;
    padding-bottom: 1rem;
}


.cand-apply-filt-btn .clikc-box:before {
    opacity: 0;
}

.cand-apply-filt-btn.active .clikc-box:before {
    opacity: 1;
}

.gender-btns-flex-bx {
    display: flex;
    flex-direction: column;
    align-items: flex-start;



}

.gender-sel-btns {
    display: flex;
    align-items: center;

}

.gen-sel-btn {
    margin: 0 2rem 0 0;
}

.labelt-title-gend {
    margin-top: 0;
    margin-bottom: 1.4rem;
}

.labelt-title-gend label {
    font-size: 1.3rem;
    color: #010101;
    font-weight: 500;
}

.gen-sel-btn .clikc-box:before {
    opacity: 0;
}

.gen-sel-btn.active .clikc-box:before {
    opacity: 1;
}

.reset-search-btns-cand {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cand-btn {
    padding: 1.2rem 1.78rem;
    width: 17rem;
    background-color: transparent;
    border: none;
    border: .1rem solid var(--primary);
    border-radius: 5rem;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 500;
    margin-right: 1.5rem;
}

.Search-btn {
    background-color: var(--primary);
    color: #fff;

}


.app-filt-fom-bx {
    display: none;
}



.app-filt-fom-bx.active {
    display: block;
}


/* ___ table bx comp *** */

.apfl-table-comp {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 1.78rem;


}

.apfl-table-main-bx {
    background-color: #fff;
    box-shadow: 0 1px 5px #eee;
    padding: 3rem 3rem;

}

.apfil-table-flex-bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabl-left-bx {
    display: flex;
    align-items: center;
}

.tabl-search-bx {
    position: relative;
    width: 25rem;
    background-color: #f9f5fd;
    padding: 1.1rem .5rem;
    border: .1rem solid var(--secondary);

}

.tabl-search-bx:before {
    content: "\f002";
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 1.55rem;
    color: #242424;
    font-weight: 900;
    opacity: 0.88;
    font-family: "Font Awesome 6 Free";
}

.tabl-search-bx input {
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    border: none;
    font-size: 1.4rem;
    color: #0b0b0b;
    margin-left: 3rem;
}


.record-text-bx {
    margin-left: 1.87rem;
    margin-top: .45rem;
}

.record-text-bx p {
    font-size: 1.4rem;
    color: #242424;
    font-weight: 600;
}

.right-table-bx,
.page-switch-next-prev-bx {
    display: flex;
    align-items: center;
}

.sel-page-bx {
    display: flex;
    align-items: center;
}

.sel-page-bx select {
    width: 7rem;
    padding: 1rem .54rem;
    background-color: #f9f5fd;
    border: .1rem solid var(--secondary);
    font-size: 1.3rem;
    font-weight: normal;
}

.sel-page-bx span {
    margin-left: 1rem;
    margin-top: -.3rem;
    margin-right: 2rem;
    font-size: 1.3rem;
    color: #242424;
    font-weight: 500;
}

.page-switch-next-prev-bx {
    margin-left: 4rem;
}

.pg-prev-btn {
    margin-right: 1.5rem;
    color: #242424;
    font-size: 1.65rem;
    opacity: 0.77;
    cursor: pointer;

}

.pg-num-bx {
    margin-right: 2rem;
    margin-left: 1rem;
    padding: .87rem .65rem;
    background-color: #f9f5fd;
    border: .1rem solid var(--secondary);
    width: 3.56rem;
    display: grid;
    place-items: center;
    font-size: 1.26rem;
    color: #242424;
    font-weight: 500;
}

.totl-page-bx {
    margin-right: 2rem;
    font-size: 1.3rem;
    color: #242424;
    font-weight: 500;
}

.pg-next-btn {
    opacity: 1;
}

.apfl-table-bx {
    position: relative;
    width: 100%;
    overflow-x: auto;
    margin-top: 4rem;
}

table {
    border-collapse: collapse;
    white-space: nowrap;
    width: 100%;
}

thead {
    background-color: var(--primary);
    border: .1rem solid var(--primary);

}

thead tr th {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
    padding: 1.2rem 1.2rem;
    text-align: center;


}

tbody tr {
    background-color: #fff;

}

tbody tr td {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1.2rem 1.2rem;
    color: #242424;
    text-align: center;

}

tbody tr:nth-child(2n + 1) {
    background-color: #F7F5F2;
}


/* Our Landing Page CSS __________________________________________________*************** */

.menu-bar-btn {
    width: 2.5rem;
    margin-right: 1.6rem;
    cursor: pointer;
    display: none;

}

.menu-bar-btn img {
    width: 100%;
    height: auto;
}

.nav-logo {
    /* width: 22rem; */
}

.bell-icon {
    width: 2.4rem;
    margin-left: 1.6rem;
    cursor: pointer;
    display: none;
}

.bell-icon img {
    width: 100%;
    height: auto;
}

/* ******* Our landing page stay connected css  ***** */

.stay-connted-comp {
    position: relative;
    margin-top: 1rem;
    padding: 3rem 1.78rem 0rem 1.78rem;
    width: 100%;
    overflow: hidden;
    z-index: 4;
}

.stay-connted-comp:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 43%;
    height: 100%;
    /* background: radial-gradient(circle at center, #DCD5E6 23%, #e5e5e500 58%); */
    background: radial-gradient(circle at center, #DCD5E6 26%, #e5e5e500 46%);
    /* background: linear-gradient(90deg , #DCD5E6 14% , #EEE4F921 100%); */
    z-index: -1;
}


.stay-connted-comp:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 9rem;
    height: 50rem;
    background: url('../images/sty-cnnted-path.png')no-repeat center center/cover;
    z-index: -1;
}

.stay-connted-main-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 7rem 5rem;
    border-radius: 1rem;
}

.stay-connted-main-bx:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20rem;
    height: 1rem;
    background-color: var(--primary);
    border-radius: 4rem;
}

.s-cted-text-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.s-cted-text-bx h4 {
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    line-height: 31px;
}

.s-cted-text-bx p {
    font-size: 1.4rem;
    color: #000000;
    font-weight: 400;
    max-width: 80rem;
    line-height: 1.6;
    margin-top: .78rem;
}

.s-cted-mini-form-bx {
    margin-top: 3.5rem;
    width: 100%;

}

.s-cted-grid-from {
    grid-template-columns: 1fr 2fr 1fr;
    z-index: 2;
}

.s-cted-inpt-bx {
    padding: 0 .76rem 0 1.2rem;
    height: 6rem;
    background-color: var(--secondary);
    border: .1rem solid var(--secondary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.s-cted-inpt-bx input {
    background-color: transparent;
    border: none;
    padding: 0 0 0 10px;
    color: #808080;
    font-weight: 500;
    font-size: 1.8rem;
    width: 100%;
    letter-spacing: .5px;
}


.s-cted-inpt-bx input::placeholder {
    color: #808080;
    opacity: 0.66;
    font-weight: 400;
    font-size: 1.4rem;
}

.s-cted-sel-inpt-bx {
    position: relative;
    width: 100%;
    padding: 2rem;
    background-color: var(--secondary);
    border: .1rem solid var(--secondary);
    margin-top: 0;
    color: #808080;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: .5px;
}





.s-cted-sel-inpt-bx option {
    color: #000;
    font-weight: 400;
    font-size: 1.45rem;
}

.s-cted-search-btn {
    position: relative;
    width: 100%;
    padding: 0 .76rem 0 1.2rem;
    height: 6rem;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    color: #fff;
    font-weight: 400;
    font-size: 1.45rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;

}

.s-cted-inpt-bx-radius {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;

}


/* _Our top company css **************** */

.top-comp-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}

.t-comp-bx {
    /* margin-bottom: 2rem; */
    position: relative;
    /* width: 7rem; */
    z-index: 5;

    /* margin-bottom: 2rem;
    position: relative;
    width: 120px;
    height: 70px;
    text-align: center;
    z-index: 5;
    padding: 1%;
    background: white;
    border-radius: 20px; */

}

.t-comp-bx img {
    /* width: 100%;
    height: auto; */

}

/* ___ Our Job and about comp CSS **** */

.about-job-comp {
    /* margin-top: 3rem; */
    padding: 2rem 1.78rem;
}

.about-main-bx {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    /* width: 80%; */
}

.about-main-bx span {
    font-size: 1.78rem;
    color: var(--primary);
    font-weight: 500;
    line-height: 18px;
}

.about-main-bx h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    font-family: sec;
}

/* .about-main-bx p{
    line-height: 1.7;
    font-size: 1.4rem;
    color: #808080;
    font-weight: normal;
} */

.we-have-job-sec {
    /* margin-top: 1rem; */
}

.we-have-job-sec h3 {
    font-size: 3.4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
    font-family: sec;
}

.job-grid {
    margin-top: 1rem;
}

.job-bx {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.job-bx .job-icon-bx {
    position: relative;
    padding: .5rem 2.87rem;
    background-color: var(--secondary);
    display: grid;
    place-items: center;
    height: 10rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.job-icon-bx img {
    height: auto;
}

.job-icon-text {
    text-align: center;
}

.job-icon-text h6 {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 500;
    font-family: sec;
}

.trendg-job-list-bx-main {
    margin-top: 1rem;
    background-color: #fff;
    padding: 1rem 1.5rem;
    border: .1rem solid var(--secondary);
    border-radius: .5rem;

}

.trendng-job-list-bx {
    position: relative;
    padding: .65rem .67rem;
    border-bottom: .1rem solid #eee;
}

.trendng-job-list-bx:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url('../images/finger-img.png')no-repeat center;
    width: 2rem;
    height: 2rem;
    padding: 1.5rem 1.6rem;
    background-color: var(--secondary);
    border-radius: 50%;
}

.trendng-job-list-bx p {
    position: relative;
    font-size: 1.4rem;
    color: #000000;
    font-weight: 400;
    margin-left: 3.5rem;
    line-height: 1.5;

}

.trendng-job-list-bx-5 {
    padding: 1rem .67rem 0 .67rem !important;
    border-bottom: none !important;
}

.trendng-job-list-bx-5:before {
    top: 60%;

}

.new-text {
    position: absolute;
    bottom: 1rem;
    right: 0%;
    transform: translateX(-50%);
    padding: .2rem .87rem;
    background-color: red;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    border-radius: .2rem;
}

.new-text2 {
    right: 0%;
}

/* _____________ Our Hiring comp css */

.hiring-comp {
    /* margin-top: 4rem; */
    padding: 2rem 1.78rem;
}

.hiring-main-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .1rem solid var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 1.78rem 0 1.78rem;
    overflow: hidden;
}

.left-higher-bx {
    display: flex;
    align-items: center;

}

.higher-text-main-bx {
    display: flex;
    align-items: center;
}

.higher-title-bx {
    margin-left: 3rem;
}

.higher-title-bx span {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 500;

}

.higher-title-bx h4 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;

}

.hogher-para {
    /* max-width: 15rem; */
    /* margin-left: 4rem; */
}

.hogher-para p {
    font-size: 1.65rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--primary);
}

.higher-aply-btn {
    /* margin-left: 5rem; */
    padding: 1.1rem 1.78rem;
    width: 20rem;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    display: grid;
    place-items: center;
    border-radius: 4rem;
}

.higher-aply-btn a {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;

}

.right-hgiher-bx {
    position: relative;
}

.right-hgiher-bx img {
    height: auto;
}

.vec-3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2rem;
}

.hir-rigt-img {
    padding-right: 4rem;
}

/* ____ ey-stp-jb-apply-comp *********** */

.ey-stp-aply-jb-comp {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 1.78rem;
    background: linear-gradient(360deg, #AF87D994 34%, #F1E3FEBA 50.9%, #ffffff 100%);


}

.ey-stp-aply-jb-line {
    position: relative;
}

.common-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.common-heading span {
    font-size: 1.87rem;
    color: var(--primary);
    font-weight: 500;
    font-family: sec;
    /* margin-right: 8rem; */
}

.common-heading h4 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    font-family: sec;
}

.ey-stp-aply-jb-grid {
    margin-top: 4rem;
    place-items: center;

}

.ey-aply-jb-bx {
    position: relative;
    /* width: 25rem; */
    height: 100%;
    padding: 2.76rem 1.76rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background-color: #fff;
}



.ey-stp-jb-img img {
    width: 90%;
    height: auto;
}

.ey-stp-jb-det {
    padding-top: 2rem;
}

.ey-stp-jb-det a h5 {
    font-size: 1.9rem;
    color: var(--primary);
    font-weight: 600;
}

.ey-stp-jb-det p {
    font-size: 1.5rem;
    color: #000000;
    font-weight: normal;
    line-height: 20px;
}

.ey-stp-aply-jb-line {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: .2rem;
    background: url('../images/Rectangle\ 1972.png')no-repeat center;
}


.ey-stp-aply-jb-line:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 32.5rem;
    transform: translateY(-50%);
    width: 30%;
    height: 5rem;
    background: url('../images/Group\ 55530.png')no-repeat center;
}

.ey-stp-aply-jb-line:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 73rem;
    transform: translateY(-50%);
    width: 30%;
    height: 5rem;
    background: url('../images/Group\ 55530.png')no-repeat center;
}

.c-1 {
    position: absolute;
    bottom: 15rem;
    left: -3rem;
}

.c-3 {
    position: absolute;
    bottom: 24rem;
    left: 5rem;
}

.c-2 {
    position: absolute;
    bottom: 26.5rem;
    left: 7rem;
}

.c-4 {
    position: absolute;
    bottom: 2.7rem;
    left: 16rem;
}

.c-6 {
    position: absolute;
    bottom: 11.7rem;
    left: 13rem;
}

.c-5 {
    position: absolute;
    bottom: 11.7rem;
    right: 0;
}

.c-7 {
    position: absolute;
    bottom: 1.65rem;
    right: 5rem;
}

.c-8 {
    position: absolute;
    bottom: 15.65rem;
    right: 7rem;
}


/* Our Job fairs comp ************* */

.neares-tjob-fairs-comp {
    margin-top: 2rem;
    padding: 2rem 1.78rem;
}

.job-fairs-slider-main-bx {
    margin-top: 3rem;
}

.job-carousel {
    position: relative;
    /* overflow-x: hidden; */
}



.job-fair-bx::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 3rem;
    background: url('../images/card-bg.png')no-repeat center center/cover;
    z-index: -1;
    transform: translateY(100%);
}

.jb-fair-img {
    position: relative;
    width: 100%;

}



.jb-fair-det-bx {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    padding: 1rem 0;
}

.jb-fair-det-bx span {
    font-size: 1.2rem;
    color: #000000;
    font-weight: normal;
    padding-bottom: .4rem;
}

.jb-fair-det-bx h5 a {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.jb-fair-det-bx p {
    font-size: 1.4rem;
    font-weight: normal;
    color: #808080;
    min-height: 22px;
}

.learn-more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 10rem;
    margin: .45rem auto;
    padding: .56rem .78rem;
    background-color: var(--primary);
    border-radius: 4rem;
    border: .1rem solid var(--primary);


}

.learn-more-btn a {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}




/* Our ranking comp css ************ */

.our-ranking-comp {
    position: relative;
    margin-top: 4rem;

}

/* .our-ranking-comp:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../assets/images/rank-bg.png')no-repeat center center/cover;
        z-index: -1;
    } */

.ranking-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-block: 12rem;
}

.ranking-box {
    position: relative;
    width: 16rem;
}

.rank-img {
    position: relative;
    width: 100%;
    height: 15rem;
    background-color: #fff;
    display: grid;
    place-items: center;
    padding: 2rem 2rem;
    border-radius: 50%;
}


/* .rank-img img{
        height: auto;
    } */

.rank-info {
    margin-top: 1rem;
    text-align: center;

}

.rank-info h5 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 700;
}

.rank-info span {
    margin-top: .5rem;
    font-size: 1.54rem;
    color: #fff;
}

.client-review-comp {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 1.78rem;
}
.client-review-comp .test-grid{
    align-items: start;
}
.client-review-comp .clent-rev-info p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
}
.client-review-comp .clent-rev-info p:focus{
    /* overflow: hidden; */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: unset;
}
.test-grid {
    margin-top: 2.5rem;
    column-gap: 2rem;
}

.client-rev-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .1rem solid #d2d2d2;
    margin-inline: 1%;
    border-radius: 0.5rem;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    /* border-top-left-radius: 2rem!important;
        border-top-right-radius: 2rem!important; */
}

.clent-rev-info {
    padding: .87rem;
    padding-bottom: 2rem;
}

.clent-rev-info p {
    font-size: 1.5rem;
    color: #808080;
    line-height: 1.5;
}

.custo-bx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    z-index: 1;
}

.custo-bx:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: url('../images/cus-bg.png')no-repeat center center/cover;
    z-index: -1;
}

.custo-bx3:before {
    background: url('../images/cus-bg-2.png')no-repeat center center/cover;

}


/* .cust-img img{
        width: 90%;
        height: auto;
    } */

.cus-info {
    padding: 2rem .56rem;
}

.cus-info h5 {
    font-size: 1.89rem;
    color: var(--primary);
    font-weight: 600;
}

.cus-info p {
    font-size: 1.45rem;
    color: #242424;
    font-weight: normal;
}

.cus-info2 h5 {
    color: #ffffff;
}

.cus-info2 p {
    color: #f5f5f5;
}


/* Our footer comp *************** */

.footer-comp-2 {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #fdfefd;
}


.mini-footer {
    margin-top: 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    column-gap: 5rem;
    row-gap: 4rem;
}

.foot-bx {
    position: relative;
    width: 100%;
}

/* .f-logo img{
        height: auto;
        margin-bottom: 1.5rem;
    } */

.foot-bx p {
    font-size: 1.4rem;
    color: #808080;
    font-weight: normal;
    line-height: 1.7;
}

.mail-phone-foot-main-bx {
    margin-top: 3.45rem;
}

.mail-phone-foot-main-bx h6 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #020020;
}

.mail-phone-flex-bx-foot {
    margin-top: 1.4rem;
    display: flex;
    align-items: center;
}

.f-mail-bx {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.f-mil-icon {
    font-size: 1.45rem;
    color: var(--primary);
    margin-right: 1.3rem;
}

.f-mail-bx a {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 500;
}

.f-soc-icon-bx {
    margin-top: 1.45rem;
    display: flex;
    align-items: center;
}

.f-soc-icn {
    margin-right: 1.4rem;
}

.f-soc-icn a {
    padding: .4rem .5rem;
    width: 2.8rem;
    background-color: var(--primary);
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;


}

.foot-bx h5 {
    font-size: 1.55rem;
    color: #242424;
    font-weight: 700;
}

.foot-list {
    margin-top: 1.76rem;
}

.foot-list li {
    margin-bottom: 1.45rem;
}

.foot-list li a {
    font-size: 1.3rem;
    color: #242424;
    font-weight: 500;
}

.foot-list2 {
    margin-top: 3.5rem;
}


/* Our new css codes today date 5/05/2023  */


.jober-home-comp {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 1rem 1.78rem;

}

.jober-home-grid-three-bx {
    grid-template-columns: 1.2fr 2.6fr 1.2fr;
}


.all-filt-main-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e5e5;
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.all-filt-frst-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block-start: 1.2rem;
    padding-block-end: 1.67rem;
    border-bottom: .1rem solid #eee;
}

.all-filt-frst-bx h6 {
    color: #1f1f1f;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 1.7rem;
}

.all-filt-frst-bx span {
    margin-top: -.67rem;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

.all-filt-work-mode-bx {
    padding: 1.5rem 0;
    border-bottom: .1rem solid #eee;

}

.wrk-mode-bx-1 {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.wrk-mode-bx-1 span {
    font-size: 1.4rem;
    color: #161616;
    font-weight: 600;
}

.wrk-mode-bx-1:before {
    content: "\f106";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.5rem;
    color: #242424;
}

.wrk-mode-chk-bx {
    display: flex;
    flex-direction: column;
    gap: 1rem;

}

.form-check input {
    width: 1.3rem !important;
    height: 1.3rem !important;
    background-color: transparent;

}

.form-check input:focus,
.form-check input:focus-within {
    background-color: var(--primary);
    box-shadow: none;
}

.form-check label {
    font-size: 1.3rem;
    margin-left: .67rem;
    font-weight: 600;
    color: #292828;
}

.all-filt-sel-com-main-bx {
    padding: 2.45rem 0;
    width: 100%;
}



.all-filt-sel-com-bx {
    position: relative;
    width: 100%;
}

.all-filt-sel-com-bx:before {
    content: "\f107";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.5rem;
    color: #242424;
}

.all-filt-sel-com-bx h6 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #0e0d0d;
}


.jb-post-range-bx {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.jb-post-range-bx label {
    font-size: 1.2rem;
    color: #010101;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0;
}

#slider {
    -webkit-appearance: none;
    position: relative;
    width: 100%;
    height: .8rem;
    background-color: var(--secondary) !important;
    border: .1rem solid var(--secondary) !important;
    border-radius: .5rem !important;
    outline: none;
}

#slider::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 3;
    -webkit-appearance: none;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
}

.selector {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 3.3rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    border-radius: 50%;

}

.selectvalue {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: .55rem;
    text-align: center;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 500;
}

#progress {
    position: absolute;
    width: 50%;
    height: .7rem;
    top: 3.8rem;
    left: 0;
    background-color: #000000;
    border-radius: .5rem;
}

.lpa-bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .78rem;
}

.lpa-bx p {
    font-size: 1.2rem;
    color: #808080;
    font-weight: normal;
}

.all-filt-sel-com-main-bx {
    border-bottom: .1rem solid #eee;
}

.all-filt-sel-com-bx:last-child {
    border-bottom: none;
}

.center-home-plumb-bx {
    position: relative;
    width: 100%;
}

.center-plumb-1-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2em;
}

.center-plumb-1-bx p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #663896;
    margin-top: -.87rem;
}

.recom-main-bx {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: -1.3rem;
}

.recom-main-bx span {
    font-size: 1.4rem;
    color: #663896;
    font-weight: 500;
}

.sort-recom-main-bx {
    display: flex;
    align-items: center;
    gap: .5rem;
    background-color: transparent;
    border: .12rem solid #e1e1e1;
    border-radius: .5rem;
    padding: .5rem .5rem;
}

.sort-recom-main-bx span {
    font-size: 1.4rem;
    font-weight: 500;
}

.recom-select-bx select {
    font-size: 1.4rem;
    color: #515151;
}

.recom-select-bx select option {
    color: #515151;
    font-size: 1.4rem;
}

.center-home-plumb-main-bx {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.plumb-bx-1 {
    background-color: #fff;
    padding: 2rem 2rem;
    border-radius: .67rem;
}

.plumb-bx-1 h6 {
    font-size: 1.87rem;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: .34rem;
}

.plumb-bx-1 span {
    font-size: 1.4rem;
    color: #363636;
    font-weight: 500;
}

.plumb-yr-ag-loc-bx-2 {
    /* margin-top: 1.5rem; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    /* margin-bottom: 1rem; */
}

.plumb-yr-ag-loc-bx {
    position: relative;
    width: 19rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;

}

.plumb-yr-ag-loc-bx:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    width: .25rem;
    height: 70%;
    background-color: #eee;
}

.plumb-yr-ag-loc-bx:nth-child(3):before {
    display: none;
}

.plumb-yr-ag-loc-bx .plumb-icn i {
    font-size: 1.45rem;
    color: #929292;
}

.plumb-yr-ag-loc-bx span {
    margin-top: -.4rem;
    font-size: 1.4rem;
    color: #3d3d3d;
    font-weight: 500;
}

.plumb-para-text {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.page-icon i {
    font-size: 1.6rem;
    color: #858585;
}

.plumb-para-text p {
    /* margin-top: .56rem; */
    font-size: 1.5rem;
    color: #4d4b4b;
    font-weight: 500;
}

.plumb-bx-3-flex {
    display: flex;
    align-items: center;
    gap: 7rem;
    margin-top: 1rem;
}

.plumb-bx-3-flex li {
    position: relative;
    font-size: 1.5rem;
    color: #bfbdbd;
    font-weight: 500;
}


.plumb-bx-3-flex li:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -3rem;
    width: .5rem;
    height: .5rem;
    background-color: #6b6b6b;
    border-radius: 50%;
}

.plumb-bx-3-flex li:nth-child(1):before {
    display: none;
}

.plumb-bx-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.plumb-days-ago-bx span {
    font-size: 1.3rem;
    color: #1f1f1f;
    font-weight: 500;
}

.plumb-save {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.save-ic {
    font-size: 1.3rem;
    color: #292828;
}

.plumb-save span {
    font-size: 1.3rem;
    color: #1f1f1f;
    font-weight: 500;
}

.right-home-comp-images-main-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.4rem 1.56rem;
}

.right-home-comp-images-main-bx h5 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #4e4d4d;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.comp-imgs-grid-bx {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}

.comp-img-bx {
    position: relative;
    width: 100%;
    background-color: transparent;
    border: .2rem solid #eee;
    display: grid;
    place-items: center;
    text-align: center;
    padding: .5rem .5rem;
    border-radius: .65rem;
}

.comp-img-bx img {
    width: 6rem;
    height: auto;
}

.comp-1 {
    width: 4rem !important;
}

.home-comp-images-2-bx {
    margin-top: 2rem;
    position: relative;
    width: 100%;
}

.home-comp-images-2-bx img {
    width: 100%;
    height: auto;
    border-radius: 1rem;

}

.anot-comp {
    position: relative;
    width: 100%;
    margin-top: 1rem;
    padding: 2rem 1.78rem;

}

.anoth-comp-grid {
    grid-template-columns: 2fr 1fr;
}

.anoth-comp-main-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem 2rem 2rem 2rem;

}

.anoth-comp-main-bx h6 {
    font-size: 3rem;
    color: #363636;
    display: grid;
    font-weight: 700;
    text-align: center;
    background: var(--secondary);
    margin-bottom: 0;
    padding-bottom: 1.5%;
    padding-top: 2%;
    /* padding: 1em; */
}

.ind-main {
    display: inline-flex;
    margin-left: 38.5%;
    margin-top: 32.5%;
    position: absolute;
}

.ind {
    background-color: lightslategray;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-left: 5px;
}

.indactive {
    background-color: var(--primary);
    width: 15px;
    height: 6px;
    border-radius: 0.25rem;
    margin-left: 5px;
}

.ind1 {
    width: 100%;
    display: block;
}

.gplay-img {
    width: 58%;

}

.about-head {
    background: #f8f8f8;
}

.single-testimonial h6 {
    background-color: var(--secondary);
}

.anoth-comp-main-bx span {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 26px;
}


.anoth-comp-flex-bx {
    margin-top: 1.78rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: .15rem solid #eee;
}

.anoth-comp-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.anoth-comp-icon i {
    font-size: 1.45rem;
    color: #a0a0a0;
}

.anoth-comp-icon span {
    font-size: 1.4rem;
    color: #383838;
    font-weight: 500;
}

.pos-app-flex-main-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pos-app-flex {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.pos-app-flex p {
    font-size: 1.5rem;
    color: #7b7b7b;
    font-weight: 500;
    margin-bottom: 0;

}

.pos-app-flex p span {
    color: #242424;
}

.pos-app-flex-main-bx .para-text-like {
    font-size: 1.55rem;
    font-weight: 500;
    color: #663896;
    margin-bottom: 0;

}

.zom-img {
    position: absolute;
    top: 2rem;
    right: 3rem;
    width: 11rem;

}

.zom-img img {
    width: 100%;
    height: auto;
}

.reg-log-app-flex-btns {
    position: absolute;
    bottom: 7rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;

}

.anoth-com-btn {
    width: 17rem;
    background-color: transparent;
    border: .15rem solid var(--primary);
    border-radius: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.45rem;
    font-weight: 700;
    color: #663896;
    padding: 1rem .5rem;
}

.anoth-com-btn.active {
    background-color: var(--primary);
    color: #fff;
}

.anoth-sec-job-det-main-bx {
    /* margin-top: 2rem; BY anshul*/
    background-color: #fff;
    position: relative;
    width: 100%;
    padding: 0;
    border-radius: 1rem;

}

.anoth-sec-job-det-main-bx3 {
    padding-inline: 1.78rem !important;
}

.anoth-sec-job-det-main-bx p {
    margin-bottom: 0;
    font-size: 1.45rem;
    line-height: 1.6;
    font-weight: 400;
    color: #383838;
}

.anoth-sec-job-det-main-bx p:nth-child(2) {}

.para-flex-bx {
    margin-top: 1.65rem;
    margin-bottom: 2rem;
}

.tex-bold {
    font-size: 1.6rem !important;
    margin-top: 1rem !important;
    font-weight: 700 !important;
    color: #101010 !important;
}

.tex-bold2 {
    color: #383838 !important;
    font-weight: 400 !important;
}

.edu-para {
    margin-bottom: 1.65rem;
}

.edu-para h6 {
    font-size: 1.78rem;
    font-weight: 700;
    color: #414141;
}

.ski-para {
    padding-bottom: 2rem;
    border-bottom: .15rem solid #eee;
}

.social-links-flex {
    display: flex;
    align-items: center;
    gap: .67rem;
}

.social-links-flex a img {
    width: 3.5rem;
    height: auto;
}

.anoth-comp-flex-bx2 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    gap: 2.56rem;
}

.anoth-icn2 i {
    font-size: 1.76rem;
}

.anoth-comp-icon2 {
    align-items: flex-start;
}

.anoth-comp-icon2 .anoth-icn2 i {
    margin-top: .4rem;
}

.similar-jobs-main-bx {
    margin-top: 2rem;
}

.similar-jobs-main-bx h6 {
    margin-bottom: 2rem;
}

.sim-jb-bx {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.sim-jb-bx h6 {
    font-size: 1.56rem;
    font-weight: 700;
    color: #565656;
    margin-bottom: 0;
}

.sim-jb-bx p {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.5;
    padding-bottom: .76rem;
}

.sim-jb-flex-bx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: .15rem solid #eee;
}

.left-sim-jb-loc-bx {
    display: flex;
    align-items: center;
    gap: 1rem;

}

.left-sim-jb-loc-bx i {
    font-size: 1.4rem;
    color: #828282;
}

.left-sim-jb-loc-bx span {
    font-size: 1.34rem;
    font-weight: 500;
    margin-top: -.3rem;
}

.sim-jb-flex-bx span {
    font-size: 1.3rem;
    font-weight: 500;
}

.view-all-jb-btn {
    font-size: 1.55rem;
    text-transform: capitalize;
    font-weight: 500;
    color: #663896;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}

.benf-and-perks-main-bx {
    margin-top: 2rem;
}

.benf-perk-grid-bx {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    margin-top: 2rem;
}


.benf-perk-bx {
    position: relative;
    width: 100%;
}

.benf-perk-bx span {
    font-size: 1.9rem;
    color: #cfcece;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benf-perk-bx p {
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 500;
    text-align: center;
    padding: 1rem 0;
}

.link-sp a {
    font-size: 1.4rem;
    color: #a7a7a7;
    font-weight: 600;
}

.link-sp {
    color: #663896;
    font-weight: 600;
}


.receive-job-comp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    display: grid;
    place-items: center;
}

.receive-job-comp:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0b0b;
    opacity: 0.66;
    z-index: -1;
}

.receive-job-main-bx {
    position: relative;
    background-color: #fff;
    border-radius: 1rem;
    padding: 2.56rem 2.5rem;


}

.receive-job-main-bx h6 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #3e3e3e;
    margin-bottom: 1rem;
}

.receive-job-main-bx p {
    font-size: 1.55rem;
    color: #292828;
    font-weight: 500;
    max-width: 40rem;
    line-height: 1.4;

}

.receive-job-main-bx p:nth-child(3) {
    font-size: 1.3rem;
    color: #131313;
    font-weight: 500;
    line-height: 1.3;
    max-width: 30rem;
    margin-top: 2rem;

}

.jobs-form-bx {
    margin-top: 2rem;
}

.job-input-bx {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.job-input-bx label {
    font-size: 1.4rem;
    color: #080808;
    font-weight: 500;
    padding-bottom: .56rem;
}

.job-input-bx input {
    position: relative;
    width: 35rem;
    padding: .78rem 1rem;
    font-size: 1.45rem;
    color: #010101;
    font-weight: 500;
    background-color: var(--secondary);
    border: .1rem solid var(--secondary);
    border-radius: .5rem;

}

.job-btn {
    position: relative;
    width: 13rem;
    background-color: var(--primary);
    font-weight: 500;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    display: grid;
    place-items: center;
    border: .1rem solid var(--primary);
    border-radius: 4rem;
    padding: .87rem .5rem;
    margin-top: 1.5rem;
}

.close-form-bx {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: #101010;
    cursor: pointer;

}

.foter-comp {
    position: relative;
    width: 100%;
    background-color: #f5f5f5;
    padding: 6rem 1.78rem;
    margin-top: 4rem;
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.fotr-bx {
    position: relative;
    width: 100%;
}

.fotr-img {
    position: relative;
    width: 10rem;
    margin-bottom: 1rem;
}

.fotr-img img {
    width: 100%;
    height: auto;
}

.fotr-bx p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #414141;
    line-height: 1.5;
    margin-bottom: 0;
}

.visit-fotr-bx {
    margin-top: 2rem;
}

.visit-fotr-bx span {
    font-size: 1.76rem;
    font-weight: 700;
    color: #393939;

}

.fotr-box-3 {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.fotr-cont-bx {
    display: flex;
    align-items: center;
    gap: .76rem;

}

.cont-i i {
    font-size: 1.5rem;
    color: #663896;

}

.fotr-cont-bx {
    position: relative;
}

.fotr-cont-bx span {
    font-size: 1.4rem;
    color: #663896;
    font-weight: 600;
    margin-top: -.5rem;
}

.fotr-cont-bx2:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1.5rem;
    width: .2rem;
    height: 140%;
    background-color: #cbcbcb;
}

.fotr-soc-icon {
    display: flex;
    align-items: center;
    gap: 1rem;

}

.fotr-soc-icon a .fa-facebook-f {
    border-radius: 50%;
}

.fotr-soc-icon a i {
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    display: grid;
    place-items: center;
}

.fotr-soc-icon a .fa-twitter {
    border-radius: .5rem;
}


.fotr-bx:nth-child(2) {
    margin-left: 3rem;
}

.fotr-bx {
    margin-top: 2rem;
}

.fotr-head h6 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0b0b0b;
    margin-bottom: 1.5rem;

}

.fotr-li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fotr-li li a {
    font-size: 1.35rem;
    color: #161616;
    font-weight: 500;
}

.fotr-li2 {
    margin-top: 3.5rem;
}

.fotr-li2 li:nth-child(4) {
    max-width: 15rem;
}

.gog-play-img {
    margin-top: 1.5rem;
    width: 12rem;
}

.gog-play-img img {
    width: 100%;
    height: auto;
    border-radius: .5rem;
}



@media all and (min-width: 1123px) and (max-width: 1200px) {

    html {
        font-size: 56.2%;
    }

}




/* ############ our contact sec css */

.carer-cont-sec {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 2rem 1.78rem;

}


.carerr-cont-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .15rem solid #eee;
    border-radius: .5rem;
    padding: 2.5rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;

}

.car-cont-icon {
    font-size: 3rem;
    color: var(--primary);

}

.car-cont-info {
    margin-top: 1rem;
}

.car-cont-info h6 {
    font-size: 2rem;
    font-weight: 600;
    color: #080808;
}

.car-cont-info p {
    font-size: 1.4rem;
    color: #8a8a8a;
    font-weight: 500;
}

.carer-cont-form-map-grid {
    position: relative;
    width: 100%;
    margin-top: 4rem;

}

.car-name-email-bx {
    margin-bottom: 1.5rem;

}

.cont-carer-form-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .15rem solid #eee;
    border-radius: .56rem;
    padding: 3rem 3rem;
}

.cont-carer-form-bx h6 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #010101;
    margin-bottom: 1.67rem;
}

.car-cont-input-bx {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.car-cont-input-bx label,
.car-cont-messg-bx label {
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: .5rem;
    color: #010101;
}

.car-cont-input-bx input,
.car-cont-messg-bx textarea {
    position: relative;
    width: 100%;
    padding: 1rem 1rem;
    background-color: var(--secondary);
    border: none;
    border-radius: .2rem;
    border: .1rem solid var(--secondary);
    font-size: 1.4rem;
    color: #272727;
    font-weight: 500;
}

.car-cont-input-bx input::placeholder,
.car-cont-messg-bx textarea::placeholder {
    font-size: 1.3rem;
    color: #a4a4a4;
    font-weight: 500;
    letter-spacing: .05rem;
}

.car-cont-messg-bx {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
}

.car-cont-messg-bx textarea {
    resize: none;
}

.send-btn {
    position: relative;
    width: 18rem;
    margin: 0 auto;


}

.send-btn input {
    width: 100%;
    padding: 1.1rem .6rem;
    background-color: var(--primary);
    border-radius: 4rem;
    border: none;
    border: .1rem solid var(--primary);
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;

}

.cont-car-map-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 2rem;
}



/* _________________________________ */

.career-det-sec {
    margin-top: 3rem;
    position: relative;
    width: 100%;
    padding: 2rem 1.78rem;
}

.career-detal-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .1rem solid #eee;
    padding: 3rem 3rem;
    border-radius: .87rem;

}

.career-detal-bx h6 {
    font-size: 1.65rem;
    color: #272727;
    font-weight: 600;

}

.career-detal-bx span {
    font-size: 1.33rem;
    color: #161616;
    font-weight: 500;
}

.career-detal-bx p {
    margin-top: .5rem;
    font-size: 1.3rem;
    color: #0b0b0b;
    font-weight: 500;
}

.career-detal-bx p span {
    margin-left: 1rem;
    font-size: 1.45rem;
    color: #663896;
    font-weight: 600;
}

.career-det-flex-bx {
    display: flex;
    align-items: center;
    gap: 7rem;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;

}

.carer-det-card-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.carer-det-card-box i {
    font-size: 1.4rem;
    color: #adadad;
}

.carer-det-card-box span {
    font-size: 1.35rem;
    color: #818181;
    font-weight: 500;
    margin-top: -.3rem;
}

.carer-det-card-box:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 11rem;
    width: .2rem;
    height: 120%;
    background-color: #bebcbc;
}

.carer-det-card-box:last-child:before {
    display: none;
}

.career-detal-bx .det-para {
    margin-top: 0;
    padding: 0;
    margin-bottom: 0;
}

.career-detal-bx .det-para2 {
    margin-top: 0;
    padding: 0;
    margin-bottom: 0;
}

.career-detal-bx .det-para2 span {
    margin-left: 0;
    font-weight: 500;
    color: #080808;
    font-size: 1.3rem;
}

.car-det-app-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3rem;
    width: 15rem;
    display: grid;
    place-items: center;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    border-radius: 4rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    padding: 1rem .5rem;
}

.car-details-bx-2 {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .15rem solid #eee;
    padding: 3rem 3rem;
    border-radius: .56rem;
    margin-top: 2rem;
}

.car-details-bx-2 h6 {
    font-size: 1.67rem;
    color: #010101;
    font-weight: 600;
    margin-bottom: .78rem;
}

.det-span-bx {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.det-span-bx span {
    font-size: 1.3rem;
    color: #525252;
    font-weight: 500;
}

.car-det-para-3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #656565;
    text-align: justify;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: .15rem solid #eee;
}

.car-det-head-2,
.car-det-head-3 {
    font-size: 1.65rem;
    font-weight: 600;
    color: #010101;
    margin-bottom: 1rem;
}

.car-det-span-list-bx {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-top: .56rem;
    padding-bottom: 1.3rem;
    border-bottom: .15rem solid #eee;

}

.car-det-span-list-bx span {
    font-size: 1.3rem;
    color: #646464;
    font-weight: 500;
}

.car-edu-skil-bx {
    position: relative;
    width: 100%;
    padding: 2rem 0 2rem 0;
    border-bottom: .2rem solid #eee;
}

.car-edu-skil-bx h6 {
    font-size: 1.56rem;
    font-weight: 500;
    color: #010101;
}

.car-edu-skil-bx span {
    font-size: 1.35rem;
    color: #818181;
    font-weight: 500;
}

.car-edu-skil-bx:last-child {
    border-bottom: none;
    padding: 2rem 0 0 0;
}

.career-faq-sec {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    padding: 2rem 1.78rem;

}

.left-faq-box {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .1rem solid #eee;
    border-radius: .87rem;
    padding: 3rem 3rem;

}

.left-faq-box h5,
.right-faq-box h5 {
    font-size: 2.78rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.07rem;
    margin-bottom: 1rem;

}

.faq-bx {
    position: relative;
    width: 100%;
    padding: 2.5rem 0;
    border-bottom: .2rem solid #eee;
    transition: 500ms ease;

}

.faq-bx:last-child {
    border-bottom: none;
    padding: 1.87rem 0 0 0;
}

.faq-bx h6 {
    font-size: 1.65rem;
    font-weight: 600;
    color: #010101;
    letter-spacing: .05rem;
    margin-bottom: 0;
}

.faq-info {
    opacity: 0;
    display: none;

}

.faq-info p {
    font-size: 1.3rem;
    color: #7f7f7f;
    font-weight: 500;
    transition: 500ms ease;
    margin-top: .67rem;
}

.faq-bx.active .faq-info {
    opacity: 0;
    display: block;
    animation: showtext .76s ease forwards;
}


@keyframes showtext {

    100% {
        opacity: 1;
    }

}


.faq-btn-flex {
    position: absolute;
    top: 2rem;
    right: 0;
    z-index: 3;
}

.faq-bx.active .faq-btn2 {
    display: block;
}

.faq-bx.active .faq-bx1 {
    display: none;
}

.faq-btn ion-icon {
    font-size: 2.2rem;
    cursor: pointer;
    color: #010101;
}

.right-faq-box {
    position: relative;
    width: 100%;
    padding: 3rem 3rem;
    background-color: #fff;
    border: .15rem solid #eee;
    border-radius: .56rem;
}

.faq-btn2 {
    display: none;
}


/* ###############################  oUr new css code today date / 17/05/23 careers sec csscode */

.common-top-main-bx {

    position: relative;
    width: 100%;
    background-color: var(--secondary);
    padding: 5rem 1.78rem;


}

.comm-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.comm-text h5 {
    font-size: 2.87rem;
    font-weight: 700;
    color: #010101;
    margin-bottom: 0;
}

.comm-text p {
    font-size: 1.3rem;
    color: #101010;
    font-weight: 500;
}

/* ____________ hiring career join sec _--------- */

.career-hiring-join-sec {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    padding: 2rem 1.78rem;
}

.career-hiring-join-container {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .2rem solid #e2e1e1;
    padding: 7rem 4rem;
    border-radius: 1rem;
}

.career-hiring-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.career-hiring-heading h5 {
    font-size: 2.87rem;
    font-weight: 700;
    color: #010101;
    letter-spacing: .06rem;
    padding-bottom: .5rem;

}

.career-hiring-heading p {
    max-width: 75rem;
    margin: 0 auto;
    font-size: 1.35rem;
    color: #0b0b0b;
    font-weight: 500;
}

.hiring-join-filt-btn-flex {
    margin-top: 2.56rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.career-hiring-join-btn-bx {
    font-size: 1.5rem;
    background-color: transparent;
    border: none;
    font-size: 1.56rem;
    color: #010101;
    font-weight: 500;
    padding: .54rem 2rem;
    transition: 500ms ease;

}

.career-hiring-join-btn-bx.active {
    color: #663896;
    border-bottom: .2rem solid var(--primary);
}

.car-hirn-join-main-bx {
    margin-top: 3rem;
}

.career-hiring-bx {
    position: relative;
    width: 100%;
    padding: 2rem 0;
    border-bottom: .2rem solid #e2e1e1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-car-hir-bx h6 {
    font-size: 1.65rem;
    font-weight: 600;
    color: #010101;
    padding-bottom: .67rem;
}

.car-join-yr-flex-bx {
    display: flex;
    align-items: center;
    gap: 5rem;
}



.car-join-yr-left,
.car-join-yr-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}


.car-join-yr-left:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 9.3rem;
    width: .15rem;
    height: 120%;
    background-color: #c9c9c9;
}

.car-join-yr-left i,
.car-join-yr-right i {
    font-size: 1.4rem;
    color: #aeaeae;
}

.car-join-yr-left span,
.car-join-yr-right span {
    font-size: 1.25rem;
    color: #7b7b7b;
    font-weight: 500;
    margin-top: -.2rem;
}

.right-car-hir-bx a {
    position: relative;
    width: 14rem;
    display: grid;
    place-items: center;
    padding: .87rem .5rem;
    font-size: 1.5rem;
    color: #663896;
    background-color: transparent;
    border: .1rem solid var(--primary);
    border-radius: 4rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.career-hiring-bx:last-child {
    border-bottom: none;
}

.show-less-btn {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13rem;
    margin: 0 auto;
    padding: .78rem .5rem;
    font-size: 1.45rem;
    font-weight: 500;
    background-color: var(--primary);
    border: .1rem solid var(--primary);
    border-radius: 4rem;
    color: #fff;
}

/* ################# our terms conditions sec */

.career-condit-sec {
    position: relative;
    width: 100%;
    margin-top: 4rem;
    padding: 2rem 1.78rem;
}

.career-term-cond-main-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .1rem solid #eee;
    border-radius: .5rem;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.terms-cond-bx h6 {
    font-size: 1.76rem;
    font-weight: 600;
    color: #010101;

}

.terms-cond-bx p {
    font-size: 1.35rem;
    color: #161616;
    font-weight: 500;
    text-align: justify;
}

/* ############ our contact sec css */

.carer-cont-sec {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    padding: 2rem 1.78rem;

}


.carerr-cont-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .15rem solid #eee;
    border-radius: .5rem;
    padding: 2.5rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;

}

.car-cont-icon {
    font-size: 3rem;
    color: var(--primary);

}

.car-cont-info {
    margin-top: 1rem;
}

.car-cont-info h6 {
    font-size: 2rem;
    font-weight: 600;
    color: #080808;
}

.car-cont-info p {
    font-size: 1.4rem;
    color: #8a8a8a;
    font-weight: 500;
}

.carer-cont-form-map-grid {
    position: relative;
    width: 100%;
    margin-top: 4rem;

}

.car-name-email-bx {
    margin-bottom: 1.5rem;

}

.cont-carer-form-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    border: .15rem solid #eee;
    border-radius: .56rem;
    padding: 3rem 3rem;
}

.cont-carer-form-bx h6 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #010101;
    margin-bottom: 1.67rem;
}

.car-cont-input-bx {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.car-cont-input-bx label,
.car-cont-messg-bx label {
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: .5rem;
    color: #010101;
}

.car-cont-input-bx input,
.car-cont-messg-bx textarea {
    position: relative;
    width: 100%;
    padding: 1rem 1rem;
    background-color: var(--secondary);
    border: none;
    border-radius: .2rem;
    border: .1rem solid var(--secondary);
    font-size: 1.4rem;
    color: #272727;
    font-weight: 500;
}

.car-cont-input-bx input::placeholder,
.car-cont-messg-bx textarea::placeholder {
    font-size: 1.3rem;
    color: #a4a4a4;
    font-weight: 500;
    letter-spacing: .05rem;
}

.car-cont-messg-bx {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
}

.car-cont-messg-bx textarea {
    resize: none;
}

.send-btn {
    position: relative;
    width: 18rem;
    margin: 0 auto;


}

.send-btn input {
    width: 100%;
    padding: 1.1rem .6rem;
    background-color: var(--primary);
    border-radius: 4rem;
    border: none;
    border: .1rem solid var(--primary);
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;

}

.cont-car-map-bx {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    column-gap: 5rem;
    padding: 6em 4em;
}

.contact-text h5 {
    font-size: 3rem;
    font-weight: 700;
    padding-bottom: 1rem;
}

.contact-text p {
    font-size: 1.5rem;
    color: #3a3a3a;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 26px;
    text-align: justify;
}

.white {
    color: #fff !important;
}

.image-responsive {
    max-width: 100%;
    height: auto;
}

.img-shadow {
    box-shadow: 19px 18px 3px var(--primary);
}

.contact-img {
    margin: 5em 0 0 0;
}

.section-about {
    background: #fdfdfd;
}



.container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

.sec-title p {
    font-size: 1.8rem;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
}

.testimonial-area {
    background: #e5e4e9;
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.testimonial-area .owl-carousel {
    overflow: hidden;
    padding: 0 20px;
    margin: 0px -10px;
    padding-right: 40px;
}

.testimonial-area .owl-stage-outer {
    padding: 0px 50px;
    margin-left: -34px;
    width: calc(100% + 100px);
}

/* .single-testimonial {
	border: 7px solid #fff;
	text-align: center;
	border-radius: 45px;
	position: relative;
	z-index: 2;
} */
.single-testimonial p {
    color: #000;
    font-size: 15px;
    line-height: 24px;
    padding: 50px;
    padding-bottom: 30px;
    position: relative;
    z-index: 3;
}

/* .single-testimonial::before {
	content: "";
	position: absolute;
	left: -35px;
	top: -35px;
	background: url(https://i.ibb.co/nb8Hjms/quote.png) no-repeat var(--blue);
	background-size: 60%;
	width: 126px;
	height: 100px;
	transform: rotate(180deg);
	background-position: 34px 15px;
}
.single-testimonial::after {
	content: "";
	position: absolute;
	right: -35px;
	bottom: -34px;
	background: url(https://i.ibb.co/nb8Hjms/quote.png) no-repeat var(--blue);
	background-size: 60%;
	width: 126px;
	height: 100px;
	background-position: 34px 19px;
} */
.round {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

/* .round-1::before {
	content: "";
	position: absolute;
	left: 88px;
	top: -7px;
	width: 50px;
	height: 7px;
	background: #fff;
	border-radius: 30px;
}
.round-1::after {
	content: "";
	position: absolute;
	left: -7px;
	top: 62px;
	width: 7px;
	height: 50px;
	background: #fff;
	border-radius: 30px;
}
.round-2::before {
	content: "";
	position: absolute;
	right: 87px;
	bottom: -7px;
	width: 50px;
	height: 7px;
	background: #fff;
	border-radius: 30px;
	z-index: 1;
}
.round-2::after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: 62px;
	width: 7px;
	height: 50px;
	background: #fff;
	border-radius: 30px;
	z-index: 1;
} */
.client-image {
    text-align: center;
    padding: 50px 0 0 0;
}

.client-info {
    position: relative;
    z-index: 3;
}

.client-info a {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
    font-size: 22px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-bottom: 50px;
}

.client-info h6 {
    color: #000;
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.client-info span {
    display: inline-block;
    color: #000;
    font-size: 12px;
}

.sec-title.white-title h2 {
    color: #000;
}

.owl-dots button {
    background: #000 !important;
    width: 10px;
    height: 10px;
    border-radius: 26px;
    margin: 0 5px;
    transition: 0.3s;
}

.owl-dots {
    text-align: center;
    margin-bottom: 50px;
}

.owl-dots button.active {
    width: 30px;
}

.owl-carousel .owl-item img {
    display: inline !important;
    width: 15% !important;
}

div .trending-job-scroll {
    max-height: 34em !important;
    overflow-y: scroll;
}




.right-faq-box .accordion-button:not(.collapsed),
.left-faq-box .accordion-button:not(.collapsed) {
    background-color: #fff !important;
    box-shadow: none !important;
}

.right-faq-box .accordion-button:focus,
.left-faq-box .accordion-button:focus {
    border-color: none !important;
}

.right-faq-box .accordion-item,
.left-faq-box .accordion-item {
    border: none !important;
}

.right-faq-box .accordion-body p,
.left-faq-box .accordion-body p {
    color: #7f7f7f !important;
}

.right-faq-box .accordion-header h6,
.left-faq-box .accordion-header h6 {
    font-weight: 600;
}


.slideshow-container {
    position: relative;
    /* background: #f1f1f1f1; */
}

/* Slides */
.mySlides {
    display: none;
    padding: 0px;
    text-align: center;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #888;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    position: absolute;
    right: 16%;
    z-index: 21;
    border-radius: 3px 0 0 3px;
}

.prev {
    position: absolute;
    right: 83%;
    z-index: 21;
    border-radius: 3px 0 0 3px;
}

.img-fluid {
    border: 8px solid white;
    border-radius: 50%;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    column-gap: 5rem;
    padding: 6em 4em;
}

.contact-text h5 {
    font-size: 3rem;
    font-weight: 700;
    padding-bottom: 1rem;
}

.contact-text p {
    font-size: 1.5rem;
    color: #3a3a3a;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 26px;
}

.white {
    color: #fff !important;
}

.image-responsive {
    max-width: 100%;
    height: auto;
}

.img-shadow {
    box-shadow: 19px 18px 3px var(--primary);
}

.contact-img {
    margin: 5em 0 0 0;
}

.section-about {
    background: #fdfdfd;
}



.container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

.sec-title p {
    font-size: 2.5rem;
    line-height: 28px;
    font-weight: bold;
    text-align: center;
}

.testimonial-area {
    background: var(--secondary);
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.testimonial-area .owl-carousel {
    overflow: hidden;
    padding: 0 20px;
    margin: 0px -40px;
    padding-right: 40px;
}

.testimonial-area .owl-stage-outer {
    padding: 0px 50px;
    margin-left: -34px;
    width: calc(100% + 100px);
}

/* .single-testimonial {
	border: 7px solid #fff;
	text-align: center;
	border-radius: 45px;
	position: relative;
	z-index: 2;
} */
.single-testimonial p {
    color: #000;
    font-size: 15px;
    line-height: 24px;
    padding: 50px 16em;
    padding-bottom: 30px;
    position: relative;
    z-index: 3;
    padding-top: 10px;
}

/* .single-testimonial::before {
	content: "";
	position: absolute;
	left: -35px;
	top: -35px;
	background: url(https://i.ibb.co/nb8Hjms/quote.png) no-repeat var(--blue);
	background-size: 60%;
	width: 126px;
	height: 100px;
	transform: rotate(180deg);
	background-position: 34px 15px;
}
.single-testimonial::after {
	content: "";
	position: absolute;
	right: -35px;
	bottom: -34px;
	background: url(https://i.ibb.co/nb8Hjms/quote.png) no-repeat var(--blue);
	background-size: 60%;
	width: 126px;
	height: 100px;
	background-position: 34px 19px;
} */
.round {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

/* .round-1::before {
	content: "";
	position: absolute;
	left: 88px;
	top: -7px;
	width: 50px;
	height: 7px;
	background: #fff;
	border-radius: 30px;
}
.round-1::after {
	content: "";
	position: absolute;
	left: -7px;
	top: 62px;
	width: 7px;
	height: 50px;
	background: #fff;
	border-radius: 30px;
}
.round-2::before {
	content: "";
	position: absolute;
	right: 87px;
	bottom: -7px;
	width: 50px;
	height: 7px;
	background: #fff;
	border-radius: 30px;
	z-index: 1;
}
.round-2::after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: 62px;
	width: 7px;
	height: 50px;
	background: #fff;
	border-radius: 30px;
	z-index: 1;
} */
.client-image {
    text-align: center;
    padding: 50px 0 0 0;
}

.ey-stp-aply-jb-line:before,
.ey-stp-aply-jb-line:after {
    display: none;
}


.client-info {
    position: relative;
    z-index: 3;
}

.client-info a {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
    font-size: 22px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-bottom: 50px;
}

.client-info h6 {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.client-info span {
    display: inline-block;
    color: #000;
    font-size: 12px;
}

.sec-title.white-title h2 {
    color: #000;
}

.owl-dots button {
    background: #000 !important;
    width: 10px;
    height: 10px;
    border-radius: 26px;
    margin: 0 5px;
    transition: 0.3s;
}

.owl-dots {
    text-align: center;
    margin-bottom: 50px;
}

.owl-dots button.active {
    width: 30px;
}

.owl-carousel .owl-item img {
    display: inline !important;
    width: 15% !important;
}

div _ngcontent-fnr-c7,
.container,
.trending-job-scroll {
    max-height: 34em;
    overflow-y: scroll;
}

.center-home-plumb-bx .job-scroll {
    max-height: initial;
    overflow-y: scroll;
}

.testimonial-area .container {
    max-height: 50em;
    overflow: hidden;
}

.right-arrow,
.left-arrow {
    display: none;
}


.wid-300 {
    max-width: 300px !important;
}

p {
    margin-top: 0;
    margin-bottom: 0 !important;
}

.ml-5 {
    margin-left: .5em;
}

.job-scroll {
    height: 70em;
    overflow-y: scroll;
}

.left-arrow {
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    left: 2em;
    top: 52em;
}

.right-arrow {
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    right: 2em;
    top: 52em;
}

.language-selct-box {
    position: relative;
}

.language-selct-box::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1.5rem;
    width: .1rem;
    height: 50%;
    background-color: var(--primary);
}

.lang-font {
    font-size: 14px;
    border: solid 1px #cccccc;
    padding: 4px;
    width: 85px;
    border-radius: 4px;
}

.option-font {
    font-size: 14px;
    background: #fff;
    color: #000;
    padding: 5px;
}

.all-filt-exp-1-bx:before {
    display: none;
}

.all-filt-main-bx {
    width: 100% !important;
    max-width: 100% !important;
}

.all-filt-exp-1-bx select {
    width: 100% !important;

}


/* -------------------------------------- */

.all-filt-exp-bx .ngx-slider .ngx-slider-pointer,
.all-filt-exp-1-bx .ngx-slider .ngx-slider-pointer {
    cursor: pointer !important;
    width: 10px !important;
    height: 10px !important;
    top: -0.3rem !important;
    background-color: #2F2E41 !important;
    z-index: 3 !important;
    border-radius: 16px !important;

}

.all-filt-exp-bx .ngx-slider .ngx-slider-selection,
.all-filt-exp-1-bx .ngx-slider .ngx-slider-selection {
    background-color: #2F2E41 !important;

}



.has-scrollbar {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    margin-top: 2rem;
    overflow-y: hidden;
}


.has-scrollbar::-webkit-scrollbar {
    background-color: transparent !important;
    height: .345rem !important;
}

.has-scrollbar::-webkit-scrollbar-thumb {
    background-color: transparent !important;
}

.slide-item {
    min-width: 30rem;
    height: 40rem;
}

.job-fair-bx {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    overflow: hidden !important;
}

.jb-fair-img {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.jb-fair-img img {
    width: 100%;
    height: 20rem;
}

.jb-fair-det-bx {
    padding: 2rem 1.5rem;
}


.s-cted-inpt-bx5 {
    padding: 1rem 0 !important;
}

body.plus .nav-link2 {
    /* margin-left: 21rem; */
}

body.plus .reg-btn {
    padding: .5rem;
}

body.plus .f-soc-icn a {
    width: 3rem;
}

body.plus .learn-more-btn {
    width: 15rem;
}

body.plus .slide-item {
    height: 47rem;
}

.thanku-popup-main-bx {
    position: relative !important;
}


.view-zoo-img-2 img {
    max-width: 100% !important;
}

.img-shadow {
    width: 100%;
}

/* landing page css responsive ------------------------- */

@media all and (min-width: 1600px) and (max-width: 10000px) {



    .common-container,
    .common-container-2,
    .common-container-3,
    .container {
        max-width: 100% !important;
    }

    .reg-btn {
        padding: .87rem 1.5rem;
    }

    .nav-link2 a {
        margin-right: 2rem;
    }

    .nav-link2 {
        margin-left: 1rem;
    }

    .nav-logo {
        /* width: 11rem; */
    }

    .s-cted-mini-form-bx {
        max-width: 166rem;
        margin: 2rem auto 0 auto;
    }

    .neares-tjob-fairs-comp .common-container {
        max-width: 210rem;
    }

    .tick-icon {
        margin-left: 24rem !important;
    }

    .close-thanku-pop-up-btn {
        margin-left: 0 !important;
    }

    .plumb-yr-ag-loc-bx-2 {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1rem;
    }

    .our-ranking-comp {
        padding-inline: 1.65rem;
    }

    .nav-link2 {
        margin-left: 1rem;
    }

}

@media all and (min-width: 1125px) and (max-width: 1323px) {

    html {
        font-size: 56.2%;
    }

    /* ------------ our header comp */

    .nav-link2 {
        margin-left: 1rem;
    }

    .nav-link2 a {
        margin-right: 2rem;
    }

}



@media all and (min-width: 1024px) and (max-width: 1124px) {

    html {
        font-size: 56.2%;
    }

    /* ------------ our header comp */

    .nav-link2 {
        margin-left: 1rem;
    }

    .nav-link2 a {
        margin-right: 2rem;
    }

    .A-flex-box {
        display: none;
    }


    /* ----------------------------- */

    .jober-home-grid-three-bx {
        grid-template-columns: 1fr 1.5fr;
    }

    .center-home-plumb-bx .job-scroll {
        max-height: 50em;
    }

}

/* -------------------------------------- */

@media all and (min-width: 768px) and (max-width: 1023px) {
    .min_card_outer, .min2_sec .min2_outer{
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .min3_sec .min3_outer{
        grid-template-columns: repeat(4, 1fr) !important;
    }
    html {
        font-size: 56.2%;
    }

    /* ------------ our header comp */

    .nav-link2 {
        margin-left: 1rem;
    }

    .nav-link2 a {
        margin-right: 2rem;
    }

    .A-flex-box {
        display: none;
    }

    .language-selct-box {
        display: none;
    }

    /* ------------- our banner comp */

    .s-cted-grid-from {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 2rem;
    }

    .s-cted-inpt-bx-radius:after,
    .s-cted-two-mini-inpt-bx .s-cted-inpt-bx:after {
        display: none;
    }

    .s-cted-inpt-bx-radius,
    .s-cted-search-btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-radius: .78rem;
    }

    .s-cted-two-mini-inpt-bx {
        column-gap: 2rem;
        background-color: #fff;
    }

    /* --------------------- about comp */

    .about-us-job-grid {
        grid-template-columns: repeat(1, 1fr);
    }


    /* ------------------------- */

    .higher-text-main-bx {
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 0 2rem 0;
        gap: 1rem;
    }

    .our-ranking-comp {
        padding-inline: 1.78rem;
    }

    /* ---------------------------- */

    .test-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }

    /* ------------  foot comp*/

    .foot-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
        row-gap: 1rem;
    }

    .gplay-img {
        width: 15rem;
    }

    /* ----------------- contm comp */

    .carer-cont-form-map-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 2rem;
    }

    .cont-car-map-bx {
        height: 50rem;
    }


    /* ----------------------------- */

    .jober-home-grid-three-bx {
        grid-template-columns: 1fr 1.5fr;
    }

    .plumb-yr-ag-loc-bx-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-gap: 1rem !important;
    }


    .all-filt-exp-1-bx:before {
        display: none;
    }

    .all-filt-main-bx {
        width: 100% !important;
        max-width: 100% !important;
    }

    .all-filt-exp-1-bx select {
        width: 100% !important;
    }

    .s-cted-grid-from.grid .grid-two-col {
        background: #fff !important;
    }

    .pos-app-flex-main-bx {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }

    .reg-log-app-flex-btns {
        bottom: 10rem;
    }

    .center-home-plumb-bx .job-scroll {
        max-height: 50em;
    }
}





/* -------------------------------------- */

@media all and (min-width: 320px) and (max-width: 767px) {
    .min_card_outer, .min2_sec .min2_outer, .min3_sec .min3_outer{
        grid-template-columns: repeat(1, 1fr) !important;
    }
    html {
        font-size: 56.2%;
    }

    /* ------------ our header comp */

    .nav-link2 {
        margin-left: 0;
    }

    .nav-link2 a {
        margin-right: 0 !important;
    }
    .register-job-btns{
        justify-content: space-evenly;
    }
    .nav-link2 .reg-btn a {
        width: auto !important;
    }

    .A-flex-box {
        display: none;
    }

    /* .language-selct-box {
        display: none;
    } */

    .nav-lgp {
        position: fixed;
        top: 0;
        left: 0;
        width: 35rem;
        height: 100vh;
        background-color: #fff;
        z-index: 9999;
        border-right: .1rem solid #e5e5e5;
        align-items: flex-start;
        justify-content: flex-start;
        transition: 700ms ease;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-lgp.navactive {
        transform: translateX(0%);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link2 {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        padding-block-start: 13rem;
        padding-block-end: 5rem;
    }

    .nav-link2 li {
        width: 100%;
        padding: 1.4rem 1rem;
        border-bottom: .1rem solid #e2e1e1;
    }
    
    /* .register-job-btns {
        display: none;
    } */
    /* .marathi_a.nav-link2 .reg-btn a{
        margin-right: 0;
        width: auto;
    } */
    /* ------------- our banner comp */

    .s-cted-grid-from {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 2rem;
    }

    .s-cted-inpt-bx-radius:after,
    .s-cted-two-mini-inpt-bx .s-cted-inpt-bx:after {
        display: none;
    }

    .s-cted-inpt-bx-radius,
    .s-cted-search-btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-radius: .78rem;
    }

    .s-cted-two-mini-inpt-bx {
        grid-template-columns: 1fr !important;
        row-gap: 2rem !important;
        background: #fff !important;
        column-gap: 2rem !important;

    }

    .s-cted-text-bx h4 {
        font-size: 2.87rem;
    }

    /* ---------------------------- */

    .top-comp-flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        place-items: center;
    }


    /* --------------------- about comp */

    .about-us-job-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .trendng-job-list-bx:before {
        display: none;
    }

    .job-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        max-width: 35rem;
        margin: 0 auto;
    }

    .trendng-job-list-bx p {
        margin-left: 0;
    }

    .we-have-job-sec {
        padding-right: 0;
    }




    .trending-job-sccroll {
        padding: 0 0;
        /* max-width: 32rem; */
        overflow-x: hidden;
    }

    .we-have-job-sec h3,
    .about-main-bx h3,
    .common-heading h4 {
        font-size: 2.5rem;
    }

    /* ---------------------------- */

    .left-higher-bx {
        flex-direction: column;
        gap: 2rem;
    }

    .hiring-main-bx {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
    }

    .higher-text-main-bx {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }

    .higher-title-bx,
    .hogher-para,
    .higher-aply-btn {
        margin-left: 0;
    }

    /* --------------------------------- */

    .ey-stp-aply-jb-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 2rem;
    }

    .ey-stp-aply-jb-line {
        display: none;
    }

    .ranking-flex {
        flex-direction: column;
        gap: 4rem;
        justify-content: center;
    }

    .ranking-box {
        width: 30rem;
    }

    .rank-img {
        border-radius: 0;
    }

    /* ---------------------------- */

    .test-grid {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 3rem;

    }


    /* ------------ spacing remove  */

    .stay-connted-comp {
        margin-top: 0;
    }

    .s-cted-mini-form-bx {
        margin-top: 1.3rem;
    }

    .hiring-comp {
        margin-top: 0;
        padding: 1rem 1.78rem;
    }

    .about-job-comp {
        margin-top: 0;
    }

    .common-heading span {
        margin-top: 1.5rem !important;
    }

    .stay-connted-main-bx {
        padding: 2rem 2rem;
    }

    .top-comp-flex {
        gap: 2rem;
    }

    .t-comp-bx {
        margin-bottom: 0;
    }

    .job-grid {
        row-gap: 1rem;
    }

    .ey-stp-aply-jb-grid {
        row-gap: 1.5rem;
    }

    .our-ranking-comp {
        margin-top: 0;
    }

    .ranking-flex {
        gap: 1rem;
        padding-block: 3rem;
    }

    .neares-tjob-fairs-comp,
    .client-review-comp {
        margin-top: 0;
    }

    /* ------------  foot comp*/

    .foot-grid {
        grid-template-columns: repeat(1, 1fr);
        column-gap: 3rem;
        row-gap: 1rem;
    }

    .gplay-img {
        width: 15rem;
    }

    .foot-bx:nth-child(3) h5 {
        display: none !important;
    }

    .mail-phone-flex-bx-foot {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .f-logo img {
        width: 15rem;
    }

    .footer-main-box {
        flex-direction: column;
        gap: 1.5rem;
    }

    .foot-list2 {
        margin-top: 0;
    }


    /* ----------------------- pop-up */

    .thanku-popup-main-bx[_ngcontent-yke-c9],
    .thanku-popup-main-bx {
        width: 33rem !important;
        margin-top: 7rem !important;
    }

    .thanku-popup-main-bx div {
        flex-direction: column;
    }

    .close-thanku-pop-up-btn {
        margin: 0 !important;
        margin-left: auto !important;
        margin-bottom: 1rem !important;

    }

    .clint-rev-main-bx {
        height: 30rem;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    /* .thanku-pop-up-sec[_ngcontent-sow-c9]{
        max-height: 58vh !important;
    } */


    /* ------------------ about comp */

    .single-testimonial p {
        padding: 0 0;
    }

    .client-image {
        padding: 1.8rem 0 0 0;
    }

    .contact-grid {
        grid-template-columns: repeat(1, 1fr);
        padding: 2em 2em;
    }

    .next {
        right: 1%;
    }

    .prev {
        right: 88%;
    }

    .career-cont-grid {
        grid-template-columns: repeat(1, 1fr);
    }


    /* ----------------- contm comp */

    .carer-cont-form-map-grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 2rem;
    }

    .cont-car-map-bx {
        height: 50rem;
    }

    .car-name-email-bx {
        grid-template-columns: repeat(1, 1fr);
    }

    /* ----------------------------- */

    .jober-home-grid-three-bx {
        grid-template-columns: repeat(1, 1fr);
    }

    .all-filt-main-bx {
        width: 100% !important;
        max-width: 96% !important;
    }

    .all-filt-exp-1-bx select {
        width: 100% !important;
    }

    .all-filt-exp-1-bx:before {
        display: none;
    }

    .plumb-yr-ag-loc-bx-2 {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 1rem;
    }

    .center-plumb-1-bx {
        flex-direction: column;
        justify-content: center;
        padding: 0;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .recom-main-bx {
        flex-direction: column;
        gap: 1rem;
    }

    .center-home-plumb-main-bx {
        max-width: 30rem;
        margin: 0 auto;
        overflow-x: hidden;
    }

    .comp-imgs-grid-bx {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 2.5rem;
        overflow-x: auto;
        scroll-snap-type: inline mandatory;
    }

    .comp-imgs-grid-bx::-webkit-scrollbar-thumb {
        background-color: transparent !important;
    }

    .comp-imgs-grid-bx::-webkit-scrollbar {
        height: .345rem !important;
    }

    .comp-img-bx {
        border: none;
    }

    .right-home-comp-images-main-bx {
        max-width: 30rem;
        margin: 0 auto;
    }

    /* ----------------------- FaQs  */

    .career-faq-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    /* ------------------------ carrers */

    .career-hiring-bx {
        flex-direction: column;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .car-join-yr-flex-bx {
        gap: 3rem;
    }

    .car-join-yr-left:before {
        display: none;
    }

    .career-hiring-join-sec {
        margin-top: 1rem;
    }

    .career-hiring-join-container {
        padding: 2rem 3.5rem;
    }

    .career-term-cond-main-bx {
        padding: 2rem 2rem;
    }

    .career-condit-sec {
        margin-top: 1rem;
    }

    .rank-img img {
        height: 6.1rem;
    }

    .stay-connted-main-bx:before {
        height: .4rem;
    }


    /* our ham burdger menu css code in header */

    .ham-burger-menu {
        position: relative;
        width: 5rem;
        display: flex;
        flex-direction: column;
        gap: .76rem;
        background-color: var(--primary);
        border-radius: .5rem;
        padding: 1.2rem .87rem;
        cursor: pointer;
    }

    .hm-line {
        position: relative;
        width: 100%;
        height: .13rem;
        transition: 600ms ease;

    }

    .hm-line:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        border-radius: 5rem;
        transition: 600ms ease;

    }

    .ham-burger-menu.hammenuactive .hm-line2 {

        transform: translateX(-20px);
        opacity: 0;

    }

    .ham-burger-menu.hammenuactive .hm-line1 {
        transform: rotate(45deg) translateX(6px) translateY(5px);
    }

    .ham-burger-menu.hammenuactive .hm-line3 {
        transform: rotate(-46deg) translateX(5px) translateY(-5px)
    }

    .pos-app-flex-main-bx {
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }

    .reg-log-app-flex-btns {
        bottom: 10rem;
    }

    .anoth-comp-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .reg-log-app-flex-btns {
        position: relative;
        bottom: 0;
        right: 0;
        left: 0;
        margin-top: 1.5rem;
    }

    .anoth-com-btn {
        width: 11rem;
        font-size: 1rem;
        font-weight: 500;
    }

    .anoth-comp-flex-bx2 {
        gap: 1.5rem;
    }

}



::selection {
    background-color: var(--primary);
    color: #fff;
}


::-webkit-scrollbar {
    width: .564rem;
    height: 0.564rem;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
}



.plus body,
.plus h2,
.plus h1,
.plus p,
.plus li,
.plus a,
.plus h5,
.plus label,
.plus span,
.plus section {
    font-size: 1.5rem !important;
}

.plus h4 {
    font-size: 3.2rem;
}

.plus .s-cted-text-bx h4 {
    font-size: 4.2rem;
}

.minus body,
.minus h2,
.minus h1,
.minus p,
.minus h4,
.minus li,
.minus a,
.minus h5,
.minus label,
.minus span,
.minus section {
    font-size: 12px !important;
}

.minus h4 {
    font-size: 15px !important;
}

/* Toster css */

/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */

/* position */
.toast-center-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%;
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}

.toast-top-left {
    top: 12px;
    left: 12px;
}

.toast-top-right {
    top: 12px;
    right: 12px;
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px;
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}

/* toast styles */
.toast-title {
    font-weight: bold;
}

.toast-message {
    word-wrap: break-word;
}

.toast-message a,
.toast-message label {
    color: #FFFFFF;
}

.toast-message a:hover {
    color: #CCCCCC;
    text-decoration: none;
}

.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 0 1px 0 #ffffff;
    /* opacity: 0.8; */
}

.toast-close-button:hover,
.toast-close-button:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.4;
}

/*Additional properties for button version
   iOS requires the button element instead of an anchor tag.
   If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.toast-container {
    pointer-events: none;
    position: fixed;
    z-index: 999999;
}

.toast-container * {
    box-sizing: border-box;
}

.toast-container .ngx-toastr {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    border-radius: 3px 3px 3px 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    background-size: 24px;
    box-shadow: 0 0 12px #999999;
    color: #FFFFFF;
}

.toast-container .ngx-toastr:hover {
    box-shadow: 0 0 12px #000000;
    opacity: 1;
    cursor: pointer;
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */
.toast-info {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */
.toast-error {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */
.toast-success {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==");
}

/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */
.toast-warning {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==");
}

.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}

.ngx-toastr {
    background-color: #030303;
    pointer-events: auto;
}

.toast-success {
    background-color: #51A351;
}

.toast-error {
    background-color: #BD362F;
}

.toast-info {
    background-color: #2F96B4;
}

.toast-warning {
    background-color: #F89406;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000000;
    opacity: 0.4;
}

/* Responsive Design */
@media all and (max-width: 240px) {
    .toast-container .ngx-toastr.div {
        padding: 8px 8px 8px 50px;
        width: 11em;
    }

    .toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    .toast-container .ngx-toastr.div {
        padding: 8px 8px 8px 50px;
        width: 18em;
    }

    .toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    .toast-container .ngx-toastr.div {
        padding: 15px 15px 15px 50px;
        width: 25em;
    }
}
@media all and (min-width: 200px) and (max-width: 768px) {
    .minister_down_header, .minister_header, .min2_sec{
        width: 100% !important;
        margin: 2% 0% !important;
        padding: 2rem 2rem !important;
    }
    .min2_sec .min2_outer.min2_outerflextwo{
        display: block !important;
    }
    .min2_sec .min2_outer.min2_outerflextwo .min2_card{
        width: 100% !important;
    }
    .min2_sec .min2_outer.min2_outerflextwo .min2_card:not(:first-child){
        margin-top: 1rem;
    }
    .grid_resp.grid-two-col{
        grid-template-columns: 1fr !important;
    }
    .disp_mbl{
        display: none;
    }
}

.marathi_a.nav-link2 a {
    font-size: 1.2rem;
    margin-right: 1.5rem;
}
.marathi_a.nav-link2 .reg-btn a {
    margin-right: 0rem;
    width: auto;
}

/* minister_header */

.minister_header {
    width: 90%;
    margin: 2% 5%;
    margin-top: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 1rem;
    border-radius: 10px;

}

.min_card_outer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.min_card {
    display: flex;
    gap: 0.4rem;
    padding: 1rem;
    align-items: start;
    /* justify-content: space-between; */
    background: var(--secondary);
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
}

.min_card img {
    border-radius: 8px;
    width: 70px;
    min-width: 70px;
    height: 70px;
    max-width: 99px;
}

.min_card_info {
    margin-top: 9px;
}

.min_card .min_card_info h5 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.min_card .min_card_info p {
    font-size: 1.1rem;
    line-height: 18px;
}

.minister_down_header {
    width: 90%;
    margin: 2% 5%;
    margin-top: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 2rem 5rem;
    border-radius: 10px;
    text-align: center;
    background-color: var(--primary);
}

.minister_down_header h4 {
    color: yellow;
}

.minister_down_header h5 {
    color: #fff;
}

/* Minister section 2 */

.min2_sec {
    width: 90%;
    margin: 2% 5%;
    margin-top: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 2rem;
    border-radius: 10px;
    background-color: #fff;
}

.min2_sec .min2_outer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.min2_sec .min2_outer.min2_outerflextwo {
    display: flex;
    justify-content: space-evenly;
    
}
.min2_sec .min2_outer.min2_outerflextwo .min2_card {
    width: 25%;
}

.min2_sec .min2_outer .min2_card {
    background-color: var(--primary);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.min2_sec .min2_outer .min2_card .min2_card_down {
    margin-top: 9rem;
    background-color: var(--secondary);
    width: 100%;
    min-height: 20rem;
    border-bottom: 3px solid var(--primary);
    text-align: center;
}

.min2_sec .min2_outer .min2_card .min2_card_down img {
    width: 110px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    margin-top: -5rem;
    margin-bottom: 2%;
}

.min2_sec .min2_outer .min2_card .min2_card_down h5 {
    margin-top: 2%;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

.min2_sec .min2_outer .min2_card .min2_card_down p {
    font-weight: 600;
    text-transform: uppercase;
    padding-inline: 30%;
    font-size: 12px;
}
.jobs_for_section .job-icon-bx i, .howitworks_sec i{
    font-size: 5rem;
    color: var(--primary);
}

/* Minister section 3 */

.min3_sec {
    width: 90%;
    margin: 2% 5%;
    margin-top: 0;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 2rem;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 5rem;
}
.min3_sec h4{
    text-align: center;
    margin-bottom: 2rem;
    text-transform: capitalize;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
}
.min3_sec .min3_outer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.min3_sec .min3_outer img{
    width: 100%;
    height: 185px;
}