body {
    margin: 0px;
    padding: 0px;
    /* font-family: "Montserrat", sans-serif; */
    /* font-family: "Raleway", sans-serif; */
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-family: "Raleway", sans-serif;

}

a,
p,
ul,
li {
    margin: 0px;
    padding: 0px;
    font-family: "Montserrat", sans-serif;
}






a {
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease-in;
}

li,
p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 10px;
}

li {
    list-style: none;
    padding: 0px;
}

img {
    height: auto;
    max-width: 100%
}


input,
select,
textarea {
    width: 100%
}

input[type=checkbox] {
    height: auto;
    width: auto
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 0
}

section{
    overflow: hidden;
}



:root {
    --color-black: #000;
    --color-white: #fff;
    --color-skyblue: #1e87f0;
    --color-darkblue: #0f6ecd;
    --color-green: #bfcd09;
    --color-darkgreen: #94c93d;
    --color-cream: #faf6eb;
    --color-greenlight: #00cd98;
    --fs-65: 65px;
    --lh-75: 75px;
    --fs-40: 40px;
    --lh-48: 48px;
    --fs-30: 30px;
    --lh-35: 35px;
    --fs-20: 20px;
    --lh-32: 32px;
}


/* HEADER  */


header.custome-header {
    position: sticky;
    top: 0;
    padding: 20px 0px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    z-index: 11;
    background: var(--color-white);
    background: var(--color-black);
    color: var(--color-white);
}

.grid-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

ul.navlinks {
    display: flex;
    align-items: center;
    gap: 30px;
}


li.menu-item-has-children {
    position: relative;
}


/* ul.sub-menu {
    position: absolute;
    padding-top: 35px;
    top: 18px;
    left: 0;
    width: 260px;
    animation: slideup 0.5s ease;
    display: none;
    background: var(--color-green);
} */


ul.sub-menu {
    position: absolute;
    padding-top: 40px;
    top: 18px;
    left: 0;
    width: 260px;
    animation: slideup 0.5s ease;
    display: none;
}

li.menu-item-has-children .sub-menu li .sub-menu {
    left: 100%;
    top: 0;
    padding-top: 0px;
}

ul.sub-menu li {
    padding: 8px 10px;
    background: var(--color-darkgreen);
}

li.menu-item-has-children ul.sub-menu li a {
    color: var(--color-black);
}

li.menu-item-has-children ul.sub-menu li a:hover{
    color: var(--color-white);
}

ul.sub-menu li a {
    font-size: 15px;
    font-weight: 400;
}

/* ul.sub-menu {
    display: none;
    animation: submenuanimates 0.5 ease-in-out;
} */

.sub-menus {
    width: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 21px;
    left: 50%;
    transform: translate(-50%, 0%);
    padding-top: 20px;
    display: none;
    animation: submenuanimates 0.4s ease-in-out;

}




@keyframes submenuanimates {
    0% {
        clip-path: polygon(98% 0, 100% 0, 100% 100%, 98% 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);

    }
}



.sub-menus ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 45px 20px;
}


ul.navlinks li a {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--color-white);
}

.menu-iconmain {
    display: none;
}


.login-data a {
    margin: 0;
    background: var(--color-skyblue);
    border-radius: 15px;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1;
    padding: 12px 30px;
    border: none;
    transition: all .4s ease-in-out;
}

.login-data a:hover {
    background: var(--color-green);
}

.logo-main {
    max-width: 120px;
    width: 100%;
}




/* HEADER END */


/* HOME SEC  */


.main-title {
    font-size: var(--fs-65);
    font-weight: 700;
    line-height: var(--lh-75);
    padding-bottom: 20px;
    letter-spacing: 1px;
}

.homedata-holder .main-title {
    text-transform: capitalize;
}

.blue-color {
    color: var(--color-skyblue);
}

section.mainhome-sec {
    background: var(--color-cream);
    padding: 80px 0px;
}

.svg-data img {
    width: 100%;
}

.homedata-holder {
    max-width: 81%;
    width: 100%;
}

.universal-anchor a {
    display: block;
    background: var(--color-black);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    padding: 15px 20px;
    text-align: center;
    text-transform: uppercase;
}

.universal-anchor.black a:hover {
    background: #697279;
}

.universal-anchor.blue a {
    background: var(--color-skyblue);
}

.universal-anchor.blue a:hover {
    background: var(--color-darkblue);
}

.grid-linksss {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

.grid-linksss .universal-anchor {
    width: 100%;
}



/* HOME SEC END */


/* CAREER SEC  */

span.minibtn {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    background: #d1e7ff;
    color: var(--color-darkblue);
    max-width: fit-content;
    padding: 5px 30px;
    border-radius: 39px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}


.sub-titles {
    font-size: var(--fs-40);
    font-weight: 500;
    line-height: var(--lh-48);
    letter-spacing: 1px;
    padding-bottom: 20px;
}

.title-catreers {
    max-width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.title-catreers .sub-titles {
    padding-top: 40px;
    padding-bottom: 0px;
}

.main-carrerbox {
    max-width: 23%;
    width: 100%;
    text-align: center;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.14);
    border-radius: 20px;
    transition: 0.5s linear !important;
}

.main-carrerbox:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.mini-title {
    font-size: var(--fs-20);
    font-weight: 700;
    line-height: var(--lh-32);
}

.inside-boxcareer p {
    color: #606574;
}

.icon-career {
    max-width: 128px;
    width: 100%;
    margin: 0 auto;
}

.btm-datacarre {
    padding-top: 20px;
}

.inside-boxcareer {
    max-width: 70%;
    margin: 0 auto;
    padding: 40px 0px;
}

.inside-boxcareer .mini-title {
    text-transform: capitalize;
    padding-bottom: 20px;
}

.gridcareer-box {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 50px;
}

section.career-secmain {
    padding: 80px 0px;
}


/* CAREER SEC END */



/* JOB SEEKERS  */

.round-btn a {
    border-radius: 15px;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1;
    padding: 18px 52px;
    /* border: none; */
    transition: all .4s ease-in-out;
    background: #000;
    border-radius: 43px;
    text-transform: uppercase;
}

.round-btn a:hover {
    background: var(--color-greenlight);
}

.jobseekers-data .sub-titles {
    text-transform: capitalize;
}

.jobseekers-data {
    max-width: 85%;
    margin: 0 auto;
    padding-bottom: 40px;
}

.jobseekers-data span.minibtn {
    margin-bottom: 20px;
    display: inline-block;
}

.jobseekers-data .round-btn {
    padding-top: 30px;
}

section.jobseekers-sec {
    background: #f1f3f7;
    padding-top: 80px;
}

.jobseekrs-image {
    max-width: 775px;
    width: 100%;
}




/* JOB SEEKERS END */




/* PREFRED IMAGES  */

.prefred-image img {
    width: 100%;
}

.prfered-title {
    text-align: center;
}

.prfered-title .sub-titles {
    text-transform: capitalize;
}

.prefred-image {
    padding-top: 40px;
}

section.prefred-choisesec {
    padding: 80px 0px;
}

span.minibtn strong {
    font-weight: 700;
}

.testi-holder span.minibtn {
    display: inline-block;
    margin-bottom: 30px;
}

.testi-holder {
    max-width: 88%;
    width: 100%;
}

/* PREFRED IMAGES END */




/* TESTIMONIAL SEC  */

.client-imagess img {
    max-width: 130px;
    width: 100%;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    margin-top: -70px;
    object-fit: cover;
}

.client-imagess {
    padding-bottom: 20px;
}

.testi-holders {
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
    border-radius: 15px;
    transition: 0.35s linear;
    background: var(--color-white);
    position: relative;
    z-index: 1;
}

.testi-holders:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.three-zero {
    font-size: var(--fs-30);
    font-weight: 700;
    line-height: var(--lh-35);
}

.testi-holders .three-zero {
    padding-bottom: 20px;
}

img.overlay-images {
    position: relative;
    top: 40px;
    z-index: -1;
    opacity: 0.4;
    transition: 0.3s linear;
}

.slider-btmdataa {
    max-width: 80%;
    margin: 0 auto;
}

.testi-holders:hover img.overlay-images {
    opacity: 1;
}

.slider-testi .swiper-wrapper {
    margin-top: 70px;
    margin-bottom: 40px;
}

.slider-testi {
    max-width: 810px;
    /* margin: 0 auto; */
    width: 100%;
    margin-left: auto;
}



section.candiatetestimonial-sec {
    background: #f6f8fa;
    padding: 80px 0px;
}





/* TESTIMONIAL SEC END */



/* EMPLOYEE DATA MAIN SEC  */

.grid-emloyeess {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.six-zero {
    font-size: var(--fs-65);
    font-weight: 700;
    line-height: var(--lh-75);
}

section.employeedata-sec {
    background: #0a132a;
    color: #fff;
    padding: 80px 0px;
    overflow: hidden;
}

.geid-data p {
    font-family: "Montserrat", sans-serif;
    font-size: var(--fs-65);
    font-weight: 700;
    line-height: var(--lh-75);
}

.geid-data {
    display: flex;
    align-items: start;
}

.geid-data .six-zero {
    font-family: "Montserrat", sans-serif;
}

.data-limit {
    font-size: 20px;
}

.data-limit {
    font-size: 20px;
    font-weight: 500;
}

.no-emplyoee {
    max-width: fit-content;
    width: 100%;
    position: relative;
}

.no-emplyoee::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background: #6f6f6f;
    top: 0;
    right: -125px;
}

.grid-emloyeess .no-emplyoee:last-child::after {
    display: none;
}

section.companymainslider-sec {
    padding: 80px 0px;
}

.image-logocompany {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
}

.slider-companybrnad .swiper-wrapper {
    align-items: center;
}

section.employeer-sec .sub-titles {
    padding-bottom: 30px;
}

.grid-hirde-data {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eeeff0;
    padding: 20px;
    margin-bottom: 20px;
}

.icon-hired {
    max-width: fit-content;
    width: 100%;
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hired-datass p {
    font-size: 16px;
    padding: 0px;
    font-weight: 400;
}

.grid-hiringdata {
    padding-top: 50px;
}

section.employeer-sec {
    padding-bottom: 50px;
}


/* EMPLOYEE DATA MAIN SEC END */





/* CUSTOME FOOTER  */


.topfooterdata {
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 20px;
    padding: 70px 80px;
}



.update-data span.minibtn {
    background: #2e58ff;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
}

.grid-formdata {
    display: flex;
    align-items: center;
    width: 100%;
    background: #384d43;
    padding: 10px 10px 10px 40px;
    border-radius: 50px;
    max-width: 645px;
    width: 100%;
    margin-left: auto;
}

.submt-btns {
    max-width: 180px;
    width: 100%;
}

.innputfieldss {
    width: 100%;
}

.innputfieldss input {
    background: transparent;
    border: none;
    color:var(--color-white);
    font-size: 16px;
}

.innputfieldss input::-webkit-input-placeholder {
    color: var(--color-black);
}

input.submt-databtn {
    background: #2e58ff;
    padding: 14px 20px;
    border: none;
    color:var(--color-white);
    border-radius: 43px;
    transition: 0.3s ease-in;
}

input.submt-databtn:hover{
    background: var(--color-black);
}

.btmfooterholder{
    background: #0a132a;
    color: var(--color-white);
}

.logomains {
    max-width: 170px;
    width: 100%;
}

.gridmain-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 0px;
    border-bottom: 1px solid #606574;
}

ul.footer-navlists {
    display: flex;
    align-items: center;
    gap: 40px;
}

ul.socialmedia-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.footer-navlists li a,
.copyright-data p,
ul.terms-list li a {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    list-style: 20px;
    padding: 0px;
}

ul.terms-list li a:hover {
    color: #2e58ff;
}

ul.socialmedia-list li a {
    transition: 0.3s ease-in;
}

ul.socialmedia-list li a {
    color: #6c717f;
}

ul.socialmedia-list li a:hover {
    color: #2e58ff;
}

.copyrights-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 0px;
}

ul.terms-list {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

ul.terms-list li {
    position: relative;
}

ul.terms-list li::after {
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    right: -20px;
    width: 1px;
    background: var(--color-white);
}

ul.terms-list li:last-child::after {
    display: none;
}

.copyright-data p a {
    color: #0f9ace;
}

.copyright-data p a:hover {
    color: #0984b1;
}

footer.custome-fooyters{
    position: relative;
    z-index: 1;
    overflow: hidden;
}

footer.custome-fooyters::after {
    position: absolute;
    content: "";
    background: #0a132a;
    initial-letter: 0;
    z-index: -1;
    height: 100%;
    top: 20%;
    right: 0;
    left: 0;
    bottom: 0;
}



/* CUSTOME FOOTER END */

.margin-top{
    display: none;
}