a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

body, html {
    scroll-behavior: smooth;
    font-family: 'Lexend Deca', sans-serif;
}

ol, ul {
    list-style: none;
    padding: 0;
}

blockquote, q {
    quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

sup {
    vertical-align: super;
    font-size: smaller;
}

.container, .container-fluid {
    padding: 0;
}

.container .row, .container-fluid .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

input, textarea {
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
}

a, button, input, select, textarea {
    font-family: 'Lexend Deca', sans-serif;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.eqlh {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }

}

.modal.show .modal-dialog {
    transform: none;
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: .8;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px);
}

.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px);
}

.modal-footer>* {
    margin: .25rem;
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 300px;
    }

}

@media (min-width:992px) {
    .modal-lg, .modal-xl {
        max-width: 800px;
    }

}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px;
    }

}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-fullscreen .modal-header {
    border-radius: 0;
}

.modal-fullscreen .modal-body {
    overflow-y: auto;
}

.modal-fullscreen .modal-footer {
    border-radius: 0;
}

@media (max-width:575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }

}

@media (max-width:767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }

}

@media (max-width:991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }

}

@media (max-width:1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }

}

@media (max-width:1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }

}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate;
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: .25s all linear;
}

header.fixed {
    background: #fff;
    transition: .25s all linear;
    box-shadow: 0 0 23px 0 #d9e4f3;
}

header .navbar {
    padding: 15px 0;
}

header .navbar-toggler {
    display: none;
}

header .navbar-brand {
    display: inline-block;
    vertical-align: middle;
    width: 162px;
}

header .navbar-brand .color-logo {
    display: none;
}

header.fixed .navbar-brand .white-logo {
    display: none;
}

header.fixed .navbar-brand .color-logo {
    display: block;
}

header.fixed .navigation-bar {
    margin-top: 14px;
    transition: .25s all linear;
}

header .navigation-bar {
    width: 86%;
    display: inline-block;
    float: right;
    vertical-align: middle;
    text-align: right;
    margin-top: 7px;
    transition: .25s all linear;
}

header .navigation-bar .navbar-nav {
    margin-left: 30px;
}

header .navigation-bar .navbar-nav .nav-item {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
    position: relative;
}

header .navigation-bar .navbar-nav .nav-item .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    height: auto;
    background: #fff;
    padding: 0;
    border: 1px solid #eee;
    border-bottom: 0;
    width: 200px;
    border-radius: 20px;
    text-align: left;
    display: none;
}

header .navigation-bar .navbar-nav .nav-item:nth-child(1) .nav-link, header .navigation-bar .navbar-nav .nav-item:nth-child(2) .nav-link, header .navigation-bar .navbar-nav .nav-item:nth-child(3) .nav-link, header .navigation-bar .navbar-nav .nav-item:nth-child(6) .nav-link, header .navigation-bar .navbar-nav .nav-item:nth-child(7) .nav-link {
    display: inline-block;
    vertical-align: middle;
    padding-right: 4px;
}

header .navigation-bar .navbar-nav .nav-item:nth-child(1):after, header .navigation-bar .navbar-nav .nav-item:nth-child(2):after, header .navigation-bar .navbar-nav .nav-item:nth-child(3):after, header .navigation-bar .navbar-nav .nav-item:nth-child(6):after, header .navigation-bar .navbar-nav .nav-item:nth-child(7):after {
    content: ' \276E';
    font-size: 14px;
    color: #2a2a2a;
    transform: rotate(-90deg);
    display: inline-block;
    vertical-align: middle;
}

header .navigation-bar .navbar-nav .nav-item:nth-child(1):hover:after, header .navigation-bar .navbar-nav .nav-item:nth-child(2):hover:after, header .navigation-bar .navbar-nav .nav-item:nth-child(3):hover:after, header .navigation-bar .navbar-nav .nav-item:nth-child(6):hover:after, header .navigation-bar .navbar-nav .nav-item:nth-child(7):hover:after {
    color: #fd4c5c;
}

header .navigation-bar .navbar-nav .nav-item:nth-last-child(2):after {
    content: '';
}

header .navigation-bar .navbar-nav .nav-item .submenu a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #2a2a2a;
    display: block;
    padding: 10px;
    text-decoration: none;
    transition: .25s all linear;
    text-transform: capitalize;
}

header .navigation-bar .navbar-nav .nav-item .submenu a:hover {
    background: #fd4c5c;
    color: #fff;
    transition: .25s all linear;
}

header .navigation-bar .navbar-nav .nav-item .submenu a:first-child {
    border-radius: 20px 20px 0 0;
}

header .navigation-bar .navbar-nav .nav-item .submenu a:last-child {
    border-radius: 0 0 20px 20px;
}

header .navigation-bar .navbar-nav .nav-item.active .nav-link {
    color: #fd4c5c;
}

header .navigation-bar .navbar-nav .nav-item.active:nth-child(1):after, header .navigation-bar .navbar-nav .nav-item.active:nth-child(2):after, header .navigation-bar .navbar-nav .nav-item.active:nth-child(3):after, header .navigation-bar .navbar-nav .nav-item.active:nth-child(6):after, header .navigation-bar .navbar-nav .nav-item.active:nth-child(7):after {
    color: #fd4c5c;
}

header .navigation-bar .navbar-nav .nav-item:last-child {
    margin-right: 0;
}

header .navigation-bar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #000b33;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    padding: 12px;
    font-family: 'Lexend Deca', sans-serif;
    display: block;
    transition: .25s all linear;
}

header .navigation-bar .navbar-nav .nav-item .nav-link svg {
    width: 15px;
    height: 15px;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

header .navigation-bar .navbar-nav .nav-item .nav-link.active, header .navigation-bar .navbar-nav .nav-item .nav-link:hover {
    color: #fd4c5c;
}

header .navigation-bar .navbar-nav .login-request-demo {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

header .navigation-bar .navbar-nav .login-request-demo a {
    text-decoration: none;
}

header .navigation-bar .navbar-nav .login-request-demo a.login-btn {
    padding: 16px 20px;
    border: 2px solid #696969;
    border-radius: 6px;
    background: #fff;
    color: #696969;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    transition: .25s all linear;
}

header .navigation-bar .navbar-nav .login-request-demo a.login-btn:hover {
    background: #696969;
    color: #fff;
    border-color: #696969;
    transition: .25s all linear;
}

header .navigation-bar .navbar-nav .nav-item:nth-last-child(1) .nav-link {
    padding: 11px 20px;
    border: 2px solid #03C3F1;
    border-radius: 6px;
    background: #03C3F1;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    transition: .25s all linear;
}

header .navigation-bar .navbar-nav .nav-item:nth-last-child(1) .nav-link:hover {
    background: #fff;
    color: #03C3F1;
    border-color: #03C3F1;
    transition: .25s all linear;
}

header .navigation-bar .navbar-nav .login-request-demo a.request-demo {
    padding: 16px 20px;
    border: 2px solid #fd4c5c;
    border-radius: 6px;
    background: #fff;
    color: #fd4c5c;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    transition: .25s all linear;
}

header .navigation-bar .navbar-nav .login-request-demo a.request-demo:hover {
    background: #fd4c5c;
    color: #fff;
    border-color: #fd4c5c;
    transition: .25s all linear;
}

header.white-header {
    background: #fff;
    transition: .25s all linear;
}

header .navigation-bar .navbar-nav .nav-item {
    transition: 0.25s all linear;
}

header .navigation-bar .navbar-nav .nav-item .submenu {
    position: absolute;
    top: 98%;
    left: -185px;
    background: #0c2f6f;
    padding: 0;
    border-bottom: 0;
    width: 630px;
    border-radius: 0;
    text-align: left;
    border: 0;
    display: none;
    transition: 0.25s all linear;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-cut-arrow {
    position: absolute;
    top: -1px;
    left: 32%;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-cut-arrow img {
    display: block;
}

header .navigation-bar .navbar-nav .nav-item .submenu .left-blue-color {
    background: #03286c;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-blue-color {
    background: #001d51;
}

header .navigation-bar .navbar-nav .nav-item .submenu .left-side-part-nevigation {
    padding: 30px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu h5 {
    padding: 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu ul li {
    margin-bottom: 10px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu ul li:last-child {
    margin-bottom: 0;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu ul li a {
    padding: 0;
    background: transparent;
    color: #fff;
    margin-bottom: 0;
    font-size: 16px;
    transition: 0.25s all linear;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu ul li a:hover {
    color: #fd4c5c;
    transition: 0.25s all linear;
}

header .navigation-bar .navbar-nav .nav-item .submenu a:first-child, header .navigation-bar .navbar-nav .nav-item .submenu a, header .navigation-bar .navbar-nav .nav-item .submenu a:last-child, header .navigation-bar .navbar-nav .nav-item .submenu a:first-child, header .navigation-bar .navbar-nav .nav-item .submenu a:last-child {
    border-radius: 0;
}

header .navigation-bar .navbar-nav .nav-item .submenu a {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu {
    padding: 25px 0;
    border-bottom: 1px solid #0077ac;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu:first-child {
    padding-top: 0;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu p {
    color: #eceff8;
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    margin-bottom: 16px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .links-btn {
    padding: 4px 10px;
    background: transparent;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: #00c0ef;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.25s all linear;
    line-height: 17px;
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    border: 1px solid #00c0ef;
    display: inline-block;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .links-btn:hover {
    color: #fff;
    background: #00c0ef;
    border-color: #00c0ef;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .right-content h2 {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    display: block;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .right-content p {
    margin-bottom: 0;
    color: #fff;
    font-size: 12px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonial-show {
    margin-bottom: 16px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation {
    padding: 30px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .logo-on-main {
    margin-bottom: 20px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .logo-on-main a {
    background: transparent;
    color: #fff;
    padding: 0;
    margin: 0;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .logo-on-main a img {
    width: 117px;
    display: block;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation p {
    font-size: 14px;
    line-height: 19px;
    color: #fff;
    font-weight: 400;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .experience-nexus {
    padding: 25px;
    border: 1px solid #0070a2;
    border-radius: 20px;
    margin-top: 30px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .experience-nexus h4 {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 14px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .experience-nexus p {
    font-size: 14px;
    line-height: 19px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .experience-nexus .get-started {
    padding: 0;
    background: transparent;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: #01aed9;
    text-transform: capitalize;
    border-bottom: 1px solid #01aed9;
    display: inline-block;
    transition: 0.25s all linear;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .experience-nexus .get-started:hover {
    color: #fd4c5c;
    border-color: #fd4c5c;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .top-menu {
    border-bottom: 0;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .grapic-image {
    margin-top: 0;
    text-align: center;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .grapic-image.about-us-img {
    margin-bottom: 30px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .logo-on-main {
    margin-bottom: 0;
    margin-top: 142px;
    text-align: right;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .grapic-image img {
    border-radius: 20px;
    display: block;
    width: 100%;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar {
    padding-top: 25px;
    border-top: 1px solid #0077ac;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar h5 {
    padding: 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
    color: #eceff8;
    font-size: 11px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar .testimonial-show h5 {
    color: #eceff8;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 16px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar .testimonial-show img {
    display: block;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar .testimonial-show p svg {
    width: 15px;
    height: 15px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar .testimonial-show p svg path {
    fill: #fff;
}

header .navigation-bar {
    text-align: left;
}

header .navigation-bar .navbar-nav .nav-item .nav-link {
    padding: 37px 0;
    font-size: 18px;
}

header .navbar {
    padding: 0;
}

header .navigation-bar .navbar-nav .nav-item .sub-menu .sub-to-submenu {
    position: absolute;
    left: 99%;
    background: #1b2238;
    width: 374px;
    height: 100%;
    top: 0;
    display: none;
}

header .navigation-bar .navbar-nav .nav-item .sub-menu .list-main:hover .sub-to-submenu {
    display: block;
}

header .navigation-bar .navbar-nav .nav-item:nth-child(6):after, header .navigation-bar .navbar-nav .nav-item:nth-child(7):after {
    display: none;
}

header .navigation-bar .navbar-nav .nav-item.right-side-menu {
    margin-left: 23%;
}

header .navigation-bar .navbar-nav .nav-item.right-side-menu.smallsize .nav-link {
    font-size: 16px;
}

header .navigation-bar .navbar-nav .nav-item.right-side-menu.smallsize .nav-link {
    font-size: 16px;
}

header .navbar-brand {
    padding: 15px 0;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonials.bright-blue {
    border: 3px solid #00b5e2;
    border-radius: 30px;
    background: #fff;
    padding: 13px;
    border-radius: 15px;
    position: relative;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonials .double-quotes {
    position: absolute;
    margin: auto;
    text-align: center;
    top: auto;
    left: auto;
    right: 13px;
    width: 62px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonials .testimonials-details {
    margin-top: 0;
    text-align: center;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonials .testimonials-details .testimonials-logo {
    width: 73px;
    height: 73px;
    border-radius: 100%;
    border: 2px solid #f1f1f1;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    border: none;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonials .testimonials-details .testimonials-logo img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonials .row.img-reverse .col-12.col-lg-10 {
    padding-left: 0;
    text-align: left;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonials p {
    color: #606060;
    min-height: auto;
    line-height: 26px;
    padding-left: 0;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonials .right-content {
    margin-top: 17px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .top-menu .testimonials .right-content h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

header .navigation-bar .navbar-nav .nav-item .submenu.products-navigation .top-menu h5 {
    color: #01aed9;
}

header .navigation-bar .navbar-nav .nav-item .submenu.products-navigation .top-menu h5 a {
    padding: 0;
    font-size: 16px;
    color: #01aed9;
    margin-bottom: 15px;
    font-weight: 600;
    transition: 0.25s all linear;
}

header .navigation-bar .navbar-nav .nav-item .submenu.products-navigation .top-menu h5 a:hover {
    color: #fd4c5c;
    background: transparent;
    transition: 0.25s all linear;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .grapic-image.product-img {
    margin-bottom: 30px;
}

header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .logo-on-main.resorces-top-menu-logo {
    margin-bottom: 0;
    margin-top: 29px;
}

header .navigation-bar .navbar-nav {
    margin-left: 30px;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.slick-slider {
    width: 100%;
    margin: 0;
}

.eqlh {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.float-left {
    float: left;
}

.clear-both {
    clear: both;
}

.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    padding: 0px;
    box-sizing: border-box;
    background: transparent;
    height: 100px;
    box-shadow: none;
}

.header-main {
    background-color: transparent;
    padding: 0;
    border-radius: 4px;
    height: 100px;
    width: 100%;
}

.header .logo {
    padding: 6px 0px;
    width: 190px;
    float: left;
    margin-right: 40px;
}

.header .logo img {
    width: 100%;
}

.header .logo a {
    font-size: 30px;
    text-transform: capitalize;
    color: #e91e63;
    font-weight: 600;
}

.header .nav-menu {
    padding: 0 15px;
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .menu>.menu-item {
    display: inline-block;
    position: relative;
    padding: 0;
}

.menu-active {
    border-bottom: 3px solid #4d8546 !important;
}

.header .menu>.menu-item>a {
    display: block;
    padding: 35px 12px;
    color: #000b33;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-size: 18px;
    text-decoration: none;
    line-height: 1.6;
    border-bottom: 3px solid transparent;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    font-family: 'Lexend Deca', sans-serif;
}

.header .menu>.menu-item>a:hover {
    color: #fd4c5c;
}

.header .menu>.menu-item>a .plus {
    border: solid #626262;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 6px;
    transform: rotate(45deg);
}

.header .menu>.menu-item>a:hover .plus {
    border-color: #fd4c5c;
}

.header .menu>.menu-item>a .plus:after {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item>.sub-menu {
    box-shadow: 0px 0 10px rgb(0 0 0 / 20%);
    position: absolute;
    left: -89px;
    top: 100%;
    background-color: #ffffff;
    padding: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    background: #0c2f6f;
    padding: 0;
    border-bottom: 0;
    width: 630px;
}

.header .menu>.menu-item>.sub-menu .submenu {
    position: relative;
}

.header .menu>.menu-item>.sub-menu .submenu .top-cut-arrow {
    position: absolute;
    top: -7px;
    left: -55%;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.header .menu>.menu-item>.sub-menu .submenu .left-blue-color {
    background: #03286c;
}

.header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation {
    padding: 24px;
}

.header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu {
    padding: 25px 0;
    border-bottom: 1px solid #0077ac;
}

.header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu:first-child {
    padding-top: 0;
}

.header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu h5 {
    padding: 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu p {
    color: #eceff8;
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
    margin-bottom: 16px;
}

.header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu .links-btn {
    padding: 4px 10px;
    background: transparent;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: #00c0ef;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.25s all linear;
    line-height: 17px;
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    border: 1px solid #00c0ef;
    display: inline-block;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu h5 {
    padding: 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu .links-btn {
    padding: 4px 10px;
    background: transparent;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: #00c0ef;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.25s all linear;
    line-height: 17px;
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    border: 1px solid #00c0ef;
    display: inline-block;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu p {
    margin-bottom: 16px;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar {
    padding-top: 25px;
    border-top: 1px solid #0077ac;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar a {
    text-decoration: none;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar h5 {
    padding: 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu .links-btn:hover {
    color: #fff;
    background: #00c0ef;
    border-color: #00c0ef;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu {
    padding: 0 0 25px;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show a {
    text-decoration: none;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show h5 {
    color: #eceff8;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 6px;
    margin-top: 6px;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
    color: #eceff8;
    font-size: 11px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show p svg {
    width: 15px;
    height: 15px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show .right-content .links-btn {
    padding: 4px 10px;
    background: transparent;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: #00c0ef;
    text-transform: capitalize;
    display: inline-block;
    transition: 0.25s all linear;
    line-height: 17px;
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    border: 1px solid #00c0ef;
    display: inline-block;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar:hover .testimonial-show .right-content .links-btn {
    color: #fff;
    background: #00c0ef;
    border-color: #00c0ef;
}

.header .menu>.menu-item>.sub-menu .submenu .right-blue-color {
    background: #001d51;
}

.header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
    padding: 30px;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .grapic-image {
    margin-top: 0;
    text-align: center;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .grapic-image.about-us-img {
    margin-bottom: 30px;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .grapic-image img {
    border-radius: 20px;
    display: block;
    width: 100%;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation p {
    font-size: 14px;
    line-height: 19px;
    color: #fff;
    font-weight: 400;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .grapic-image.product-img {
    margin-bottom: 30px;
}

.header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .logo-on-main {
    margin-bottom: 0;
    margin-top: 59px;
    text-align: right;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu .right-content h2 {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    display: block;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu .right-content p {
    margin-bottom: 0;
    color: #fff;
    font-size: 12px;
}

.header .menu>.menu-item>.sub-menu .submenu .logo-on-main a img {
    width: 117px;
    display: block;
}

.header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu:last-child {
    border: 0;
    padding-bottom: 0;
}

.header .menu>.menu-item>.sub-menu .submenu.products-navigation .top-menu h5 {
    color: #01aed9;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu ul li {
    margin-bottom: 10px;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu ul li a {
    padding: 0;
    background: transparent;
    color: #fff;
    margin-bottom: 0;
    font-size: 16px;
    transition: 0.25s all linear;
    text-decoration: none;
}

.header .menu>.menu-item>.sub-menu .submenu .top-menu ul li a:hover {
    color: #fd4c5c;
    transition: 0.25s all linear;
}

@media(min-width:992px) {
    .header .menu>.menu-item-has-children:hover>.sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header .menu>.menu-item-has-children:hover>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }

}

.header .menu>.menu-item>.sub-menu>.menu-item {
    display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a {
    display: block;
    margin: 12px 20px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-family: ITCAvantGardeStd-Demi;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    padding-bottom: 11px;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:before {
    display: block !important;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 6px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #4d8546;
}

.header .menu>.menu-item>.sub-menu>.menu-item:hover>a:before {
    width: 10px;
    margin-right: 5px;
}

.header .open-nav-menu {
    height: 34px;
    width: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .open-nav-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: #000000;
    position: relative;
}

.header .open-nav-menu span:before, .header .open-nav-menu span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    box-sizing: border-box;
}

.header .open-nav-menu span:before {
    top: -7px;
}

.header .open-nav-menu span:after {
    top: 7px;
}

.header .close-nav-menu {
    height: 40px;
    width: 40px;
    margin: 0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.header .close-nav-menu img {
    width: 16px;
}

.header .menu-overlay {
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.right-header-part .smallsize {
    display: inline-block;
    vertical-align: middle;
}

.right-header-part .searchbar {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    position: relative;
    margin-right: 16px;
}

.right-header-part .searchbar input {
    padding: 11px 51px 11px 11px;
    border: 1px solid #ddd;
    font-size: 15px;
    border-radius: 6px;
}

.right-header-part .searchbar .button-part {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #657274;
    border: 0;
    color: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.right-header-part .smallsize .login-btn {
    font-size: 16px;
    padding: 37px 0;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    font-family: 'Lexend Deca', sans-serif;
    display: block;
    transition: .25s all linear;
    color: #000b33;
    margin-right: 25px;
}

.right-header-part .smallsize .login-btn:hover {
    color: #fd4c5c;
}

.right-header-part .smallsize .contact-us-btn {
    padding: 11px 20px;
    border: 2px solid #03C3F1;
    border-radius: 6px;
    background: #03C3F1;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    transition: .25s all linear;
}

.right-header-part .smallsize .contact-us-btn:hover {
    background: #fff;
    color: #03C3F1;
    border-color: #03C3F1;
    transition: .25s all linear;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    margin-left: 5px;
    float: right;
    left: 0;
}

@media(max-width:991px) {
    .header .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .header .nav-menu {
        height: 86vh !important;
        overflow-y: scroll !important;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar, .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .logo-on-main {
        display: none;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
        display: none;
    }

    .why-labor-edge .mobile-image-show, .why-labor-edge .mobile-image-show img {
        display: block !important;
    }

    .why-labor-edge .right-side-content {
        margin-top: 30px;
        display: none;
    }

    .header .nav-menu {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .right-header-part {
        margin-top: 20px;
        margin-left: 10px;
    }

    .header .nav-menu {
        position: fixed;
        right: -100%;
        visibility: hidden;
        width: 100%;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #fff;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }

    .header .nav-menu.open {
        visibility: visible;
        right: 0px;
    }

    .header .menu>.menu-item {
        display: block;
        margin: 0;
    }

    .header .menu>.menu-item-has-children>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .menu>.menu-item>a {
        color: #000b33;
        padding: 12px 15px !important;
        border-bottom: 1px solid #ddd;
    }

    .header .menu>.menu-item:first-child>a {
        border-top: 1px solid #ddd;
        padding: 12px 15px;
    }

    .header .menu>.menu-item>a .plus:before, .header .menu>.menu-item>a .plus:after {
        background-color: #ffffff;
    }

    .header .menu>.menu-item-has-children.active>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .header .menu>.menu-item>.sub-menu {
        width: 100%;
        position: relative;
        opacity: 0;
        visibility: hidden;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: auto;
        max-height: 0;
        overflow: hidden;
    }

    .header .menu>.menu-item>a .plus {
        position: absolute;
        right: 13px;
        z-index: -1;
    }

    .header .menu>.menu-item.active>.sub-menu {
        opacity: 1;
        visibility: visible;
    }

    .header .menu>.menu-item>.sub-menu>.menu-item>a {
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #ddd;
    }

    .header .close-nav-menu, .header .open-nav-menu {
        display: flex;
    }

}

body, html {
    scroll-behavior: smooth;
}

p {
    line-height: 24px;
    font-size: 16px;
    color: #818596;
    font-weight: 400;
}

.top-banner .down-arrow a {
    display: inline-block;
    animation: 2s slightDown infinite;
}

@keyframes slightDown {
    0% {
        transform: translate3d(0, -15px, 0);
    }

    50% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(0, -15px, 0);
    }

}

.nexus-top-banner {
    background: url(../images/nexus-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 126px;
}

.nexus-top-banner .left-nexus-content .nexus-logo {
    margin-top: 87px;
}

.nexus-top-banner .left-nexus-content .nexus-logo img {
    display: block;
}

.heading {
    font-size: 50px;
    color: #000b33;
    font-weight: 600;
    font-family: Manrope, sans-serif;
    line-height: 64px;
}

.red-btn {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    padding: 20px 26px;
    border-radius: 6px;
    background: #fd4c5c;
    text-decoration: none;
    border: 2px solid transparent;
    display: inline-block;
    transition: .25s all linear;
    cursor: pointer;
}

.red-btn:hover {
    background: #fff;
    color: #fd4c5c;
    border-color: #fd4c5c;
    transition: .25s all linear;
}

.nexus-top-banner .left-nexus-content .heading {
    margin: 49px 0 32px;
}

.nexus-top-banner.home-page1-header .left-nexus-content p {
    font-size: 20px;
    line-height: 28px;
}

.nexus-top-banner .left-nexus-content.business-intelligence-cont .new {
    position: absolute;
    top: -20px;
    left: -90px;
}

.nexus-top-banner .right-nexus-content.business-intelligence-left-img {
    position: absolute;
    bottom: 0px !important;
}

.nexus-top-banner .left-nexus-content.business-intelligence-cont h1 {
    margin: 0 0 20px;
}

.nexus-top-banner .left-nexus-content.business-intelligence-cont h4 {
    font-size: 26px;
    color: #00c3f2;
}

.nexus-top-banner .left-nexus-content.business-intelligence-cont h4 span {
    border-right: 3px solid #000;
    padding-right: 10px;
}

.nexus-top-banner .left-nexus-content.business-intelligence-cont h4 span:last-child {
    border-right: none;
}

.nexus-top-banner .left-nexus-content.business-intelligence-cont p {
    color: #000b33 !important;
    margin-top: 40px;
    font-size: 22px !important;
}

.nexus-top-banner.home-new-banner .banner2caption.banner5caption {
    background: #fff;
    background-size: cover;
    background-position: bottom;
    padding-top: 0px;
    min-height: 76vh;
    position: relative;
    overflow: hidden;
}

.left-nexus-content.healthcare-industry-right {
    align-items: center;
    text-align: center;
}

.left-nexus-content.healthcare-industry-right .healthcare-industry {
    width: 30%;
    margin-top: 60px;
}

.nexus-mobile-powered-logo-img {
    margin-top: 100px;
}

.left-nexus-content.healthcare-industry-right .healthcare-industry img {
    width: 100%;
}

.left-nexus-content.healthcare-industry-right p {
    line-height: 38px;
    font-size: 28px;
    color: #000b35;
    margin-top: 100px;
    font-weight: 600;
}

.nexus-top-banner .left-nexus-content .list-point {
    padding-left: 35px;
    list-style-type: none;
}

.nexus-top-banner .left-nexus-content .list-point li {
    font-size: 16px;
    color: #818596;
    font-weight: 500;
    line-height: 26px;
    position: relative;
    display: block;
    margin-bottom: 11px;
}

.nexus-top-banner .left-nexus-content .list-point li:last-child {
    margin-bottom: 0;
}

.nexus-top-banner .left-nexus-content .list-point li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -26px;
}

.nexus-top-banner .left-nexus-content .red-btn {
    margin-top: 40px;
}

.nexus-top-banner .right-nexus-content img {
    display: block;
    margin: 0 auto;
}

.nexus-top-banner .right-nexus-content img.top-img-banner {
    margin-left: 182px;
    margin-bottom: -12px;
}

.nexus-top-banner .right-nexus-content {
    position: relative;
}

.nexus-top-banner .right-nexus-content .popup-img1, .nexus-top-banner .right-nexus-content .popup-img2 {
    position: absolute;
    top: 0;
}

.nexus-top-banner .right-nexus-content .popup-img1 {
    top: 325px;
    left: 60px;
    z-index: 1;
}

.nexus-top-banner .right-nexus-content .popup-img2 {
    top: 189px;
    right: -46px;
    z-index: 1;
}

.lp-healthcare-ats-software {
    padding-top: 36px;
}

.lp-healthcare-ats-software .left-nexus-content .heading {
    font-size: 36px;
    line-height: 44px;
    margin-top: 49px;
}

.lp-healthcare-ats-software .left-nexus-content h2 {
    font-size: 36px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    line-height: 64px;
    margin: 49px 0 0;
}

.lp-healthcare-ats-software .left-nexus-content a {
    margin-top: 20px !important;
}

.integrations-brand {
    padding: 104px 0 66px;
    background: #00c3f2;
    position: relative;
}

.integrations-brand .integrations-brand-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    display: block;
    width: 314px;
    background: #f3fcfa;
}

.heading2 {
    font-size: 46px;
    color: #000b33;
    font-weight: 700;
    line-height: 58px;
    font-family: Manrope, sans-serif;
}

.integrations-brand .integrations-brand-title img {
    display: block;
}

.integrations-brand .integrations-brand-title h2 {
    font-size: 22px;
    color: #00c3f2;
    font-weight: 700;
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    text-align: center;
}

.integrations-brand .brand-logo img {
    display: block;
    text-align: center;
    margin: auto;
}

.integrations-brand .brand-logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.higher-productivity {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: #fafafa;
}

.higher-productivity .yellow-circle {
    position: absolute;
    top: 0;
    left: 195px;
}

.higher-productivity .yellow-circle img {
    display: block;
}

.higher-productivity .productivity-costs {
    padding: 26px 0 150px 0;
}

.higher-productivity .productivity-costs .higher-productivity-content {
    margin-top: 33px;
}

.higher-productivity .productivity-costs .higher-productivity-content .heading2 {
    margin-bottom: 40px;
}

.higher-productivity .productivity-costs .higher-productivity-content .red-btn {
    margin-top: 35px;
}

.higher-productivity .productivity-steps .steps {
    padding: 24px 30px;
    border-radius: 6px;
    background: #fff;
    box-shadow: -10px 7px 29px 7px #f8f8f8;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
}

.higher-productivity .productivity-steps .steps .left-icon {
    width: 97px;
}

.higher-productivity .productivity-steps .steps .left-icon strong {
    display: none;
}

.higher-productivity .productivity-steps .steps .left-icon img {
    display: block;
}

.higher-productivity .productivity-steps .steps .right-content {
    padding-left: 26px;
}

.higher-productivity .productivity-steps .steps .right-content strong {
    font-size: 20px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    display: block;
    margin-bottom: 14px;
}

.higher-productivity .productivity-steps .steps:last-child {
    margin-bottom: 0;
}

.higher-productivity .complete-healthcare-ecosystem {
    padding-bottom: 25px;
}

.higher-productivity .complete-healthcare-ecosystem .healthcare-ecosystem-img img {
    margin: auto;
    display: block;
}

.higher-productivity .complete-healthcare-ecosystem .healthcare-ecosystem-img span {
    display: none;
}

.higher-productivity .complete-healthcare-ecosystem .right-ecosystem-content {
    padding: 182px 0 0 93px;
}

.higher-productivity .complete-healthcare-ecosystem .right-ecosystem-content .heading2 {
    margin-bottom: 26px;
}

.higher-productivity .complete-healthcare-ecosystem .right-ecosystem-content .red-btn {
    margin-top: 26px;
}

.advanced-mobile-platform {
    padding: 80px 59px;
    background: #00c3f2;
    position: relative;
}

.advanced-mobile-platform .heading2 {
    text-align: center;
    margin-bottom: 29px;
    color: #fff;
}

.advanced-mobile-platform .mobile-platform-slider .mobile-items {
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.advanced-mobile-platform .mobile-platform-slider .mobile-items:before {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 195, 242, .4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.advanced-mobile-platform .mobile-platform-slider .mobile-items.slick-center:before {
    opacity: 0;
}

.advanced-mobile-platform .mobile-platform-slider .mobile-items img {
    display: block;
    width: 100%;
    margin: auto;
    border-radius: 38px;
}

.advanced-mobile-platform .mobile-platform-slider .mobile-items .frame-mobile {
    border: 12px solid transparent;
    position: relative;
    transition: .1s all linear;
}

.advanced-mobile-platform .mobile-platform-slider .mobile-items .frame-mobile .top-mobicut img {
    width: auto;
    border-radius: 0;
    display: none;
}

.advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile {
    border: 12px solid #f5f5f5;
    position: relative;
    border-radius: 51px;
    transition: .1s all linear;
}

.advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
}

.advanced-mobile-platform .mobile-platform-slider .mobile-items strong {
    padding: 14px 18px;
    font-size: 19px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 29px;
    display: inline-block;
    border-radius: 10px;
    border: 1px solid #fff;
    visibility: hidden;
}

.advanced-mobile-platform .mobile-platform-slider .mobile-items.slick-center strong {
    visibility: visible;
}

.advanced-mobile-platform .mobile-platform-slider .slick-dots {
    text-align: center;
    display: block;
    margin-top: 43px;
}

.advanced-mobile-platform .mobile-platform-slider .slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 6px;
}

.advanced-mobile-platform .mobile-platform-slider .slick-dots li button {
    font-size: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #00c0ee;
}

.advanced-mobile-platform .mobile-platform-slider .slick-dots li.slick-active button {
    width: 26px;
    height: 26px;
    background: #fff;
}

.advanced-mobile-platform .mobile-platform-slider .slick-list {
    overflow: hidden;
    padding: 0 !important;
}

.advanced-mobile-platform .mobile-platform-slider .splide__pagination {
    bottom: -66px;
}

.advanced-mobile-platform .mobile-platform-slider .splide__pagination li {
    margin: 0 5px;
}

.advanced-mobile-platform .mobile-platform-slider .splide__pagination li button {
    font-size: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #00c0ee;
}

.advanced-mobile-platform .mobile-platform-slider .splide__pagination li button.is-active {
    width: 17px;
    height: 17px;
    background: #fff;
    opacity: 1;
}

.advanced-mobile-platform .mobile-platform-slider .splide__slide.is-active .mobile-items:before {
    content: none;
}

.advanced-mobile-platform .mobile-platform-slider .splide__slide.is-active .mobile-items strong {
    visibility: visible;
}

.advanced-mobile-platform .mobile-platform-slider .splide__arrows {
    display: none;
}

.advanced-mobile-platform .mobile-set {
    position: absolute;
    left: 0;
    right: 0;
    top: 294px;
    margin: auto;
    width: 318px;
    z-index: 8;
    overflow: hidden;
    display: none;
}

.advanced-mobile-platform .mobile-set img {
    display: block;
}

.advanced-mobile-platform .red-btn {
    text-align: center;
    display: block;
    width: 156px;
    margin: 121px auto 0;
}

.why-labor-edge {
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.why-labor-edge .mobile-image-show {
    display: none;
}

.why-labor-edge .why-labo-content {
    padding-left: 290px;
}

.why-labor-edge .pink-cut-circle {
    position: absolute;
    right: 319px;
    top: 0;
}

.why-labor-edge .pink-cut-circle img {
    display: block;
}

.why-labor-edge .heading2 {
    margin-bottom: 25px;
}

.why-labor-edge .list-of-septs {
    margin-top: 26px;
    padding-left: 32px;
    padding-right: 0;
    margin-bottom: 38px;
}

.why-labor-edge .list-of-septs li {
    font-size: 16px;
    color: #000b33;
    font-weight: 500;
    line-height: 30px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 36px;
}

.why-labor-edge .list-of-septs li:first-child {
    margin-left: 0;
}

.why-labor-edge .list-of-septs li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -26px;
}

.why-labor-edge .setpe-of-labor-edge {
    margin-top: 27px;
    margin-right: 189px;
    margin-bottom: 80px;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part {
    display: flex;
    padding: 20px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part .number {
    width: 55px;
    height: 55px;
    background: #ddd;
    color: #000;
    font-size: 30px;
    font-weight: 400;
    font-family: Manrope, sans-serif;
    border-radius: 100%;
    position: relative;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part .number span {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    transform: translateY(-50%);
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part .laboredge-part {
    padding-left: 25px;
    width: 81%;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part .laboredge-part p {
    font-size: 16px;
    color: #606060;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part .laboredge-part p strong {
    font-weight: 700;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.green .number {
    background: #e5f8f4;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.green .laboredge-part p strong, .why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.green .number span {
    color: #00bb98;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.blue .number {
    background: #e9eeff;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.blue .laboredge-part p strong, .why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.blue .number span {
    color: #2b59ff;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.yellow .number {
    background: #fef0e9;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.yellow .laboredge-part p strong, .why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.yellow .number span {
    color: #f56b2a;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.red .number {
    background: #ffedee;
}

.why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.red .laboredge-part p strong, .why-labor-edge .setpe-of-labor-edge .item-of-list .content-part.red .number span {
    color: #fd4c5c;
}

.why-labor-edge .setpe-of-labor-edge .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    bottom: -53px;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
}

.why-labor-edge .setpe-of-labor-edge .slick-arrow.slick-disabled {
    opacity: .5;
}

.why-labor-edge .setpe-of-labor-edge .slick-arrow.slick-next {
    left: auto;
    right: 41%;
}

.why-labor-edge .setpe-of-labor-edge .slick-arrow.slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.why-labor-edge .setpe-of-labor-edge .slick-arrow.slick-prev {
    left: 33%;
    right: auto;
}

.why-labor-edge .setpe-of-labor-edge .slick-arrow.slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/left-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.why-labor-edge .right-side-content {
    z-index: 5;
    position: absolute;
    bottom: -2px;
}

.top-blue-banner.mobile-page-banner.NexusVMS-top {
    background: #fff;
    padding: 100px 0 0;
}

.top-blue-banner.mobile-page-banner.NexusVMS-top .row .col-lg-6:first-child {
    align-items: unset;
}

.top-blue-banner.mobile-page-banner.NexusVMS-top h4 {
    text-align: center;
    margin-bottom: 60px;
}

.top-blue-banner.mobile-page-banner.NexusVMS-top .left-banner-part p {
    color: #606060;
    margin-bottom: 40px;
    padding-right: 0;
    font-size: 20px;
    line-height: 30px;
}

.top-blue-banner.mobile-page-banner.NexusVMS-top .easy-to-follow {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.top-blue-banner.mobile-page-banner.NexusVMS-top .easy-to-follow span {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px;
    box-sizing: border-box;
    vertical-align: middle;
}

.top-blue-banner.mobile-page-banner.NexusVMS-top .easy-to-follow h5 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
    width: 80%;
    box-sizing: border-box;
    padding-right: 20px;
}

.with-nexusvms {
    margin: 0px 0 60px;
    position: relative;
    overflow: hidden;
}

.with-nexusvms-right {
    background: #00b5e2;
    padding: 30px 40px;
}

.with-nexusvms-right h4 {
    color: #000;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    text-align: center;
}

.with-nexusvms-right h4 span {
    color: #fff;
}

.standout-features {
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.standout-features .row {
    align-items: center;
}

.standout-features-left {
    padding-bottom: 80px;
}

.standout-features-left h2 span {
    color: #00205b;
}

.standout-features-left ul {
    margin-top: 39px;
    padding-left: 32px;
    padding-right: 64px;
}

.standout-features-left ul li {
    font-size: 18px;
    color: #818596;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 22px;
    position: relative;
}

.standout-features-left ul li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

.standout-features-right {
    text-align: right;
}

.standout-features-right img {
}

.healthcare-specific-workflows {
    padding: 40px 0;
}

.healthcare-specific-workflows h2 {
    margin-bottom: 20px;
}

.healthcare-specific-workflows h4 {
    font-size: 24px;
    margin-bottom: 20px;
}

.healthcare-specific-workflows p {
}

.compliance-management {
    position: relative;
    padding: 50px 0 100px;
}

.compliance-management .row {
    align-items: center;
}

.compliance-management-left {
}

.compliance-management-left img {
}

.compliance-management-right {
}

.compliance-management-right h2 {
    font-size: 30px;
    color: #000b33;
    font-weight: 700;
    line-height: 40px;
    font-family: Manrope, sans-serif;
}

.compliance-management-right p {
    margin-bottom: 40px;
    margin-top: 20px;
}

.compliance-management-right p span {
    color: #000;
}

.standout-features.significant-investment-sec {
    margin: 0px 0;
    position: relative;
    overflow: hidden;
    background: #00b5e2;
    padding: 80px 0 0;
}

.standout-features.significant-investment-sec .row .col-12.col-lg-5 {
    position: relative;
}

.standout-features.significant-investment-sec .standout-features-right {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

.standout-features.significant-investment-sec .standout-features-left h2 {
    color: #fff;
}

.standout-features.significant-investment-sec .standout-features-left h2 a {
    color: #fd4c5c;
    font-family: Manrope, sans-serif;
}

.standout-features.significant-investment-sec .standout-features-left ul li {
    color: #fff;
}

.standout-features.significant-investment-sec .standout-features-left ul li:before {
    background: url(../images/candidate-portal/tick-white.png) no-repeat;
    top: 8px;
    height: 15px;
}

.standout-features.significant-investment-sec .standout-features-right img {
    display: block;
    width: 100%;
}

.healthcare-specific-workflows.complex-thinking-sec {
    padding: 100px 0;
    text-align: center;
}

.healthcare-specific-workflows.complex-thinking-sec .wid-80 {
    width: 80%;
    margin: 0 auto;
}

.healthcare-specific-workflows.complex-thinking-sec h2 {
    color: #00b5e2;
}

.healthcare-specific-workflows.complex-thinking-sec h2 span {
    color: #000b33;
    font-weight: 500;
}

.healthcare-specific-workflows.complex-thinking-sec p {
    margin-bottom: 20px;
}

.blog-and-updated {
    padding: 100px 0 100px;
}

.blog-and-updated .heading2 {
    text-align: center;
    margin-bottom: 65px;
}

.blog-and-updated .blog-thumbs {
    border-radius: 10px;
    background: #fff;
    box-shadow: -17px -4px 21px 16px #f8f8f8;
}

.blog-and-updated a {
    text-decoration: none;
}

.blog-and-updated .blog-thumbs .blog-thumb-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.blog-and-updated .blog-thumbs .blog-thumb-img img {
    display: block;
    width: 100%;
    transition: .25s all linear;
}

.blog-and-updated .blog-thumbs .blog-thumb-content {
    padding: 21px 26px;
}

.blog-and-updated .blog-thumbs .blog-thumb-content span {
    font-size: 14px;
    color: #00c3f2;
    font-weight: 700;
}

.blog-and-updated .blog-thumbs .blog-thumb-content h2 {
    font-size: 20px;
    color: #000b33;
    line-height: 28px;
    margin: 20px 0;
    min-height: 58px;
}

.blog-and-updated .blog-thumbs .blog-thumb-content p {
    font-size: 15px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    margin: 20px 0 26px;
    display: block;
    min-height: 49px;
}

.blog-and-updated .blog-thumbs .blog-thumb-content .redmore {
    font-size: 16px;
    color: #fd4c5c;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: none;
    border-bottom: 2px solid #feb0b7;
    padding-bottom: 1px;
    display: inline-block;
}

.blog-and-updated .blog-thumbs:hover .blog-thumb-img img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: .25s all linear;
}

.blog-and-updated .blog-thumbs:hover .blog-thumb-content p {
    color: #00c3f2;
}

.blog-and-updated .blog-thumbs:hover .blog-thumb-content a {
    color: #000b33;
    border-bottom-color: #000b33;
}

.blog-and-updated .padd {
    padding: 0 15px;
    margin-bottom: 30px;
}

.what-our-clients {
    background: #f3fcfa;
    padding: 0 0 290px;
    position: relative;
}

.what-our-clients .container {
    padding-top: 100px;
}

.what-our-clients .light-blue-cut {
    position: absolute;
    top: 0;
    left: 160px;
}

.what-our-clients .light-blue-cut img {
    display: block;
}

.what-our-clients .heading2 {
    text-align: center;
    margin-bottom: 54px;
}

.what-our-clients .clients-testimonial {
    position: relative;
    padding: 0 194px;
}

.what-our-clients .clients-testimonial .queart {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.what-our-clients .clients-testimonial .queart img {
    display: block;
    margin: auto;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item p {
    font-size: 24px;
    color: #000b33;
    line-height: 38px;
    text-align: center;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details {
    text-align: center;
    display: flex;
    width: 360px;
    margin: auto;
    margin-top: 72px;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-thumb {
    border-radius: 100%;
    width: 80px;
    height: 80px;
    position: relative;
    background: #fff;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-thumb img {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-details-info {
    width: 72%;
    padding-left: 19px;
    text-align: left;
    padding-top: 13px;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-details-info b {
    font-size: 18px;
    color: #000b33;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-details-info p {
    font-size: 14px;
    color: #606060;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    margin: auto;
    top: 8%;
    cursor: pointer;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow.slick-prev {
    left: -134px;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow.slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/left-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow.slick-next {
    right: -134px;
}

.what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow.slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.get-intouch {
    margin-top: -180px;
    z-index: 5;
    position: relative;
}

.get-intouch .nexus-in-operation {
    background: #0c2f6f;
    padding: 0 62px;
    border-radius: 20px;
}

.get-intouch .nexus-in-operation .col-lg-4:nth-child(2) {
    display: flex;
    align-items: end;
}

.get-intouch .nexus-in-operation .contact-us-patch, .get-intouch .nexus-in-operation .nexus-live {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.get-intouch .nexus-in-operation .col-lg-4:nth-child(3) .contact-us-patch {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 20px 0;
}

.get-intouch .nexus-in-operation form {
    height: 100%;
}

.get-intouch .nexus-in-operation .nexus-live h6 {
    font-size: 42px;
    color: #fff;
    line-height: 54px;
    display: block;
    margin-bottom: 21px;
}

.get-intouch .nexus-in-operation .nexus-live p {
    color: #fff;
}

.get-intouch .nexus-in-operation .doctor-img {
    margin-top: -59px;
    z-index: 8;
    position: relative;
}

.get-intouch .nexus-in-operation .doctor-img img {
    display: block;
}

.get-intouch .nexus-in-operation .content-from {
    width: 100%;
}

.get-intouch .nexus-in-operation .content-from .mb-3 {
    margin-bottom: 15px !important;
}

.get-intouch .nexus-in-operation .content-from .mb-3 .form-control {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    padding: 13px 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    resize: none;
    background: 0 0;
    border-bottom: 2px solid #ced5e2;
}

.get-intouch .nexus-in-operation .content-from .mb-3 .form-control::-webkit-input-placeholder {
    color: #fff;
}

.get-intouch .nexus-in-operation .content-from .mb-3 .form-control:-ms-input-placeholder {
    color: #fff;
}

.get-intouch .nexus-in-operation .content-from .mb-3 .form-control::placeholder {
    color: #fff;
}

.get-intouch .nexus-in-operation .content-from .red-btn {
    display: block;
    text-align: center;
    padding: 17px 26px;
}

.get-intouch .nexus-in-operation .content-from .red-btn.submiting_btn {
    padding: 12px 26px;
}

.get-intouch .nexus-in-operation .content-from .red-btn svg {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 16px;
}

footer {
    padding: 249px 0 50px;
    margin-top: -180px;
}

footer .top-footer {
    padding-bottom: 110px;
}

footer .comon-div a, footer .comon-div p {
    text-decoration: none;
    font-size: 14px;
    color: #606060;
    font-weight: 400;
    line-height: 22px;
    display: block;
}

footer .comon-div .footer-logo {
    margin-bottom: 26px;
}

footer .comon-div .footer-logo img {
    display: block;
}

footer .comon-div .social-icon {
    margin-top: 45px;
}

footer .comon-div .social-icon a {
    display: inline-block;
    vertical-align: top;
    margin-right: 31px;
    color: #000b33;
}

footer .comon-div .social-icon a svg {
    width: 18px;
    height: 18px;
}

footer .comon-div .social-icon a:last-child {
    margin-right: 0;
}

footer .comon-div .social-icon a:hover:nth-child(1) {
    color: #3b5ca1;
}

footer .comon-div .social-icon a:hover:nth-child(2) {
    color: #2ba7dd;
}

footer .comon-div .social-icon a:hover:nth-child(3) {
    color: #547ea4;
}

footer .comon-div .social-icon a:hover:nth-child(4) {
    color: #0f78a8;
}

footer .comon-div .social-icon a:hover:nth-child(5) {
    color: #CD201F;
}

footer .comon-div strong {
    font-size: 18px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    display: block;
    margin-top: 53px;
}

footer .col-lg-3:nth-child(2) .comon-div {
    padding-left: 55px;
}

footer .comon-div .short-links {
    margin-top: 32px;
}

footer .comon-div .short-links a {
    margin-bottom: 24px;
}

footer .comon-div .short-links a:hover {
    color: #000b33;
}

footer .comon-div.address-part strong {
    margin-bottom: 32px;
}

footer .comon-div.address-part p {
    margin-bottom: 25px;
}

footer .comon-div.address-part p a {
    margin-bottom: 10px;
    color: #818596;
}

footer .comon-div.address-part p a:hover {
    color: #000b33;
}

footer .copy-right-footer {
    padding-top: 44px;
    border-top: 1px solid #d7d7d7;
    text-align: center;
}

footer .copy-right-footer a {
    color: #818596;
    text-decoration: none;
}

footer .copy-right-footer a:hover {
    color: #fd4c5c;
}

.live-demo-btn {
    width: 160px;
    padding: 20px 20px;
    text-align: center;
    border-radius: 6px 6px 0 0;
    background: #fd4c5c;
    color: #fff;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -71px;
    transform: rotate(270deg);
    cursor: pointer;
    border: 2px solid transparent;
    transition: .25s all linear;
    z-index: 100;
}

.live-demo-btn a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

.live-demo-btn:hover {
    background: #fff;
    border-color: #fd4c5c;
    color: #fd4c5c;
    transition: .25s all linear;
}

.live-demo-btn:hover a {
    color: #fd4c5c;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 100;
    display: none;
}

.common-popup .left-image-part img {
    display: block;
    border-radius: 15px 0 0 15px;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.common-popup .left-image-part {
    height: 100%;
    display: block;
}

.common-popup .close-btn {
    width: 30px;
    height: 30px;
    background: #00c3f2;
    position: absolute;
    top: -8px;
    right: -6px;
    border-radius: 100%;
    border-width: 0;
    color: #fff;
    padding: 1px 4px;
    cursor: pointer;
}

.common-popup .close-btn svg {
    width: 24px;
    height: 24px;
}

.common-popup .modal-content {
    border-radius: 15px;
}

.count-main {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.common-popup .content-popup .request-demo-from {
    padding: 66px 44px;
}

.common-popup .content-popup .request-demo-from h3 {
    font-size: 36px;
    color: #0c2f6f;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    margin-bottom: 20px;
}

.common-popup .content-popup .request-demo-from p {
    font-size: 16px;
    color: #606060;
    font-weight: 600;
    margin-bottom: 34px;
}

.common-popup .content-popup .request-demo-from p a {
    color: #606060;
    text-decoration: none;
    font-weight: 800;
}

.common-popup .content-popup .request-demo-from .mb-3 {
    margin-bottom: 18px;
}

.common-popup .content-popup .request-demo-from input, .common-popup .content-popup .request-demo-from textarea {
    padding: 18px 26px;
    border: 1px solid #606060;
    border-radius: 10px;
    font-size: 16px;
    color: #606060;
    font-weight: 400;
    outline: 0;
}

.common-popup .content-popup .request-demo-from textarea {
    resize: none;
}

.common-popup .content-popup .request-demo-from .red-btn {
    display: block;
    text-align: center;
    color: #fff;
    border: 2px solid transparent;
}

.common-popup .content-popup .request-demo-from .red-btn:hover {
    color: #fd4c5c;
    border-color: #fd4c5c;
}

.common-popup .content-popup .request-demo-from input::-webkit-input-placeholder, .common-popup .content-popup .request-demo-from textarea::-webkit-input-placeholder {
    color: #606060;
}

.common-popup .content-popup .request-demo-from input:-ms-input-placeholder, .common-popup .content-popup .request-demo-from textarea:-ms-input-placeholder {
    color: #606060;
}

.common-popup .content-popup .request-demo-from input::placeholder, .common-popup .content-popup .request-demo-from textarea::placeholder {
    color: #606060;
}

.modal.request-demo-popup .modal-dialog {
    max-width: 1000px;
}

.modal.request-demo-popup .modal-dialog .modal-body {
    padding: 0;
}

.top-blue-banner {
    padding: 94px 0;
    background: #0c2f6f;
    position: relative;
    overflow: hidden;
}

.top-blue-banner .top-blue-cut {
    position: absolute;
    top: -128px;
    right: 192px;
}

.top-blue-banner .left-blue-cut img, .top-blue-banner .top-blue-cut img {
    display: block;
}

.top-blue-banner .left-blue-cut {
    position: absolute;
    bottom: 27px;
    left: 0;
}

.top-blue-banner .left-banner-part, .top-blue-banner .right-banner-part {
    z-index: 5;
    position: relative;
}

.top-blue-banner .left-banner-part .breadcrumb {
    margin-bottom: 10px;
    display: none;
}

.top-blue-banner .left-banner-part .breadcrumb .breadcrumb-item {
    display: inline-block;
    vertical-align: top;
    margin-right: 18px;
}

.top-blue-banner .left-banner-part .breadcrumb .breadcrumb-item::after {
    float: right;
    padding-left: 7px;
    color: #fff;
    content: ">";
}

.top-blue-banner.careers-banner-section {
    padding: 75px 0;
}

.breadcrumb.white-color .breadcrumb-item a {
    color: #fff !important;
}

.breadcrumb.white-color .breadcrumb-item a:hover {
    color: #fd4c5c !important;
}

.breadcrumb.black-color .breadcrumb-item a {
    color: #000b35 !important;
}

.breadcrumb.black-color .breadcrumb-item a:hover {
    color: #fd4c5c !important;
}

.breadcrumb.black-color .breadcrumb-item::after {
    color: #000b35 !important;
}

.top-blue-banner.mobile-page-banner .left-banner-part .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #000b35;
}

.top-blue-banner .left-banner-part .breadcrumb .breadcrumb-item a {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
}

.top-blue-banner .left-banner-part .breadcrumb .breadcrumb-item a:hover {
    color: #fd4c5c;
}

.top-blue-banner .left-banner-part .heading2 {
    color: #fff;
    margin-bottom: 44px;
}

.top-blue-banner.vms-mobile-gif {
    background: #0c2f6f;
}

.top-blue-banner.vms-mobile-gif .left-banner-part .heading2 {
    margin-bottom: 0;
}

.top-blue-banner.vms-mobile-gif .row .col-lg-6:first-child {
    display: flex;
    align-items: center;
    justify-content: left;
}

.top-blue-banner .left-banner-part p {
    color: #fff;
}

.top-blue-banner.about-section-banner .left-banner-part p {
    line-height: 32px;
    font-size: 20px;
}

.top-blue-banner .left-banner-part .red-btn {
    margin-top: 33px;
    display: inline-block;
}

.top-blue-banner .right-banner-part {
    text-align: right;
    height: 100%;
    position: relative;
}

.top-blue-banner .right-banner-part .right-feature-img img {
    display: block;
    margin: auto;
}

.top-blue-banner.new-banner-about-us-page .right-banner-part .right-feature-img img {
    border-radius: 100%;
}

.top-blue-banner .right-banner-part .yellow-cut {
    position: absolute;
    left: 39px;
    bottom: 56px;
}

.featurs-list-section {
    padding: 100px 0;
    background: url(../images/featurs-list-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.featurs-list-section .featurs-list-box {
    padding: 37px 44px;
    background: #fff;
    border-radius: 10px;
    min-height: auto;
    box-shadow: 10px -5px 12px 0 #edf6f4;
}

.featurs-list-section.candidate-required-document .col-lg-4:nth-child(1) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(2) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(3) .featurs-list-box {
    min-height: 244px;
}

.featurs-list-section.candidate-required-document .col-lg-4:nth-child(4) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(5) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(6) .featurs-list-box {
    min-height: 285px;
}

.featurs-list-section .col-lg-4 {
    padding: 0 15px;
}

.featurs-list-section .col-lg-6 {
    padding: 0 15px;
}

.featurs-list-section.candidate-required-document .col-lg-6 {
    margin-bottom: 30px;
}

.featurs-list-section.candidate-required-document .col-lg-6 .featurs-list-box {
    padding: 37px 24px;
}

.featurs-list-section.candidate-required-document .col-lg-6 .featurs-list-box .list-for-point li {
    margin-top: 20px;
}

.featurs-list-section.candidate-required-document .col-lg-6 .featurs-list-box .col-6 {
    padding-right: 15px;
}

.featurs-list-section.candidate-required-document .col-lg-6 .featurs-list-box .col-6:last-child {
    padding-right: 0px;
}

.featurs-list-section .featurs-list-box .featurs-icon img {
    display: block;
}

.featurs-list-section .featurs-list-box .featurs-icon {
    margin-bottom: 36px;
}

.featurs-list-section .featurs-list-box h2 {
    font-weight: 700;
    color: #000b33;
    font-family: Manrope, sans-serif;
    display: block;
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 25px;
}

.featurs-list-section.vms-list-part-section .featurs-list-box .list-point {
    padding-left: 30px;
}

.featurs-list-section.vms-list-part-section .featurs-list-box .list-point li {
    font-size: 15px;
    color: #606060;
    line-height: 24px;
    margin-bottom: 20px;
    position: relative;
}

.featurs-list-section.vms-list-part-section .featurs-list-box .list-point li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

.featurs-list-section.vms-list-part-section .featurs-list-box h2 {
    line-height: 28px;
}

.reposting-section {
    padding: 197px 0 0;
    overflow: hidden;
}

.reposting-section .repoting-stpes {
    margin-bottom: 228px;
}

.reposting-section .repoting-stpes .left-steps-content .heading2 {
    font-size: 44px;
    margin-bottom: 39px;
}

.reposting-section .repoting-stpes .left-steps-content p {
    font-size: 18px;
    color: #606060;
    line-height: 30px;
    padding-right: 100px;
}

.reposting-section .repoting-stpes.automations-stpes .left-steps-content p, .reposting-section .repoting-stpes.compliance-stpes .left-steps-content p, .reposting-section .repoting-stpes.job-management-stpes .left-steps-content p {
    padding-right: 0;
}

.reposting-section .repoting-stpes .left-steps-content ul {
    margin-top: 39px;
    padding-left: 32px;
    padding-right: 64px;
}

.reposting-section .repoting-stpes .left-steps-content ul li {
    font-size: 18px;
    color: #000b33;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 22px;
    position: relative;
}

.reposting-section .repoting-stpes .left-steps-content ul li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

.reposting-section .repoting-stpes .left-steps-content ul li:last-child {
    margin-bottom: 0;
}

.reposting-section .repoting-stpes .left-steps-content ul.list-of-septs {
    position: relative;
}

.reposting-section .repoting-stpes .left-steps-content .slick-arrow {
    height: 35px;
    width: 35px;
    border-radius: 6px;
    background: #ffedee;
    border-width: 0;
    border: 1px solid transparent;
    display: inline-block;
    transition: .25s all linear;
    position: absolute;
    bottom: -72px;
    left: 0;
    z-index: 9;
    cursor: pointer;
}

.reposting-section .repoting-stpes .left-steps-content .slick-arrow.slick-disabled {
    opacity: .5;
}

.reposting-section .repoting-stpes .left-steps-content .slick-arrow:before {
    content: " ";
    background: url(../images/arrow-donw.png) no-repeat;
    width: 14px;
    height: 17px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
}

.reposting-section .repoting-stpes .left-steps-content .slick-arrow.slick-next {
    left: 51px;
}

.reposting-section .repoting-stpes .left-steps-content .slick-arrow.slick-prev:before {
    transform: rotate(90deg);
    top: 27%;
}

.reposting-section .repoting-stpes .left-steps-content .slick-arrow.slick-next:before {
    transform: rotate(-90deg);
    top: 27%;
}

.reposting-section.ats-stpes6 .repoting-stpes .left-steps-content .slick-arrow {
    bottom: -59px;
}

.reposting-section .repoting-stpes .left-steps-content .donw-arrow {
    height: 35px;
    width: 35px;
    border-radius: 6px;
    background: #ffedee;
    border: 1px solid transparent;
    display: inline-block;
    transition: .25s all linear;
}

.reposting-section .repoting-stpes .left-steps-content .donw-arrow svg {
    width: 18px;
    height: 18px;
    color: #fd5665;
    padding: 7px 0;
    margin: auto;
    display: block;
}

.reposting-section .repoting-stpes .left-steps-content .donw-arrow:hover {
    background: #fff;
    border-color: #fd5665;
    transition: .25s all linear;
}

.reposting-section .repoting-stpes .left-steps-content {
    position: relative;
}

.reposting-section .repoting-stpes .left-steps-content .mobile-img {
    display: none;
}

.reposting-section .repoting-stpes .left-steps-content .donw-arrow {
    position: absolute;
    bottom: 15px;
    right: 134px;
}

.reposting-section .repoting-stpes .left-steps-content .donw-arrow:hover svg {
    color: #fd5665;
}

.reposting-section .repoting-stpes .right-steps-content {
    height: 100%;
    position: relative;
}

.reposting-section .repoting-stpes .right-steps-content .repoting-dashboard {
    text-align: center;
    z-index: 6;
    position: relative;
}

.reposting-section .repoting-stpes .right-steps-content .repoting-dashboard img {
    display: block;
    margin: auto;
    padding: 10px;
    box-shadow: 0 0 30px rgb(0 0 0 / 6%);
    border-radius: 15px;
}

.reposting-section .repoting-stpes.dashboards-and-reporting-steps-section .right-steps-content .repoting-dashboard img, .reposting-section .repoting-stpes.job-management-section .right-steps-content .repoting-dashboard img {
    padding: 0;
}

.industry-stats-job-graph .repoting-stpes .right-steps-content .repoting-dashboard img {
    padding: 0;
}

.reposting-section .repoting-stpes.imagine-a-vms-steps .right-steps-content .repoting-dashboard img {
    border-radius: 15px;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
}

.reposting-section .repoting-stpes .right-steps-content .yellow-repoting-cut {
    width: 50%;
    position: absolute;
    right: 0;
    top: -66px;
}

.reposting-section .repoting-stpes.compliance-stpes .right-steps-content .repoting-dashboard img {
    margin-top: -38px;
    margin: inherit;
}

.reposting-section .repoting-stpes.compliance-stpes .left-steps-content {
    padding-left: 105px;
}

.reposting-section .repoting-stpes.automations-stpes .left-steps-content .donw-arrow, .reposting-section .repoting-stpes.compliance-stpes .left-steps-content .donw-arrow, .reposting-section .repoting-stpes.job-management-stpes .left-steps-content .donw-arrow {
    right: 0;
    bottom: 0;
}

.reposting-section .repoting-stpes.healthcare-focused-stpes .right-steps-content .green-patch {
    position: absolute;
    bottom: 153px;
    left: -60px;
}

.reposting-section .repoting-stpes.job-management-stpes .right-steps-content .repoting-dashboard img {
    margin-top: -30px;
    margin: inherit;
}

.reposting-section .repoting-stpes.automations-stpes .left-steps-content {
    padding-left: 52px;
}

.reposting-section .repoting-stpes.automations-stpes .right-steps-content .repoting-dashboard img {
    margin: inherit;
    box-shadow: none;
}

.reposting-section .repoting-stpes.job-management-stpes .left-steps-content {
    padding-left: 68px;
}

.reposting-section .repoting-stpes.time-capture-stpes .right-steps-content .repoting-dashboard img {
    margin-top: -52px;
}

.reposting-section .repoting-stpes.time-capture-stpes .right-steps-content .green-patch {
    position: absolute;
    top: -25px;
    right: -86px;
}

.reposting-section .repoting-stpes..automations-stpes .left-steps-content {
    padding-left: 68px;
}

.reposting-section .repoting-stpes.dashboards-and-reporting-steps-section .left-steps-content {
    padding-left: 57px;
}

.reposting-section .repoting-stpes.job-management-section .left-steps-content {
    padding-right: 57px;
}

.reposting-section.about-us-details .repoting-stpes {
    margin-bottom: 130px;
}

.reposting-section.about-us-details .right-steps-content {
    margin-top: 145px;
}

.reposting-section.about-us-details strong {
    font-size: 18px;
    color: #000b33;
    line-height: 25px;
    font-weight: 600;
    display: block;
    margin-bottom: 41px;
}

.reposting-section.about-us-details ul.list-of-septs {
    padding-left: 32px;
    padding-right: 64px;
    margin-top: 28px;
    position: relative;
}

.reposting-section.about-us-details ul.list-of-septs li {
    font-size: 18px;
    color: #000b33;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 10px;
    position: relative;
}

.reposting-section.about-us-details ul.list-of-septs li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

.features-at-glance {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
}

.features-at-glance .red-btn {
    border-radius: 15px 15px 0 0;
    padding: 20px 53px;
    border-bottom: 0;
}

.features-glance-popup {
    position: fixed;
    background: #fff;
    bottom: -100%;
    right: 0;
    width: 347px;
    border-radius: 15px 15px 0 0;
    z-index: 100;
    box-shadow: 4px 20px 19px #ddd;
}

.features-glance-popup strong {
    padding: 25px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #fd4c5c;
    display: block;
    border-radius: 15px 15px 0 0;
}

.features-glance-popup strong .close-btn {
    display: inline-block;
    float: right;
    margin-top: -8px;
}

.features-glance-popup strong .close-btn svg {
    width: 30px;
    height: 30px;
}

.features-glance-popup ul li {
    border-bottom: 1px solid #d7d7d7;
}

.features-glance-popup ul li a {
    display: block;
    padding: 12px 30px;
    font-size: 14px;
    color: #606060;
    font-weight: 600;
    text-decoration: none;
    line-height: 22px;
    transition: .25s all linear;
}

.features-glance-popup ul li a:hover {
    color: #fd4c5c;
    transition: .25s all linear;
}

.features-glance-popup .button-live {
    padding: 19px 10px;
    text-align: center;
}

.features-glance-popup .button-live .red-btn {
    background: #fff;
    border: 2px solid #fd4c5c;
    color: #fd4c5c;
    border-radius: 15px;
    padding: 20px 26px;
}

.features-glance-popup .button-live .red-btn:hover {
    background: #fd4c5c;
    border-color: #fd4c5c;
    color: #fff;
}

.mobile-page-banner {
    background: #f3fcfb;
    padding: 152px 0 0;
}

.top-blue-banner.mobile-page-banner .left-banner-part .breadcrumb .breadcrumb-item a {
    color: #000b35;
}

.top-blue-banner.mobile-page-banner .left-banner-part .heading2 {
    color: #000b35;
}

.top-blue-banner.mobile-page-banner .left-banner-part p {
    color: #606060;
    margin-bottom: 39px;
    padding-right: 100px;
}

.top-blue-banner.mobile-page-banner .left-banner-part p strong {
    color: #5f6160;
    font-weight: 700;
}

.top-blue-banner.mobile-page-banner .left-banner-part .red-btn {
    margin-top: 0;
}

.top-blue-banner.mobile-page-banner.solution-banner-section .left-banner-part .red-btn {
    padding: 20px 52px;
}

.solution-banner-section.vms-mobile-gif {
    padding: 60px 0;
}

.ats-banner-section {
    padding: 38px 0;
}

.top-blue-banner.mobile-page-banner.vms-mobile-gif .left-banner-part .heading2 {
    margin-bottom: 30px;
}

.solution-banner-section.vms-mobile-gif .vms-logo {
    margin-bottom: 20px;
}

.top-blue-banner.mobile-page-banner.solution-banner-section.vms-mobile-gif .left-banner-part {
    margin-top: 0;
}

.ats-banner-section .left-banner-part {
    margin-top: 63px;
}

.mobile-page-banner {
    padding: 38px 0 0;
}

.mobile-feature-list {
    background: #fff;
    padding: 80px 0 80px;
}

.vms-stpes-section {
    padding-top: 100px;
}

.featurs-list-section.mobile-feature-list .featurs-list-box {
    -moz-box-shadow: 0 0 10px 5px #f8f8f8;
    -webkit-box-shadow: 0 0 10px 5px #f8f8f8;
    box-shadow: 0 0 10px 5px #f8f8f8;
    min-height: 289px;
}

.top-blue-banner.mobile-page-banner .right-banner-part .blue-cut-mobile {
    position: absolute;
    top: 105px;
    right: -49px;
}

.the-mobile-app-built {
    background: #0c2f6f;
}

.the-mobile-app-built .left-side-mobile-slider {
    height: 100%;
    position: relative;
}

.the-mobile-app-built .left-side-mobile-slider .yellow-dot {
    position: absolute;
    top: 23%;
    left: 0;
}

.the-mobile-app-built .left-side-mobile-slider .yellow-cut1 {
    position: absolute;
    top: 40%;
    left: 48px;
}

.the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .empty-mobile {
    text-align: center;
    width: 55%;
    position: absolute;
    top: -6px;
    left: 0;
    z-index: 8;
    right: 0;
    margin: auto;
}

.the-mobile-app-built .left-side-mobile-slider .left-mobile-slider {
    z-index: 8;
    position: relative;
}

.the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for {
    margin: 73px 0 81px 0;
    z-index: 6;
}

.the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .mobie-full {
    display: none;
}

.the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for .mobile-item img {
    margin: auto;
    display: block;
    width: 49%;
    border-radius: 20px;
}

.the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .empty-mobile img {
    display: block;
}

.the-mobile-app-built .right-side-mobile-slider {
    position: relative;
}

.the-mobile-app-built .right-side-mobile-slider .yellow-cut2 {
    position: absolute;
    right: 0;
    top: -92px;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile {
    padding: 75px 0 100px 50px;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .heading2 {
    color: #fff;
    margin-bottom: 37px;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile p {
    color: #fff;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider {
    margin-top: 50px;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .text-content {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: 18px;
    display: block;
    margin: 10px 0;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .text-content:before {
    content: " ";
    width: 18px;
    height: 14px;
    background: url(../images/white-tick.png) no-repeat;
    position: absolute;
    top: 4px;
    left: 0;
    opacity: .5;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .icon {
    margin-right: 17px;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .icon svg {
    width: 20px;
    height: 20px;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text.slick-current .text-content {
    color: #fff;
    font-weight: 700;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text.slick-current .text-content:before {
    opacity: 1;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-list {
    padding: 0 0 50px !important;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    bottom: -80px;
    left: 0;
    margin: auto;
    cursor: pointer;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-arrow.slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/left-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-arrow.slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-arrow.slick-disabled {
    opacity: .5;
}

.the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-arrow.slick-next {
    left: 70px;
}

.the-mobile-app-built .mobile-view {
    display: none;
}

.get-intouch .mobile-doctor {
    display: none;
}

.get-intouch .mobile-doctor img {
    display: block;
}

.blog-details-page {
    text-align: center;
}

.blog-details-page .blue-doth {
    position: absolute;
    bottom: 45px;
    left: 300px;
}

.bog-details-section {
    padding: 100px 0;
}

.less-padd {
    padding: 0 0 60px;
}

.updated-padding-less {
    padding: 0;
}

.agency-recruiter-mobile-app {
    padding: 0 0 0;
}

.agency-recruiter-mobile-app h4 {
    font-size: 15px;
    font-weight: 600;
    color: #353536;
}

.bog-details-section-area {
    position: relative;
}

.bog-details-section img {
    display: block;
}

.bog-details-section .agency-dashboard-sec-box-area p img {
    width: 100%;
    margin-top: 10px;
}

.bog-details-section .banner-details {
    position: relative;
    margin-bottom: 45px
}

.bog-details-section .banner-details.news-banner-details-bg {
    margin-bottom: 80px;
}

.bog-details-section .brand-icon {
    width: 233px;
    height: 233px;
    background: #fff;
    border-radius: 10px;
    z-index: 6;
    box-shadow: 1px 12px 22px 2px #ebebeb;
    position: relative;
    float: right;
    margin-top: -235px;
    margin-right: 30px;
}

.bog-details-section .brand-icon img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    transform: translateY(-50%);
    width: 65%;
}

.bog-details-section .medical-staffing-box {
    padding: 30px;
    margin: 0 15px 30px;
    text-align: center;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
    min-height: 487px;
    border-radius: 10px;
}

.bog-details-section .medical-staffing-box img {
    margin: 0 auto;
}

.bog-details-section .medical-staffing-box h3 {
    font-size: 20px;
}

.bog-details-section .green-cut {
    position: absolute;
    right: -93px;
    top: -50px;
}

.bog-details-section .banner-details .blog-banner {
    z-index: 5;
    position: relative;
    box-shadow: 0 22px 39px 0 #f8f8f8;
    border-radius: 10px;
}

.bog-details-section .banner-details .blog-banner img {
    border-radius: 10px;
    width: 100%;
}

.bog-details-section .banner-details .brand-icon {
    width: 233px;
    height: 233px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    right: 60px;
    bottom: -115px;
    z-index: 6;
    box-shadow: 1px 12px 22px 2px #ebebeb;
}

.bog-details-section .banner-details .brand-icon img {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    transform: translateY(-50%);
    width: 80%;
}

.bog-details-section .heading2 {
    font-size: 44px;
    line-height: 51px;
    margin-bottom: 35px;
}

.bog-details-section p {
    margin-bottom: 29px;
}

.bog-details-section h3 {
    font-size: 24px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    margin-top: 40px;
}

.bog-details-section .list-option {
    margin: 36px 0;
    padding-left: 35px;
}

.bog-details-section .list-option li {
    font-size: 18px;
    line-height: 33px;
    color: #000b33;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
}

.bog-details-section .list-option li .innter-list {
    padding-left: 30px;
}

.bog-details-section .list-option li .innter-list li {
    font-size: 15px;
    line-height: 28px;
    color: #606060;
}

.bog-details-section .list-option li .innter-list li:before {
    width: 8px;
    height: 8px;
    background: #606060;
    border-radius: 50%;
    top: 11px;
    left: -20px;
}

.bog-details-section .list-option li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/blog-details/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -30px;
}

.bog-details-section ul, .bog-details-section ol {
    margin: 36px 0;
    padding-left: 35px;
}

.bog-details-section ul li, .bog-details-section ol li {
    font-size: 18px;
    line-height: 33px;
    color: #000b33;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
}

.bog-details-section ul li ul {
    padding-left: 30px;
}

.bog-details-section ul li ul li {
    font-size: 15px;
    line-height: 28px;
    color: #606060;
}

.bog-details-section ul li ul li:before {
    width: 8px;
    height: 8px;
    background: #606060;
    border-radius: 50%;
    top: 11px;
    left: -20px;
}

.bog-details-section ul li:before, .bog-details-section ol li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/blog-details/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -30px;
}

.bog-details-section-area h1 {
    font-size: 36px !important;
    font-family: Manrope, sans-serif !important;
    color: #000b33 !important;
    font-weight: 700 !important;
}

.bog-details-section-area h2, .bog-details-section-area h3, .bog-details-section-area h4, .bog-details-section-area h5, .bog-details-section-area h6 {
    font-size: 24px !important;
    color: #000b33 !important;
    font-weight: 700 !important;
    font-family: Manrope, sans-serif !important;
    margin-top: 40px !important;
}

.bog-details-section-area p, .bog-details-section-area div {
    line-height: 24px !important;
    font-size: 16px !important;
    color: #818596 !important;
    font-weight: 400 !important;
}

.bog-details-section-area p a {
    color: #fd4c5c;
}

.bog-details-section .list-option li:last-child {
    margin-bottom: 0;
}

.joint-newsletter .nexus-in-operation {
    background: #00c3f2;
}

.integrations-banner {
    background: #0096dd;
    padding: 75px 0;
}

.top-blue-banner.integrations-banner .left-banner-part .heading2 {
    margin-bottom: 0;
}

.top-blue-banner.careers-banner-section .left-banner-part .heading2 {
    margin-bottom: 35px;
}

.blog-details-page.integrations-banner .blue-doth {
    left: auto;
    right: 300px;
}

.top-blue-banner.integrations-banner .top-blue-cut {
    top: -195px;
}

.integrations-section {
    padding: 100px 0 53px;
}

.integrations-section .integrations-text {
    text-align: center;
}

.integrations-section .integrations-text p {
    line-height: 22px;
    font-size: 15px;
    color: #000b33;
    margin-bottom: 20px;
}

.integrations-section h3 {
    font-size: 31px;
    margin-bottom: 39px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    margin-left: 33px;
    margin-top: 40px;
}

.integrations-section .integrations-logo img {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    margin: auto;
}

.integrations-section .integrations-logo {
    background: #fff;
    border-radius: 15px;
    position: relative;
    box-shadow: 1px 5px 45px 7px #f9f9f9;
    width: 100%;
    height: 180px;
}

.integrations-section .col-lg-3 {
    padding: 0 20px;
    margin-bottom: 40px;
}

.blog-thumb-section {
    padding: 100px 0 75px;
}

.top-blue-banner.blog-details-page.blog-section-banner {
    padding: 75px 0;
}

.top-blue-banner.blog-details-page.blog-section-banner .left-banner-part .heading2 {
    margin-bottom: 0;
}

.blog-thumb-section .col-lg-4 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.blog-thumb-section .blog-thumb {
    border-radius: 10px;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
    padding-bottom: 33px;
}

.blog-thumb-section .blog-thumb .thumb-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    transition: .25s all linear;
}

.blog-thumb-section .blog-thumb .thumb-img img {
    border-radius: 10px 10px 0 0;
    display: block;
    width: 100%;
}

.blog-thumb-section .blog-thumb .content-blog {
    padding: 33px 37px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    min-height: 205px;
}

.blog-thumb-section .blog-thumb .content-blog span {
    font-size: 14px;
    color: #00c3f2;
    margin-bottom: 10px;
    font-weight: 700;
    display: block;
    text-decoration: none;
}

.blog-thumb-section .blog-thumb .content-blog h2 {
    font-size: 24px;
    color: #000b33;
    line-height: 34px;
    margin-bottom: 25px;
}

.blog-thumb-section .blog-thumb .content-blog.pad-bot-5 h2 {
    margin-bottom: 5px;
}

.blog-thumb-section .blog-thumb .content-blog h4 {
    font-size: 24px;
    color: #000b33;
    margin-bottom: 25px;
}

.blog-thumb-section .blog-thumb .content-blog h4 span {
    font-size: 16px;
    color: #000b33;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 0;
    margin-right: 5px;
}

.blog-thumb-section .blog-thumb .content-blog h4 a {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    text-transform: capitalize;
    border-bottom: 1px solid #fd4c5c;
    display: inline-block;
}

.blog-thumb-section .blog-thumb .content-blog h4 a:hover {
}

.blog-thumb-section .blog-thumb .content-blog .read-more {
    color: #fd4c5c;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    border-bottom: 1px solid #fd4c5c;
    margin-top: 25px;
}

.partners-integrations-popup-sec .list-type {
    padding-left: 47px;
    margin: 21px 0 34px 0;
    display: none;
}

.blog-thumb-section.partners-integrations-popup-sec .blog-thumb .content-blog span {
    font-size: 14px;
    color: #00c3f2;
    margin-bottom: 10px;
    font-weight: 700;
    display: inline-block;
    text-decoration: underline;
    cursor: pointer;
}

.partners-integrations-popup-sec .list-type li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #818596;
    line-height: 22px;
    position: relative;
}

.partners-integrations-popup-sec .list-type li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

.partners-integrations-popup .modal-dialog {
    max-width: 50%;
}

.partners-integrations-popup .modal-header {
    border-bottom: 1px solid #ddd;
}

.partners-integrations-popup .modal-header .modal-title {
    font-size: 22px;
    line-height: 32px;
    color: #000b33;
}

.partners-integrations-popup .modal-header .modal-title span {
    font-size: 14px;
    color: #00c3f2;
    font-weight: 700;
    display: block;
    line-height: 18px;
}

.partners-integrations-popup .modal-dialog {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%) !important;
}

.partners-integrations-popup .left-image-part {
    position: relative;
    left: 1px;
}

.pad-mar-0 {
    padding: 0;
    margin: 0;
}

.partners-integrations-popup .left-image-part img {
    display: block;
    height: 100%;
    object-position: 90% 0;
    object-fit: cover;
    max-width: 100%;
}

.partners-integrations-popup button.btn-close {
    width: 30px;
    height: 30px;
    background: #00c3f2;
    position: absolute;
    top: -10px;
    right: -18px;
    border-radius: 100%;
    border-width: 0;
    color: #fff;
    padding: 1px 4px;
    cursor: pointer;
    z-index: 1;
    pointer-events: auto;
}

.partners-integrations-popup button.btn-close svg {
    width: 26px;
    height: 26px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
}

.partners-integrations-popup .modal-body {
    padding: 20px;
    max-height: 400px;
    overflow: auto;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.partners-integrations-popup .modal-body strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    color: #000b33;
    display: block;
    margin-bottom: 15px;
}

.partners-integrations-popup .modal-body .list-type {
    padding-left: 47px;
    margin: 21px 0 34px 0;
}

.partners-integrations-popup .modal-body .list-type li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #818596;
    line-height: 22px;
    position: relative;
}

.partners-integrations-popup .modal-body .list-type li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

.partners-integrations-popup .modal-body .list-type li .innter-list {
    padding-left: 30px;
    margin: 20px 0;
}

.partners-integrations-popup .modal-body .list-type li .innter-list li:before {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    top: 6px;
    left: -24px;
}

.partners-integrations-popup .modal-body .form-section .mb-3 .form-control {
    padding: 17px 23px;
    border-radius: 10px;
    background: #f8f8f8;
    outline: 0;
    border: 0;
    font-size: 16px;
    color: #606060;
    font-weight: 500;
    resize: none;
}

.partners-integrations-popup .modal-body .form-section .red-btn {
    padding: 14px 39px;
    display: block;
    width: 170px;
    margin: auto;
    margin-top: 20px;
    cursor: pointer;
}

.partners-integrations-popup .modal-body .form-section .red-btn.submiting_btn {
    width: 230px;
}

.partners-integrations-popup .modal-body .file-upload {
    display: block;
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.partners-integrations-popup .modal-body .file-upload .file-select {
    display: block;
    border: 2px solid #606060;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: left;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.partners-integrations-popup .modal-body .file-upload .file-select .file-select-button {
    background: #606060;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    vertical-align: top;
    color: #fff;
    text-transform: capitalize;
}

.partners-integrations-popup .modal-body .file-upload .file-select .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    width: 48%;
    color: #000;
}

.partners-integrations-popup .modal-body .form-section p {
    font-size: 13px;
    margin-top: 6px;
    color: #000b33;
}

.partners-integrations-popup .modal-body .file-upload .file-select:hover {
    border-color: #34495e;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.partners-integrations-popup .modal-body .file-upload .file-select:hover .file-select-button {
    background: #34495e;
    color: #fff;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.partners-integrations-popup .modal-body .file-upload.active .file-select {
    border-color: #3fa46a;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.partners-integrations-popup .modal-body .file-upload.active .file-select .file-select-button {
    background: #3fa46a;
    color: #fff;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.partners-integrations-popup .modal-body .file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.partners-integrations-popup .modal-body .file-upload .file-select.file-select-disabled {
    opacity: .65;
}

.partners-integrations-popup .modal-body .file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #606060;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.partners-integrations-popup .modal-body .file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #606060;
    color: #666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.partners-integrations-popup .modal-body .file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
}

.blog-thumb-section.partners-integrations-popup-sec .blog-thumb .content-blog .read-more {
    margin-top: 0px;
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
}

.conference-page-sec .blog-thumb {
    width: 100%;
    margin-bottom: 0px;
    padding: 33px 0;
}

.conference-page-sec .date-sec {
    margin-bottom: 30px;
    display: flex;
}

.conference-page-sec .blog-thumb .content-blog {
    padding: 0px 27px;
    min-height: unset;
    margin-bottom: 0;
}

.conference-page-sec .date-sec p:nth-child(1) {
    width: 53%;
    margin-bottom: 0 !important;
    margin-right: 8px;
}

.conference-page-sec .date-sec p:nth-child(2) {
    width: 50%;
}

.conference-page-sec .date-sec.loc-sec p:nth-child(1) {
    width: 44%;
}

.conference-page-sec .blog-thumb .content-blog .read-more {
    color: #fd4c5c;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    border-bottom: 1px solid #fd4c5c;
    margin-top: 25px;
    position: absolute;
    bottom: 33px;
}

.conference-page-sec .date-sec p {
    font-size: 14px;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
    position: relative;
    padding-top: 10px;
    display: flex;
    align-items: center;
}

.conference-page-sec .date-sec p b {
    font-size: 14px;
    color: #818596;
    font-weight: 400;
    line-height: 16px;
    display: inline-block;
}

.conference-page-sec .date-sec p span {
    font-size: 14px !important;
    color: #000 !important;
    font-weight: 600 !important;
    display: inline-block;
    margin-bottom: 0 !important;
    margin-right: 3px;
}

.conference-page-sec .date-sec p svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}

.conference-page-sec .col-lg-12 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.conference-page-sec h4 {
    font-weight: 700;
    color: #000b33;
    font-family: Manrope, sans-serif;
    display: block;
    margin-bottom: 25px;
    font-size: 30px;
    line-height: 25px;
    margin-top: 60px;
    padding: 0 15px;
}

.conference-page-sec .row:first-child h4 {
    margin-top: 0px;
}

.conference-page-sec .blog-thumb .content-blog h2 {
    margin-bottom: 0;
}

.conference-page-sec .loc-sec {
    border: 1px solid #818596;
    padding: 10px;
    border-radius: 5px;
    vertical-align: top;
    display: inline-block;
    margin-bottom: 0px;
}

.conference-page-sec .conference-btn {
    position: relative;
}

.conference-page-sec .conference-btn a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    padding: 15px 26px;
}

.conference-page-sec .conference-btn a:hover svg {
    fill: #fd4c5c;
}

.conference-page-sec .col-lg-4 {
    padding: 0 15px;
    margin-bottom: 0;
}

.conference-page-sec .conference-btn a svg {
    width: 25px;
    height: 25px;
    fill: #fff;
    margin-left: 8px;
}

.conference-page-sec .loc-sec .loc-sec-text {
    display: inline-block;
}

.conference-page-sec .loc-sec .loc-sec-icon {
    display: inline-block;
    vertical-align: top;
}

.conference-page-sec .loc-sec .loc-sec-text b {
    font-size: 14px;
    color: #818596;
    font-weight: 400;
    line-height: 16px;
}

.conference-page-sec .loc-sec .loc-sec-text span {
    font-size: 12px !important;
    color: #000 !important;
    font-weight: 600 !important;
    margin-bottom: 4px;
    display: none;
}

.conference-page-sec .loc-sec .loc-sec-icon svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    margin-top: 0;
}

.client-testimonials-banner {
    background: url(../images/testimonial/banner.jpg) no-repeat;
    position: relative;
}

.client-testimonials-banner .overlay {
    background: rgba(23, 70, 130, .8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 5;
}

.client-testimonials-section {
    padding: 100px 0 80px;
}

.client-testimonials-section .padd {
    padding: 0 12px;
    margin-bottom: 24px;
}

.client-testimonials-section .testimonials {
    background: #fff;
    padding: 70px 43px 41px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
    position: relative;
}

.client-testimonials-section .col-lg-6 .testimonials p {
    min-height: 147px;
}

.client-testimonials-section .testimonials .double-quotes {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.client-testimonials-section .testimonials p {
    color: #606060;
    min-height: 174px;
    line-height: 26px;
}

.client-testimonials-section .testimonials .testimonials-details {
    margin-top: 13px;
}

.client-testimonials-section .testimonials .testimonials-details .testimonials-logo {
    width: 73px;
    height: 73px;
    border-radius: 100%;
    border: 2px solid #f1f1f1;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.client-testimonials-section .testimonials .testimonials-details .testimonials-logo img {
    width: 78%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
}

.client-testimonials-section .testimonials .testimonials-details .right-content {
    padding-left: 24px;
    width: 64%;
    display: inline-block;
    vertical-align: middle;
}

.client-testimonials-section .testimonials .testimonials-details .right-content h2 {
    font-size: 18px;
    color: #000b33;
    font-weight: 700;
}

.client-testimonials-section .testimonials .testimonials-details .right-content p {
    font-size: 14px;
    color: #606060;
    font-weight: 500;
    margin-top: 5px;
    min-height: auto;
}

.contact-us-details {
    padding-bottom: 95px;
    margin-top: -170px;
}

.contact-us-details .col-lg-4 {
    padding: 0 20px;
}

.contact-us-details .location-details {
    text-align: center;
    background: #fff;
    border-radius: 15px;
    padding: 42px;
    -webkit-box-shadow: -8px 54px 60px -32px #f8f8f8;
    -moz-box-shadow: -8px 54px 60px -32px #f8f8f8;
    box-shadow: -8px 54px 60px -32px #f8f8f8;
    min-height: 177px;
    z-index: 8;
    position: relative;
}

.contact-us-details .location-details p {
    font-size: 20px;
    color: #606060;
    line-height: 28px;
    margin-top: 38px;
}

.contact-us-details .location-details p a {
    color: #606060;
    text-decoration: none;
}

.contact-us-details .location-details p a:hover {
    color: #fd4c5c;
}

.send-to-laboredge .col-lg-6 {
    padding: 0 28px;
}

.send-to-laboredge .left-side-map iframe {
    width: 100%;
    height: 462px;
}

.send-to-laboredge .left-side-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.send-to-laboredge .send-to-form {
    background: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
    padding: 65px 60px;
    margin-top: 40px;
}

.send-to-laboredge .send-to-form .heading2 {
    font-size: 40px;
    margin-bottom: 46px;
}

.send-to-laboredge .send-to-form .form-content .mb-3 {
    margin-bottom: 22px !important;
}

.send-to-laboredge .send-to-form .form-content .form-control {
    padding: 23px 33px;
    border-radius: 10px;
    background: #f8f8f8;
    outline: 0;
    border: 0;
    font-size: 16px;
    color: #606060;
    font-weight: 500;
    resize: none;
}

.send-to-laboredge .send-to-form .form-content .red-btn {
    padding: 16px 47px;
    cursor: pointer;
    margin-top: 30px;
}

.send-to-laboredge .send-to-form .form-content .red-btn.submiting_btn {
    padding: 13px 47px;
}

.career-section {
    padding: 100px 0 73px;
}

.career-section .accordion-container {
    position: relative;
    height: auto;
}

.career-section .set {
    position: relative;
    width: 100%;
    height: auto;
}

.career-section .set>a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
}

.career-section .set>a i {
    float: right;
    margin-top: 2px;
}

.career-section .set>a.active {
    background-color: #39c;
    color: #fff;
}

.career-section .content {
    display: none;
    margin-top: -121px;
    min-height: 201px;
    background: #fff;
    z-index: 5;
    position: relative;
}

.career-section .accordion-container .set {
    margin-bottom: 28px;
}

.career-section .accordion-container .set .accordion-list {
    background: #fff;
    padding: 27px 74px;
    border: 2px solid #eee;
    border-radius: 10px;
}

.career-section .accordion-container .set .accordion-list .left-part {
    width: 83%;
    display: inline-block;
    vertical-align: middle;
    font-size: 28px;
    color: #000b33;
    font-weight: 700;
    line-height: 56px;
    font-family: Manrope, sans-serif;
}

.career-section .accordion-container .set .accordion-list .left-part p {
    color: #606060;
    font-weight: 500;
    display: none;
}

.career-section .accordion-container .set .accordion-list .button-right {
    display: inline-block;
    width: 15%;
    vertical-align: middle;
    text-align: center;
}

.career-section .accordion-container .set .accordion-list .button-right a, .career-section .accordion-container .set .accordion-list .button-right i {
    padding: 19px 25px;
    font-size: 16px;
    color: #606060;
    font-weight: 600;
    text-transform: capitalize;
    border: 2px solid #606060;
    border-radius: 10px;
    cursor: pointer;
    transition: .25s all linear;
}

.career-section .accordion-container .set .accordion-list .button-right i:hover {
    background: #606060;
    color: #fff;
    transition: .25s all linear;
}

.career-section .accordion-container .set .accordion-list .button-right a {
    background: #606060;
    color: #fff;
    text-decoration: none;
    display: none;
    line-height: normal;
    margin-left: 27px;
}

.career-section .accordion-container .set .content {
    padding: 82px 76px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
}

.career-section .accordion-container .set .content .padd {
    padding: 0 20px;
}

.career-section .accordion-container .set .content .left-side-part .heading2 {
    font-size: 44px;
    margin-bottom: 24px;
}

.career-section .accordion-container .set .content .left-side-part p {
    font-size: 18px;
    color: #606060;
    line-height: 30px;
    margin-bottom: 34px;
}

.career-section .accordion-container .set .content .left-side-part .read-more {
    font-size: 18px;
    color: #fd4c5c;
    text-decoration: none;
    border-bottom: 1px solid #fd4c5c;
    font-weight: 600;
}

.career-section .accordion-container .set .content .left-side-part .red-btn {
    padding: 18px 36px;
    margin-top: 45px;
}

.career-section .accordion-container .set .content .right-image img {
    display: inline-block;
    width: auto;
    border-radius: 15px;
}

.career-section .accordion-container .set .content .right-image .up-arrow {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f5f5f5;
    position: relative;
    display: none;
    vertical-align: bottom;
}

.career-section .accordion-container .set .content .right-image .up-arrow svg {
    width: 18px;
    height: 18px;
    color: #060606;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    margin: auto;
}

.career-section .accordion-container .set .content .right-image .up-arrow:hover {
    background: #fd4c5c;
}

.career-section .accordion-container .set .content .right-image .up-arrow:hover svg {
    color: #fff;
}

.candidate-portal-banner {
    padding: 38px 0 45px;
}

.top-blue-banner.candidate-portal-banner .right-banner-part .right-feature-img {
    z-index: 6;
    position: relative;
}

.top-blue-banner.mobile-page-banner.candidate-portal-banner .right-banner-part .blue-cut-mobile {
    top: -18px;
}

.top-blue-banner.mobile-page-banner.candidate-portal-banner.api-documentation .left-banner-part {
    margin-top: 90px;
}

.top-blue-banner.candidate-portal-banner .right-banner-part .right-feature-img img {
    border-radius: 15px;
}

.candidate-portal-banner .left-banner-part p br {
    display: none;
}

.candidate-portal-banner .row .col-lg-6:first-child {
    display: flex;
    align-items: center;
    justify-content: left;
}

.featurs-list-section.candidate-required-document .featurs-list-box .list-for-point {
    padding-left: 33px;
}

.featurs-list-section.candidate-required-document .featurs-list-box .list-for-point li {
    font-size: 15px;
    color: #606060;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 12px;
    position: relative;
}

.featurs-list-section.candidate-required-document .featurs-list-box .list-for-point li:last-child {
    margin-bottom: 0;
}

.candidate-required-document {
    padding: 100px 0 67px;
}

.featurs-list-section.candidate-required-document .featurs-list-box .list-for-point li svg {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 7px;
    left: -27px;
}

.featurs-list-section.candidate-required-document .featurs-list-box .list-for-point.blue svg {
    color: #00c3f2;
}

.featurs-list-section.candidate-required-document .featurs-list-box .list-for-point.green svg {
    color: #00bb98;
}

.featurs-list-section.candidate-required-document .featurs-list-box .list-for-point.orenage svg {
    color: #f56b2a;
}

.featurs-list-section.candidate-required-document .col-lg-4 {
    margin-bottom: 30px;
}

.candidate-assignments {
    padding: 86px 0 80px;
    background: #0c2f6f;
}

.candidate-assignments .nav-tabs {
    border-bottom: 2px solid #3d598c;
    margin: 0 200px;
}

.candidate-assignments .nav-tabs .nav-item {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    text-align: center;
}

.candidate-assignments .nav-tabs .nav-item button {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 400;
    color: #fff;
    border: 0;
    outline: 0;
    box-shadow: none;
    border-radius: 0;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    padding: 28px 10px;
    cursor: pointer;
}

.candidate-assignments .nav-tabs .nav-item .nav-link.active {
    background: 0 0;
    color: #fff;
    font-weight: 600;
}

.candidate-assignments .nav-tabs .nav-item .nav-link.active {
    border-bottom: 2px solid #fff;
}

.candidate-assignments .conent-part-tab {
    padding-top: 74px;
    padding-bottom: 0;
}

.candidate-assignments.candidate-assignments-height .conent-part-tab .row {
    min-height: 430px;
}

.candidate-assignments .conent-part-tab .col-lg-6 {
    padding: 0 30px;
}

.candidate-assignments .conent-part-tab .left-side-img {
    position: relative;
}

.candidate-assignments .conent-part-tab .left-side-img img {
    display: block;
}

.candidate-assignments .conent-part-tab .left-side-img .dashboad-img {
    position: relative;
    z-index: 5;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}

.candidate-assignments .conent-part-tab .left-side-img .orange-cut {
    position: absolute;
    top: 247px;
    left: -74px;
}

.candidate-assignments .conent-part-tab .left-side-img.assignments-tab-img .orange-cut {
    top: 221px;
}

.candidate-assignments .conent-part-tab .left-side-img.assignments-tab-img .small-img {
    bottom: -107px;
    right: 85px;
}

.candidate-assignments .conent-part-tab .left-side-img.profile-img .orange-cut {
    top: -30px;
    left: -53px;
    width: 21%;
}

.candidate-assignments .conent-part-tab .left-side-img.profile-img .small-img {
    bottom: auto;
    right: 47px;
    z-index: 5;
    top: -88px;
    width: 28%;
}

.candidate-assignments .conent-part-tab .left-side-img .small-img {
    position: absolute;
    bottom: -47px;
    right: -78px;
    z-index: 5;
    width: 25%;
}

.candidate-assignments .tab-content {
    position: relative;
}

.candidate-assignments .tab-content .orange-cut1 {
    position: absolute;
    right: -77px;
    top: -79px;
    display: none;
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content {
    padding-left: 30px;
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content .heading2 {
    color: #fff;
    margin-bottom: 40px;
    line-height: revert;
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .item-slider p {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    padding-left: 36px;
    line-height: 28px;
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .item-slider {
    margin: 12px 0;
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .item-slider p:before {
    content: " ";
    width: 18px;
    height: 14px;
    background: url(../images/candidate-portal/tick-white.png) no-repeat;
    position: absolute;
    top: 8px;
    left: 0;
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    bottom: -79px;
    left: 0;
    margin: auto;
    cursor: pointer;
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .slick-arrow.slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/left-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .slick-arrow.slick-next {
    left: 70px;
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .slick-arrow.slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .slick-arrow.slick-disabled {
    opacity: .5;
}

.industry-stats-job-graph .repoting-stpes .right-steps-content .repoting-dashboard img {
    border-radius: 15px;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
}

.industry-stats-job-graph .repoting-stpes.job-bill-setps .right-steps-content .yellow-cut {
    position: absolute;
    top: -66px;
    left: -89px;
}

.industry-stats-job-graph .repoting-stpes.job-bill-setps .right-steps-content .repoting-dashboard img {
    margin-top: 0;
}

.reposting-section .repoting-stpes.job-management-stpes.profession-specialty-setps .right-steps-content .repoting-dashboard img {
    margin-top: 0;
}

.reposting-section .repoting-stpes.job-management-stpes.profession-specialty-setps .right-steps-content .light-bule-cut {
    position: absolute;
    right: 168px;
    top: -53px;
}

.reposting-section.industry-stats-job-graph .repoting-stpes .left-steps-content p {
    padding-right: 50px;
}

.industry-stats-job-graph .mobile-image-show {
    display: none;
}

.top-blue-banner.api-documentation .left-banner-part {
    margin-top: 100px;
}

.api-documentation {
    background: #fff;
    height: 80vh;
}

.api-documentation .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
}

.api-documentation .container .row {
    width: 100%;
}

.top-blue-banner.api-documentation .left-banner-part .breadcrumb .breadcrumb-item::after {
    color: #000b35;
}

.top-blue-banner.candidate-portal-banner.api-documentation .right-banner-part .right-feature-img img {
    border-radius: 100%;
}

.top-blue-banner.mobile-page-banner.candidate-portal-banner.api-documentation .right-banner-part .blue-cut-mobile {
    top: 60%;
    right: auto;
    left: 34px;
    z-index: 7;
    width: 31%;
}

.about-us-details .repoting-stpes .left-steps-content strong {
    font-size: 18px;
    color: #000b33;
    line-height: 25px;
    font-weight: 600;
    display: block;
    margin-top: 41px;
}

.about-us-details .repoting-stpes .left-steps-content .list-of-septs {
    margin-top: 28px;
}

.about-us-details .repoting-stpes .left-steps-content ul li {
    margin-bottom: 10px;
}

.about-us-details .repoting-stpes .right-steps-content .repoting-dashboard img {
    border-radius: 15px;
}

.about-us-details .repoting-stpes .right-steps-content .yellow-repoting-cut {
    right: -63px;
}

.featurs-list-section.about-page-listing .featurs-list-box {
    text-align: center;
    min-height: 355px;
}

.featurs-list-section.about-page-listing .featurs-list-box .featurs-icon img {
    display: block;
    margin: auto;
}

.featurs-list-section.about-page-listing .featurs-list-box p {
    text-align: left;
}

.featurs-list-section.ats-list-section {
    padding: 80px 0;
}

.number-of-count {
    padding: 47px 0 0;
}

.number-of-count .col-lg-3 {
    padding: 0 16px;
}

.number-of-count .counter-box {
    text-align: center;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 25px 10px;
    border-radius: 10px;
    width: 100%;
}

.number-of-count .counter-box .number {
    font-size: 42px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
}

.number-of-count .counter-box h3 {
    font-size: 18px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    margin-left: 27px;
    text-transform: capitalize;
    text-align: left;
    line-height: 25px;
}

.number-of-count .counter-box .count-intro h3 {
    font-size: 16px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    text-transform: capitalize;
    text-align: center;
    line-height: 25px;
    margin-bottom: 8px;
    margin-left: 0;
}

.number-of-count .counter-box .count-para p {
    margin-top: 8px;
}

.number-of-count .counter-box.green {
    background: #e5f8f4;
}

.number-of-count .counter-box.red {
    background: #ffedee;
}

.number-of-count .counter-box.purple {
    background: #e9eeff;
}

.number-of-count .counter-box.orange {
    background: #fef0e9;
}

.philosophy-section {
    padding: 161px 0;
}

.philosophy-section .philosophy-left {
    position: relative;
}

.philosophy-section .philosophy-left .blue-cut {
    position: absolute;
    top: -39px;
    right: 168px;
}

.philosophy-section .philosophy-left .founder-img {
    margin-left: 120px;
    z-index: 5;
    position: relative;
}

.philosophy-section .philosophy-left .founder-img img {
    border-radius: 15px;
}

.philosophy-section .philosophy-left .founder-quart {
    width: 223px;
    background: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 29px 1px #f8f8f8;
    -moz-box-shadow: 0 0 29px 1px #f8f8f8;
    box-shadow: 0 0 29px 1px #f8f8f8;
    text-align: center;
    padding: 35px 30px;
    position: absolute;
    bottom: -52px;
    left: 297px;
    z-index: 6;
}

.philosophy-section .philosophy-left .founder-quart .quotation {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
}

.philosophy-section .philosophy-left .founder-quart h4 {
    font-size: 20px;
    color: #f56b2a;
    font-weight: 600;
    margin-bottom: 25px;
}

.philosophy-section .philosophy-left .founder-quart strong {
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.philosophy-section .philosophy-right .heading2 {
    margin-bottom: 27px;
}

.philosophy-section .philosophy-right p {
    margin-bottom: 30px;
}

.vms-end-of-year-wrap-2023 {
    padding: 60px 0;
    position: relative;
}

.vms-end-of-year-wrap-2023-img {
}

.vms-end-of-year-wrap-2023-img img {
    border-radius: 10px;
}

.another-transformative-sec {
    padding: 60px 0;
    position: relative;
}

.another-transformative-sec .star-1-img {
    width: 8%;
    position: absolute;
    right: 0;
    top: 120px;
}

.another-transformative-sec .star-1-img img {
    width: 100%;
}

.another-transformative-sec .row {
    align-items: center;
}

.another-transformative-sec-left {
    width: 80%;
}

.another-transformative-sec-left img {
    width: 100%;
}

.another-transformative-sec-right {
}

.another-transformative-sec-right p {
    font-size: 22px;
    color: #5a5958;
    line-height: 36px;
    padding-right: 100px;
    margin-bottom: 30px;
}

.another-transformative-sec-right p:last-child {
    margin-bottom: 0px;
}

.top-ten-highlights-sec {
    padding: 60px 0 100px;
    position: relative;
}

.top-ten-highlights-sec .star-1-img {
    width: 6%;
    position: absolute;
    right: 0;
    top: 350px;
}

.top-ten-highlights-sec .star-1-img img {
    width: 100%;
}

.top-ten-highlights-sec .star-2-img {
    width: 4%;
    position: absolute;
    left: 0;
    top: 250px;
}

.top-ten-highlights-sec .star-2-img img {
    width: 100%;
}

.top-ten-highlights-sec .rolling-01-img {
    width: 6%;
    position: absolute;
    right: 0;
    top: 310px;
}

.top-ten-highlights-sec .rolling-01-img img {
    width: 100%;
}

.top-ten-highlights-sec .rolling-02-img {
    width: 5%;
    position: absolute;
    left: 0;
    top: -80px;
}

.top-ten-highlights-sec .rolling-02-img img {
    width: 100%;
}

.top-ten-highlights-sec-left {
    padding-right: 50px;
    position: relative;
}

.top-ten-highlights-sec-left h2 {
    color: #c76601;
}

.top-ten-highlights-sec-right-img {
    position: absolute;
    right: 0;
    border-radius: 15px;
    overflow: hidden;
    top: 60px;
    height: 250px;
    width: 62%;
}

.top-ten-highlights-sec-right-img img {
    width: 100%;
    object-fit: cover;
}

.top-ten-highlights-sec-right {
    padding-left: 30px;
}

.com-sec-cont-box {
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    min-height: auto;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    margin: 50px 20px 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.com-sec-cont {
}

.com-sec-cont img.decorate-img {
    width: 140px;
    position: absolute;
    top: -50px;
    right: 20%;
}

.com-sec-cont img.decorate-img.vms-end-of-year-wrap-img {
    width: 200px;
    right: 0;
}

.com-sec-cont img.decorate-img.mob-img {
    top: -140px;
}

.com-sec-cont h4 {
    font-weight: 700;
    color: #000b33;
    font-family: Manrope, sans-serif;
    display: block;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
    margin-top: 110px !important;
}

.com-sec-cont p {
    font-size: 18px;
    color: #606060;
    line-height: 30px;
}

.com-sec-cont img.dashboard-img {
    position: absolute;
    top: -130px;
    left: 0;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    right: 0;
}

.agency-dashboard-sec {
    padding: 0px 0 100px;
    position: relative;
}

.agency-dashboard-sec .star-3-img {
    width: 4%;
    position: absolute;
    left: 0;
    top: 0px;
}

.agency-dashboard-sec .star-3-img img {
    width: 100%;
}

.agency-dashboard-sec .rolling-03-img {
    width: 6%;
    position: absolute;
    right: 0;
    top: 0px;
}

.agency-dashboard-sec .rolling-03-img img {
    width: 100%;
}

.agency-dashboard-sec-box {
    background: #254580;
    padding: 40px 80px;
    border-radius: 20px;
    position: relative;
}

.agency-dashboard-sec-box h4 {
    font-weight: 700;
    color: #fff !important;
    font-family: Manrope, sans-serif;
    display: block;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
    position: relative;
}

.agency-dashboard-sec-box h4 a {
    color: #fff;
}

.agency-dashboard-sec-box p {
    font-size: 18px;
    color: #fff !important;
    line-height: 30px;
    position: relative;
    z-index: 1;
}

.align-left .top-ten-highlights-sec-right-img {
    left: 0;
    right: unset;
}

.align-left .top-ten-highlights-sec-right {
    padding-left: 0px;
    padding-right: 30px;
}

.agency-dashboard-sec .agency-dashboard-sec-box .col-12 {
    position: relative;
}

.agency-dashboard-sec .agency-dashboard-sec-box .agency-dashboard-sec-box-area {
    padding-right: 50px;
    position: relative;
}

.agency-dashboard-sec .agency-dashboard-sec-box .col-12.col-lg-4:last-child .agency-dashboard-sec-box-area {
    padding-right: 0px;
}

.looking-ahead-sec {
    padding-bottom: 100px;
}

.looking-ahead-sec-cont {
}

.looking-ahead-sec-cont p {
    font-size: 24px;
    color: #606060;
    line-height: 30px;
    margin-bottom: 40px;
}

.looking-ahead-sec-cont p:last-child {
    margin-bottom: 0px;
    font-weight: 700;
}

.no1 {
    position: absolute;
    bottom: 0;
    left: -80px;
}

.no2 {
    position: absolute;
    bottom: -70px;
    left: 0px;
}

.no3 {
    position: absolute;
    top: 0;
    left: -80px;
}

.no4 {
    position: absolute;
    bottom: -110px;
    right: 0;
}

.no5 {
    position: absolute;
    bottom: -10px;
    right: -80px;
}

.no6 {
    position: absolute;
    bottom: 0;
    left: -70px;
}

.no7 {
    position: absolute;
    bottom: 0;
    right: -100px;
}

.no8 {
    position: absolute;
    top: 0px;
    left: 0;
}

.no9 {
    position: absolute;
    top: 0px;
    left: 0;
}

.no10 {
    position: absolute;
    top: 0px;
    left: 0;
}

img.no-img {
    height: 100px;
}

ul.bulet-point-li {
    padding-left: 32px;
    padding-right: 0px;
    margin-top: 20px;
    position: relative;
}

ul.bulet-point-li li {
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
    position: relative;
    font-size: 18px;
    color: #606060;
}

ul.bulet-point-li li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

ul.bulet-point-li.white li {
    color: #fff;
}

ul.bulet-point-li.white li:before {
    content: " ";
    width: 20px;
    height: 14px;
    background: url(../images/candidate-portal/tick-white.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

.core-team {
    padding-bottom: 24px;
}

.core-team .heading-team {
    text-align: center;
}

.core-team .heading-team .heading2 {
    margin-bottom: 36px;
}

.core-team .team-list {
    margin-top: 68px;
}

.core-team .team-list .col-lg-3 {
    padding: 0 25px;
}

.core-team .team-list .team-details .member-img img {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.core-team .team-list .team-details .member-img {
    margin-bottom: 30px;
    position: relative;
}

.core-team .team-list .team-details .member-img .social-icon {
    position: absolute;
    right: 50%;
    bottom: -104px;
}

.core-team .team-list .team-details .member-img .social-icon a {
    color: #000b33;
    text-decoration: none;
}

.core-team .team-list .team-details .member-img .social-icon a:hover {
    color: #0f78a8;
}

.core-team .team-list .team-details .member-img .social-icon svg {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    transform: translateY(-50%);
    border-radius: 4px;
    color: #2b59ff;
}

.core-team .team-list .team-details .content {
    text-align: center;
}

.core-team .team-list .team-details .content strong {
    font-size: 20px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    display: block;
    margin-bottom: 13px;
}

.core-team .team-list .team-details .content p {
    font-size: 15px;
    color: #606060;
}

.core-team .team-list .team-details .content .social-icon {
    margin-top: 20px;
}

.core-team .team-list .team-details .content .social-icon a {
    color: #000b33;
    text-decoration: none;
}

.core-team .team-list .team-details .content .social-icon a svg {
    width: 20px;
    height: 20px;
    margin: auto;
    color: #2b59ff;
}

.client-logos-section {
    padding: 80px 0 80px;
}

.client-logos-section .col {
    text-align: center;
    vertical-align: middle;
}

.client-logos-section .col .brandlogo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-banner-section {
    padding: 100px 0 151px;
    background: #00c3f2;
}

.top-blue-banner.mobile-page-banner.solution-banner-section .left-banner-part .heading2, .top-blue-banner.mobile-page-banner.solution-banner-section .left-banner-part p {
    color: #fff;
}

.top-blue-banner.mobile-page-banner.solution-banner-section .left-banner-part {
    margin-top: 84px;
}

.reposting-section.solution-stpes-section .repoting-stpes .right-steps-content .repoting-dashboard {
    text-align: left;
}

.reposting-section.solution-stpes-section .repoting-stpes.imagine-a-vms-steps .right-steps-content .repoting-dashboard img {
    border-radius: 15px;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
    padding: 0;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .repoting-dashboard img {
    margin: revert;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-microservices, .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner {
    margin-bottom: 118px;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner {
    margin-bottom: 0;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .yellow-repoting-cut {
    right: -73px;
    top: 66px;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content {
    padding-left: 50px;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content p {
    margin-bottom: 49px;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content p br {
    display: none;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content .quert {
    margin-bottom: 49px;
    position: relative;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content .quert .quart-img {
    position: absolute;
    top: 0;
    left: -56px;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content .quert strong {
    font-size: 22px;
    color: #606060;
    font-weight: 600;
    display: block;
    line-height: 30px;
    margin-bottom: 16px;
    z-index: 5;
    position: relative;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content .quert span {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.reposting-section.solution-stpes-section .repoting-stpes.why-microservices .left-steps-content ul li {
    margin-bottom: 10px;
}

.featurs-list-section.solution-freatures .featurs-list-box .featurs-icon {
    text-align: center;
}

.featurs-list-section.solution-freatures .featurs-list-box {
    text-align: center;
    min-height: 298px;
}

.featurs-list-section.solution-freatures .padd {
    padding: 0 15px;
    margin-bottom: 30px;
}

.featurs-list-section.solution-freatures .featurs-list-box .featurs-icon img {
    margin: auto;
}

.compenents-nexus {
    padding: 192px 0;
}

.compenents-nexus .left-part-nexus .heading2 {
    margin-bottom: 24px;
}

.compenents-nexus .left-part-nexus p {
    margin-bottom: 59px;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number {
    display: flex;
    opacity: .5;
    cursor: pointer;
    height: 62px;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number span {
    width: 37px;
    height: 23px;
    border-radius: 100%;
    background: #f7f7f7;
    text-align: center;
    padding: 7px 0;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    position: relative;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number span:before {
    width: 1px;
    height: 18px;
    background: #eaeaea;
    position: absolute;
    bottom: -23px;
    left: 0;
    right: 0;
    content: " ";
    margin: auto;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number b {
    font-size: 20px;
    color: #606060;
    padding-left: 20px;
    margin-top: 11px;
    font-weight: 600;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(1) span {
    background: #00bb98;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(2) span {
    background: #2b59ff;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(3) span {
    background: #f56b2a;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(4) span {
    background: #fd4c5c;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(5) span {
    background: #00bb98;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(6) span {
    background: #2b59ff;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(7) span {
    background: #f56b2a;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(8) span {
    background: #fd4c5c;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(9) span {
    background: #00bb98;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number:nth-child(10) span {
    background: #00bb98;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #ffedee;
    position: absolute;
    bottom: -84px;
    left: 0;
    margin: auto;
    z-index: 9;
    cursor: pointer;
    transform: rotate(-90deg);
}

.compenents-nexus .left-part-nexus .nexus-number-slider .slick-arrow.slick-disabled {
    opacity: .5;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .slick-arrow.slick-prev:before {
    content: " ";
    width: 14px;
    height: 17px;
    background: url(../images/solution/uparrw.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.compenents-nexus .left-part-nexus .nexus-number-slider .slick-arrow.slick-prev {
    bottom: -83px;
    left: 0;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .slick-arrow.slick-next:before {
    content: " ";
    width: 14px;
    height: 17px;
    background: url(../images/solution/down-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.compenents-nexus .left-part-nexus .nexus-number-slider .slick-arrow.slick-next {
    left: 57px;
}

.compenents-nexus .left-part-nexus .nexus-number-slider .item-number.slick-current {
    opacity: 1;
}

.compenents-nexus .right-part-nexus {
    position: relative;
    padding-left: 20px;
}

.compenents-nexus .col-lg-6 {
    padding: 0 15px;
}

.compenents-nexus .right-part-nexus .red-cut {
    position: absolute;
    top: 107px;
    left: 115px;
}

.compenents-nexus .right-part-nexus .componant-img {
    text-align: right;
    margin-bottom: -67px;
    margin-right: 46px;
    height: 226px;
}

.compenents-nexus .right-part-nexus .componant-img img {
    border-radius: 15px;
    float: right;
}

.compenents-nexus .right-part-nexus .nexus-details {
    padding: 90px 40px 50px;
    background: #2b59ff;
    border-radius: 15px;
}

.compenents-nexus .right-part-nexus .nexus-details.green {
    background: #00bb98;
}

.compenents-nexus .right-part-nexus .nexus-details.blue {
    background: #2b59ff;
}

.compenents-nexus .right-part-nexus .nexus-details.oreange {
    background: #f56b2a;
}

.compenents-nexus .right-part-nexus .nexus-details.red {
    background: #fd4c5c;
}

.compenents-nexus .right-part-nexus .nexus-details p {
    color: #fff;
    margin-bottom: 31px;
}

.compenents-nexus .right-part-nexus .nexus-details a {
    text-decoration: none;
    color: #fff;
    line-height: 24px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid #fff;
}

.compenents-nexus .mobile-view-accodina {
    display: none;
}

.text-strong {
    font-size: 22px;
    color: #606060;
    font-weight: 600;
    display: block;
    line-height: 30px;
    margin-bottom: 16px;
}

.team-member-box {
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
    margin: 50px 20px 0;
}

.team-member-box img {
    width: 100%;
}

.team-member-box h4 {
    font-size: 18px;
    line-height: 33px;
    color: #000b33;
    font-weight: 500;
    position: relative;
    text-align: center;
    padding: 15px 0;
}

.bog-details-section .list-option li span {
    color: #fd4c5c;
}

.eqlh {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.our-panelist-box {
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
    margin: 50px 20px 0;
    cursor: pointer;
    width: 100%;
}

.our-panelist-box img {
    width: 70%;
    border-radius: 50%;
    display: block;
    margin: 40px auto 0;
}

.our-panelist-box h4 {
    font-size: 22px;
    color: #606060;
    font-weight: 600;
    display: block;
    line-height: 30px;
    text-align: center;
    padding: 20px 0 0;
}

.our-panelist-box p {
    line-height: 24px;
    font-size: 16px;
    color: #818596;
    font-weight: 400;
    padding: 0 40px;
    text-align: center;
    margin-bottom: 0;
}

.our-panelist-box h5 {
    line-height: 24px;
    font-size: 14px;
    color: #818596;
    font-weight: 400;
    padding: 20px 0;
    text-align: center;
}

.panelist-popup-header {
    width: 100%;
    display: flex;
}

.panelist-popup-header-img {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.panelist-popup-header-img img {
    width: 100%;
}

.common-popup .panelist-popup-close-btn {
    width: 30px;
    height: 30px;
    background: #00c3f2;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 100%;
    border-width: 0;
    color: #fff;
    padding: 1px 4px;
    cursor: pointer;
}

.panelist-popup-header h5 {
    display: inline-block;
    width: 78%;
    vertical-align: middle;
    margin-left: 10px;
    font-size: 20px;
    color: #0c2f6f;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    line-height: 22px;
}

.panelist-popup-header h5 span {
    font-size: 14px;
    line-height: 18px;
}

.medical-staffing-box {
    margin: 0 30px 50px 0;
}

.medical-staffing-box h3 {
    font-size: 24px;
    color: #000b33;
    font-weight: 700;
    font-family: Manrope, sans-serif;
    margin: 30px 0;
}

.mar-bot-0 {
    margin-bottom: 0 !important;
}

.medical-staffing-box p {
    line-height: 24px;
    font-size: 16px;
    color: #818596;
    font-weight: 400;
    margin-bottom: 30px;
}

.achieve-better-h3 {
    margin: 0 0 30px;
}

.achieve-better-h3 span {
    color: #00c3f2;
}

.career-popup .modal-dialog {
    max-width: 602px;
}

.career-popup .modal-header {
    border-bottom: 1px solid #ddd;
}

.career-popup .modal-header .modal-title {
    font-size: 22px;
    line-height: 32px;
    color: #000b33;
}

.career-popup .modal-dialog {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%) !important;
}

.career-popup .modal-header .btn-close {
    width: 30px;
    height: 30px;
    background: #00c3f2;
    position: absolute;
    top: 18px;
    right: 22px;
    border-radius: 100%;
    border-width: 0;
    color: #fff;
    padding: 1px 4px;
    cursor: pointer;
}

.career-popup .modal-header .btn-close svg {
    width: 26px;
    height: 26px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
}

.career-popup .modal-body {
    padding: 20px;
    max-height: 400px;
    overflow: auto;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.career-popup .modal-body strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    color: #000b33;
    display: block;
    margin-bottom: 15px;
}

.career-popup .modal-body .list-type {
    padding-left: 47px;
    margin: 21px 0 34px 0;
}

.career-popup .modal-body .list-type li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #606060;
    line-height: 22px;
    position: relative;
}

.career-popup .modal-body .list-type li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

.career-popup .modal-body .list-type li .innter-list {
    padding-left: 30px;
    margin: 20px 0;
}

.career-popup .modal-body .list-type li .innter-list li:before {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    top: 6px;
    left: -24px;
}

.career-popup .modal-body .form-section .mb-3 .form-control {
    padding: 17px 23px;
    border-radius: 10px;
    background: #f8f8f8;
    outline: 0;
    border: 0;
    font-size: 16px;
    color: #606060;
    font-weight: 500;
    resize: none;
}

.career-popup .modal-body .form-section .red-btn {
    padding: 14px 39px;
    display: block;
    width: 170px;
    margin: auto;
    margin-top: 20px;
    cursor: pointer;
    z-index: 5;
    position: relative;
}

.career-popup .modal-body .form-section .red-btn.submiting_btn {
    width: 230px;
}

.career-popup .modal-body .file-upload {
    display: block;
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.career-popup .modal-body .file-upload .file-select {
    display: block;
    border: 2px solid #606060;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    text-align: left;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.career-popup .modal-body .file-upload .file-select .file-select-button {
    background: #606060;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-weight: 600;
    vertical-align: top;
    color: #fff;
    text-transform: capitalize;
}

.career-popup .modal-body .file-upload .file-select .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    width: 48%;
    color: #000;
}

.career-popup .modal-body .form-section p {
    font-size: 13px;
    margin-top: 6px;
    color: #000b33;
}

.career-popup .modal-body .file-upload .file-select:hover {
    border-color: #34495e;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.career-popup .modal-body .file-upload .file-select:hover .file-select-button {
    background: #34495e;
    color: #fff;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.career-popup .modal-body .file-upload.active .file-select {
    border-color: #3fa46a;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.career-popup .modal-body .file-upload.active .file-select .file-select-button {
    background: #3fa46a;
    color: #fff;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.career-popup .modal-body .file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.career-popup .modal-body .file-upload .file-select.file-select-disabled {
    opacity: .65;
}

.career-popup .modal-body .file-upload .file-select.file-select-disabled:hover {
    cursor: default;
    display: block;
    border: 2px solid #606060;
    color: #34495e;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    text-align: left;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.career-popup .modal-body .file-upload .file-select.file-select-disabled:hover .file-select-button {
    background: #606060;
    color: #666;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.career-popup .modal-body .file-upload .file-select.file-select-disabled:hover .file-select-name {
    line-height: 40px;
    display: inline-block;
    padding: 0 10px;
}

.career-popup .modal-body h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    color: #000b33;
    display: block;
    margin-bottom: 15px;
}

.themobiledevice .modal-body .btn-close {
    width: 30px;
    height: 30px;
    background: #00c3f2;
    position: absolute;
    top: -8px;
    right: -6px;
    border-radius: 100%;
    border-width: 0;
    color: #fff;
    padding: 1px 4px;
    cursor: pointer;
}

.themobiledevice .modal-body .btn-close svg {
    width: 24px;
    height: 24px;
}

.themobiledevice .modal-body {
    border-radius: 10px;
}

.themobiledevice .modal-body .slider-popup-modal .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin: auto;
    cursor: pointer;
    z-index: 9;
}

.themobiledevice .modal-body .slider-popup-modal .slick-arrow.slick-prev {
    left: 0;
    right: auto;
}

.themobiledevice .modal-body .slider-popup-modal .slick-arrow.slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/left-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.themobiledevice .modal-body .slider-popup-modal .slick-arrow.slick-next {
    right: 0;
    left: auto;
}

.themobiledevice .modal-body .slider-popup-modal .slick-arrow.slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.themobiledevice .modal-body strong {
    line-height: 20px;
    font-size: 17px;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: 700;
    margin-top: 25px;
}

.themobiledevice .modal-body .mobile-screen img {
    width: 77%;
    margin: auto;
}

.themobiledevice .modal-content {
    background: 0 0;
    border: 0;
    box-shadow: none;
    outline: 0;
}

.themobiledevice .modal-content .mobile-emtty {
    position: absolute;
    width: 77%;
    margin: 0 auto;
    display: block;
    left: 0;
    right: 0;
    z-index: 9;
}

.themobiledevice .modal-content .slider-popup-modal .item-slider .mobile-screen {
    border-radius: 15px;
}

.themobiledevice .modal-content .slider-popup-modal .item-slider .mobile-screen img {
    border-radius: 23px;
}

.thank-you .left-banner-part .heading2 span {
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 40px;
}

.thank-you .left-banner-part .heading2 {
    margin-bottom: 20px;
}

.thank-you .left-banner-part .red-btn {
    padding: 20px 48px;
}

.error-page-section .left-banner-part .heading2 {
    font-size: 40px;
    margin-bottom: 36px;
}

.error-page-section .left-banner-part .heading2 span {
    font-size: 163px;
    display: block;
    margin-bottom: 54px;
}

.error-page-section .left-banner-part .red-btn {
    padding: 20px 45px;
}

.top-blue-banner.candidate-portal-banner.api-documentation.error-page-section .right-banner-part .right-feature-img img {
    border-radius: 0;
}

.privacy-policy {
    padding: 119px 0;
}

.privacy-policy p {
    margin-bottom: 30px;
    padding-right: 0 !important;
}

.privacy-policy p a {
    color: #0c2f6f;
}

.reposting-section.about-us-details.privacy-policy .repoting-stpes {
    margin-bottom: 0;
}

.bog-details-section .padd {
    padding: 0 20px;
}

.bog-details-section .job-postings {
    width: 61%;
    margin: auto;
}

.top-blue-banner.vms-banner-section .right-banner-part .red-cut {
    position: absolute;
    left: 32px;
    bottom: 55px;
}

.top-blue-banner.mobile-page-banner.solution-banner-section.vms-banner-section .left-banner-part p {
    padding-right: 100px;
}

.top-blue-banner.mobile-page-banner.solution-banner-section.vms-banner-section.vms-mobile-gif .left-banner-part p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 25px;
    padding-right: 43px;
}

.top-blue-banner.vms-banner-section .left-blue-cut {
    bottom: 79px;
}

.top-blue-banner.vms-banner-section .left-banner-part p {
    line-height: 32px;
    font-size: 20px;
    margin-bottom: 14px;
}

.reposting-section.vms-stpes-section .repoting-stpes .left-steps-content .heading2 {
    margin-bottom: 20px;
}

.reposting-section.vms-stpes-section .repoting-stpes .left-steps-content strong {
    font-size: 22px;
    font-weight: 700;
    color: #606060;
    line-height: 30px;
    margin-bottom: 20px;
    display: block;
}

.reposting-section.vms-stpes-section .repoting-stpes .left-steps-content p {
    margin-bottom: 10px;
}

.reposting-section.solution-stpes-section.vms-stpes-section .repoting-stpes.why-not-partner .left-steps-content p {
    margin-bottom: 0;
}

.reposting-section.vms-stpes-section .repoting-stpes.nexus-connects-us-stpes {
    margin-bottom: 184px;
}

.reposting-section.vms-stpes-section .repoting-stpes.nexus-connects-us-stpes .repoting-dashboard img {
    border-radius: 15px;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
    padding: 0;
}

.reposting-section.vms-stpes-section .repoting-stpes.nexus-connects-us-stpes.dashboard-evolution-setps-section {
    margin-bottom: 100px;
}

.reposting-section.solution-stpes-section.vms-stpes-section .repoting-stpes.why-not-partner.dashboard-evolution-setps-section .left-steps-content {
    padding-left: 100px;
}

.reposting-section.vms-stpes-section .repoting-stpes .right-steps-content .yellow-repoting-cut {
    right: -118px;
    top: -27px;
}

.reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps {
    margin-bottom: 172px;
}

.microservices-architecture-section .heading-part-div {
    text-align: center;
    margin-bottom: 60px;
}

.microservices-architecture-section .heading-part-div .heading2 {
    color: #fff;
}

.candidate-assignments.microservices-architecture-section .nav-tabs .nav-item {
    width: 49%;
}

.candidate-assignments.microservices-architecture-section .conent-part-tab .left-side-img .orange-cut {
    top: 139px;
    left: -37px;
}

.candidate-assignments.microservices-architecture-section .conent-part-tab .right-assigment-tab-content .red-btn {
    margin-top: 53px;
}

.candidate-assignments.microservices-architecture-section .cross-intelligence-pane .conent-part-tab .left-side-img .orange-cut {
    left: -76px;
}

.candidate-assignments.microservices-architecture-section .conent-part-tab {
    padding-bottom: 0;
}

.companies-logos {
    padding-bottom: 100px;
}

.blue-box-area {
    background: #0c2f6f;
    border-radius: 20px;
    padding: 50px 0;
}

.blue-box-area .heading2 {
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
    padding-left: 30px;
}

.blue-box-area .our-panelist-box img.logo-img-mar {
    margin: 10px auto;
}

.blue-box-area .our-panelist-box p {
    margin: 0;
}

.blue-box-area .heading1 {
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
    padding-left: 30px;
}

.blue-box-area .our-panelist-box {
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    margin: 30px 20px 0;
    cursor: pointer;
    background: #fff;
    width: 100%;
}

.blue-box-area .blue-box-right-area {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.blue-box-area .blue-box-right-area .red-btn {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    padding: 20px 26px;
    border-radius: 6px;
    background: #fd4c5c;
    text-decoration: none;
    border: 2px solid transparent;
    display: inline-block;
    transition: .25s all linear;
    cursor: pointer;
    margin-left: 30px;
    margin-top: 30px;
}

.blue-box-area .blue-box-right-area .red-btn:hover {
    background: #fff;
    color: #fd4c5c;
    border-color: #fd4c5c;
    transition: .25s all linear;
}

.blue-box-area .blue-box-right-area .red-btn svg {
    width: 27px;
    height: 27px;
    vertical-align: middle;
    margin-left: 5px;
}

.great-recruiters-breadcrumb .breadcrumb {
    display: block !important;
}

.great-recruiters-breadcrumb .breadcrumb li a {
    text-transform: unset !important;
}

.great-recruiters-breadcrumb .breadcrumb .breadcrumb-item::after {
    content: "" !important;
}

.bog-details-section.less-padd p.mar-bot-60 {
    margin-bottom: 60px;
}

.companies-logos .companies-row {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 26px 46px 58px -27px #f3f3f3;
    -moz-box-shadow: 26px 46px 58px -27px #f3f3f3;
    box-shadow: 26px 46px 58px -27px #f3f3f3;
    padding: 60px 70px;
    text-align: center;
    margin: -132px 60px 0;
}

.companies-logos .companies-row strong {
    font-size: 20px;
    color: #000b33;
    font-weight: 700;
    display: block;
    margin-bottom: 43px;
}

.companies-logos .companies-row .logo-slider {
    margin-top: 30px;
}

.vms-mobile-section .left-part-section .heading2 {
    margin-bottom: 56px;
}

.vms-mobile-section .left-part-section .mobile-text-slider .slick-list {
    padding-top: 0 !important;
}

.vms-mobile-section .left-part-section .mobile-text-slider .item-text {
    color: rgba(0, 11, 51, .5);
    text-decoration: none;
    font-size: 20px;
    display: block;
    margin: 10px 0;
    font-weight: 600;
}

.vms-mobile-section .left-part-section .mobile-text-slider .item-text .icon {
    margin-right: 17px;
}

.vms-mobile-section .left-part-section .mobile-text-slider .item-text .icon svg {
    color: rgba(253, 76, 92, .5);
    width: 20px;
    height: 20px;
}

.vms-mobile-section.vms-mobile-new-section .left-part-section .mobile-text-slider .item-text strong {
    display: block;
    margin-bottom: 20px;
}

.vms-mobile-section.vms-mobile-new-section .left-part-section .mobile-text-slider .item-text .list-of-point div {
    margin-bottom: 10px;
}

.vms-mobile-section.vms-mobile-new-section .left-part-section .mobile-text-slider .item-text .list-of-point .text-content {
    font-size: 17px;
    font-weight: 500;
}

.vms-mobile-section .left-part-section .mobile-text-slider .item-text.slick-current {
    color: #000b33;
}

.vms-mobile-section .left-part-section .mobile-text-slider .item-text.slick-current .icon svg {
    color: #fd4c5c;
}

.vms-mobile-section .left-part-section .mobile-text-slider .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    bottom: -80px;
    left: 0;
    margin: auto;
    cursor: pointer;
}

.vms-mobile-section .left-part-section .mobile-text-slider .slick-arrow.slick-disabled {
    opacity: .5;
}

.vms-mobile-section .left-part-section .mobile-text-slider .slick-arrow.slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/left-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.vms-mobile-section .left-part-section .mobile-text-slider .slick-arrow.slick-next {
    left: 70px;
}

.vms-mobile-section .left-part-section .mobile-text-slider .slick-arrow.slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.vms-mobile-section .mobile-part {
    position: relative;
}

.vms-mobile-section .mobile-part .empty-mobile {
    position: absolute;
    top: -75px;
    left: 0;
    margin: auto;
    display: block;
    width: 48%;
    right: 0;
    z-index: 6;
}

.vms-mobile-section .mobile-part .green-circle {
    width: 78%;
    margin: 108px auto 0;
    display: block;
}

.vms-mobile-section .mobile-part .slider-for {
    width: 44%;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 5;
}

.vms-mobile-section .mobile-part .slider-for .mobile-item img {
    border-radius: 20px;
}

.vms-mobile-section {
    padding: 56px 0 123px;
}

.vms-mobile-section .left-part-section {
    margin-top: 173px;
    padding-left: 226px;
}

.vms-mobile-section .mobile-heading {
    display: none;
}

.candidate-assignments.microservices-architecture-section .conent-part-tab .left-side-img .dashboad-img {
    background: 0 0;
}

.microservices-architecture .modal-dialog {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%) !important;
}

.microservices-architecture .modal-dialog .modal-content {
    background: 0 0;
}

.microservices-architecture .modal-dialog .modal-body {
    padding: 0;
}

.candidate-assignments.microservices-architecture-section {
    padding: 50px 0;
}

.microservices-architecture .modal-dialog .modal-header .btn-close {
    width: 30px;
    height: 30px;
    background: #00c3f2;
    position: absolute;
    top: 0;
    right: 41px;
    border-radius: 100%;
    border-width: 0;
    color: #fff;
    padding: 1px 4px;
    z-index: 100;
    cursor: pointer;
}

.microservices-architecture .modal-dialog .modal-header {
    border: 0;
    padding: 0;
}

.microservices-architecture .modal-dialog .modal-header .btn-close svg {
    width: 24px;
    height: 24px;
}

.microservices-architecture .modal-dialog .item-images {
    text-align: center;
    display: block;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.microservices-architecture .modal-dialog .item-images .mt71 {
    margin-top: 71px;
}

.microservices-architecture .modal-dialog .item-images strong {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-top: 30px;
    display: block;
    text-align: center;
}

.microservices-architecture .modal-dialog .item-images img {
    margin: 0 auto;
    display: block;
    width: 82%;
}

.microservices-architecture .modal-dialog .item-images img.reverse-invoicing {
    width: 60%;
}

.microservices-architecture .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    margin: auto;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 9;
}

.microservices-architecture .slick-arrow.slick-disabled {
    opacity: .5;
}

.microservices-architecture .slick-arrow.slick-prev {
    left: 0;
}

.microservices-architecture .slick-arrow.slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/left-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.microservices-architecture .slick-arrow.slick-next {
    right: 0;
}

.microservices-architecture .slick-arrow.slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.infographic-section {
    text-align: center;
    padding: 261px 0 60px;
}

.infographic-section .infographic-part .infographic-box {
    width: 258px;
    display: inline-block;
    position: relative;
}

.infographic-section .infographic-part .infographic-box .box {
    text-align: left;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 22px 11px #f1f1f1;
    -moz-box-shadow: 0 0 22px 11px #f1f1f1;
    box-shadow: 0 0 22px 11px #f1f1f1;
    background: #fff;
    z-index: 5;
}

.infographic-section .infographic-part .infographic-box .box a {
    padding: 15px 30px;
    display: block;
    background: #fff;
    transition: .25s all linear;
    border-radius: 10px;
}

.infographic-section .infographic-part .infographic-box a {
    text-decoration: none;
}

.infographic-section .infographic-part .infographic-box .box .arrow-icon {
    display: inline-block;
    float: right;
}

.infographic-section .infographic-part .infographic-box .box .arrow-icon svg {
    width: 20px;
    height: 20px;
}

.infographic-section .infographic-part .infographic-box h3 {
    font-size: 21px;
    font-family: Manrope, sans-serif;
    margin-bottom: 7px;
    font-weight: 700;
    display: block;
}

.infographic-section .infographic-part .infographic-box p {
    margin-bottom: 0;
    font-size: 14px;
}

.infographic-section .infographic-part .infographic-box a {
    font-size: 14px;
    color: #fd4c5c;
    font-weight: 700;
    display: inline-block;
}

.infographic-section .infographic-part .infographic-box.vms a {
    color: #00ba97;
}

.infographic-section .infographic-part .infographic-box.mobile a {
    color: #ef6829;
}

.infographic-section .infographic-part .infographic-box.ats a {
    color: #2b59ff;
}

.infographic-section .infographic-part .infographic-box.vms .box {
    transition: .25s all linear;
}

.infographic-section .infographic-part .infographic-box.vms h3 {
    color: #00ba97;
}

.infographic-section .infographic-part .infographic-box.vms .box a:hover {
    background: #00ba97;
    transition: .25s all linear;
}

.infographic-section .infographic-part .infographic-box.mobile .box a:hover {
    background: #ef6829;
    transition: .25s all linear;
}

.infographic-section .infographic-part .infographic-box.ats .box a:hover {
    background: #2b59ff;
    transition: .25s all linear;
}

.infographic-section .infographic-part .infographic-box.ats .box a:hover .arrow-icon, .infographic-section .infographic-part .infographic-box.ats .box a:hover h3, .infographic-section .infographic-part .infographic-box.ats .box a:hover p, .infographic-section .infographic-part .infographic-box.mobile .box a:hover .arrow-icon, .infographic-section .infographic-part .infographic-box.mobile .box a:hover h3, .infographic-section .infographic-part .infographic-box.mobile .box a:hover p, .infographic-section .infographic-part .infographic-box.vms .box a:hover .arrow-icon, .infographic-section .infographic-part .infographic-box.vms .box a:hover h3, .infographic-section .infographic-part .infographic-box.vms .box a:hover p {
    color: #fff;
}

.infographic-section .infographic-part .infographic-box.mobile h3 {
    color: #ef6829;
}

.infographic-section .infographic-part .infographic-box.ats h3 {
    color: #2b59ff;
}

.infographic-section .infographic-part .center-part-img {
    width: 600px;
    margin: 0 auto;
    position: relative;
}

.infographic-section .infographic-part .center-part-img img {
    display: block;
    margin: 0 auto;
    z-index: 5;
    position: relative;
}

.infographic-section .infographic-part .infographic-box.vms {
    position: absolute;
    top: -113px;
    left: 0;
    right: 0;
    margin: auto;
}

.infographic-section .infographic-part .infographic-box.vms .line {
    position: absolute;
    bottom: -86px;
    left: 0;
    right: 0;
}

.infographic-section .infographic-part .infographic-box.mobile {
    position: absolute;
    bottom: 282px;
    left: -305px;
}

.infographic-section.infographic-new-infographic .infographic-part .infographic-box.mobile {
    bottom: 183px;
}

.infographic-section .infographic-part .infographic-box.mobile .line {
    position: absolute;
    bottom: -127px;
    display: block;
    right: -75px;
}

.infographic-section .infographic-part .infographic-box.ats {
    position: absolute;
    bottom: 282px;
    right: -298px;
}

.infographic-section.infographic-new-infographic .infographic-part .infographic-box.ats {
    bottom: 183px;
}

.infographic-section .infographic-part .infographic-box.ats .line {
    position: absolute;
    bottom: -127px;
    display: block;
    left: -85px;
}

.header-section {
    text-align: center;
    padding: 100px 0;
    background: #f3fcfa;
    position: static;
}

.header-section.fixed {
    background: #f3fcfa;
    box-shadow: none;
}

.header-section .logos-div {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-section .logos-div a {
    display: inline-block;
    padding: 21px 73px;
    border-right: 1px solid #919191;
}

.header-section .logos-div a:last-child {
    border: 0;
}

header.header-section.header-banner-section.marketing-director-banner {
    background: url("../images/lp/marketing-director-banner.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0 !important;
}

.header-section.marketing-director-banner .logos-div a {
    background: #fff;
    border-radius: 10px;
}

.great-recruiters-integration .col-lg-6 {
    padding: 0 15px;
}

.great-recruiters-integration .left-steps-content p {
    padding-right: 100px;
}

.great-recruiters-integration .request-a-call .request-from {
    padding: 48px 60px;
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
    -moz-box-shadow: 0 0 22px 11px #f8f8f8;
    box-shadow: 0 0 22px 11px #f8f8f8;
}

.great-recruiters-integration .request-a-call .request-from .heading2 {
    font-size: 40px;
    margin-bottom: 35px;
}

.great-recruiters-integration .request-a-call .request-from .form-control {
    padding: 23px 33px;
    border-radius: 10px;
    background: #f8f8f8;
    outline: 0;
    border: 0;
    font-size: 16px;
    color: #606060;
    font-weight: 500;
    resize: none;
}

.great-recruiters-integration .request-a-call .request-from .red-btn {
    margin-top: 47px;
}

.reposting-section.vms-stpes-section.great-recruiters-integration .repoting-stpes.some-of-the-impact .right-steps-content .yellow-repoting-cut {
    left: -36px;
    top: -61px;
}

.reposting-section.great-recruiters-integration {
    padding-bottom: 150px;
}

.reposting-section.great-recruiters-integration .repoting-stpes.some-of-the-impact {
    margin-bottom: 0;
}

.footer-section {
    padding: 0;
    margin-top: 0;
}

.footer-section .top-footer {
    text-align: center;
    background: #0c2f6f;
    padding: 79px 0;
}

.footer-section .top-footer p {
    font-size: 24px;
    color: #fff;
    line-height: 40px;
    margin-bottom: 20px;
}

.footer-section .top-footer p:last-child {
    margin-bottom: 0;
}

.footer-section .copy-right {
    padding: 60px 0;
}

.footer-section .copy-right p {
    font-size: 16px;
    color: #606060;
    text-align: center;
}

.footer-section .copy-right p a {
    color: #606060;
}

.footer-section .copy-right p a:hover {
    color: #fd4c5c;
}

.reposting-section.vms-stpes-section.great-recruiters-integration .repoting-stpes.great-recruiters-stpes .left-steps-content .heading2 {
    padding-right: 50px;
}

.reposting-section.vms-stpes-section.great-recruiters-integration .repoting-stpes.great-recruiters-stpes .left-steps-content .heading2 br {
    display: none;
}

.reposting-section.vms-stpes-section.great-recruiters-integration .repoting-stpes.great-recruiters-stpes .left-steps-content p {
    margin-bottom: 20px;
}

.reposting-section.vms-stpes-section.great-recruiters-integration .repoting-stpes.great-recruiters-stpes .left-steps-content h4 {
    font-size: 24px;
    color: #000b33;
    line-height: 38px;
    margin: 42px 0 0;
    font-weight: 600;
}

.landing-healthcare-staffing-summit {
    padding: 114px 0 50px;
}

.reposting-section.great-recruiters-integration.staffing-future {
    padding-bottom: 0;
}

.impacting-landing-page {
    padding-top: 73px;
}

.reposting-section.impacting-landing-page .repoting-stpes .left-steps-content p {
    margin-bottom: 20px;
}

.infographic-section .infographic-part .mobile-enlarge-view, .vms-mobile-section .mobie-full {
    display: none;
}

.top-blue-banner.ats-banner-section .left-banner-part .heading2 {
    margin-bottom: 25px;
}

.top-blue-banner.ats-banner-section .left-banner-part p {
    line-height: 32px;
    font-size: 20px;
}

.top-blue-banner.industry-stats-banner-section {
    padding: 94px 0;
}

.top-blue-banner.industry-stats-banner-section .left-banner-part .heading2 {
    margin-bottom: 0;
}

.industry-stats-job-graph {
    padding-top: 100px;
}

.reposting-section.industry-stats-job-graph .repoting-stpes {
    margin-bottom: 160px;
}

.reposting-section.industry-stats-job-graph .repoting-stpes.vms-section-stpes-reports {
    margin-bottom: 100px;
}

.submiting_btn.disabled {
    cursor: not-allowed;
    width: 100%;
    padding: 15px 26px;
}

.submiting_btn.disabled img {
    width: 29px;
    display: inline-block;
    vertical-align: middle;
}

.submiting_btn.disabled:hover {
    background: #fd4c5c !important;
    color: #fff !important;
}

.reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .mobile-img {
    display: none;
}

.vms-video-banner-section .right-banner-part .video-container .video-div video {
    width: 500px;
    display: block;
    object-position: center;
    object-fit: cover;
    border-radius: 15px;
    margin: auto;
}

.vms-video-banner-section1 {
    margin-top: 101px;
    color: #fff;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 57vh;
    padding: 0;
}

.vms-video-banner-section1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
}

.vms-video-banner-section1 .video-cntr {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 57vh;
}

.vms-video-banner-section1 .video-cntr video {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
}

.vms-video-banner-section1 .right-feature-img {
    padding-top: 64px;
    display: none;
}

.top-blue-banner.vms-video-banner-section .right-banner-part .right-feature-img img.mobile-images-view {
    display: none;
}

.top-blue-banner.vms-banner-section.vms-video-banner-section1 .right-banner-part .red-cut {
    display: none;
}

.big-content-infographic {
    padding: 100px 0 100px;
}

.big-content-infographic .infographic-part .center-part-img .infographic-box {
    width: auto;
    position: static;
    margin-bottom: 30px;
}

.big-content-infographic .infographic-part .center-part-img .infographic-box:last-child {
    margin-bottom: 0 !important;
}

.big-content-infographic .infographic-part .center-part-img .infographic-box.ats, .big-content-infographic .infographic-part .center-part-img .infographic-box.mobile {
    width: auto;
    position: static;
}

.big-content-infographic .infographic-image-left-side {
    margin-top: -33px;
}

.big-content-infographic .infographic-image-left-side img {
    width: 85%;
}

.ats-solution-features {
    background: 0 0;
    background: #0c2f6f;
    position: relative;
    padding: 80px 0 53px;
}

.ats-solution-features .orange-cut1 {
    position: absolute;
    top: 44px;
    margin-left: -105px;
}

.featurs-list-section.solution-freatures.ats-solution-features .featurs-list-box {
    box-shadow: none;
}

.why-microservices-ats-section .mobile-views {
    display: none;
}

.reposting-section.ats-stpes1 .repoting-stpes, .reposting-section.ats-stpes2 .repoting-stpes, .reposting-section.ats-stpes3 .repoting-stpes, .reposting-section.ats-stpes4 .repoting-stpes, .reposting-section.ats-stpes5 .repoting-stpes, .reposting-section.ats-stpes6 .repoting-stpes, .reposting-section.ats-stpes7 .repoting-stpes {
    margin-bottom: 0;
}

.ats-stpes1, .ats-stpes3 {
    padding-top: 100px;
}

.ats-stpes2, .ats-stpes4, .ats-stpes5, .ats-stpes6, .ats-stpes7 {
    padding-top: 149px;
}

.about-us-details {
    padding-top: 100px;
}

.why-microservices-ats-section {
    padding-top: 137px;
}

.why-microservices-ats-section .why-microservices {
    margin-bottom: 100px;
}

.about-page-listing {
    padding: 80px 0;
}

.reposting-section.about-us-details .repoting-stpes {
    margin-bottom: 100px;
}

.why-partner {
    padding-top: 100px;
}

.reposting-section.solution-stpes-section.why-partner .repoting-stpes.why-not-partner .right-steps-content .repoting-dashboard img {
    box-shadow: none;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new {
    padding: 80px 0 36px;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .automations-save-time .slick-track {
    display: flex;
    align-items: center;
    justify-content: left;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .mobile-span {
    display: none;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab .left-side-img .dashboad-img .zoom-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    right: 0;
    margin: auto;
    text-align: center;
    color: #000;
    width: 30px;
    height: 30px;
    display: none;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab .left-side-img .dashboad-img {
    cursor: pointer;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab .left-side-img .dashboad-img:hover .zoom-icon {
    display: block;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab .left-side-img .dashboad-img .zoom-icon svg {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .item-slider {
    margin: 7px 0;
    opacity: .5;
    cursor: pointer;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .item-slider.slick-current {
    opacity: 1;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab .left-side-img .dashboad-img img {
    border-radius: 15px;
    margin: auto;
    display: block;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab {
    padding-top: 0;
    margin-bottom: 93px;
}

.candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab:last-child {
    margin-bottom: 0;
}

.candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .mobile-view {
    display: none;
}

.about-us-details .repoting-stpes .right-steps-content .yellow-repoting-cut, .ats-solution-features .orange-cut1, .blog-details-page .blue-doth, .bog-details-section .green-cut, .candidate-assignments .conent-part-tab .left-side-img .orange-cut, .candidate-assignments .conent-part-tab .left-side-img.assignments-tab-img .orange-cut, .candidate-assignments .conent-part-tab .left-side-img.profile-img .orange-cut, .candidate-assignments.microservices-architecture-section .conent-part-tab .left-side-img .orange-cut, .industry-stats-job-graph .repoting-stpes.job-bill-setps .right-steps-content .yellow-cut, .philosophy-section .philosophy-left .blue-cut, .reposting-section .repoting-stpes .right-steps-content .yellow-repoting-cut, .reposting-section .repoting-stpes.job-management-stpes.profession-specialty-setps .right-steps-content .light-bule-cut, .reposting-section .repoting-stpes.time-capture-stpes .right-steps-content .green-patch, .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .yellow-repoting-cut, .reposting-section.vms-stpes-section .repoting-stpes .right-steps-content .yellow-repoting-cut, .the-mobile-app-built .left-side-mobile-slider .yellow-cut1, .the-mobile-app-built .left-side-mobile-slider .yellow-dot, .top-blue-banner .left-blue-cut, .top-blue-banner .right-banner-part .yellow-cut, .top-blue-banner .top-blue-cut, .top-blue-banner.mobile-page-banner .right-banner-part .blue-cut-mobile, .top-blue-banner.mobile-page-banner.candidate-portal-banner .right-banner-part .blue-cut-mobile, .top-blue-banner.mobile-page-banner.candidate-portal-banner.api-documentation .right-banner-part .blue-cut-mobile, .top-blue-banner.vms-banner-section .right-banner-part .red-cut, .what-our-clients .light-blue-cut, .why-labor-edge .pink-cut-circle {
    display: none;
}

.vms-mobile-section.vms-section-new-formate-section .left-part-section {
    margin-top: 0;
    padding-left: 0;
    text-align: center;
}

.vms-section-new-formate-section {
    padding: 100px 0;
}

.vms-section-new-formate-section .heading2 {
    text-align: center;
    margin-bottom: 50px;
}

.vms-section-new-formate-section .item-text h6, .vms-section-new-formate-section .item-text strong {
    display: block;
    margin-top: 30px;
    font-size: 30px;
    font-weight: 600;
    color: #00c3f2;
    font-family: Manrope, sans-serif;
}

.vms-section-new-formate-section .item-text {
    text-align: left;
    padding-left: 33px;
}

.vms-section-new-formate-section .item-text div {
    margin-bottom: 10px;
}

.vms-section-new-formate-section .item-text .icon {
    display: inline-block;
    vertical-align: middle;
}

.vms-section-new-formate-section .item-text .icon svg {
    color: #fd4c5c;
    width: 20px;
    height: 20px;
}

.vms-section-new-formate-section .item-text .text-content {
    font-weight: 500;
    font-size: 15px;
    color: #606060;
    line-height: 24px;
}

.vms-mobile-section.vms-section-new-formate-section .left-part-section .top-img img {
    width: 85%;
}

.vms-section-new-formate-section .item-text div:first-child {
    margin-top: 20px;
}

#lg-actual-size, #lg-counter, #lg-download, #lg-share, #lg-zoom-in, #lg-zoom-out, .lg-fullscreen {
    display: none !important;
}

.contact-us-banner-new {
    padding: 64px 0;
}

.top-blue-banner.contact-us-banner-new .left-banner-part .heading2 {
    margin-bottom: 0;
}

.send-to-laboredge .icons-list {
    background: #fff;
    border-radius: 15px;
    padding: 42px 0;
}

.send-to-laboredge .icons-list .location-details {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 20px;
}

.send-to-laboredge .icons-list .location-details:last-child {
    margin-bottom: 0;
}

.send-to-laboredge .icons-list .image-icon {
    width: 57px;
    margin-right: 15px;
}

.send-to-laboredge .icons-list p a {
    color: #818596;
    text-decoration: none;
}

.send-to-laboredge .icons-list p a:hover {
    color: #fd4c5c;
}

.send-to-laboredge .mobile-map {
    display: none;
}

.pad-20-76 {
    padding: 20px 76px;
}

.pad-6-12 {
    padding: 6px 12px;
}

.cur-dif {
    cursor: default;
}

.pad-20-76 svg {
    width: 27px;
    height: 27px;
    vertical-align: middle;
    margin-left: 5px;
}

.pad-6-12 svg {
    width: 20px;
    height: 20px;
    vertical-align: text-bottom;
    margin-left: 5px;
}

.career-section.faq-section-format .accordion-container .set .accordion-list {
    cursor: pointer;
    padding: 14px 50px;
}

.career-section.faq-section-format .accordion-container .set .accordion-list .left-part {
    width: 95%;
    font-size: 20px;
    line-height: 26px;
}

.career-section.faq-section-format .accordion-container .set .accordion-list .button-right {
    padding: 8px;
    width: auto;
}

.career-section.faq-section-format .accordion-container .set .accordion-list .button-right svg {
    width: 20px;
    height: 20px;
}

.career-section.faq-section-format .accordion-container .set .content {
    margin-top: 0;
    border-radius: 0 0 15px 15px;
    min-height: auto;
    box-shadow: none;
    padding: 14px 50px;
}

.career-section.faq-section-format .accordion-container .set .content .left-side-part p {
    font-size: 16px;
    line-height: 24px;
}

.career-section.faq-section-format .accordion-container .set .content .left-side-part p:last-child {
    margin-bottom: 0;
}

.career-section.faq-section-format .accordion-container .set .accordion-list.active {
    border-radius: 15px 15px 0 0;
}

.career-section.faq-section-format .accordion-container .set .accordion-list.active .button-right svg {
    transform: rotate(180deg);
}

.career-section.faq-section-format .accordion-container .set .content .left-side-part h3 {
    font-size: 18px;
    color: #606060;
    font-weight: 600;
    display: block;
    line-height: 30px;
    margin-bottom: 16px;
}

.career-section.faq-section-format .accordion-container .set .content .padd {
    padding: 0;
}

.career-section.faq-section-format.accordion-bg1 {
    background-position: left;
    background-size: cover;
    background-image: url(../images/faqs-bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.career-section.faq-section-format.accordion-bg2 {
    background: url(../images/green-tea-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.career-section.faq-section-format.accordion-bg3 {
    background: url(../images/darjeeling-tea-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.career-section.faq-section-format.accordion-bg4 {
    background: url(../images/assam-tea-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.faq-section-format .heading2 {
    text-align: center;
    color: #fff;
    display: block;
    margin-bottom: 30px;
}

.faq-section-format-format .ic-wrap .strip {
    display: none;
}

.faq-section-format-format .feature-details .text-wrap>.ic-wrap {
    padding-left: 0;
}

.faq-section-format-format .feature-details .text-wrap {
    width: auto;
}

.faq-section-format-format .feature-details h2 {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 26px !important;
    line-height: 32px !important;
    letter-spacing: normal !important;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 30px;
}

.faq-section-format-format .feature-details h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    display: block;
    line-height: 30px;
    margin-bottom: 16px;
}

.faq-section-format-format .feature-details p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 34px;
}

.faq-section-format-format .slide-group>.nav-group ul li {
    margin-bottom: 20px;
    font-family: 'Lexend Deca', sans-serif;
    display: inline-block;
    margin: 4px 0;
}

.faq-section-format-format .slide-group>.nav-group ul li a {
    display: inline-block;
    width: auto;
    height: auto;
}

.faq-section-format-format .slide-group>.nav-group ul li a::before {
    content: " ";
    width: 5px;
    height: 5px;
    color: #fff;
    border-radius: 50px;
    line-height: 1;
    padding: 10px 10px;
    background: transparent;
    text-align: center;
    font-family: 'Lexend Deca', sans-serif;
    vertical-align: top;
    border: 2px solid #fd4c5c;
}

.faq-section-format-format .slide-group>.nav-group ul li a.active::before {
    width: 15px;
    height: 15px;
}

.faq-section-format-format .slide-group>.nav-group ul li:nth-child(1) a.active::before {
    content: "1";
    background-color: #fd4c5c;
    font-family: 'Manrope', sans-serif;
}

.faq-section-format-format .slide-group>.nav-group ul li:nth-child(2) a.active::before {
    content: "2";
    font-family: 'Manrope', sans-serif;
    background-color: #fd4c5c;
}

.faq-section-format-format .slide-group>.nav-group ul li:nth-child(3) a.active::before {
    content: "3";
    font-family: 'Manrope', sans-serif;
    background-color: #fd4c5c;
}

.faq-section-format-format .slide-group>.nav-group ul li:nth-child(4) a.active::before {
    content: "4";
    font-family: 'Manrope', sans-serif;
    background-color: #fd4c5c;
}

#features-group {
    position: relative;
}

.faq-section-format-format .slide-group h3.slider-header {
    transform: rotate(-90deg);
    position: absolute;
    top: 350px;
    left: -45px;
    color: #fff;
    z-index: 999;
    min-height: 100px;
    width: 500px;
    font-size: 30px;
    margin: 30px 0 30px;
    line-height: 40px;
}

.faq-section-format-format .slide-group.full-on-window h3.slider-header {
    position: fixed;
    top: 0;
    left: -45px;
    color: #fff;
    z-index: 999;
    min-height: 100px;
    width: 500px;
}

.faq-section-format-format .slide-group {
    transition: all .5s ease;
}

.faq-section-format-format .slide-group>.nav-group {
    width: 45px;
    text-align: center;
}

.faq-container-section .slide-faq {
    position: relative;
}

.faq-container-section .slide-faq .inside {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    text-align: left;
    transform: translateY(-50%);
}

.faq-container-section .slide-faq.slide-one {
    background: url("../images/why-a-preferred-subcontractor-platform.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.faq-container-section .slide-faq.slide-two {
    background: url("../images/why-did-laboredge-feel-a-new-vms-was-needed-in-the-industry.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.faq-container-section .slide-faq.slide-three {
    background: url("../images/will-partnering-with-nexusvms-lead-to-your-success.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.faq-container-section .slide-faq.slide-four {
    background: url("../images/what-is-the-importance-of-having-an-independent-vms-platform.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.faq-container-section .slider-header {
    transform: rotate(-90deg);
    position: absolute;
    top: 350px;
    left: -45px;
    color: #fff;
    z-index: 999;
    min-height: 100px;
    width: 500px;
    font-size: 30px;
    margin: 30px 0 30px;
    line-height: 40px;
}

.faq-container-section h2 {
    color: #fff;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: normal;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 30px;
}

.faq-container-section p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 34px;
    color: #fff;
}

.faq-container-section h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    display: block;
    line-height: 30px;
    margin-bottom: 16px;
}

.faq-container-section .slick-dots {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-container-section .slick-dots li {
    margin: 5px 0;
    text-align: center;
}

.faq-container-section .slick-dots li button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border-width: 0;
    border: 2px solid #fd4c5c;
    background: transparent;
    color: #fff;
    padding: 0;
}

.faq-container-section .slider-header.mobile-show {
    display: none;
}

.faq-container-section .slick-dots li.slick-active button {
    background: #fd4c5c;
}

.faq-container-section {
    position: relative;
    overflow: hidden;
}

.faq-container-section:before {
    content: "Solutions From Our President";
    transform: rotate(-90deg);
    position: absolute;
    top: 0;
    left: -45px;
    color: #fff;
    z-index: 999;
    min-height: 100px;
    width: 500px;
    font-size: 30px;
    margin: 30px 0 30px;
    line-height: 40px;
}

@keyframes anim-updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }

}

.elem-updown {
    animation: anim-updown 3s infinite linear;
}

@keyframes anim-fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.elem-fadein {
    animation: anim-fadein 1s linear;
}

.elem-fadein2 {
    animation: anim-fadein 2s linear;
}

.elem-move {
    animation: anim-move 2s infinite linear;
}

@keyframes anim-move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0);
    }

}

.move-img-hover img {
    transition: all 0.3s linear;
}

.skrollr .live-demo-btn {
    right: -51px;
}

.skrollr .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .slick-prev, .skrollr .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .slick-prev.slick-next {
    height: 35px;
    width: 35px;
    border-radius: 6px;
    background: #ffedee;
    border-width: 0;
    border: 1px solid transparent;
    display: inline-block;
    transition: .25s all linear;
    position: absolute;
    left: 0;
    bottom: -37px;
    z-index: 9;
    top: auto;
    float: none;
    cursor: pointer;
}

.skrollr .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .slick-prev:before {
    content: " ";
    background: url(../images/arrow-donw.png) no-repeat;
    width: 14px;
    height: 17px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    transform: rotate(90deg);
    top: 27%;
}

.skrollr .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .slick-next {
    height: 35px;
    width: 35px;
    border-radius: 6px;
    background: #ffedee;
    border-width: 0;
    border: 1px solid transparent;
    display: inline-block;
    transition: .25s all linear;
    position: absolute;
    left: 53px;
    bottom: -37px;
    z-index: 9;
    top: auto;
    float: none;
    cursor: pointer;
    right: auto;
}

.skrollr .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .slick-next:before {
    content: " ";
    background: url(../images/arrow-donw.png) no-repeat;
    width: 14px;
    height: 17px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    transform: rotate(-90deg);
    top: 27%;
}

.skrollr .what-our-clients .slick-prev {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    margin: auto;
    top: 8%;
    cursor: pointer;
    left: -134px;
}

.skrollr .what-our-clients .slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/left-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.skrollr .what-our-clients .slick-next {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    margin: auto;
    top: 8%;
    right: -134px;
    cursor: pointer;
}

.skrollr body {
    height: auto !important;
}

.skrollr .what-our-clients .slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.candidate-assignments.microservices-architecture-section-new .conent-part-tab .left-side-img .dashboad-img {
    padding: 0;
}

.banner__slider .mobile-view-froamt {
    display: none !important;
}

.banner__slider {
    position: relative;
}

.banner__slider:before {
    content: "Solutions From Our President";
    position: absolute;
    top: 37%;
    transform: rotate(270deg);
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    left: 8%;
    z-index: 99;
}

.banner__slider .slider-faq, .banner__slider .slide {
    height: 80vh;
}

.banner__slider .slide {
    position: relative;
    transition: 3s;
}

.banner__slider .slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 3s ease;
}

@media (min-width:992px) {
    .banner__slider .slide .slide__img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

}

.banner__slider .slide .slide__img img {
    width: 100%;
    height: auto;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 3s linear;
    object-fit: cover;
    object-position: center;
}

.banner__slider .slide .slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner__slider .slide .slide__content.slide__content__left {
    left: 26%;
    transform: translate(-15%, -50%);
}

.banner__slider .slide .slide__content.slide__content__right {
    right: 26%;
    left: auto;
    transform: translate(5%, -50%);
}

.banner__slider .slide .slide__content--headings {
    color: #FFF;
}

.banner__slider .slide .slide__content--headings h2 {
    font-size: 4.5rem;
    margin: 10px 0;
}

.banner__slider .slide .slide__content--headings .animated {
    transition: all 0.5s ease;
}

.banner__slider .slide .slide__content--headings .top-title {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
}

.banner__slider .slide .slide__content--headings h4.top-title {
    font-size: 20px;
    margin: 30px 0 20px;
}

.banner__slider .slide .slide__content--headings .title {
    font-size: 28px;
    line-height: 37px;
    margin-bottom: 30px;
    margin-top: 0;
}

.banner__slider .slide .slide__content--headings .button-custom {
    text-decoration: none;
    color: #333;
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
}

.banner__slider .slider-faq [data-animation-in] {
    opacity: 1;
    -webkit-animation-duration: 3s;
    animation-duration: 1.50s;
    transition: opacity 0.50s ease 3s;
    transition: 3s;
}

.banner__slider .slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.banner__slider .slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.banner__slider .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.banner__slider .slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner__slider .slick-dots li button:hover, .banner__slider .slick-dots li button:focus {
    outline: none;
}

.banner__slider .simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}

.banner__slider .simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}

.banner__slider .simple-dots .slick-dots li button:hover, .banner__slider .simple-dots .slick-dots li button:focus {
    opacity: 1;
}

.banner__slider .simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.banner__slider .stick-dots .slick-dots li {
    height: 10px;
    width: 50px;
}

.banner__slider .stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 10px;
    padding: 0;
}

.banner__slider .stick-dots .slick-dots li button:hover, .banner__slider .stick-dots .slick-dots li button:focus {
    opacity: 1;
}

.banner__slider .stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.banner__slider .stick-dots .slick-dots li.slick-active button:hover, .banner__slider .stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}

.banner__slider .full-image {
    transition: 0.50s all linear;
}

.banner__slider .slider-faq .slick-track {
    transition: 2.5s all linear;
}

@-webkit-keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
        transition: 2.5s all linear;
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 2.5s all linear;
    }

}

@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
        transition: 2.5s all linear;
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 2.5s all linear;
    }

}

.zoomInImage {
    -webkit-animation-name: zoomInImage;
    animation-name: zoomInImage;
    transition: 2.5s all linear;
}

@-webkit-keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 2.5s all linear;
    }

    to {
        transform: scale3d(1, 1, 1);
        transition: 2.5s all linear;
    }

}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
        transition: 2.5s all linear;
    }

    to {
        transform: scale3d(1, 1, 1);
        transition: 2.5s all linear;
    }

}

.zoomOutImage {
    -webkit-animation-name: zoomOutImage;
    animation-name: zoomOutImage;
    transition: 2.5s all linear;
}

.banner__slider .slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, .12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
}

.banner__slider .slick-nav.prev-arrow {
    left: 3%;
    transform: scaleX(-1);
    z-index: 999;
}

.banner__slider .slick-nav.next-arrow {
    left: auto;
    right: 3%;
}

.banner__slider .slick-nav i {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
}

.banner__slider .slick-nav i:before, .banner__slider .slick-nav i:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--active);
    margin: -1px 0 0 -5px;
    display: block;
    transform-origin: 9px 50%;
}

.banner__slider .slick-nav i:before {
    transform: rotate(-40deg);
}

.banner__slider .slick-nav i:after {
    transform: rotate(40deg);
}

.banner__slider .slick-nav:before, .banner__slider .slick-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.banner__slider .slick-nav svg {
    width: 44px;
    height: 44px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--active);
    stroke-width: 2px;
    stroke-dashoffset: 126;
    stroke-dasharray: 126 126 0;
    transform: rotate(0deg);
}

.banner__slider .slick-nav.animate svg {
    -webkit-animation: stroke 1s ease forwards 0.3s;
    animation: stroke 1s ease forwards 0.3s;
}

.banner__slider .slick-nav.animate i {
    -webkit-animation: arrow 1.6s ease forwards;
    animation: arrow 1.6s ease forwards;
}

.banner__slider .slick-nav.animate i:before {
    -webkit-animation: arrowUp 1.6s ease forwards;
    animation: arrowUp 1.6s ease forwards;
}

.banner__slider .slick-nav.animate i:after {
    -webkit-animation: arrowDown 1.6s ease forwards;
    animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
    }

    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
    }

    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
    }

}

@keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
    }

    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
    }

    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
    }

}

@-webkit-keyframes arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }

    23% {
        transform: translateX(17px);
        opacity: 1;
    }

    24%, 80% {
        transform: translateX(-22px);
        opacity: 0;
    }

    81% {
        opacity: 1;
        transform: translateX(-22px);
    }

}

@keyframes arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }

    23% {
        transform: translateX(17px);
        opacity: 1;
    }

    24%, 80% {
        transform: translateX(-22px);
        opacity: 0;
    }

    81% {
        opacity: 1;
        transform: translateX(-22px);
    }

}

@-webkit-keyframes arrowUp {
    0%, 100% {
        transform: rotate(-40deg) scaleX(1);
    }

    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
    }

}

@keyframes arrowUp {
    0%, 100% {
        transform: rotate(-40deg) scaleX(1);
    }

    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
    }

}

@-webkit-keyframes arrowDown {
    0%, 100% {
        transform: rotate(40deg) scaleX(1);
    }

    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
    }

}

@keyframes arrowDown {
    0%, 100% {
        transform: rotate(40deg) scaleX(1);
    }

    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
    }

}

.objectives-of-this-role-section .yellow-repoting-cut {
    display: none;
}

.impacting-landing-page.objectives-of-this-role {
    padding-top: 0;
}

.marketing-director-section-part .skills-and-qualifications {
    padding: 40px;
    border-radius: 10px;
    background: #0c2f6f;
}

.marketing-director-section-part .skills-and-qualifications .heading2 {
    color: #fff;
    padding-right: 0 !important;
    font-size: 35px !important;
    margin-bottom: 0 !important;
}

.marketing-director-section-part .skills-and-qualifications .common-slider .content-of-slider .list-of-sept {
    padding-right: 0 !important;
}

.marketing-director-section-part .skills-and-qualifications .common-slider .content-of-slider ul {
    margin-top: 21px !important;
}

.marketing-director-section-part .skills-and-qualifications .common-slider .content-of-slider .list-of-septs li {
    color: #fff;
    font-size: 16px !important;
    line-height: 26px !important;
}

.marketing-director-section-part .skills-and-qualifications .common-slider .content-of-slider .list-of-septs li:before {
    background: url(../images/white-tick.png) no-repeat;
}

.fixed-button-landingpage {
    position: fixed;
    bottom: -100%;
    right: 18px;
    transition: 0.25s all linear;
}

.fixed-button-landingpage.fixed {
    bottom: 18px;
    transition: 0.25s all linear;
    z-index: 100;
}

.nexus-is-down-for-maintenance {
    background: #f3fcfa;
}

.nexus-is-down-for-maintenance .left-banner-part .heading2 {
    font-size: 52px;
    color: #000b33;
    line-height: 66px;
    margin-bottom: 37px;
}

.nexus-is-down-for-maintenance .left-banner-part p {
    font-size: 24px;
    color: #818596;
    line-height: 36px;
}

.nexus-is-down-for-maintenance-new {
    background: url("../images/thank-you/maintenance.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.top-blue-banner.mobile-page-banner.nexus-is-down-for-maintenance-new .left-banner-part p {
    color: #000b33;
}

.top-blue-banner.mobile-page-banner.nexus-is-down-for-maintenance-new .left-banner-part p br {
    display: block;
}

.top-blue-banner.mobile-page-banner.candidate-portal-banner.api-documentation.nexus-is-down-for-maintenance-new .left-banner-part {
    margin-top: 0;
}

.nexus-is-down-for-maintenance-new .men-position {
    position: absolute;
    bottom: 0;
    right: 0;
}

.new-footer-section .col-lg-3, .new-footer-section .col-lg-2 {
    padding: 0 15px;
}

footer.new-footer-section .comon-div .short-links a {
    margin-bottom: 10px;
}

footer.new-footer-section .first-menu {
    padding-right: 5px;
}

footer.new-footer-section .first-menu span {
    margin-bottom: 15px;
    display: block;
}

footer.new-footer-section .first-menu a {
    margin-bottom: 10px;
}

footer.new-footer-section .second-menu {
    padding-left: 5px;
}

footer.new-footer-section .second-menu span {
    margin-bottom: 15px;
    display: block;
}

footer.new-footer-section .second-menu span.second-title {
    margin-top: 15px;
}

footer.new-footer-section .second-menu a {
    margin-bottom: 10px;
}

/*
.bog-details-section-area .social-icons {
text-align: right;
}*/
.social-icons {
    position: fixed;
    left: -68px;
    top: 50%;
    transform: rotate(90deg);
}

.social-icons strong {
    display: none;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 500;
}

.social-icons .icons {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background: #ddd;
    position: relative;
}

.social-icons .icons:last-child {
    margin-right: 0;
}

.social-icons .icons svg {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: 0 auto;
    display: block;
    color: #fff;
}

.social-icons .icons.fb {
    background: #000;
}

.social-icons .icons.twi {
    background: #000;
}

.social-icons .icons.linkedin {
    background: #000;
}

.social-icons .icons.envelope {
    background: #000;
}

.social-icons {
    left: -111px !important;
    z-index: 98;
}

.social-icons .icons.pinterest-icon {
    background: #E60023 !important;
}

.social-icons .icons.share-icon {
    background: #93d430 !important;
}

.social-icons .icons.fb {
    background: #4267B2 !important;
}

.social-icons .icons.linkedin {
    background: #0077b5 !important;
}

.social-icons .icons.envelope {
    background: #808080 !important;
}

.social-icons .icons {
    transform: rotate(270deg) !important;
    padding-bottom: 5px;
}

/*nexus prn ecosystem*/
.nexusvms-top-manage-automate-your {
    padding: 100px 0 50px;
}

.top-blue-banner.nexusvms-top-manage-automate-your .left-banner-part {
    padding-right: 100px;
}

.top-blue-banner.nexusvms-top-manage-automate-your.nexusvms-top-manage-automate-your-new .left-banner-part {
    padding-right: 0;
    padding-left: 100px;
}

.top-blue-banner.mobile-page-banner.nexusvms-top-manage-automate-your .left-banner-part p {
    padding-right: 0;
}

.ats-client-portal-section {
    padding: 100px 0;
}

.ats-client-portal-section .col-lg-4 {
    padding: 0 15px;
}

.ats-client-portal-section .main-portal-parts .common-format {
    position: relative;
    text-align: center;
}

.ats-client-portal-section .main-portal-parts .common-format img {
    margin: 0 auto;
    display: block;
    width: 50%;
}

.ats-client-portal-section .main-portal-parts .common-format .dots-img {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
}

.ats-client-portal-section .main-portal-parts .common-format .dots-img img {
    width: 80%;
}

.ats-client-portal-section .main-portal-parts h4 {
    font-size: 42px;
    line-height: 50px;
    color: #fc4c5b;
    text-align: center;
    margin: 40px 0 60px;
}

.ats-client-portal-section .main-portal-parts .common-box-ats {
    padding: 35px;
    border: 7px solid #fc4c5b;
    min-height: 392px;
}

.ats-client-portal-section .main-portal-parts .common-box-ats h3 {
    font-size: 23px;
    color: #000b33;
    font-weight: 700;
    line-height: 34px;
    font-family: Manrope, sans-serif;
    text-align: center;
    margin-bottom: 20px;
}

.ats-client-portal-section .main-portal-parts .common-box-ats .listing {
    padding-left: 32px;
}

.ats-client-portal-section .main-portal-parts .common-box-ats .listing li {
    font-size: 18px;
    color: #000b33;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 22px;
    position: relative;
}

.ats-client-portal-section .main-portal-parts .common-box-ats .listing li:before {
    content: " ";
    width: 16px;
    height: 12px;
    background: url(../images/tick.png) no-repeat;
    position: absolute;
    top: 10px;
    left: -32px;
}

.ats-client-portal-section .main-portal-parts.client-portal-common-div h4 {
    color: #00205c;
}

.ats-client-portal-section .main-portal-parts.client-portal-common-div .common-box-ats {
    border-color: #00205c;
}

.ats-client-portal-section .main-portal-parts.mobiles-common-div h4 {
    color: #00b5e2;
}

.ats-client-portal-section .main-portal-parts.mobiles-common-div .common-box-ats {
    border-color: #00b5e2;
}

.candidate-journey-lifecycle {
    padding: 100px 0;
}

.candidate-journey-lifecycle .heading2 {
    margin-bottom: 20px;
}

.candidate-journey-lifecycle .main-info-grapic-part {
    position: relative;
    margin: 60px 0;
}

.candidate-journey-lifecycle .main-info-grapic-part img {
    width: 100%;
}

.candidate-journey-lifecycle .main-info-grapic-part .common-text-box {
    font-size: 26px;
    color: #fff;
    line-height: 30px;
    font-weight: 400;
    position: absolute;
    width: 167px;
}

.candidate-journey-lifecycle .main-info-grapic-part .common-text-box strong {
    font-weight: 700;
}

.candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box1 {
    top: 41%;
    left: 7.5%;
    width: 167px;
    text-align: center;
}

.candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box2 {
    top: 60%;
    left: 29.6%;
    text-align: center;
}

.candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box3 {
    top: 41%;
    left: 52%;
    text-align: center;
}

.candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box4 {
    top: 52%;
    left: 74.6%;
    text-align: center;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context {
    width: 181px;
    position: absolute;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context p {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    color: #000;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps1 {
    bottom: 0;
    left: -57px;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps2 {
    bottom: 0;
    left: 17%;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps3 {
    top: 0;
    left: 19%;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps4 {
    top: 0;
    left: 35%;
    width: 273px;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps5 {
    bottom: 0;
    left: 41%;
    width: 220px;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps6 {
    bottom: 0;
    left: 63%;
    width: 242px;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps7 {
    top: 0;
    left: 67%;
    width: 275px;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps8 {
    top: 38%;
    right: -7%;
    text-align: left;
}

.candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps8 p {
    text-align: left;
}

.candidate-journey-lifecycle .mobile-info-candidate {
    display: none;
}

.increcsess-your-top-heading {
    padding: 75px 0;
    background: #0c2f6f;
}

.increcsess-your-top-heading h3 {
    font-size: 46px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 58px;
    font-family: Manrope, sans-serif;
}

.top-blue-banner.nexusvms-top-manage-automate-your.our-commitment-to-prn-section .left-banner-part {
    padding-right: 0;
    padding-left: 100px;
}

.top-blue-banner.nexusvms-top-manage-automate-your.our-commitment-to-prn-section .red-btn {
    background: #0c2f6f;
    border-color: #0c2f6f;
}

.top-blue-banner.nexusvms-top-manage-automate-your.our-commitment-to-prn-section .red-btn:hover {
    background: #fff;
    color: #0c2f6f;
}

.letest-updated-prn {
    padding: 100px 0;
    background: url(../images/nexus-prn-ecosystem/letest-updated-prn-banner.jpg) no-repeat;
    background-position: left top;
    background-size: cover;
    height: 48vh;
}

.letest-updated-prn .heading-part {
    margin-bottom: 40px;
}

.letest-updated-prn .letest-updates-prn-slider {
    padding: 40px 80px;
}

.letest-updated-prn .letest-updates-prn-slider .item p {
    font-size: 26px;
    color: #000;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}

.letest-updated-prn .letest-updates-prn-slider .item .center-part {
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.letest-updated-prn .letest-updates-prn-slider .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    margin: auto;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.letest-updated-prn .letest-updates-prn-slider .slick-arrow.slick-prev {
    left: 0;
}

.letest-updated-prn .letest-updates-prn-slider .slick-arrow.slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/left-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.letest-updated-prn .letest-updates-prn-slider .slick-arrow.slick-next {
    right: 0;
}

.letest-updated-prn .letest-updates-prn-slider .slick-arrow.slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url(../images/right-arrow.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.carrer-main-top-content {
    padding: 50px 0 0 0;
    margin-bottom: -39px;
}

.carrer-main-top-content p {
    font-size: 18px;
    color: #606060;
    line-height: 30px;
    margin-bottom: 20px;
}

.carrer-main-top-content p a {
    color: #fd4c5c;
    text-decoration: none;
    border-bottom: 1px solid #fd4c5c;
}

.carrer-main-top-content p:last-child {
    margin-bottom: 0;
}

.carrer-main-top-content h5 {
    padding: 21px;
    background: #00205b;
    color: #fff;
    font-size: 18px;
    display: inline-block;
}

.schemes-part {
    padding: 19px 0;
    background: #f3fcfb;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid #ddd;
    z-index: 999;
}

.schemes-part p {
    color: #000b33;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
}

.schemes-part p a {
    color: #fd4c5c;
    text-decoration: none;
    border-bottom: 1px solid #fd4c5c;
}

.schemes-part p a img {
    display: inline-block;
    vertical-align: middle;
}

/* home slider css */
.hero-new-section {
    position: relative;
}

.hero-new-section .slider-first {
    background: url('../images/new-home-slider-images/our-unified-all-in-one-platform.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 43px 0 0;
    position: relative;
}

.hero-new-section .slider-first .left-side-part {
    text-align: center;
}

.hero-new-section .slider-first .left-side-part img {
    display: block;
    margin: 0 auto;
}

.hero-new-section .slider-first .right-side-part {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-new-section .slider-first .right-side-part .top-new-nexus-logo {
    margin-bottom: 30px;
}

.hero-new-section .slider-first .right-side-part p {
    font-size: 20px;
    color: #fff;
    line-height: 28px;
}

.hero-new-section .slider-first .right-side-part .learn-more-btn {
    padding: 18px 61px;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    color: #2a6ef2;
    margin-top: 30px;
    background: #fff;
    border-radius: 30px;
    transition: 0.25s all linear;
    border: 1px solid transparent;
}

.hero-new-section .slider-first .right-side-part .learn-more-btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transition: 0.25s all linear;
}

.hero-new-section .slider-fourth {
    background: #F3FCFB;
    padding: 51px 0;
}

.hero-new-section .slider-fourth .right-side-part {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-new-section .slider-fourth .right-side-part .sub-head {
    font-size: 40px;
    line-height: 48px;
    color: #FD4C5C;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-new-section .slider-fourth .right-side-part .top-new-nexus-logo {
    margin-bottom: 30px;
}

.hero-new-section .slider-fourth .right-side-part p {
    color: #818596;
}

.hero-new-section .slider-fourth .right-side-part .red-btn {
    margin-top: 30px;
}

.hero-new-section .slider-fourth .left-side-part {
    text-align: center;
}

.hero-new-section .slider-fourth .left-side-part img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.hero-new-section .slider-second {
    padding: 60px 0;
    position: relative;
}

.hero-new-section .slider-second .left-side-part .nexus-part-logo {
    margin-bottom: 30px;
}

.hero-new-section .slider-second .left-side-part .nexus-part-logo img {
    width: 43%;
    display: block;
}

.hero-new-section .slider-second .left-side-part h2 {
    font-size: 46px;
    color: #10b9e3;
    font-weight: 700;
    line-height: 58px;
    font-family: Manrope, sans-serif;
    margin-bottom: 20px;
}

.hero-new-section .slider-second .left-side-part p {
    color: #000;
}

.hero-new-section .slider-second .left-side-part .red-btn {
    margin-top: 30px;
}

.hero-new-section .slider-second .right-side-part {
    display: flex;
    align-items: end;
    justify-content: end;
    height: 100%;
}

.hero-new-section .slider-third {
    background: url("../images/new-home-slider-images/our-brand-new-certification-background.jpg") no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 0;
    position: relative;
}

.hero-new-section .slider-third.slider-third1 {
    background: url("../images/new-home-slider-images/our-brand-new-certification-background1.jpg") no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 100px 0 0;
    position: relative;
}

.hero-new-section .slider-third.slider-third1 .left-side-image img {
    width: 98%;
}

.hero-new-section .slider-third .right-side-part {
    text-align: center;
}

.hero-new-section .slider-third .right-side-part .certification-logo {
    margin-bottom: 20px;
    text-align: center;
}

.hero-new-section .slider-third .right-side-part .certification-logo img {
    display: block;
    margin: 0 auto;
}

.hero-new-section .slider-third .right-side-part p {
    color: #000;
}

.hero-new-section .slider-third .right-side-part .red-btn {
    margin-top: 30px;
    display: inline-block;
}

.hero-new-section .slider-third .container {
    position: relative;
    z-index: 5;
}

.hero-new-section .slider-third .bottom-laptop-img {
    margin-top: -27%;
}

.hero-new-section .slider-third .bottom-laptop-img img {
    width: 74%;
    display: block;
}

.hero-new-section .slick-arrow {
    width: 39px;
    height: 39px;
    border-radius: 10px;
    border-width: 0;
    background: #fd4c5c;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 5;
}

.hero-new-section .slick-arrow.slick-prev:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url('../images/left-arrow.png') no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.hero-new-section .slick-arrow.slick-next:before {
    content: " ";
    width: 19px;
    height: 15px;
    background: url('../images/right-arrow.png') no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    transform: translateY(-50%);
}

.hero-new-section .slick-arrow.slick-prev {
    left: 20px;
    right: auto;
}

.hero-new-section .slick-arrow.slick-next {
    left: auto;
    right: 20px;
}

/* home slider css */
.searchbar.mobile-view-search {
    display: none;
}

.common-chckbox-format {
    display: flex;
    align-items: self-start;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    background: #f7f7f7;
}

.common-chckbox-format .form-check-input {
    width: 5%;
    margin: 7px 0 0;
}

.common-chckbox-format .form-check-label {
    width: 96%;
    padding-left: 8px;
    line-height: 24px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.common-chckbox-format .form-check-label strong {
    font-weight: 600;
    display: inline;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

.our-team.philosophy-section .col-lg-3 {
    padding: 0 15px;
}

.sldier-top-banner-home .slider-fourth {
    background: #F3FCFB !important;
    padding: 51px 0;
}

.sldier-top-banner-home .slider-fourth .right-side-part {
    display: flex;
    align-items: center;
    height: 100%;
}

.sldier-top-banner-home .slider-fourth .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.sldier-top-banner-home .slider-fourth .right-side-part .sub-head {
    font-size: 40px;
    line-height: 48px;
    color: #FD4C5C;
    font-weight: 700;
    margin-bottom: 20px;
}

.sldier-top-banner-home .slider-fourth .right-side-part .top-new-nexus-logo {
    margin-bottom: 30px;
}

.sldier-top-banner-home .slider-fourth .right-side-part p {
    color: #818596;
}

.sldier-top-banner-home .slider-fourth .right-side-part .red-btn {
    margin-top: 30px;
}

.sldier-top-banner-home .slider-fourth .left-side-part {
    text-align: center;
}

.sldier-top-banner-home .slider-fourth .left-side-part img {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.nexus-top-banner.home-new-banner .banner1caption.slider-five {
    background: url("../images/new-banner-home/join-us-at-lift-omaha-main-image-bg.jpg") no-repeat;
    background-size: cover;
    background-position: bottom;
    position: relative;
}

.nexus-top-banner.home-new-banner .banner1caption.slider-five  .right-side-part .center-content-part .sub-head {
    color: #FFFFFF;
    font-size: 49px;
    line-height: 55px;
    font-weight: 600;
    margin-bottom: 20px;
}

.nexus-top-banner.home-new-banner .banner1caption.slider-five  .right-side-part .center-content-part p {
    color: #fff;
    margin-bottom: 30px;
    line-height: 24px;
    font-size: 16px;
}

.nexus-top-banner.home-new-banner .banner1caption.slider-five  .right-side-part .center-content-part .red-btn {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #00A9D8;
    font-size: 20px;
}

.nexus-top-banner.home-new-banner .banner1caption.slider-five  .right-side-part .center-content-part .red-btn:hover {
    background: transparent;
    color: #fff;
}

.nexus-top-banner.home-new-banner .banner1caption.slider-five .container {
    height: 100%;
    align-items: center;
    display: flex;
}

.nexus-top-banner.home-new-banner .banner1caption.slider-five .container .right-side-part {
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 50px;
}

@media screen and (min-width:2901px) and (max-width:3000px) {
    .advanced-mobile-platform .mobile-set {
        width: 533px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

}

@media screen and (min-width:2801px) and (max-width:2900px) {
    .advanced-mobile-platform .mobile-set {
        width: 510px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

}

@media screen and (min-width:2701px) and (max-width:2800px) {
    .advanced-mobile-platform .mobile-set {
        width: 487px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

}

@media screen and (min-width:2601px) and (max-width:2700px) {
    .advanced-mobile-platform .mobile-set {
        width: 459px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

}

@media screen and (min-width:2501px) and (max-width:2600px) {
    .advanced-mobile-platform .mobile-set {
        width: 459px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

}

@media screen and (min-width:2401px) and (max-width:2500px) {
    .advanced-mobile-platform .mobile-set {
        width: 446px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

}

@media screen and (min-width:2201px) and (max-width:2400px) {
    .advanced-mobile-platform .mobile-set {
        width: 401px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

}

@media screen and (min-width:2100px) and (max-width:2200px) {
    .advanced-mobile-platform .mobile-set {
        width: 381px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

}

@media screen and (min-width:1951px) and (max-width:2000px) {
    .advanced-mobile-platform .mobile-set {
        width: 336px;
        top: 297px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

}

@media screen and (min-width:1930px) and (max-width:1950px) {
    .advanced-mobile-platform .mobile-set {
        width: 327px;
        top: 297px;
    }

    .advanced-mobile-platform .mobile-set img {
        width: 100%;
    }

}

@media screen and (min-width:1920px) and (max-width:1950px) {
    .left-nexus-content.healthcare-industry-right .healthcare-industry {
        width: 40%;
        margin-top: 60px;
    }

}

@media screen and (max-width:1600px) {
    header .navigation-bar {
        width: 80%;
    }

    .why-labor-edge .why-labo-content {
        padding-left: 117px;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items strong {
        font-size: 18px;
    }

    .advanced-mobile-platform .mobile-set {
        top: 296px;
        width: 249px;
    }

    .featurs-list-section.about-page-listing .featurs-list-box {
        min-height: 335px;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items img {
        border-radius: 27px;
    }

    .infographic-section {
        padding: 226px 0 60px;
    }

    .big-content-infographic {
        padding: 100px 0 60px;
    }

    .vms-video-banner-section1 {
        height: 82vh;
    }

    .vms-video-banner-section1 .video-cntr {
        height: 84vh;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile {
        border-radius: 37px;
    }

    header .navigation-bar .navbar-nav .nav-item.right-side-menu {
        margin-left: 21%;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        width: 400px;
    }

    .nexus-top-banner.home-new-banner .banner1caption .left-nexus-content h1.heading {
        min-height: auto;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .nexus-top-banner.home-new-banner .banner1caption .left-nexus-content h1.heading br {
        display: none;
    }

    .nexus-top-banner .right-nexus-content .popup-img1 {
        top: 249px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .logo-on-main {
        margin-top: 20px;
    }

    /*nexus-prn-ecosystem*/
    .top-blue-banner.nexusvms-top-manage-automate-your .left-banner-part {
        padding-right: 50px;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.nexusvms-top-manage-automate-your-new .left-banner-part {
        padding-right: 0;
        padding-left: 50px;
    }

    .ats-client-portal-section .main-portal-parts .common-format img {
        width: 43%;
    }

    .ats-client-portal-section .main-portal-parts h4 {
        font-size: 31px;
        line-height: 35px;
        margin: 34px 0 43px;
    }

    .ats-client-portal-section .main-portal-parts .common-box-ats {
        padding: 25px;
        border: 4px solid #fc4c5b;
        min-height: 392px;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.our-commitment-to-prn-section .left-banner-part {
        padding-right: 0;
        padding-left: 50px;
    }

    .letest-updated-prn {
        background-position: top left;
    }

    .letest-updated-prn .letest-updates-prn-slider .item p br {
        display: none;
    }

    /* new slider home  */
    .hero-new-section .slider-third .bottom-laptop-img img {
        width: 74%;
    }

    /* new slider home  */
}

@media screen and (min-width:1601px) and (max-width:1800px) {
    .advanced-mobile-platform .mobile-set {
        top: 312px;
        width: 225px;
    }

    .why-labor-edge .why-labo-content {
        padding-left: 171px;
    }

    .advanced-mobile-platform .mobile-set {
        top: 292px;
        width: 267px;
    }

    .featurs-list-section.about-page-listing .featurs-list-box {
        min-height: 335px;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        top: -2px;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile {
        border-radius: 37px;
    }

}

@media only screen and (min-width:1300px) and (max-width:1440px) {
    header .navigation-bar {
        width: 82%;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link {
        font-size: 15px;
        margin-right: 0;
        padding: 12px 8px;
    }

    header .navigation-bar .navbar-nav .nav-item {
        margin-right: 20px;
    }

    header .navigation-bar .navbar-nav .login-request-demo {
        margin-left: 25px;
    }

    header .navigation-bar .navbar-nav .login-request-demo a.login-btn {
        font-size: 13px;
    }

    header .navigation-bar .navbar-nav .login-request-demo a.request-demo {
        padding: 9px 8px;
        font-size: 13px;
    }

    .header .menu>.menu-item>a {
        font-size: 15px;
        padding: 35px 8px;
    }

    .nexus-top-banner {
        padding-top: 104px;
    }

    .nexus-top-banner .left-nexus-content .nexus-logo {
        margin-top: 97px;
    }

    .webinars-page-sec.conference-page-sec .upcoming-webinars .date-sec a.red-btn.wid-full {
        width: 65%;
    }

    .nexus-top-banner .left-nexus-content .nexus-logo img {
        width: 116px;
    }

    .nexus-top-banner .left-nexus-content .heading {
        margin: 30px 0 25px;
    }

    .heading {
        font-size: 38px;
        line-height: 49px;
    }

    .nexus-top-banner .left-nexus-content .red-btn {
        margin-top: 23px;
    }

    .higher-productivity .yellow-circle {
        left: 73px;
        width: 29%;
    }

    .heading2 {
        font-size: 32px;
        line-height: 42px;
    }

    .higher-productivity .productivity-costs .higher-productivity-content .heading2 {
        margin-bottom: 23px;
    }

    .higher-productivity .productivity-steps .steps .right-content strong {
        line-height: 24px;
    }

    .higher-productivity .complete-healthcare-ecosystem .right-ecosystem-content {
        padding-top: 126px;
    }

    .advanced-mobile-platform {
        padding: 56px 59px;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items strong {
        padding: 12px 14px;
        font-size: 13px;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items {
        padding: 0 10px;
    }

    .advanced-mobile-platform .mobile-set {
        top: 189px;
        width: 228px;
    }

    .why-labor-edge .pink-cut-circle {
        right: 208px;
        width: 25%;
    }

    .why-labor-edge .why-labo-content {
        padding-left: 31px;
        padding-right: 40px;
    }

    .why-labor-edge .why-labo-content p br {
        display: none;
    }

    .why-labor-edge .setpe-of-labor-edge {
        margin-right: 0;
    }

    .big-content-infographic .infographic-image-left-side img {
        width: auto;
    }

    .why-labor-edge .setpe-of-labor-edge .item-of-list .content-part .number {
        width: 59px;
        height: 59px;
    }

    .why-labor-edge {
        padding-bottom: 0px;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content {
        padding: 18px;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content h2 {
        font-size: 17px;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content p {
        min-height: 77px;
    }

    .blog-and-updated {
        padding-bottom: 100px;
    }

    .what-our-clients .light-blue-cut {
        width: 26%;
    }

    .get-intouch .nexus-in-operation .nexus-live h6 {
        font-size: 30px;
        line-height: 42px;
    }

    .get-intouch .nexus-in-operation .content-from .mb-3 {
        margin-bottom: 13px !important;
    }

    .get-intouch .nexus-in-operation .content-from .red-btn {
        padding: 11px 26px;
    }

    .get-intouch .nexus-in-operation .contact-us-patch {
        padding-left: 15px;
    }

    .nexus-top-banner .right-nexus-content img.top-img-banner {
        width: 62%;
        margin-left: 154px;
    }

    .nexus-top-banner .right-nexus-content .popup-img2 {
        top: 153px;
        right: 0;
        width: 38%;
    }

    .nexus-top-banner .right-nexus-content .popup-img1 {
        top: 217px;
    }

    .top-blue-banner .right-banner-part .right-feature-img img {
        width: 50%;
    }

    .top-blue-banner .right-banner-part .yellow-cut {
        left: -14px;
    }

    .top-blue-banner .right-banner-part .yellow-cut img {
        width: 50%;
    }

    .top-blue-banner {
        padding: 77px 0;
    }

    .ats-banner-section {
        padding: 38px 0;
    }

    .featurs-list-section {
        padding: 64px 0;
    }

    .featurs-list-section .featurs-list-box {
        min-height: auto;
    }

    .mobile-feature-list {
        padding: 161px 0 261px;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .empty-mobile {
        top: -10px;
        width: 58%;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for {
        margin: 75px 0 81px 0;
    }

    .the-mobile-app-built .left-side-mobile-slider .yellow-cut1 {
        left: 24px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile p {
        margin-bottom: 15px;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for .mobile-item img {
        width: 52%;
    }

    .top-blue-banner.mobile-page-banner {
        padding-bottom: 0;
    }

    .top-blue-banner.mobile-page-banner .right-banner-part .right-feature-img img {
        width: auto;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider {
        margin-top: 0;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-list {
        padding-top: 15px !important;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .heading2 {
        margin-bottom: 16px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile {
        padding-bottom: 68px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-arrow {
        bottom: -58px;
    }

    .bog-details-section .banner-details .green-cut {
        right: -46px;
    }

    .bog-details-section .banner-details {
        margin-bottom: 37px;
    }

    .blog-thumb-section .blog-thumb .content-blog {
        padding: 30px;
        min-height: 188px;
    }

    .client-testimonials-section .testimonials p {
        min-height: 225px;
    }

    .client-testimonials-section .testimonials .testimonials-details .right-content {
        padding-left: 13px;
    }

    .client-testimonials-section .testimonials .testimonials-details .right-content h2 {
        font-size: 15px;
    }

    .client-testimonials-section .testimonials .testimonials-details .right-content p {
        margin-top: 9px;
        line-height: 18px;
    }

    .career-section .accordion-container .set .accordion-list {
        padding: 34px 39px;
    }

    .career-section .accordion-container .set .accordion-list .button-right a {
        margin-left: 15px;
    }

    .career-section .accordion-container .set .accordion-list .left-part {
        width: 82%;
    }

    .career-section .content {
        margin-top: -135px;
    }

    .career-section .accordion-container .set .content {
        padding: 47px 38px;
    }

    .career-section .accordion-container .set .content .left-side-part .heading2 {
        font-size: 33px;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner {
        padding: 44px 0;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner .right-banner-part .blue-cut-mobile {
        top: -44px;
    }

    .candidate-assignments .tab-content .orange-cut1 {
        width: 15%;
        right: 0;
    }

    .candidate-assignments .nav-tabs {
        margin: 0 100px;
    }

    .featurs-list-section.candidate-required-document {
        padding: 100px 0 67px;
    }

    .featurs-list-section.candidate-required-document .featurs-list-box {
        min-height: 293px;
    }

    .industry-stats-job-graph .repoting-stpes.job-bill-setps .right-steps-content .yellow-cut {
        left: -26px;
    }

    .featurs-list-section.about-page-listing .featurs-list-box {
        min-height: 426px;
    }

    .number-of-count .counter-box .number {
        font-size: 41px;
    }

    .philosophy-section .philosophy-left .founder-img {
        margin-left: 12px;
    }

    .philosophy-section .philosophy-left .founder-quart {
        left: 192px;
    }

    .top-blue-banner.mobile-page-banner.solution-banner-section.vms-mobile-gif {
        padding-bottom: 38px;
    }

    .reposting-section .repoting-stpes .left-steps-content .heading2 {
        font-size: 35px;
    }

    .top-blue-banner.mobile-page-banner.solution-banner-section {
        padding-bottom: 77px;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .repoting-dashboard img {
        width: 80%;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .yellow-repoting-cut {
        right: -44px;
    }

    .featurs-list-section.solution-freatures .featurs-list-box {
        padding: 20px;
    }

    .compenents-nexus {
        padding: 122px 0;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items img {
        border-radius: 27px;
    }

    .compenents-nexus .right-part-nexus .red-cut {
        left: 21px;
    }

    .career-section .accordion-container .set .accordion-list .button-right {
        width: 16%;
    }

    .blog-thumb-section .blog-thumb .content-blog h2 {
        font-size: 21px;
    }

    .integrations-brand {
        margin-top: -76px;
    }

    .common-popup .content-popup .request-demo-from {
        padding: 32px 23px;
    }

    .common-popup .content-popup .request-demo-from input, .common-popup .content-popup .request-demo-from textarea {
        padding: 13px 26px;
    }

    .number-of-count .counter-box.orange, .number-of-count .counter-box.purple, .number-of-count .counter-box.red {
        padding: 36px 20px;
    }

    .number-of-count .counter-box h3 {
        font-size: 15px;
        line-height: 22px;
    }

    .bog-details-section .green-cut {
        right: 0;
    }

    .infographic-section .infographic-part .infographic-box.mobile {
        left: -299px;
    }

    .infographic-section .infographic-part .infographic-box.ats {
        right: -299px;
    }

    .infographic-section .infographic-part .center-part-img {
        width: 480px;
    }

    .infographic-section {
        padding: 211px 0 68px;
    }

    .vms-video-banner-section1 {
        padding: 0;
        color: #fff;
        position: relative;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 74vh;
    }

    .vms-video-banner-section1 .video-cntr {
        height: 83vh;
    }

    .top-blue-banner.vms-banner-section.vms-video-banner-section1 .right-banner-part {
        padding-top: 0;
    }

    .vms-video-banner-section1 .right-feature-img {
        padding-top: 33px;
    }

    .top-blue-banner.mobile-page-banner.solution-banner-section.vms-video-banner-section1 .left-banner-part {
        padding-top: 81px;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile {
        border-radius: 37px;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        width: 53%;
    }

    .ats-banner-section .left-banner-part {
        margin-top: 5px;
    }

    .big-content-infographic {
        padding: 100px 0 60px;
    }

    .about-us-details {
        padding-top: 100px;
    }

    .about-us-details .repoting-stpes .right-steps-content .repoting-dashboard img {
        width: 70%;
    }

    .why-partner {
        padding-top: 100px;
    }

    .about-us-details .repoting-stpes .right-steps-content .yellow-repoting-cut {
        top: -32px;
    }

    .higher-productivity .productivity-steps .steps {
        width: 97%;
    }

    .vms-mobile-section {
        padding: 56px 0 120px;
    }

    .api-documentation {
        height: 74vh;
    }

    .reposting-section.about-us-details .right-steps-content {
        margin-top: 123px;
    }

    .faq-section-format-format .slide-group h3.slider-header, .faq-section-format-format .slide-group.full-on-window h3.slider-header {
        left: -116px;
    }

    header.fixed .navigation-bar {
        margin-top: 0;
    }

    header .navigation-bar .navbar-nav .nav-item.right-side-menu {
        margin-left: 11%;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .logo-on-main {
        margin-top: 42px;
    }

    header .navigation-bar {
        margin-top: 0;
    }

    header .navigation-bar .navbar-nav .nav-item.right-side-menu.smallsize .nav-link {
        font-size: 14px;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link {
        font-size: 18px;
        padding: 40px 8px;
    }

    header .navigation-bar .navbar-nav .nav-item {
        margin-right: 16px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .top-menu {
        padding: 16px 0;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .top-menu p {
        margin-bottom: 5px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .top-menu h5 {
        margin-bottom: 10px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .left-side-part-nevigation, header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation {
        padding: 25px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar {
        padding-top: 17px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
        margin-bottom: 0;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu p {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu {
        padding: 13px 0;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation p {
        font-size: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu {
        padding: 0 0 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar {
        padding-top: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
        margin-bottom: 9px;
    }

    /*nexus pr ecosystem*/
    .top-blue-banner.nexusvms-top-manage-automate-your .left-banner-part {
        padding-right: 30px;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.nexusvms-top-manage-automate-your-new .left-banner-part {
        padding-right: 0;
        padding-left: 30px;
    }

    .ats-client-portal-section .main-portal-parts .common-format img {
        width: 41%;
    }

    .ats-client-portal-section .main-portal-parts .common-format .dots-img img {
        width: 75%;
    }

    .ats-client-portal-section .main-portal-parts h4 {
        font-size: 28px;
        line-height: 37px;
        margin: 30px 0 30px;
    }

    .ats-client-portal-section .main-portal-parts .common-box-ats {
        padding: 25px;
        border: 4px solid #fc4c5b;
        min-height: 421px;
    }

    .candidate-journey-lifecycle {
        padding: 60px 0;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box {
        font-size: 22px;
        line-height: 29px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box1 {
        top: 40%;
        left: 6.5%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box2 {
        top: 60%;
        left: 28.6%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box3 {
        left: 51%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box4 {
        left: 75.6%;
        width: 122px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context p {
        font-size: 14px;
        line-height: 17px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps8 {
        top: 38%;
        right: -3%;
        text-align: left;
        width: 106px;
    }

    .increcsess-your-top-heading h3 {
        font-size: 32px;
        line-height: 42px;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.our-commitment-to-prn-section .left-banner-part {
        padding-right: 0;
        padding-left: 30px;
    }

    .letest-updated-prn {
        background-position: top left;
    }

    .letest-updated-prn .letest-updates-prn-slider .item p br {
        display: none;
    }

    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 112%;
    }

}

@media screen and (min-width:1361px) and (max-width:1366px) {
    .advanced-mobile-platform .mobile-set {
        width: 242px;
    }

    .com-sec-cont img.dashboard-img {
        top: -100px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
    }

    .nexus-top-banner .left-nexus-content.business-intelligence-cont h4 {
        font-size: 22px;
        color: #00c3f2;
    }

    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 112%;
    }

}

@media screen and (min-width:1367px) and (max-width:1370px) {
    .advanced-mobile-platform .mobile-set {
        width: 243px;
    }

}

@media screen and (min-width:1431px) and (max-width:1440px) {
    .advanced-mobile-platform .mobile-set {
        top: 184px;
        width: 263px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box1 {
        top: 40%;
        left: 7.5%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box2 {
        top: 60%;
        left: 29.6%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box3 {
        left: 52%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box4 {
        left: 76.6%;
    }

    .right-header-part .searchbar {
        width: 184px;
    }

    .header .menu>.menu-item>a {
        padding: 35px 3px;
        font-size: 16px;
    }

    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 112%;
    }

}

@media (max-width:1280px) {
    header .navigation-bar {
        width: 82%;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link {
        font-size: 13px;
        margin-right: 0;
        padding: 12px 8px;
    }

    header .navigation-bar .navbar-nav .nav-item {
        margin-right: 25px;
    }

    header .navigation-bar .navbar-nav .login-request-demo {
        margin-left: 10px;
    }

    header .navigation-bar .navbar-nav .login-request-demo a.login-btn {
        font-size: 13px;
    }

    header .navigation-bar .navbar-nav .login-request-demo a.request-demo {
        padding: 9px 8px;
        font-size: 13px;
    }

    .right-header-part .searchbar {
        width: 184px;
    }

    .header .menu>.menu-item>a {
        padding: 35px 3px;
        font-size: 16px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .left-nexus-content {
        width: 38% !important;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        width: 90%;
    }

    .nexus-top-banner .left-nexus-content.business-intelligence-cont h4 {
        font-size: 22px;
        color: #00c3f2;
    }

    .left-nexus-content.healthcare-industry-right .healthcare-industry {
        width: 34%;
        margin-top: 200px;
    }

    .business-intelligence-cont .heading {
        font-size: 35px;
        line-height: 49px;
    }

    .nexus-top-banner .right-nexus-content.business-intelligence-left-img {
        bottom: 40px !important;
    }

    .nexus-top-banner {
        padding-top: 104px;
    }

    .nexus-mobile-powered-logo-img {
        margin-top: 240px;
    }

    .webinars-page-sec.conference-page-sec .upcoming-webinars .date-sec a.red-btn.wid-full {
        width: 72%;
    }

    .nexus-top-banner .left-nexus-content .nexus-logo {
        margin-top: 97px;
    }

    .nexus-top-banner .left-nexus-content .nexus-logo img {
        width: 116px;
    }

    .nexus-top-banner .left-nexus-content .heading {
        margin: 30px 0 25px;
    }

    .heading {
        font-size: 38px;
        line-height: 49px;
    }

    .nexus-top-banner .left-nexus-content .red-btn {
        margin-top: 23px;
    }

    .red-btn {
        font-size: 14px;
        padding: 17px 23px;
    }

    .higher-productivity .yellow-circle {
        left: 73px;
        width: 29%;
    }

    .heading2 {
        font-size: 32px;
        line-height: 42px;
    }

    .higher-productivity .productivity-costs .higher-productivity-content .heading2 {
        margin-bottom: 23px;
    }

    .higher-productivity .productivity-steps .steps .right-content strong {
        line-height: 24px;
    }

    .higher-productivity .complete-healthcare-ecosystem .right-ecosystem-content {
        padding-top: 126px;
    }

    .advanced-mobile-platform {
        padding: 56px 59px;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items strong {
        padding: 12px 14px;
        font-size: 13px;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items {
        padding: 0 10px;
    }

    .advanced-mobile-platform .mobile-set {
        top: 189px;
        width: 223px;
    }

    .why-labor-edge .pink-cut-circle {
        right: 208px;
        width: 25%;
    }

    .why-labor-edge .why-labo-content {
        padding-left: 31px;
        padding-right: 40px;
    }

    .why-labor-edge .why-labo-content p br {
        display: none;
    }

    .why-labor-edge .setpe-of-labor-edge {
        margin-right: 0;
    }

    .why-labor-edge .setpe-of-labor-edge .item-of-list .content-part .number {
        width: 59px;
        height: 59px;
    }

    .why-labor-edge {
        padding-bottom: 0px;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content {
        padding: 18px;
        min-height: 164px;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content h2 {
        font-size: 17px;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content p {
        min-height: 77px;
    }

    .blog-and-updated {
        padding-bottom: 100px;
    }

    .what-our-clients .light-blue-cut {
        width: 26%;
    }

    .get-intouch .nexus-in-operation .nexus-live h6 {
        font-size: 30px;
        line-height: 42px;
    }

    .get-intouch .nexus-in-operation .content-from .mb-3 {
        margin-bottom: 13px !important;
    }

    .get-intouch .nexus-in-operation .content-from .red-btn {
        padding: 11px 26px;
    }

    .get-intouch .nexus-in-operation .contact-us-patch {
        padding-left: 15px;
    }

    .big-content-infographic .infographic-image-left-side img {
        width: auto;
    }

    .nexus-top-banner .right-nexus-content img.top-img-banner {
        width: 66%;
        margin-left: 153px;
    }

    .nexus-top-banner .right-nexus-content .popup-img2 {
        top: 189px;
        width: 38%;
        right: 0;
    }

    .nexus-top-banner .right-nexus-content .popup-img1 {
        top: 287px;
    }

    .featurs-list-section .featurs-list-box {
        min-height: auto;
    }

    .reposting-section .repoting-stpes .left-steps-content .heading2 {
        font-size: 34px;
    }

    .top-blue-banner.mobile-page-banner .left-banner-part p br {
        display: none;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .empty-mobile {
        width: 59%;
        top: -15px;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for .mobile-item img {
        width: 52%;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for {
        margin: 75px 0 81px 0;
    }

    .higher-productivity .productivity-steps .steps {
        width: 97%;
    }

    .bog-details-section .banner-details .green-cut {
        right: 0;
    }

    .bog-details-section .banner-details {
        margin-bottom: 45px
    }

    .blog-thumb-section .blog-thumb .content-blog {
        padding: 30px;
        min-height: unset;
    }

    .client-testimonials-section .testimonials p {
        min-height: 225px;
    }

    .client-testimonials-section .testimonials .testimonials-details .right-content {
        padding-left: 13px;
    }

    .client-testimonials-section .testimonials .testimonials-details .right-content h2 {
        font-size: 15px;
    }

    .client-testimonials-section .testimonials .testimonials-details .right-content p {
        margin-top: 9px;
        line-height: 18px;
    }

    .career-section .accordion-container .set .accordion-list {
        padding: 34px 39px;
    }

    .career-section .accordion-container .set .accordion-list .button-right a {
        margin-left: 15px;
    }

    .career-section .accordion-container .set .accordion-list .left-part {
        width: 79%;
    }

    .career-section .content {
        margin-top: -135px;
    }

    .career-section .accordion-container .set .content {
        padding: 47px 38px;
    }

    .career-section .accordion-container .set .content .left-side-part .heading2 {
        font-size: 33px;
    }

    .candidate-assignments .nav-tabs {
        margin: 0 100px;
    }

    .candidate-assignments .tab-content .orange-cut1 {
        right: 0;
        top: -129px;
        width: 14%;
    }

    .featurs-list-section.candidate-required-document .featurs-list-box {
        min-height: 290px;
    }

    .featurs-list-section.candidate-required-document {
        padding: 100px 0 67px;
    }

    .industry-stats-job-graph .repoting-stpes.job-bill-setps .right-steps-content .yellow-cut {
        left: -26px;
    }

    .featurs-list-section.about-page-listing .featurs-list-box {
        min-height: 425px;
    }

    .number-of-count .counter-box .number {
        font-size: 41px;
    }

    .philosophy-section .philosophy-left .founder-img {
        margin-left: 12px;
    }

    .philosophy-section .philosophy-left .founder-quart {
        left: 192px;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .repoting-dashboard img {
        width: 77%;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .yellow-repoting-cut {
        right: -34px;
    }

    .featurs-list-section.solution-freatures .featurs-list-box {
        padding: 20px;
    }

    .compenents-nexus {
        padding: 126px 0;
    }

    .compenents-nexus .right-part-nexus .red-cut {
        left: 21px;
    }

    .career-section .accordion-container .set .accordion-list .button-right {
        width: 18%;
    }

    .blog-thumb-section .blog-thumb .content-blog h2 {
        font-size: 21px;
    }

    .integrations-brand {
        margin-top: -76px;
    }

    .number-of-count .counter-box.orange, .number-of-count .counter-box.purple, .number-of-count .counter-box.red {
        padding: 36px 20px;
    }

    .number-of-count .counter-box h3 {
        font-size: 15px;
        line-height: 22px;
    }

    .bog-details-section .green-cut {
        right: 0;
    }

    .common-popup .content-popup .request-demo-from {
        padding: 33px 16px;
    }

    .common-popup .content-popup .request-demo-from input, .common-popup .content-popup .request-demo-from textarea {
        padding: 12px 26px;
    }

    .featurs-list-section.about-page-listing {
        padding-bottom: 67px;
    }

    .infographic-section .infographic-part .infographic-box.mobile {
        left: -299px;
    }

    .infographic-section .infographic-part .infographic-box.ats {
        right: -299px;
    }

    .infographic-section .infographic-part .center-part-img {
        width: 480px;
    }

    .infographic-section {
        padding: 210px 0 60px;
    }

    .vms-video-banner-section1 {
        padding: 0;
        color: #fff;
        position: relative;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 74vh;
    }

    .vms-video-banner-section1 .video-cntr {
        height: 83vh;
    }

    .top-blue-banner.vms-banner-section.vms-video-banner-section1 .right-banner-part {
        padding-top: 0;
    }

    .vms-video-banner-section1 .right-feature-img {
        padding-top: 33px;
    }

    .top-blue-banner.mobile-page-banner.solution-banner-section.vms-video-banner-section1 .left-banner-part {
        padding-top: 33px;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile {
        border-radius: 37px;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        width: 53%;
    }

    .big-content-infographic {
        padding: 100px 0 60px;
    }

    .about-us-details {
        padding-top: 100px;
    }

    .reposting-section.about-us-details .repoting-stpes {
        margin-bottom: 100px;
    }

    .why-partner {
        padding-top: 130px;
    }

    .vms-mobile-section .left-part-section {
        margin-top: 168px;
        padding-left: 207px;
    }

    .api-documentation {
        height: 74vh;
    }

    .reposting-section.about-us-details .right-steps-content {
        margin-top: 123px;
    }

    .faq-section-format-format .slide-group h3.slider-header, .faq-section-format-format .slide-group.full-on-window h3.slider-header {
        left: -116px;
    }

    header.fixed .navigation-bar {
        margin-top: 0;
    }

    header .navigation-bar .navbar-nav .nav-item.right-side-menu {
        margin-left: 11%;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .logo-on-main {
        margin-top: 42px;
    }

    header .navigation-bar {
        margin-top: 0;
    }

    header .navigation-bar .navbar-nav .nav-item.right-side-menu.smallsize .nav-link {
        font-size: 14px;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link {
        font-size: 18px;
        padding: 40px 8px;
    }

    header .navigation-bar .navbar-nav .nav-item {
        margin-right: 16px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .top-menu {
        padding: 16px 0;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .top-menu p {
        margin-bottom: 5px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .top-menu h5 {
        margin-bottom: 10px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .left-side-part-nevigation, header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation {
        padding: 25px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar {
        padding-top: 17px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
        margin-bottom: 0;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation {
        padding: 16px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .logo-on-main {
        margin-top: 44px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu {
        padding: 13px 0;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu {
        padding: 0 0 10px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
        padding: 18px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar {
        padding-top: 12px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show h5 {
        margin-bottom: 2px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .logo-on-main {
        margin-top: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu h5 {
        margin-bottom: 5px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu p {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>a {
        padding: 35px 7px;
        font-size: 14px;
    }

    .right-header-part .smallsize .login-btn, .right-header-part .smallsize .contact-us-btn {
        font-size: 14px;
    }

    .left-nexus-content.healthcare-industry-right .healthcare-industry {
        margin-top: 98px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content img.top-img-banner {
        width: 62% !important;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        width: 86% !important;
    }

    .new-footer-section .col-lg-3, .new-footer-section .col-lg-2 {
        padding: 0 5px;
    }

    footer .comon-div a, footer .comon-div p {
        font-size: 12px;
    }

    footer .comon-div .social-icon a {
        margin-right: 15px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu p {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu {
        padding: 13px 0;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation p {
        font-size: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu {
        padding: 0 0 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar {
        padding-top: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
        margin-bottom: 9px;
    }

    /*nexus pr ecosystem*/
    .top-blue-banner.nexusvms-top-manage-automate-your .left-banner-part {
        padding-right: 30px;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.nexusvms-top-manage-automate-your-new .left-banner-part {
        padding-right: 0;
        padding-left: 30px;
    }

    .ats-client-portal-section .main-portal-parts .common-format img {
        width: 41%;
    }

    .ats-client-portal-section .main-portal-parts .common-format .dots-img img {
        width: 75%;
    }

    .ats-client-portal-section .main-portal-parts h4 {
        font-size: 28px;
        line-height: 37px;
        margin: 30px 0 30px;
    }

    .ats-client-portal-section .main-portal-parts .common-box-ats {
        padding: 25px;
        border: 4px solid #fc4c5b;
        min-height: 512px;
    }

    .candidate-journey-lifecycle {
        padding: 60px 0;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box {
        font-size: 19px;
        line-height: 26px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box1 {
        top: 38%;
        left: 7%;
        width: 134px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box2 {
        top: 58%;
        left: 27.6%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box3 {
        left: 50%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box4 {
        left: 74.6%;
        width: 122px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context p {
        font-size: 14px;
        line-height: 17px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps8 {
        top: 38%;
        right: -3%;
        text-align: left;
        width: 86px;
    }

    .increcsess-your-top-heading h3 {
        font-size: 32px;
        line-height: 42px;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.our-commitment-to-prn-section .left-banner-part {
        padding-right: 0;
        padding-left: 30px;
    }

    .letest-updated-prn {
        background-position: top left;
    }

    .letest-updated-prn .letest-updates-prn-slider .item p br {
        display: none;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps1 {
        bottom: 0;
        left: -15px;
    }

    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 114%;
    }

}

@media screen and (min-width:1000px) and (max-width:1024px) {
    header .navigation-bar {
        width: 82%;
    }

    .com-sec-cont img.decorate-img.mob-img {
        width: 110px;
    }

    .right-header-part .searchbar {
        width: 96px;
    }

    .why-labor-edge .right-side-content img {
        height: 780px;
        object-fit: cover;
        position: relative;
        object-position: left;
    }

    .com-sec-cont img.dashboard-img {
        top: -60px;
    }

    .com-sec-cont-box {
        padding: 20px;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link {
        font-size: 13px;
        margin-right: 0;
        padding: 12px 8px;
    }

    .blue-box-area .our-panelist-box h4 {
        font-size: 18px;
    }

    .blue-box-area .our-panelist-box p {
        padding: 0 20px;
    }

    header .navigation-bar .navbar-nav .nav-item {
        margin-right: 10px;
    }

    header .navigation-bar .navbar-nav .login-request-demo {
        margin-left: 0;
    }

    header .navigation-bar .navbar-nav .login-request-demo a.login-btn {
        font-size: 13px;
    }

    header .navigation-bar .navbar-nav .login-request-demo a.request-demo {
        padding: 9px 8px;
        font-size: 13px;
    }

    .nexus-top-banner {
        padding-top: 104px;
        overflow: hidden;
    }

    .nexus-top-banner .right-nexus-content.business-intelligence-left-img {
        bottom: 0px !important;
    }

    .nexus-top-banner .left-nexus-content .nexus-logo {
        margin-top: 45px;
    }

    .nexus-top-banner .left-nexus-content .nexus-logo img {
        width: 116px;
    }

    .nexus-top-banner .left-nexus-content .heading {
        margin: 30px 0 25px;
    }

    .heading {
        font-size: 38px;
        line-height: 49px;
    }

    .nexus-top-banner .left-nexus-content .red-btn {
        margin-top: 23px;
    }

    .red-btn {
        font-size: 14px;
        padding: 17px 23px;
    }

    .higher-productivity .yellow-circle {
        left: 73px;
        width: 29%;
    }

    .heading2 {
        font-size: 32px;
        line-height: 42px;
    }

    .higher-productivity .productivity-costs .higher-productivity-content .heading2 {
        margin-bottom: 23px;
    }

    .higher-productivity .productivity-steps .steps {
        width: 416px;
        padding: 30px 30px;
    }

    .higher-productivity .productivity-steps .steps .right-content strong {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .higher-productivity .complete-healthcare-ecosystem .right-ecosystem-content {
        padding-top: 126px;
    }

    .advanced-mobile-platform {
        padding: 56px 59px;
    }

    .bog-details-section {
        padding-top: 0;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items strong {
        padding: 10px 5px;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items {
        padding: 0 10px;
    }

    .advanced-mobile-platform .mobile-set {
        top: 172px;
        width: 170px;
    }

    .advanced-mobile-platform .red-btn {
        margin-top: 96px;
    }

    .why-labor-edge .pink-cut-circle {
        right: 208px;
        width: 25%;
    }

    .why-labor-edge .why-labo-content {
        padding-left: 31px;
        padding-right: 40px;
    }

    .why-labor-edge .why-labo-content p br {
        display: none;
    }

    .why-labor-edge .setpe-of-labor-edge {
        margin-right: 0;
    }

    .why-labor-edge .setpe-of-labor-edge .item-of-list .content-part .number {
        width: 59px;
        height: 59px;
    }

    .why-labor-edge {
        padding-bottom: 100px;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content {
        padding: 18px;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content p {
        font-size: 14px;
        min-height: 77px;
    }

    .blog-and-updated {
        padding-bottom: 100px;
    }

    .what-our-clients .light-blue-cut {
        width: 26%;
    }

    .get-intouch .nexus-in-operation .nexus-live h6 {
        font-size: 30px;
        line-height: 42px;
    }

    .get-intouch .nexus-in-operation .content-from .mb-3 {
        margin-bottom: 13px !important;
    }

    .get-intouch .nexus-in-operation .content-from .red-btn {
        padding: 11px 26px;
    }

    .get-intouch .nexus-in-operation .contact-us-patch {
        padding-left: 15px;
    }

    .nexus-top-banner .right-nexus-content img.top-img-banner {
        width: 72%;
    }

    .nexus-top-banner .right-nexus-content .popup-img2 {
        top: 181px;
        right: -41px;
        width: 194px;
    }

    .nexus-top-banner .right-nexus-content .popup-img1 {
        width: 200px;
        top: 281px;
        left: 73px;
    }

    .top-blue-banner .left-banner-part {
        padding-right: 60px;
    }

    .ats-banner-section .left-banner-part {
        margin-top: 22px;
    }

    .top-blue-banner .left-banner-part p br {
        display: none;
    }

    .top-blue-banner .left-banner-part .heading2 {
        margin-bottom: 14px;
        font-size: 38px;
        line-height: 49px;
    }

    .featurs-list-section.ats-list-section .featurs-list-box {
        min-height: 597px;
    }

    .top-blue-banner .left-banner-part .breadcrumb {
        margin-bottom: 10px;
    }

    .top-blue-banner .right-banner-part .right-feature-img {
        width: 71%;
        margin: auto;
    }

    .featurs-list-section .featurs-list-box {
        padding: 28px;
    }

    .featurs-list-section .featurs-list-box .featurs-icon {
        margin-bottom: 19px;
    }

    .featurs-list-section .featurs-list-box h2 {
        margin-bottom: 15px;
    }

    .featurs-list-section .featurs-list-box {
        min-height: 736px;
    }

    .big-content-infographic .infographic-image-left-side img {
        width: auto;
    }

    .reposting-section .repoting-stpes .left-steps-content .heading2 {
        font-size: 35px;
    }

    .reposting-section .repoting-stpes .left-steps-content p br {
        display: none;
    }

    .reposting-section .repoting-stpes.healthcare-focused-stpes .right-steps-content .green-patch {
        bottom: 28px;
    }

    .reposting-section .repoting-stpes .left-steps-content .donw-arrow {
        right: 34px;
    }

    .reposting-section .repoting-stpes {
        margin-bottom: 150px;
    }

    .reposting-section .repoting-stpes.time-capture-stpes .right-steps-content .green-patch {
        top: 3px;
        right: 0;
    }

    .mobile-page-banner {
        padding-top: 100px;
    }

    .top-blue-banner .right-banner-part {
        padding-top: 0;
    }

    .common-popup .content-popup .request-demo-from {
        padding: 38px 20px;
    }

    .common-popup .content-popup .request-demo-from input, .common-popup .content-popup .request-demo-from textarea {
        padding: 15px 26px;
    }

    .top-blue-banner.mobile-page-banner .right-banner-part {
        padding-top: 100px;
    }

    .top-blue-banner.mobile-page-banner .right-banner-part .blue-cut-mobile {
        position: absolute;
        top: 173px;
        right: 0;
        width: 37%;
    }

    .top-blue-banner.mobile-page-banner .left-banner-part .heading2 br {
        display: none;
    }

    .top-blue-banner.mobile-page-banner .left-banner-part p br {
        display: none;
    }

    .mobile-feature-list {
        padding: 108px 0 203px;
    }

    .the-mobile-app-built .right-side-mobile-slider .yellow-cut2 {
        top: -66px;
        width: 41%;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile {
        padding: 57px 0 100px 0;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .heading2 {
        margin-bottom: 22px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider {
        margin-top: 20px;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .empty-mobile {
        width: 63%;
        top: -10px;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for .mobile-item img {
        width: 56%;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for {
        margin: 73px 0 81px 0;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link svg {
        margin-left: 0;
    }

    .bog-details-section .banner-details .green-cut {
        right: 0;
    }

    .bog-details-section {
        padding-top: 100px;
    }

    .bog-details-section .banner-details .brand-icon {
        width: 215px;
        height: 215px;
    }

    .bog-details-section .banner-details {
        margin-bottom: 45px
    }

    .blog-thumb-section .blog-thumb .content-blog {
        padding: 30px;
        min-height: unset;
    }

    .client-testimonials-section .testimonials {
        padding: 30px;
    }

    .client-testimonials-section .testimonials .testimonials-details .testimonials-logo {
        width: 57px;
        height: 57px;
    }

    .client-testimonials-section .testimonials p {
        min-height: 225px;
    }

    .client-testimonials-section .testimonials .testimonials-details .right-content {
        padding-left: 13px;
    }

    .client-testimonials-section .testimonials .testimonials-details .right-content h2 {
        font-size: 15px;
        min-height: 30px;
    }

    .client-testimonials-section .testimonials .testimonials-details .right-content p {
        margin-top: 9px;
        line-height: 18px;
    }

    .contact-us-details .location-details p {
        font-size: 15px;
    }

    .send-to-laboredge .send-to-form .heading2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .send-to-laboredge .send-to-form {
        padding: 40px;
    }

    .career-section .accordion-container .set .accordion-list {
        padding: 27px 39px;
    }

    .career-section .accordion-container .set .accordion-list .button-right a {
        margin-left: 15px;
    }

    .career-section .accordion-container .set .accordion-list .left-part {
        width: 77%;
    }

    .career-section .content {
        margin-top: -123px;
    }

    .career-section .accordion-container .set .content {
        padding: 47px 38px;
    }

    .career-section .accordion-container .set .content .left-side-part .heading2 {
        font-size: 33px;
    }

    .top-blue-banner.candidate-portal-banner .right-banner-part {
        padding-top: 0;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner .right-banner-part .blue-cut-mobile {
        top: -28px;
    }

    .candidate-assignments .nav-tabs {
        margin: 0 50px;
    }

    .candidate-assignments .nav-tabs .nav-item {
        width: 32%;
    }

    .candidate-assignments .tab-content .orange-cut1 {
        position: absolute;
        right: 0;
        top: -140px;
        width: 17%;
    }

    .candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .slick-arrow {
        bottom: -64px;
    }

    .featurs-list-section.candidate-required-document .featurs-list-box {
        min-height: 294px;
    }

    .featurs-list-section.candidate-required-document {
        padding: 100px 0 67px;
    }

    .industry-stats-job-graph .repoting-stpes.job-bill-setps .right-steps-content .yellow-cut {
        left: 0;
    }

    .top-blue-banner.about-section-banner .left-banner-part p br {
        display: block;
    }

    .about-us-details .repoting-stpes .right-steps-content .yellow-repoting-cut {
        right: 0;
    }

    .featurs-list-section.about-page-listing .featurs-list-box {
        min-height: 423px;
    }

    .number-of-count .counter-box.orange, .number-of-count .counter-box.purple, .number-of-count .counter-box.red {
        padding: 33px 20px;
    }

    .number-of-count {
        padding: 36px 0 0;
    }

    .number-of-count .counter-box .number {
        font-size: 32px;
    }

    .number-of-count .counter-box h3 {
        margin-left: 9px;
        font-size: 13px;
        line-height: 20px;
    }

    .philosophy-section {
        padding: 150px 0 100px;
    }

    .philosophy-section .philosophy-left .founder-img {
        margin-left: 0;
    }

    .philosophy-section .philosophy-left .founder-quart {
        left: 156px;
    }

    .philosophy-section .philosophy-left .blue-cut {
        top: -39px;
        right: 122px;
    }

    .core-team .team-list .col-lg-3 {
        padding: 0 15px;
    }

    .client-logos-section {
        padding: 78px 0 100px;
    }

    .solution-banner-section {
        padding: 44px 0 114px;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .repoting-dashboard img {
        width: 80%;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .yellow-repoting-cut {
        right: 3px;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content .quert strong br {
        display: none;
    }

    .featurs-list-section.solution-freatures .featurs-list-box {
        padding: 15px;
        min-height: 258px;
    }

    .featurs-list-section.solution-freatures .featurs-list-box h2 {
        font-size: 16px;
    }

    .featurs-list-section.solution-freatures .featurs-list-box p {
        line-height: 20px;
        font-size: 13px;
    }

    .compenents-nexus {
        padding: 125px 0;
    }

    .compenents-nexus .right-part-nexus .red-cut {
        top: 116px;
        left: 42px;
        width: 26%;
    }

    .compenents-nexus .right-part-nexus .componant-img {
        margin-right: 25px;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items img {
        border-radius: 7px;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content h2 {
        font-size: 14px;
        line-height: 24px;
    }

    .career-section .accordion-container .set .accordion-list .button-right {
        width: 20%;
    }

    .blog-thumb-section .blog-thumb .content-blog h2 {
        font-size: 18px;
        line-height: 30px;
    }

    .integrations-brand {
        margin-top: 0;
    }

    .get-intouch .nexus-in-operation .content-from .mb-3 .form-control {
        padding: 8px 0;
    }

    .bog-details-section .green-cut {
        right: 0;
    }

    .top-blue-banner.vms-banner-section .right-banner-part {
        padding-top: 100px;
    }

    .top-blue-banner.vms-banner-section.vms-mobile-gif .right-banner-part {
        padding-top: 0;
    }

    .top-blue-banner.vms-banner-section .right-banner-part .red-cut {
        left: -5px;
        bottom: 143px;
    }

    .reposting-section.solution-stpes-section.vms-stpes-section .repoting-stpes.why-not-partner.nexus-connects-us-stpes .left-steps-content {
        padding-left: 0;
    }

    .companies-logos .companies-row {
        margin-left: 0;
        margin-right: 0;
    }

    .vms-mobile-section {
        padding: 16px 0 69px;
    }

    .vms-mobile-section .mobile-part .slider-for {
        top: -65px;
    }

    .infographic-section .infographic-part .center-part-img {
        width: 435px;
    }

    .infographic-section .infographic-part .infographic-box.mobile {
        left: -256px;
    }

    .infographic-section .infographic-part .infographic-box.ats {
        right: -256px;
        bottom: 246px;
    }

    .infographic-section.infographic-new-infographic .infographic-part .infographic-box.ats {
        bottom: 172px;
    }

    .header-section {
        padding: 47px 0;
    }

    .header-section .logos-div a {
        padding: 7px 59px;
    }

    .vms-video-banner-section1 {
        padding: 0;
    }

    .top-blue-banner.vms-banner-section.vms-video-banner-section1 .right-banner-part {
        padding-top: 0;
    }

    .vms-video-banner-section1 .right-feature-img {
        padding-top: 33px;
    }

    .top-blue-banner.mobile-page-banner.solution-banner-section.vms-video-banner-section1 .left-banner-part {
        margin-top: 46px;
    }

    .top-blue-banner.mobile-page-banner .left-banner-part p {
        padding-right: 0;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile {
        border-radius: 23px;
    }

    .advanced-mobile-platform .mobile-platform-slider .is-active .mobile-items .frame-mobile .top-mobicut img {
        width: 53%;
    }

    .big-content-infographic {
        padding: 100px 0 60px;
    }

    .about-us-details {
        padding-top: 100px;
    }

    .reposting-section.about-us-details .repoting-stpes {
        margin-bottom: 100px;
    }

    .why-partner {
        padding-top: 100px;
    }

    .vms-mobile-section .left-part-section {
        margin-top: 100px;
        padding-left: 129px;
    }

    .api-documentation {
        height: 74vh;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner.api-documentation.nexus-is-down-for-maintenance .left-banner-part {
        margin-top: 0;
    }

    .nexus-is-down-for-maintenance .left-banner-part .heading2 {
        font-size: 49px;
        line-height: 66px;
        margin-bottom: 37px;
    }

    .nexus-is-down-for-maintenance-new {
        background-position: center right -228px;
    }

    header .navigation-bar .navbar-nav .nav-item.right-side-menu {
        margin-left: 4%;
    }

    header .navigation-bar {
        margin-top: 0;
    }

    header .navigation-bar .navbar-nav .nav-item.right-side-menu.smallsize .nav-link {
        font-size: 14px;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        padding: 40px 8px;
    }

    .header .menu>.menu-item>a {
        padding: 35px 7px;
        font-size: 16px;
    }

    .header .menu>.menu-item>a {
        padding: 35px 7px;
        font-size: 14px;
    }

    .right-header-part .smallsize .login-btn, .right-header-part .smallsize .contact-us-btn {
        font-size: 14px;
    }

    .left-nexus-content.healthcare-industry-right .healthcare-industry {
        margin-top: 180px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content img.top-img-banner {
        width: 62% !important;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        width: 86% !important;
    }

    .new-footer-section .col-lg-3, .new-footer-section .col-lg-2 {
        padding: 0 5px;
    }

    footer .comon-div a, footer .comon-div p {
        font-size: 12px;
    }

    footer .comon-div .social-icon a {
        margin-right: 15px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu p {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu {
        padding: 13px 0;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation p {
        font-size: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu {
        padding: 0 0 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar {
        padding-top: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
        margin-bottom: 9px;
    }

    /*nexus prn ecosystem*/
    .top-blue-banner.nexusvms-top-manage-automate-your .left-banner-part {
        padding-right: 20px;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.nexusvms-top-manage-automate-your-new .left-banner-part {
        padding-right: 0;
        padding-left: 20px;
    }

    .ats-client-portal-section .main-portal-parts .common-format .dots-img img {
        width: 53%;
    }

    .ats-client-portal-section .main-portal-parts h4 {
        font-size: 24px;
        line-height: 32px;
        margin: 30px 0 37px;
    }

    .ats-client-portal-section .main-portal-parts .common-box-ats {
        padding: 18px;
        border: 4px solid #fc4c5b;
        min-height: 481px;
    }

    .candidate-journey-lifecycle {
        padding: 60px 0;
        overflow: hidden;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box {
        font-size: 20px;
        line-height: 23px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box1 {
        top: 40%;
        left: 6.5%;
        width: 141px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box2 {
        left: 27.6%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box3 {
        left: 50%;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .common-text-box.box4 {
        left: 74%;
        width: 131px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context p {
        font-size: 14px;
        line-height: 19px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps1 {
        bottom: 0;
        left: -19px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps8 {
        right: -3%;
        width: 89px;
    }

    .candidate-journey-lifecycle .main-info-grapic-part .normal-steps-format .context.steps3 {
        top: 0;
        left: 14%;
    }

    .increcsess-your-top-heading h3 {
        font-size: 32px;
        line-height: 42px;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.our-commitment-to-prn-section .left-banner-part {
        padding-left: 20px;
    }

    .letest-updated-prn {
        background-position: top left;
    }

    .letest-updated-prn .letest-updates-prn-slider .item p br {
        display: none;
    }

    .letest-updated-prn .letest-updates-prn-slider .item p {
        font-size: 23px;
    }

    /* new home page slider */
    .hero-new-section .slider-third .bottom-laptop-img img {
        width: 87%;
    }

    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 112%;
    }

    .bog-details-section.less-padd {
        padding-top: 0 !important;
    }

    /* new home page slider */
}

@media only screen and (min-device-width:1000px) and (max-device-width:1024px) {
    .header .menu>.menu-item>a {
        padding: 35px 7px;
        font-size: 14px;
    }

    .right-header-part .smallsize .login-btn, .right-header-part .smallsize .contact-us-btn {
        font-size: 14px;
    }

    .left-nexus-content.healthcare-industry-right .healthcare-industry {
        margin-top: 40px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content img.top-img-banner {
        width: 62% !important;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        width: 86% !important;
    }

    .new-footer-section .col-lg-3, .new-footer-section .col-lg-2 {
        padding: 0 5px;
    }

    footer .comon-div a, footer .comon-div p {
        font-size: 12px;
    }

    footer .comon-div .social-icon a {
        margin-right: 15px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu p {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu {
        padding: 13px 0;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation p {
        font-size: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu {
        padding: 0 0 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar {
        padding-top: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
        margin-bottom: 9px;
    }

    .top-blue-banner.mobile-page-banner.NexusVMS-top .easy-to-follow span {
        width: 40%;
    }

    .top-blue-banner.mobile-page-banner.NexusVMS-top .easy-to-follow span img {
        width: 100%;
    }

    .top-blue-banner.mobile-page-banner.NexusVMS-top .easy-to-follow h5 {
        width: 60%;
    }

    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 114%;
    }

}

@media only screen and (min-device-width:1000px) and (max-device-width:1024px) and (orientation:portrait) {
    .header .menu>.menu-item>a {
        padding: 35px 7px;
        font-size: 14px;
    }

    .right-header-part .smallsize .login-btn, .right-header-part .smallsize .contact-us-btn {
        font-size: 14px;
    }

    .left-nexus-content.healthcare-industry-right .healthcare-industry {
        margin-top: 40px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content img.top-img-banner {
        width: 62% !important;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        width: 86% !important;
    }

    .new-footer-section .col-lg-3, .new-footer-section .col-lg-2 {
        padding: 0 5px;
    }

    footer .comon-div a, footer .comon-div p {
        font-size: 12px;
    }

    footer .comon-div .social-icon a {
        margin-right: 15px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu p {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu {
        padding: 13px 0;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation p {
        font-size: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu {
        padding: 0 0 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar {
        padding-top: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
        margin-bottom: 9px;
    }

}

@media only screen and (min-device-width:1000px) and (max-device-width:1024px) and (orientation:landscape) {
    .header .menu>.menu-item>a {
        padding: 35px 7px;
        font-size: 14px;
    }

    .right-header-part .smallsize .login-btn, .right-header-part .smallsize .contact-us-btn {
        font-size: 14px;
    }

    .left-nexus-content.healthcare-industry-right .healthcare-industry {
        margin-top: 40px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content img.top-img-banner {
        width: 62% !important;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        width: 86% !important;
    }

    .new-footer-section .col-lg-3, .new-footer-section .col-lg-2 {
        padding: 0 5px;
    }

    footer .comon-div a, footer .comon-div p {
        font-size: 12px;
    }

    footer .comon-div .social-icon a {
        margin-right: 15px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu p {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation .top-menu {
        padding: 13px 0;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation p {
        font-size: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-menu {
        padding: 0 0 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar {
        padding-top: 13px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .left-side-part-nevigation {
        padding: 20px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show h5 {
        margin-bottom: 9px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar .testimonial-show p {
        margin-bottom: 9px;
    }

}

@media only screen and (min-device-width:768px) and (max-device-width:991px) {
    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-dots {
        display: none !important;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile {
        padding-top: 102px;
    }

    .get-intouch .mobile-doctor img {
        margin: auto;
    }

    .big-content-infographic .infographic-image-left-side img {
        width: 50%;
    }

    .nexus-top-banner .right-nexus-content.business-intelligence-left-img {
        bottom: 0px !important;
    }

    .nexus-top-banner.home-new-banner .left-nexus-content.business-intelligence-cont {
        width: 70% !important;
        margin: 60px auto 0;
    }

    /* 
    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 112%;
    } */
    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 100%;
    }

}

@media only screen and (min-device-width:1000px) and (max-device-width:1023px) {
    .get-intouch .mobile-doctor {
        display: none !important;
    }

    .get-intouch .nexus-in-operation .doctor-img.dekstop-doctor {
        display: block !important;
        margin: 0 0 -30px 0;
    }

    footer .top-footer .row .mobile-width {
        width: auto !important;
    }

    footer .top-footer .row .col-lg-3:nth-child(3) {
        width: auto !important;
    }

}

@media screen and (min-width:0) and (max-width:1023px) {
    header {
        padding: 0;
    }

    .core-team .team-list .team-details .member-img .social-icon {
        right: 54%;
        bottom: -124px;
    }

    header .navbar {
        padding: 10px 10px;
    }

    header .navbar-toggler {
        display: inline-block;
        vertical-align: top;
        float: right;
    }

    header .navbar-toggler {
        background: 0 0;
        border: 0;
        border-width: 0;
        margin-top: 4px;
    }

    header .navbar-toggler .bar {
        padding: 10px;
        color: #000;
        text-decoration: none;
        display: block;
    }

    header .navbar-toggler .bar.close-icon {
        display: none;
    }

    header .navbar-toggler .bar svg {
        width: 30px;
        height: 30px;
        color: #002169;
    }

    header.fixed .navbar-toggler .bar svg {
        color: #002169;
    }

    .nexus-top-banner .left-nexus-content.business-intelligence-cont .new {
        position: relative;
        top: 0;
        left: 0;
    }

    .nexus-mobile-powered-logo-img {
        width: 80%;
        margin: 40px auto 0;
    }

    .healthcare-industry-right-cont {
        width: 66%;
    }

    .nexus-top-banner.home-new-banner .banner4caption {
        padding-left: 20px;
        padding-right: 20px;
    }

    header .navigation-bar {
        width: 100%;
        float: none;
        display: none;
        text-align: left;
        padding-top: 30px;
    }

    header .navigation-bar .navbar-nav .nav-item {
        display: block;
    }

    header .navbar-brand {
        width: 41%;
    }

    .right-header-part .searchbar {
        width: 153px;
    }

    .header .menu>.menu-item>a {
        padding: 35px 4px;
        font-size: 12px;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link {
        font-size: 17px;
        padding: 12px 23px;
        z-index: 1;
    }

    header .navigation-bar .navbar-nav .nav-item:nth-child(2) .nav-link, header .navigation-bar .navbar-nav .nav-item:nth-child(7) .nav-link {
        position: relative;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link.active, header .navigation-bar .navbar-nav .nav-item .nav-link:hover {
        color: unset;
    }

    header .navigation-bar .navbar-nav .nav-item:nth-child(2):after, header .navigation-bar .navbar-nav .nav-item:nth-child(7):after {
        position: absolute;
        right: 20px;
        top: 7px;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link svg {
        position: absolute;
        right: -73px;
    }

    header .navigation-bar .navbar-nav .nav-item .nav-link:last-child:before {
        content: none;
    }

    header .navigation-bar .navbar-nav .login-request-demo {
        margin-left: 20px;
        margin-top: 20px;
        padding-bottom: 25px;
    }

    header .navigation-bar .navbar-nav .login-request-demo a.login-btn {
        font-size: 16px;
    }

    header .navigation-bar .navbar-nav .login-request-demo a.request-demo {
        font-size: 16px;
        padding: 16px 20px;
    }

    header .navigation-bar .navbar-nav .nav-item {
        margin-right: 0;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .top-cut-arrow {
        top: 39px;
        left: 47px;
    }

    header .navbar-brand {
        padding: 0;
    }

    header .navigation-bar .navbar-nav .nav-item.right-side-menu {
        margin-left: 0;
    }

    header .navigation-bar .navbar-nav .nav-item.right-side-menu.smallsize .nav-link {
        font-size: 17px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-blue-color {
        display: none;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-blue-color.resocese-right-part {
        display: block;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-blue-color.resocese-right-part .letest-webinar {
        display: none;
    }

    /*    header .navigation-bar .navbar-nav .nav-item .submenu {
        display: none;
    }


    header .navigation-bar .navbar-nav .nav-item:hover .submenu {
        display: none;
    }*/

    /*header .navigation-bar .navbar-nav .nav-item .submenu {
        display: none;
    }

    header .navigation-bar .navbar-nav .nav-item:hover .submenu {
        display: none;
    }*/

    /*header changes css*/
    .partners-integrations-popup .modal-dialog .col-lg-5.pad-mar-0.eqlh {
        background: #fff;
    }

    .partners-integrations-popup .left-image-part {
        position: relative;
        left: 1px;
        display: block;
        margin: 0 auto 10px;
    }

    .partners-integrations-popup .left-image-part img {
        border-radius: 100%;
        width: 120px;
        height: 120px;
        margin: 0 auto;
        margin-top: 23px;
    }

    .partners-integrations-popup .modal-dialog {
        max-width: 90%;
    }

    .partners-integrations-popup .modal-body {
        padding: 0 20px;
    }

    .partners-integrations-popup .modal-body .list-type {
        padding-left: 35px;
        margin: 10px 0;
    }

    .webinars-page-sec.conference-page-sec .upcoming-webinars .date-sec a.red-btn.wid-full {
        width: 52%;
    }

    .nexus-top-banner {
        padding-left: 20px;
        padding-right: 20px;
        overflow: hidden;
    }

    .blue-box-area .blue-box-right-area {
        margin-top: 30px;
    }

    .nexus-top-banner .left-nexus-content .nexus-logo {
        margin-top: 44px;
    }

    .integrations-brand {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 97px;
        padding-bottom: 26px;
        margin-top: 0;
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__pagination li {
        margin: 0 2px;
    }

    .integrations-brand .row {
        display: block;
    }

    .integrations-brand .col {
        width: 49%;
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 21px;
        height: 62px;
    }

    .integrations-brand .integrations-brand-title h2 {
        font-size: 19px;
        top: 14px;
    }

    .higher-productivity .productivity-costs {
        padding: 0 20px 0 20px;
        padding-bottom: 104px;
    }

    .higher-productivity .productivity-costs .higher-productivity-content {
        margin-bottom: 45px;
        margin-top: 0;
    }

    .higher-productivity {
        padding-top: 0;
    }

    .higher-productivity .yellow-circle {
        width: 51%;
    }

    .higher-productivity .productivity-steps .steps {
        width: auto;
        margin-bottom: 20px;
        display: block;
        text-align: left;
        padding: 30px;
    }

    .higher-productivity .productivity-steps .steps .left-icon {
        width: auto;
        display: flex;
        margin-bottom: 18px;
    }

    .higher-productivity .productivity-steps .steps .left-icon img {
        width: 52px;
        display: inline-block;
        vertical-align: middle;
    }

    .higher-productivity .productivity-steps .steps .left-icon strong {
        display: inline-block;
        vertical-align: middle;
        font-size: 20px;
        color: #000b33;
        font-weight: 700;
        font-family: Manrope, sans-serif;
        padding-left: 20px;
        width: 70%;
        line-height: 27px;
    }

    .higher-productivity .productivity-steps .steps .left-icon img {
        margin: auto;
    }

    .higher-productivity .productivity-steps .steps .right-content {
        padding-left: 19px;
        text-align: left;
    }

    .higher-productivity .productivity-steps .steps .right-content strong {
        margin-bottom: 12px;
        display: none;
    }

    .complete-healthcare-ecosystem {
        padding: 0 20px 100px;
    }

    .higher-productivity .complete-healthcare-ecosystem {
        padding-bottom: 104px;
    }

    .higher-productivity .productivity-costs .higher-productivity-content p br {
        display: none;
    }

    .higher-productivity .complete-healthcare-ecosystem .right-ecosystem-content {
        padding-top: 0;
        padding-left: 0;
    }

    .bog-details-section .bog-details-section img {
        max-width: 100%;
        height: auto;
    }

    .heading2 {
        font-size: 29px;
        line-height: 40px;
    }

    .advanced-mobile-platform {
        padding: 104px 20px;
    }

    .advanced-mobile-platform .heading2 {
        font-size: 24px;
        line-height: 30px;
    }

    .advanced-mobile-platform .mobile-set {
        top: 224px;
        width: 254px;
    }

    .why-labor-edge .why-labo-content {
        padding: 27px 20px 50px;
    }

    .why-labor-edge {
        padding: 104px 0 20px;
    }

    .blog-and-updated .heading2 {
        margin-bottom: 25px;
    }

    .why-labor-edge .pink-cut-circle {
        width: 46%;
    }

    .why-labor-edge .setpe-of-labor-edge .item-of-list .content-part {
        padding: 25px 21px;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .why-labor-edge .setpe-of-labor-edge .item-of-list .content-part .laboredge-part {
        padding-left: 20px;
        width: 70%;
    }

    .why-labor-edge .mobile-image-show, .why-labor-edge .mobile-image-show img {
    }

    .why-labor-edge .mobile-image-show {
        margin-top: 10px;
    }

    .blog-and-updated .blog-thumbs {
        margin-bottom: 30px;
        box-shadow: 12px -1px 27px 23px #f8f8f8;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content p {
        font-size: 14px;
        min-height: 97px;
        display: none;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content a {
        font-size: 13px;
        display: none;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content h2 {
        font-size: 14px;
        line-height: 22px;
        min-height: auto;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content {
        min-height: 143px;
    }

    .blog-and-updated {
        padding-bottom: 100px;
        padding-top: 0;
    }

    .blog-and-updated .padd {
        width: 50%;
        padding: 0 5px;
    }

    .what-our-clients .light-blue-cut {
        width: 49%;
    }

    .what-our-clients .clients-testimonial {
        padding: 0 20px;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow.slick-prev {
        left: 30%;
        top: auto;
        bottom: -70px;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow.slick-next {
        right: 30%;
        top: auto;
        bottom: -70px;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow {
        z-index: 9;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item p {
        font-size: 20px;
        margin: 0 30px;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details {
        display: block;
        text-align: center;
        width: auto;
        margin-top: 37px;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-thumb {
        margin: auto;
        display: block;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-details-info, .what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-details-info p {
        text-align: center;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-details-info p {
        margin: 0;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-thumb img {
        margin: auto;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-details-info {
        padding-top: 43px;
        margin: auto;
        width: auto;
    }

    .what-our-clients {
        padding-bottom: 269px;
    }

    .get-intouch .nexus-in-operation .doctor-img {
        margin-top: 0;
    }

    .get-intouch .nexus-in-operation {
        padding: 30px;
        position: relative;
        z-index: 9;
    }

    .integrations-brand .integrations-brand-title img {
        width: 100%;
    }

    .get-intouch .nexus-in-operation .nexus-live {
        margin-bottom: 30px;
    }

    .get-intouch .nexus-in-operation .contact-us-patch {
        padding-left: 0;
        margin-top: 30px;
    }

    .get-intouch .nexus-in-operation .doctor-img {
        margin: 20px 0;
    }

    .get-intouch .nexus-in-operation .contact-us-patch, .get-intouch .nexus-in-operation .nexus-live {
        display: block;
    }

    .get-intouch {
        margin: -110px 20px 0;
    }

    .get-intouch .nexus-in-operation .content-from .red-btn {
        margin-top: 33px;
    }

    footer {
        padding: 261px 20px 50px;
    }

    footer .comon-div .social-icon {
        margin-top: 29px;
    }

    footer .comon-div .short-links {
        margin-top: 20px;
    }

    footer .comon-div .short-links a {
        margin-bottom: 14px;
    }

    footer .top-footer {
        padding-bottom: 64px;
    }

    footer .top-footer .row .col-lg-3:nth-child(2), footer .top-footer .row .col-lg-3:nth-child(3) {
        width: 50%;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items .frame-mobile {
        width: 75%;
        margin: auto;
    }

    .nexus-top-banner .right-nexus-content img.top-img-banner {
        width: 100%;
        margin-left: 0;
    }

    .nexus-top-banner .right-nexus-content .popup-img2 {
        width: 197px;
        top: 156px;
        right: -35px;
    }

    .nexus-top-banner .right-nexus-content {
        margin-top: 35px;
        min-height: 230px;
    }

    .nexus-top-banner .right-nexus-content .popup-img1 {
        top: 290px;
        width: 128px;
        left: -20px;
    }

    .get-intouch .nexus-in-operation .nexus-live h6 {
        font-size: 27px;
        line-height: 36px;
    }

    .live-demo-btn {
        top: auto;
        right: 0;
        bottom: -100%;
        left: 0;
        transform: none;
        width: auto;
        padding: 0;
        border-radius: 6px 6px 0 0;
    }

    .live-demo-btn.active-btn {
        transition: .5s all linear;
        bottom: 0;
    }

    .live-demo-btn a {
        padding: 20px 20px;
        display: block;
    }

    .common-popup .left-image-part img {
        border-radius: 100%;
        width: 120px;
        height: 120px;
        margin: auto;
        margin-top: 23px;
    }

    .common-popup .content-popup .request-demo-from {
        padding: 44px 23px;
    }

    .common-popup .content-popup .request-demo-from h3 {
        font-size: 28px;
    }

    .common-popup .content-popup .request-demo-from p {
        margin-bottom: 27px;
    }

    header .navigation-bar.navbar-collapse {
        transition: .25s all linear;
    }

    header .navigation-bar.navbar-collapse.show {
        display: block;
        transition: .25s all linear;
    }

    .top-blue-banner {
        padding: 47px 20px;
    }

    .top-blue-banner .left-banner-part .breadcrumb {
        margin-bottom: 10px;
    }

    .top-blue-banner .left-banner-part .heading2 {
        margin-bottom: 20px;
    }

    .top-blue-banner .left-banner-part p br {
        display: none;
    }

    .top-blue-banner .right-banner-part {
        margin-top: 30px;
    }

    .top-blue-banner .right-banner-part .yellow-cut {
        position: absolute;
        left: -17px;
        bottom: 22px;
    }

    .featurs-list-section .featurs-list-box {
        min-height: auto;
        margin-bottom: 30px;
        text-align: center;
    }

    .featurs-list-section .featurs-list-box .featurs-icon img {
        margin: auto;
    }

    .reposting-section {
        padding-top: 104px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .featurs-list-section.ats-list-section .featurs-list-box p {
        text-align: left;
    }

    .reposting-section .repoting-stpes .left-steps-content .heading2 {
        margin-bottom: 20px;
    }

    .reposting-section .repoting-stpes .right-steps-content .repoting-dashboard {
        margin-bottom: 30px;
    }

    .reposting-section .repoting-stpes .right-steps-content .yellow-repoting-cut {
        top: 0;
    }

    .reposting-section .repoting-stpes {
        margin-bottom: 175px;
    }

    .reposting-section.ats-reposting-section .repoting-stpes.job-management-stpes {
        margin-bottom: 0;
    }

    .reposting-section.solution-stpes-section.ats-reposting-section .repoting-stpes .left-steps-content {
        margin-bottom: 0;
    }

    .reposting-section .repoting-stpes .left-steps-content .donw-arrow {
        bottom: 0;
        right: 0;
    }

    .reposting-section.ats-reposting-section .repoting-stpes .right-steps-content .repoting-dashboard {
        margin-bottom: 50px;
    }

    .reposting-section .repoting-stpes.compliance-stpes .left-steps-content, .reposting-section .repoting-stpes.job-management-stpes .left-steps-content {
        padding-left: 0;
    }

    .reposting-section .repoting-stpes.healthcare-focused-stpes .right-steps-content .green-patch {
        left: 0;
    }

    .reposting-section .repoting-stpes.time-capture-stpes .right-steps-content .green-patch {
        top: auto;
        right: 1px;
        bottom: -20px;
        width: 50%;
    }

    .reposting-section .repoting-stpes.compliance-stpes .right-steps-content .repoting-dashboard img, .reposting-section .repoting-stpes.job-management-stpes .right-steps-content .repoting-dashboard img, .reposting-section .repoting-stpes.time-capture-stpes .right-steps-content .repoting-dashboard img {
        margin-top: 0;
    }

    .features-at-glance {
        left: 0;
        right: 0;
        text-align: center;
    }

    .features-glance-popup {
        width: 100%;
    }

    .features-at-glance .red-btn {
        width: auto;
        display: none;
        padding: 23px 20px;
    }

    .features-glance-popup .button-live .red-btn {
        display: inline-block;
    }

    .top-blue-banner.mobile-page-banner .left-banner-part .heading2 br {
        display: none;
    }

    .top-blue-banner.mobile-page-banner .right-banner-part .blue-cut-mobile {
        top: 37px;
        right: 0;
        width: 31%;
    }

    .mobile-page-banner {
        padding-bottom: 0;
    }

    .mobile-feature-list {
        padding: 100px 0 100px;
    }

    .the-mobile-app-built .right-side-mobile-slider .yellow-cut2 {
        display: none;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 94px;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .empty-mobile {
        top: -17px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .heading2 br {
        display: none;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .heading2 {
        margin-bottom: 17px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .icon {
        width: 25px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .text-content {
        display: flex;
        font-size: 16px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .text-content {
        line-height: 26px;
    }

    .the-mobile-app-built .mobile-view {
        display: block;
        padding: 104px 20px 0;
    }

    .the-mobile-app-built {
        padding-bottom: 50px;
    }

    .the-mobile-app-built .mobile-view .heading2 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 24px;
        line-height: 36px;
    }

    .the-mobile-app-built .mobile-view .heading2 br {
        display: none;
    }

    .the-mobile-app-built .mobile-view p {
        color: #fff;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile.desktop-view-fromat .heading2, .the-mobile-app-built .right-side-mobile-slider .content-right-mobile.desktop-view-fromat p {
        display: none;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider {
        margin-top: -29px;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for {
        margin-top: 52px;
        margin-bottom: 0;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .empty-mobile {
        top: -2px;
        width: 100%;
    }

    .the-mobile-app-built .col-lg-5 {
        width: 40%;
    }

    .the-mobile-app-built .col-lg-7 {
        width: 60%;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .slider-for .mobile-item img {
        width: 91%;
        border-radius: 15px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .icon {
        margin-right: 10px;
        display: none;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .text-content {
        line-height: 18px;
        font-size: 14px;
    }

    .the-mobile-app-built .left-side-mobile-slider .yellow-cut1, .the-mobile-app-built .left-side-mobile-slider .yellow-dot {
        display: none;
    }

    .the-mobile-app-built .left-side-mobile-slider {
        margin-left: 15px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .text-content {
        margin: 0;
        padding: 5px 0;
        height: 59px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-arrow {
        bottom: -68px;
    }

    .get-intouch .nexus-in-operation .doctor-img.dekstop-doctor {
        display: none;
    }

    .get-intouch .mobile-doctor {
        margin-bottom: -138px;
        display: block;
    }

    .get-intouch .mobile-doctor img {
        margin: auto;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-arrow {
        background: 0 0;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-arrow.slick-disabled:before {
        opacity: .5;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .slick-list {
        padding-top: 0 !important;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu {
        position: static;
        width: 100%;
        padding-left: 30px;
        border: 0;
        border-radius: 0;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu a {
        padding: 6px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu a:first-child, header .navigation-bar .navbar-nav .nav-item .submenu a:last-child {
        border-radius: 0;
    }

    .bog-details-section {
        padding: 78px 0;
    }

    .less-padd {
        padding: 0;
    }

    .updated-padding-less {
        padding: 0;
    }

    .bog-details-section .banner-details .green-cut {
        right: 8px;
        width: 34%;
        top: -35px;
    }

    .bog-details-section .banner-details .brand-icon {
        width: 118px;
        height: 118px;
        right: 24px;
        bottom: -34px;
    }

    .bog-details-section .banner-details .brand-icon img {
        width: 58%;
    }

    .bog-details-section .banner-details {
        margin-bottom: 40px;
    }

    .bog-details-section .heading2 {
        font-size: 29px;
        line-height: 40px;
        padding: 0 20px;
    }

    .bog-details-section p {
        padding: 0 20px;
    }

    .bog-details-section .red-btn {
        margin: 0 20px;
    }

    .bog-details-section h3 {
        font-size: 19px;
        line-height: 30px;
        padding: 0 20px;
        margin-top: 47px;
    }

    .text-strong {
        font-size: 19px;
    }

    .bog-details-section .list-option {
        padding-right: 20px;
        padding-left: 49px;
    }

    .integrations-section {
        padding: 104px 0;
    }

    .candidate-portal-banner.api-documentation {
        padding-bottom: 104px;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner.api-documentation .right-banner-part {
        margin-top: 23px;
    }

    .integrations-section .col-lg-3 {
        width: 50%;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .integrations-section .integrations-logo img {
        width: 75%;
    }

    .integrations-section .integrations-logo {
        height: 152px;
    }

    .blog-thumb-section {
        padding: 55px 0 50px;
    }

    .blog-thumb-section .blog-thumb .content-blog {
        min-height: auto;
    }

    .conference-page-sec .blog-thumb .content-blog {
        padding: 10px;
    }

    .conference-page-sec h4 {
        font-size: 26px;
        margin-top: 40px;
    }

    .conference-page-sec .conference-btn a {
        position: unset;
        transform: unset;
        display: inline-block;
    }

    .conference-page-sec .conference-btn a span {
        display: inline-block;
        vertical-align: super;
    }

    .conference-page-sec .blog-thumb {
        width: 100%;
        margin-bottom: 20px;
        padding: 0px 0 33px;
    }

    .conference-page-sec .col-lg-12 {
        padding: 0 15px;
        margin-bottom: 0;
    }

    .conference-page-sec .col-lg-4 {
        margin-top: 10px;
        padding: 0 10px;
    }

    .blog-thumb-section .blog-thumb .content-blog h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .conference-page-sec .date-sec p span {
        font-size: 12px !important;
    }

    .conference-page-sec .date-sec p b {
        font-size: 12px;
    }

    .client-testimonials-section {
        padding: 104px 0;
    }

    .client-testimonials-section .col-lg-6 .testimonials p {
        height: auto;
    }

    .client-testimonials-section .testimonials p {
        min-height: auto;
    }

    .client-testimonials-section .testimonials .testimonials-details {
        margin-top: 40px;
    }

    .client-testimonials-section .testimonials {
        padding: 59px 29px 30px;
    }

    .top-blue-banner.contact-us-banner .left-banner-part p br {
        display: none;
    }

    .contact-us-details {
        margin-top: -29px;
        padding-bottom: 30px;
    }

    .send-to-laboredge .left-side-map {
        margin-bottom: 30px;
        height: auto;
    }

    .send-to-laboredge .icons-list .image-icon {
        width: 42px;
    }

    .send-to-laboredge .icons-list {
        padding: 25px 0;
    }

    .send-to-laboredge .left-side-map.desktop-map {
        display: none;
    }

    .send-to-laboredge .send-to-form {
        margin-top: 0;
    }

    .send-to-laboredge .mobile-map {
        display: none;
    }

    .send-to-laboredge .mobile-map iframe {
        width: 100%;
        height: 300px;
    }

    .contact-us-details .location-details {
        margin-bottom: 30px;
    }

    .send-to-laboredge .col-lg-6 {
        padding: 0 20px;
    }

    .send-to-laboredge .send-to-form {
        padding: 30px;
    }

    .send-to-laboredge .send-to-form .heading2 {
        font-size: 28px;
        margin-bottom: 23px;
    }

    .send-to-laboredge .send-to-form .form-content .form-control {
        padding: 18px 25px;
    }

    .send-to-laboredge .send-to-form .form-content .red-btn {
        margin-top: 5px;
    }

    .career-section {
        padding: 55px 20px 55px;
    }

    .career-section .accordion-container .set .accordion-list {
        padding: 30px;
    }

    .career-section .accordion-container .set .accordion-list .left-part {
        width: 100%;
        font-size: 21px;
        line-height: 33px;
        min-height: 89px;
    }

    .career-section .accordion-container .set .accordion-list .button-right {
        width: auto;
    }

    .career-section .accordion-container .set .accordion-list .button-right a, .career-section .accordion-container .set .accordion-list .button-right i {
        padding: 11px 9px;
        font-size: 14px;
    }

    .career-section .accordion-container .set .accordion-list .button-right a {
        margin-left: 3px;
    }

    .career-section .accordion-container .set .accordion-list .left-part p {
        margin: 15px 0 34px;
    }

    .career-section .content {
        margin-top: -177px;
    }

    .career-section .accordion-container .set .content {
        padding: 20px;
    }

    .career-section .accordion-container .set .content .padd {
        padding: 0;
    }

    .career-section .accordion-container .set .content .left-side-part .heading2 {
        font-size: 23px;
        line-height: 34px;
        margin-bottom: 17px;
    }

    .career-section .accordion-container .set .content .left-side-part p {
        font-size: 16px;
        line-height: 25px;
    }

    .career-section .accordion-container .set .content .left-side-part br {
        display: none;
    }

    .career-section .accordion-container .set .content .left-side-part .red-btn {
        margin-top: 0;
        margin-left: 6px;
    }

    .career-section .accordion-container .set .content .right-image {
        margin-top: 20px;
    }

    .candidate-portal-banner {
        padding-bottom: 55px;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner .right-banner-part .blue-cut-mobile {
        top: -20px;
    }

    .candidate-assignments {
        padding: 104px 0 32px;
    }

    .candidate-assignments .nav-tabs {
        margin: 0 10px;
    }

    .candidate-assignments .nav-tabs .nav-item {
        width: 32%;
    }

    .candidate-assignments .nav-tabs .nav-item button {
        word-break: break-word;
        font-size: 14px;
        padding: 26px 5px;
        line-height: 24px;
        min-height: 99px;
    }

    .candidate-assignments .tab-content .orange-cut1 {
        width: 25%;
    }

    .candidate-assignments .conent-part-tab {
        padding-top: 56px;
    }

    .candidate-assignments .conent-part-tab .left-side-img .orange-cut {
        top: -29px;
        left: 0;
        width: 42%;
    }

    .candidate-assignments .conent-part-tab .right-assigment-tab-content {
        margin-top: 65px;
    }

    .reposting-section.industry-stats-job-graph .repoting-stpes .left-steps-content p {
        padding-right: 0;
    }

    .candidate-assignments .conent-part-tab .right-assigment-tab-content .heading2 {
        margin-bottom: 12px;
    }

    .candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .item-slider p {
        font-size: 16px;
        line-height: 24px;
    }

    .candidate-assignments .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .slick-arrow {
        bottom: -52px;
    }

    .featurs-list-section.candidate-required-document {
        padding: 104px 0 79px;
    }

    .featurs-list-section.candidate-required-document .featurs-list-box {
        min-height: auto;
        margin-bottom: 0;
    }

    .integrations-section h3 {
        font-size: 24px;
    }

    .reposting-section.industry-stats-job-graph .repoting-stpes .right-steps-content {
        margin-bottom: 30px;
    }

    .industry-stats-job-graph .mobile-image-show {
        display: block;
        margin-bottom: 50px;
    }

    .reposting-section.industry-stats-job-graph .repoting-stpes .right-steps-content .repoting-dashboard {
        margin-bottom: 50px;
    }

    .industry-stats-job-graph .mobile-image-show img {
        display: block;
    }

    .industry-stats-job-graph .desktop-img {
        display: none;
    }

    .top-blue-banner.api-documentation .left-banner-part {
        margin-top: 0;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner.api-documentation .right-banner-part .blue-cut-mobile {
        top: 72%;
        width: 56%;
        left: 0;
    }

    .agency-recruiter-mobile-app h4 {
        margin: 0 20px;
        line-height: 20px;
    }

    .bog-details-section-area .family-is-growing .col-12 {
        width: 50%;
    }

    .bog-details-section-area .tips-for-growth .medical-staffing-box p {
        text-align: left;
    }

    .reposting-section.industry-stats-job-graph .repoting-stpes.job-bill-setps, .reposting-section.industry-stats-job-graph .repoting-stpes.profession-specialty-setps {
        margin-bottom: 121px;
    }

    .reposting-section.industry-stats-job-graph .repoting-stpes.job-postings-by-vms {
        margin-bottom: 175px;
    }

    .about-us-details {
        padding-top: 104px;
    }

    .reposting-section.about-us-details .repoting-stpes .left-steps-content .heading2 {
        font-size: 27px;
    }

    .reposting-section.about-us-details .repoting-stpes .left-steps-content .heading2 br {
        display: none;
    }

    .reposting-section.about-us-details .repoting-stpes .right-steps-content .yellow-repoting-cut {
        top: -14px;
        width: 24%;
        right: 0;
    }

    .featurs-list-section.about-page-listing .featurs-list-box {
        min-height: auto;
    }

    .number-of-count {
        padding-top: 104px;
    }

    .number-of-count .counter-box {
        margin-bottom: 30px;
        justify-content: left;
    }

    .philosophy-section {
        padding: 130px 0 104px;
    }

    .core-team .heading-team .heading2 {
        margin-bottom: 20px;
    }

    .core-team .team-list {
        margin-top: 51px;
    }

    .core-team .team-list .col-lg-3 {
        width: 50%;
        padding: 0 15px;
    }

    .client-logos-section .col {
        height: 53px;
    }

    .core-team {
        padding-bottom: 104px;
    }

    .philosophy-section .philosophy-left .blue-cut {
        top: -40px;
        right: 49px;
        width: 42%;
    }

    .philosophy-section .philosophy-left {
        margin-bottom: 141px;
    }

    .philosophy-section .philosophy-left .founder-img {
        margin-left: 0;
        text-align: center;
    }

    .philosophy-section .philosophy-left .founder-quart {
        left: 0;
        right: 0;
        margin: auto;
        bottom: -115px;
    }

    .philosophy-section .philosophy-right {
        padding: 0 20px;
    }

    .core-team .heading-team {
        padding: 0 20px;
    }

    .core-team .team-list .team-details {
        margin-bottom: 40px;
    }

    .client-logos-section {
        padding: 0 0 104px;
    }

    .top-blue-banner.mobile-page-banner.solution-banner-section .left-banner-part {
        margin-top: 0;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .mobile-img {
        position: relative;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .mobile-img {
        display: block;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .mobile-img .green-patch {
        position: absolute;
        top: -28px;
        left: 0;
        display: none;
    }

    .vms-mobile-section.vms-section-new-formate-section .left-part-section .top-img img {
        width: auto;
    }

    .vms-mobile-section.vms-section-new-formate-section .left-part-section {
        margin-bottom: 40px;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .left-steps-content {
        margin-top: 60px;
    }

    .mobile-page-banner.solution-banner-section.vms-mobile-gif {
        padding: 44px 20px 44px;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .mobile-img .repoting-dashboard {
        z-index: 6;
        position: relative;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .mobile-img .repoting-dashboard img {
        border-radius: 15px;
        -webkit-box-shadow: 0 0 22px 11px #f8f8f8;
        -moz-box-shadow: 0 0 22px 11px #f8f8f8;
        box-shadow: 0 0 22px 11px #f8f8f8;
    }

    .mobile-page-banner.solution-banner-section {
        padding: 110px 20px 80px;
    }

    .reposting-section.solution-stpes-section {
        padding: 104px 20px;
    }

    .reposting-section.solution-stpes-section .repoting-stpes .left-steps-content .heading2 {
        margin-bottom: 20px;
    }

    .reposting-section.solution-stpes-section .repoting-stpes .left-steps-content {
        margin-bottom: 44px;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .right-steps-content .repoting-dashboard img {
        width: 94%;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content {
        padding-left: 0;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content .quert .quart-img {
        left: 0;
    }

    .featurs-list-section.solution-freatures .featurs-list-box {
        padding: 30px;
        min-height: auto;
    }

    .featurs-list-section.solution-freatures .padd {
        margin-bottom: 0;
    }

    .compenents-nexus {
        padding: 104px 0;
    }

    .compenents-nexus .right-part-nexus {
        margin-top: 100px;
    }

    .compenents-nexus .left-part-nexus .nexus-number-slider .slick-arrow {
        left: 0;
        right: 0;
        margin: auto;
        transform: rotate(-92deg);
        bottom: -60px;
    }

    .compenents-nexus .left-part-nexus .nexus-number-slider .slick-arrow.slick-prev {
        bottom: -60px;
        left: -100px;
    }

    .compenents-nexus .left-part-nexus .nexus-number-slider .slick-arrow.slick-next {
        right: -100px;
    }

    .compenents-nexus .right-part-nexus {
        padding-left: 0;
    }

    .compenents-nexus .right-part-nexus .red-cut {
        display: none;
    }

    .compenents-nexus .right-part-nexus .componant-img {
        text-align: center;
        margin-right: 0;
    }

    .compenents-nexus .accordion-container {
        position: relative;
        max-width: 500px;
        height: auto;
        margin: 10px auto;
    }

    .compenents-nexus .accordion-container>h2 {
        text-align: center;
        color: #fff;
        padding-bottom: 5px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }

    .compenents-nexus .set {
        position: relative;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .compenents-nexus .set>.thumb-click {
        display: block;
        padding: 17px 33px 17px 10px;
        text-decoration: none;
        color: #fff;
        font-weight: 600;
        background-color: #0c2f6f;
        -webkit-transition: all .2s linear;
        -moz-transition: all .2s linear;
        transition: all .2s linear;
        border-radius: 6px;
        font-size: 16px;
        line-height: 20px;
    }

    .compenents-nexus .set>.thumb-click i {
        float: right;
        margin-right: -12px;
    }

    .compenents-nexus .set>.thumb-click i svg {
        width: 23px;
        height: 23px;
    }

    .compenents-nexus .set>.thumb-click.active {
        color: #fff;
    }

    .compenents-nexus .content {
        display: none;
    }

    .compenents-nexus .content .content-part {
        padding: 39px 30px 42px;
        border-radius: 10px;
    }

    .compenents-nexus .content {
        width: 100% !important;
        background: #0c2f6f;
        border-radius: 15px;
        margin-top: -56px;
        min-height: 201px;
        z-index: 5;
        position: relative;
        width: -moz-available;
        width: -webkit-fill-available;
        width: fill-available;
    }

    .compenents-nexus .content h3 {
        font-size: 22px;
        line-height: 32px;
        color: #fff;
        margin-bottom: 18px;
        display: inline-block;
        vertical-align: top;
        width: 59%;
    }

    .compenents-nexus .content .nexus-accodina-img {
        float: right;
        width: 43%;
        vertical-align: top;
        margin-top: -45px;
        border-radius: 10px;
        margin-right: -24px;
    }

    .compenents-nexus .content p {
        color: #fff;
        margin-bottom: 36px;
    }

    .compenents-nexus .content a {
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid #fff;
    }

    .compenents-nexus .desktop-slider {
        display: none;
    }

    .compenents-nexus .mobile-view-accodina {
        display: block;
    }

    footer .col-lg-3:nth-child(2) .comon-div {
        padding-left: 0;
    }

    .nexus-top-banner .left-nexus-content .red-btn, .top-blue-banner .left-banner-part .red-btn {
        display: block;
        text-align: center;
    }

    .reposting-section .repoting-stpes .left-steps-content ul.list-of-septs {
        padding-right: 20px;
    }

    .reposting-section .repoting-stpes .left-steps-content .mobile-img {
        display: block;
        position: relative;
        margin-bottom: 30px;
    }

    .reposting-section .repoting-stpes .desktop-img {
        display: none;
    }

    .reposting-section.ats-reposting-section.ats-stpes3.pad-bot-80 .repoting-stpes .desktop-img {
        display: block;
    }

    .reposting-section .repoting-stpes .left-steps-content .mobile-img .yellow-repoting-cut {
        position: absolute;
        width: 46%;
        top: -19px;
        right: 0;
    }

    .reposting-section .repoting-stpes .left-steps-content .mobile-img .green-patch {
        position: absolute;
        width: 46%;
        bottom: -19px;
        left: 0;
    }

    .reposting-section .repoting-stpes.healthcare-focused-stpes .left-steps-content .mobile-img {
        margin-bottom: 59px;
    }

    .reposting-section .repoting-stpes.time-capture-stpes .left-steps-content .mobile-img {
        margin-bottom: 59px;
    }

    .reposting-section .repoting-stpes .left-steps-content .heading2 {
        font-size: 29px;
    }

    .reposting-section .repoting-stpes .left-steps-content .mobile-img .repoting-dashboard {
        z-index: 5;
        position: relative;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .text-content {
        padding-left: 24px;
    }

    .the-mobile-app-built .right-side-mobile-slider .content-right-mobile .mobile-text-slider .item-text .text-content:before {
        top: 11px;
    }

    .reposting-section .repoting-stpes.automations-stpes .left-steps-content {
        padding-left: 0;
    }

    .reposting-section .repoting-stpes .left-steps-content p {
        padding-right: 0;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner {
        margin-bottom: 0;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.nexus-connects-us-stpes {
        margin-bottom: 104px;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.nexus-connects-us-stpes.dashboard-evolution-setps-section {
        margin-bottom: 0;
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content {
        margin-top: 0;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content, .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner .left-steps-content p {
        margin-bottom: 0;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-microservices {
        margin-bottom: 0;
    }

    .the-mobile-app-built .left-side-mobile-slider .left-mobile-slider .mobie-full {
        display: block;
        text-align: center;
        margin-top: 19px;
        font-size: 13px;
        color: #fff;
        text-transform: capitalize;
        margin-bottom: 40px;
    }

    .featurs-list-section .col-lg-4:nth-child(1) .featurs-list-box, .featurs-list-section .col-lg-4:nth-child(2) .featurs-list-box, .featurs-list-section .col-lg-4:nth-child(3) .featurs-list-box, .featurs-list-section .col-lg-4:nth-child(4) .featurs-list-box, .featurs-list-section .col-lg-4:nth-child(5) .featurs-list-box, .featurs-list-section .col-lg-4:nth-child(6) .featurs-list-box {
        min-height: auto;
    }

    .reposting-section.about-us-details .repoting-stpes .right-steps-content {
        margin-top: 76px;
    }

    .reposting-section.about-us-details .repoting-stpes {
        margin-bottom: 100px;
    }

    .top-blue-banner.about-section-banner .left-banner-part p {
        line-height: 24px;
        font-size: 15px;
    }

    .reposting-section.solution-stpes-section .repoting-stpes .right-steps-content .repoting-dashboard {
        margin-top: 0;
        margin-bottom: 0;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner .right-banner-part {
        margin-top: 65px;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner.nexusvms-top-manage-automate-your-new .right-banner-part {
        margin-top: 0;
        margin-bottom: 60px;
    }

    .higher-productivity .productivity-steps .steps .right-content {
        padding-left: 0;
        text-align: left;
    }

    .send-to-laboredge .left-side-map iframe {
        height: 400px;
    }

    .candidate-assignments .conent-part-tab .left-side-img .small-img {
        bottom: -33px;
        right: 0;
        z-index: 5;
        width: 34%;
    }

    .candidate-assignments .conent-part-tab .right-assigment-tab-content {
        padding-left: 0;
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .asssiment-tab-slider .item-slider, .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .heading2 {
        padding-left: 30px;
    }

    .candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .conent-part-tab {
        margin-bottom: 0;
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .left-side-img.desktop-view {
        display: none;
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .mobile-view {
        display: block;
        margin-bottom: 30px;
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .mobile-view .zoom-icon {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        right: 0;
        margin: auto;
        text-align: center;
        color: #fff;
        width: 30px;
        height: 30px;
        background: rgba(0, 0, 0, .8);
        display: none;
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .mobile-view:hover .zoom-icon {
        display: block;
    }

    .candidate-assignments.microservices-architecture-section.microservices-architecture-section-new .mobile-span {
        display: block;
        font-size: 17px;
        text-align: center;
        color: #fff;
        margin-bottom: 20px;
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .mobile-view .zoom-icon svg {
        width: 18px;
        height: 18px;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin: auto;
        transform: translateY(-50%);
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .mobile-view img {
        display: block;
        margin: auto;
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .mobile-view .slick-track {
        display: flex;
        align-items: center;
        justify-content: left;
    }

    .candidate-assignments.microservices-architecture-section-new .conent-part-tab .right-assigment-tab-content .mobile-view img.reverse-invoicing {
    }

    .candidate-assignments .conent-part-tab .left-side-img.assignments-tab-img .small-img {
        bottom: -29px;
        right: 0;
    }

    .candidate-assignments .conent-part-tab .left-side-img.assignments-tab-img .orange-cut {
        top: 104px;
    }

    .candidate-assignments .conent-part-tab .left-side-img.profile-img .small-img {
        top: -37px;
    }

    .candidate-assignments .conent-part-tab .left-side-img.profile-img .orange-cut {
        top: -15px;
        left: 0;
    }

    .nexus-top-banner .left-nexus-content .heading {
        font-size: 27px;
        line-height: 39px;
        margin-bottom: 15px;
    }

    .nexus-top-banner .left-nexus-content .list-point li {
        font-size: 15px;
        line-height: 24px;
    }

    .higher-productivity .complete-healthcare-ecosystem .healthcare-ecosystem-img span {
        display: block;
        text-align: center;
        margin-bottom: 19px;
        font-size: 17px;
        color: #000b33;
        text-transform: capitalize;
    }

    .enlarge-view-popup .modal-header {
        border: 0;
        padding: 0;
    }

    .enlarge-view-popup .modal-header .btn-close {
        width: 30px;
        height: 30px;
        background: #00c3f2;
        position: absolute;
        top: 13px;
        right: 12px;
        border-radius: 100%;
        border-width: 0;
        color: #fff;
        padding: 1px 4px;
        cursor: pointer;
        z-index: 9;
    }

    .enlarge-view-popup .modal-header .btn-close svg {
        width: 24px;
        height: 24px;
    }

    .enlarge-view-popup .modal-dialog {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%) !important;
        right: 0;
    }

    .vms-mobile-section .left-part-section .mobile-text-slider .slick-dots {
        display: none !important;
    }

    .copy-right-footer p {
        margin-bottom: 30px;
    }

    .featurs-list-section {
        padding: 104px 0 70px;
    }

    .featurs-list-section.ats-list-section {
        padding: 80px 0 38px;
    }

    .featurs-list-section.candidate-required-document .col-lg-4:nth-child(1) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(2) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(3) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(4) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(5) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(6) .featurs-list-box {
        min-height: auto;
    }

    .featurs-list-section.candidate-required-document .featurs-list-box .featurs-icon {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0;
    }

    .featurs-list-section.candidate-required-document .featurs-list-box h2 {
        display: inline-block;
        vertical-align: middle;
        margin-left: 12px;
        margin-bottom: 0;
    }

    .featurs-list-section.candidate-required-document .col-lg-6 .featurs-list-box h2 {
        width: 70%;
    }

    .featurs-list-section.candidate-required-document .col-lg-6 .featurs-list-box p {
        margin-top: 20px;
    }

    .featurs-list-section.candidate-required-document .featurs-list-box .list-for-point {
        margin-top: 20px;
    }

    .top-blue-banner.mobile-page-banner .left-banner-part p {
        padding-right: 0;
    }

    .bog-details-section .brand-icon {
        width: 125px;
        height: 125px;
        margin-top: -140px;
        margin-right: 18px;
    }

    .bog-details-section .green-cut {
        right: 16px;
        top: -28px;
        width: 31%;
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__pagination {
        display: none;
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__arrows {
        display: block;
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__arrows .splide__arrow {
        width: 39px;
        height: 39px;
        border-radius: 10px;
        border-width: 0;
        background: #fd4c5c;
        opacity: 1;
        top: 56%;
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__arrows .splide__arrow svg {
        color: #fff;
        display: none;
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__arrows .splide__arrow.splide__arrow--prev:before {
        content: " ";
        width: 19px;
        height: 15px;
        background: url(../images/left-arrow.png) no-repeat;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin: auto;
        display: block;
        transform: translateY(-50%);
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__arrows .splide__arrow.splide__arrow--prev {
        left: -10px;
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__arrows .splide__arrow.splide__arrow--next:before {
        content: " ";
        width: 19px;
        height: 15px;
        background: url(../images/right-arrow.png) no-repeat;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin: auto;
        display: block;
        transform: translateY(-50%);
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__arrows .splide__arrow.splide__arrow--next {
        right: -10px;
    }

    .advanced-mobile-platform .red-btn {
        margin-top: 50px;
    }

    .featurs-list-section.candidate-required-document .featurs-list-box {
        text-align: left;
    }

    .top-blue-banner.vms-banner-section .right-banner-part {
        margin-top: 58px;
    }

    .top-blue-banner.vms-banner-section .right-banner-part .red-cut {
        left: -11px;
        width: 49%;
    }

    .reposting-section.solution-stpes-section.vms-stpes-section {
        padding: 66px 0;
    }

    .reposting-section.solution-stpes-section.vms-stpes-section .repoting-stpes .right-steps-content .repoting-dashboard {
        margin-top: 0;
    }

    .reposting-section.solution-stpes-section.vms-stpes-section .repoting-stpes.nexus-connects-us-stpes .right-steps-content .repoting-dashboard img {
        margin: 0 auto;
        display: block;
    }

    .reposting-section.solution-stpes-section .repoting-stpes.why-not-partner.nexus-connects-us-stpes .left-steps-content {
        margin-top: 60px;
        padding: 0 20px;
    }

    .reposting-section.vms-stpes-section .repoting-stpes .left-steps-content strong {
        font-size: 17px;
        margin-bottom: 29px;
    }

    .reposting-section.vms-stpes-section .repoting-stpes .left-steps-content ul {
        padding-right: 10px;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .reposting-section.vms-stpes-section .repoting-stpes .left-steps-content .heading2 br {
        display: none;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.imagine-a-vms-steps .right-steps-content {
        margin-top: 134px;
    }

    .ats-banner-section .left-banner-part {
        margin-top: 0;
    }

    .reposting-section.vms-stpes-section .repoting-stpes .right-steps-content .yellow-repoting-cut {
        right: 0;
    }

    .candidate-assignments.microservices-architecture-section, .microservices-architecture-section {
        padding: 20px 20px 52px;
    }

    .microservices-architecture-section .heading2 {
        font-size: 27px;
    }

    .candidate-assignments.microservices-architecture-section .nav-tabs {
        margin: 0;
    }

    .candidate-assignments.microservices-architecture-section .nav-tabs .nav-item button {
        font-size: 14px;
    }

    .candidate-assignments.microservices-architecture-section .conent-part-tab .col-lg-6 {
        padding: 0;
    }

    .candidate-assignments.microservices-architecture-section .conent-part-tab .right-assigment-tab-content .red-btn {
        font-size: 17px;
    }

    .companies-logos .companies-row {
        margin: -186px 10px 0;
        padding: 30px;
    }

    .companies-logos .companies-row strong {
        font-size: 18px;
        line-height: 26px;
    }

    .companies-logos .companies-row .logo-slider .item-list {
        margin: 0 10px;
    }

    .companies-logos .companies-row .logo-slider .item-list img {
        margin: auto;
        display: block;
    }

    .vms-mobile-section {
        padding: 56px 20px 56px;
    }

    .vms-mobile-section .left-part-section {
        margin-top: 0;
    }

    .vms-mobile-section .left-part-section .heading2 {
        display: none;
    }

    .vms-mobile-section .left-part-section .mobile-text-slider .item-text {
        display: flex;
        line-height: 25px;
    }

    .vms-mobile-section .col-lg-6 {
        width: 50%;
    }

    .vms-mobile-section .left-part-section .mobile-text-slider .item-text .icon {
        margin-top: 7px;
    }

    .vms-mobile-section .left-part-section .mobile-text-slider .item-text {
        font-size: 14px;
        line-height: 18px;
    }

    .vms-mobile-section.vms-mobile-new-section .left-part-section .mobile-text-slider .item-text {
        display: block;
    }

    .vms-mobile-section.vms-mobile-new-section .left-part-section .mobile-text-slider .item-text .list-of-point div {
        display: flex;
    }

    .vms-mobile-section.vms-mobile-new-section .left-part-section .mobile-text-slider .item-text .list-of-point .text-content {
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
    }

    .vms-mobile-section .mobile-part .green-circle {
        margin-top: 40px;
    }

    .vms-mobile-section .mobile-part .empty-mobile {
        top: -21px;
        width: 74%;
    }

    .vms-mobile-section .mobile-part .slider-for {
        top: -17px;
        width: 68%;
    }

    .vms-mobile-section .mobile-heading {
        display: block;
        margin-bottom: 30px;
        margin-left: 0;
    }

    .microservices-architecture .modal-dialog {
        max-width: 90%;
        position: absolute;
        top: 50%;
        width: 95%;
        left: 0;
        right: 0;
        margin: auto;
        transform: translateY(-50%) !important;
    }

    .candidate-assignments.microservices-architecture-section .conent-part-tab .right-assigment-tab-content .heading2 {
        margin-bottom: 30px;
    }

    .microservices-architecture .slick-arrow.slick-next {
        right: 26%;
        bottom: -79px;
        top: auto;
        transform: none;
    }

    .microservices-architecture .slick-arrow.slick-prev {
        left: 26%;
        bottom: -79px;
        top: auto;
        transform: none;
    }

    .microservices-architecture .modal-dialog .modal-header .btn-close {
        right: 0;
        top: -31px;
    }

    .infographic-section .infographic-part .center-part-img {
        width: auto;
    }

    .infographic-section .infographic-part .infographic-box .box .line {
        display: none;
    }

    .infographic-section .infographic-part .infographic-box.ats, .infographic-section .infographic-part .infographic-box.mobile, .infographic-section .infographic-part .infographic-box.vms {
        position: static;
        margin-bottom: 30px;
    }

    .infographic-section {
        padding: 104px 0;
    }

    .header-section {
        padding: 20px 0;
    }

    .header-section .logos-div a {
        width: 26%;
        display: inline-block;
        vertical-align: middle;
        padding: 8px 30px;
    }

    .reposting-section.great-recruiters-integration .repoting-stpes .left-steps-content p {
        padding-right: 0;
    }

    .great-recruiters-integration .request-a-call {
        margin-top: 50px;
    }

    .great-recruiters-integration .request-a-call .request-from {
        padding: 30px;
    }

    .great-recruiters-integration .request-a-call .request-from .heading2 {
        font-size: 28px;
    }

    .reposting-section.vms-stpes-section.great-recruiters-integration .repoting-stpes.some-of-the-impact .right-steps-content .yellow-repoting-cut {
        left: 0;
        top: -33px;
    }

    .reposting-section.solution-stpes-section.vms-stpes-section.great-recruiters-integration .repoting-stpes .right-steps-content .repoting-dashboard {
        margin-bottom: 50px;
    }

    .footer-section .top-footer {
        padding: 38px 0;
    }

    .footer-section .top-footer p {
        padding: 0 20px;
        font-size: 18px;
        line-height: 34px;
    }

    .footer-section .top-footer p br {
        display: none;
    }

    .footer-section .copy-right {
        padding: 30px 0;
    }

    .infographic-section .infographic-part .mobile-enlarge-view, .vms-mobile-section .mobie-full {
        display: block;
        text-align: center;
        margin-top: 20px;
    }

    .infographic-section .infographic-part .mobile-enlarge-view span, .vms-mobile-section .mobie-full strong {
        font-size: 18px;
        color: #000b33;
        font-weight: 500;
        cursor: pointer;
        text-transform: capitalize;
    }

    .vms-mobile-section .mobie-full {
        margin-top: 120px;
        text-align: center;
    }

    header .navigation-bar .navbar-nav .nav-item:nth-child(1):after, header .navigation-bar .navbar-nav .nav-item:nth-child(2):after, header .navigation-bar .navbar-nav .nav-item:nth-child(6):after, header .navigation-bar .navbar-nav .nav-item:nth-child(7):after {
        position: absolute;
        right: 0;
        top: 12px;
    }

    header .navigation-bar .navbar-nav {
        margin-left: 0;
    }

    header .navigation-bar .navbar-nav .nav-item:nth-child(1):after, header .navigation-bar .navbar-nav .nav-item:nth-child(2):after, header .navigation-bar .navbar-nav .nav-item:nth-child(3):after {
        right: 12px;
        position: absolute;
        top: 8px;
    }

    header .navigation-bar .navbar-nav {
        height: 500px;
        overflow-y: scroll;
        margin-left: 0;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu {
        padding-left: 0;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu {
        position: static;
        width: 100%;
        padding-left: 0;
        border: 0;
        border-radius: 0;
    }

    .reposting-section.solution-stpes-section.why-partner {
        padding-bottom: 0;
    }

    .why-labor-edge .list-of-septs li {
        font-size: 15px;
        margin-left: 38px;
    }

    header .navigation-bar .navbar-nav .nav-item:last-child .nav-link {
        display: block;
        margin: 15px 17px;
    }

    .featurs-list-section.about-page-listing {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .featurs-list-section.about-page-listing .featurs-list-box {
        margin-bottom: 20px;
    }

    .top-blue-banner.mobile-page-banner.solution-banner-section.vms-banner-section .left-banner-part p {
        padding-right: 0;
    }

    .companies-logos .companies-row .logo-slider {
        margin-top: 0;
        display: block;
    }

    .companies-logos .companies-row .logo-slider .item-list {
        width: 42%;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 30px;
    }

    .vms-video-banner-section1 {
        padding: 0 !important;
    }

    .vms-video-banner-section1 .video-cntr video {
        width: auto;
    }

    .vms-video-banner-section .right-banner-part .video-container .video-div video {
        width: 300px;
    }

    .top-blue-banner.mobile-page-banner.solution-banner-section.vms-video-banner-section1 .left-banner-part {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-blue-banner.vms-video-banner-section .right-banner-part .right-feature-img img.mobile-images-view {
        display: block;
        border-radius: 100%;
    }

    .vms-video-banner-section .video-container {
        display: none;
    }

    .vms-video-banner-section.vms-mobile-gif .video-container {
        display: block;
    }

    .reposting-section .repoting-stpes.dashboards-and-reporting-steps-section .left-steps-content {
        padding-left: 0;
    }

    .reposting-section .repoting-stpes.job-management-section .left-steps-content {
        padding-right: 0;
    }

    .big-content-infographic {
        padding: 104px 20px;
    }

    .big-content-infographic .infographic-image-left-side {
        margin-bottom: 20px;
        margin-top: 0;
    }

    .infographic-section.big-content-infographic .infographic-part .mobile-enlarge-view {
        margin-bottom: 30px;
    }

    .featurs-list-section.vms-list-part-section .featurs-list-box {
        padding: 30px;
    }

    .featurs-list-section.vms-list-part-section .featurs-list-box .list-point li {
        text-align: left;
    }

    .why-microservices-ats-section .mobile-views {
        display: block;
        position: relative;
        margin-bottom: 30px;
    }

    .why-microservices-ats-section .mobile-views .yellow-repoting-cut {
        position: absolute;
        left: 0;
        width: 54%;
    }

    .why-microservices-ats-section {
        padding: 40px 20px 104px;
    }

    .why-microservices-ats-section .mobile-views .repoting-dashboard {
        position: relative;
        z-index: 5;
    }

    .ats-solution-features .orange-cut1 {
        width: 48%;
    }

    .api-documentation {
        height: auto;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner.api-documentation .left-banner-part {
        margin-top: 0;
    }

    .candidate-portal-banner .row .col-lg-6:first-child, .top-blue-banner.vms-mobile-gif .row .col-lg-6:first-child {
        display: block;
    }

    .vms-section-new-formate-section .item-text {
        padding-left: 57px;
    }

    .reposting-section.vms-stpes-section .repoting-stpes.nexus-connects-us-stpes.dashboard-evolution-setps-section {
        margin-top: 186px;
    }

    .reposting-section.solution-stpes-section.vms-stpes-section .repoting-stpes.why-not-partner.dashboard-evolution-setps-section .left-steps-content {
        padding-left: 20px;
    }

    .candidate-assignments.candidate-assignments-height .conent-part-tab .row {
        min-height: auto;
    }

    .microservices-architecture .modal-dialog .item-images img.reverse-invoicing {
        width: 61%;
    }

    .microservices-architecture .modal-dialog .item-images img {
        width: 100%;
    }

    .pad-20-76 {
        padding: 17px 76px;
    }

    .pad-6-12 {
        padding: 6px 12px;
        margin: 0 !important;
    }

    .career-section.faq-section-format .accordion-container .set .accordion-list {
        padding: 21px 22px;
    }

    .career-section.faq-section-format .accordion-container .set .accordion-list .left-part {
        font-size: 18px;
        line-height: 24px;
    }

    .career-section.faq-section-format .accordion-container .set .accordion-list .left-part {
        width: 82%;
    }

    .career-section.faq-section-format .accordion-container .set .accordion-list .button-right svg {
        width: 20px;
        height: 20px;
    }

    .career-section.faq-section-format .accordion-container .set .content {
        padding: 17px 24px;
    }

    .career-section.faq-section-format .accordion-container .set .content .left-side-part h3 {
        font-size: 20px;
    }

    .faq-section-format-format {
        background: #0096dd;
        padding: 64px 20px;
    }

    .faq-section-format-format .feature-details .wrapper-content {
        width: auto;
    }

    .faq-section-format-format .cont {
        margin-top: 0 !important;
    }

    .faq-section-format-format .slide-group h3.slider-header {
        transform: none !important;
        position: static !important;
        min-height: auto !important;
        width: auto !important;
        margin: 0 !important;
        margin-bottom: 25px !important;
    }

    .faq-section-format-format .feature-details h2 {
        margin: 0 !important;
        font-size: 20px !important;
        line-height: 31px !important;
    }

    .faq-section-format-format .feature-details p {
        margin-top: 20px !important;
        margin-bottom: 14px !important;
    }

    .faq-section-format-format .feature-details .text-wrap {
        float: none !important;
    }

    .faq-container-section .slider-header.mobile-show {
        display: block;
        transform: none;
        position: static;
        color: #000;
        margin: 0;
        padding: 0 20px;
        width: auto;
        min-height: auto;
        margin-bottom: 30px;
    }

    .faq-container-section:before {
        content: none;
    }

    .faq-container-section .slide-faq .inside {
        left: 20px;
        height: 20px;
    }

    .faq-container-section h2 {
        font-size: 18px;
        line-height: 26px;
    }

    .faq-container-section .slick-dots {
        display: none !important;
    }

    .banner__slider .desktop-slider {
        display: none !important;
    }

    .banner__slider {
        padding: 115px 20px 50px;
        background: #00c3f2;
    }

    .banner__slider:before {
        content: "Solutions From Our President";
        position: absolute;
        top: 47px;
        transform: rotate(0);
        font-size: 40px;
        text-transform: uppercase;
        color: #fff;
        left: 8%;
        z-index: 99;
    }

    .banner__slider .mobile-view-froamt {
        display: block !important;
    }

    .banner__slider .mobile-view-froamt .items-mobile-view {
        margin-bottom: 50px;
    }

    .banner__slider .mobile-view-froamt .items-mobile-view h2 {
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        line-height: 27px;
        letter-spacing: normal;
        font-family: 'Manrope', sans-serif;
        margin-bottom: 18px;
    }

    .banner__slider .mobile-view-froamt .items-mobile-view p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 34px;
        color: #fff;
    }

    .banner__slider .mobile-view-froamt .items-mobile-view h4 {
        font-size: 18px;
        color: #fff;
        font-weight: 600;
        display: block;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .banner__slider .mobile-view-froamt .items-mobile-view:last-child {
        margin-bottom: 0;
    }

    .reposting-section .repoting-stpes .left-steps-content .slick-arrow.slick-prev {
        top: auto;
        bottom: -35px;
    }

    .reposting-section .repoting-stpes .left-steps-content .slick-arrow.slick-next {
        top: auto;
        bottom: -35px;
    }

    .banner__slider .slide .slide__img img {
        object-fit: cover;
        object-position: center;
    }

    .banner__slider .slide .slide__content.slide__content__left {
        left: 18%;
    }

    .reposting-section.objectives-of-this-role {
        padding-top: 0;
    }

    .reposting-section.objectives-of-this-role .repoting-stpes.daily-and-monthly-responsibilities .right-steps-content .repoting-dashboard img {
        padding: 0;
    }

    .top-blue-banner.mobile-page-banner .left-banner-part .heading2 {
        font-size: 38px;
        line-height: 49px;
    }

    .nexus-is-down-for-maintenance .left-banner-part p {
        font-size: 22px;
        line-height: 33px;
    }

    .nexus-is-down-for-maintenance-new {
        background-position: center right -171px;
        overflow: hidden;
    }

    .top-blue-banner.mobile-page-banner.nexus-is-down-for-maintenance-new .left-banner-part p br {
        display: none;
    }

    .candidate-portal-banner.api-documentation.nexus-is-down-for-maintenance-new {
        padding-bottom: 325px;
    }

    .nexus-is-down-for-maintenance-new .men-position {
        right: -109px;
        width: 681px;
    }

    .top-ten-highlights-sec-right-img {
        top: 200px;
        height: 100%;
        width: 90%;
        margin: 0 auto;
        left: 0;
    }

    .com-sec-cont img.dashboard-img {
        position: relative;
        top: 0;
    }

    .com-sec-cont h4 {
        margin-top: 30px !important;
    }

    .top-ten-highlights-sec-right-img img {
        height: 80%;
        border-radius: 15px;
    }

    .top-ten-highlights-sec-right {
        padding: 0px 10px;
    }

    .top-ten-highlights-sec-left {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .agency-dashboard-sec {
        padding: 0px 0 0px;
        position: relative;
    }

    .align-left .top-ten-highlights-sec-right-img {
        left: 0;
        right: 0;
    }

    .align-left .top-ten-highlights-sec-right {
        padding-left: 0px;
        padding-right: 0;
        padding: 0 10px;
    }

    .looking-ahead-sec {
        padding-top: 70px;
    }

    .agency-dashboard-sec .agency-dashboard-sec-box .agency-dashboard-sec-box-area {
        padding-right: 0;
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .agency-dashboard-sec-box h4 {
        margin-bottom: 10px;
    }

    .vms-end-of-year-wrap-2023 .container, .another-transformative-sec .container, .top-ten-highlights-sec .container, .agency-dashboard-sec .container, .top-ten-highlights-sec .container, .looking-ahead-sec .container {
        padding: 0 20px;
        box-sizing: border-box;
    }

    .another-transformative-sec-left {
        width: 80%;
        margin: 0 auto 40px;
    }

    .com-sec-cont img.decorate-img {
        right: -21px;
        top: -80px;
    }

    .agency-dashboard-sec-box {
        padding: 50px 30px 20px;
        border-radius: 20px;
    }

    .looking-ahead-sec-cont p {
        font-size: 20px;
        color: #606060;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .vms-end-of-year-wrap-2023 {
        padding: 60px 0 0;
    }

    .another-transformative-sec-right p {
        font-size: 20px;
        color: #5a5958;
        line-height: 30px;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .another-transformative-sec {
        padding: 60px 0 0;
    }

    .com-sec-cont-box {
        padding: 40px 20px;
        margin: 30px 0 0;
    }

    .com-sec-cont p {
        font-size: 16px;
        color: #606060;
        line-height: 26px;
    }

    .no1 {
        top: -20px;
        left: -20px;
    }

    .no2 {
        top: -20px;
        left: -20px;
    }

    .no3 {
        top: -20px;
        left: -20px;
    }

    .no4 {
        top: -20px;
        left: -20px;
    }

    .no5 {
        top: -20px;
        left: -20px;
    }

    .no6 {
        top: -20px;
        left: -20px;
    }

    .no7 {
        top: -20px;
        left: -20px;
    }

    .no8 {
        top: -20px;
        left: -20px;
    }

    .no9 {
        top: -20px;
        left: -20px;
    }

    .no10 {
        top: -20px;
        left: -20px;
    }

    img.no-img {
        height: 60px;
    }

    .top-blue-banner.blog-details-page.blog-section-banner {
        padding-left: 15px;
        padding-right: 15px;
    }

    header .navigation-bar .navbar-nav .nav-item .submenu .right-side-part-navigation .logo-on-main.resorces-top-menu-logo {
        display: none;
    }

    .header {
        background: transparent;
        box-shadow: none;
    }

    .header-main {
        background-color: transparent;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color .right-side-part-navigation {
    }

    .header .menu>.menu-item>.sub-menu .submenu .top-cut-arrow {
        top: -4px;
        left: -76%;
    }

    .header .logo {
        width: 157px;
        padding: 11px 0px;
        padding-left: 15px;
    }

    .header .open-nav-menu {
        padding-right: 10px;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-blue-color.resocese-right-part .right-side-part-navigation {
        display: block;
    }

    .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .letest-webinar, .header .menu>.menu-item>.sub-menu .submenu .right-side-part-navigation .logo-on-main {
    }

    .right-header-part .smallsize {
        margin-right: 0;
    }

    .right-header-part .smallsize .login-btn {
        padding: 15px;
    }

    .right-header-part .smallsize .contact-us-btn {
        display: block;
    }

    .right-header-part {
        text-align: center;
    }

    .right-header-part .smallsize .login-btn {
        margin-right: 0;
    }

    .header .nav-menu {
    }

    .new-footer-section .col-lg-3, .new-footer-section .col-lg-2 {
        padding: 0;
    }

    footer.new-footer-section .first-menu, footer.new-footer-section .second-menu {
        width: 50%;
    }

    footer .top-footer .row .col-lg-3:nth-child(3) {
        width: 100%;
    }

    footer .top-footer .row .mobile-width {
        width: 50%;
    }

    /*.left-nexus-content.healthcare-industry-right .healthcare-industry {

        margin-top: 34px !important;
    }

    .nexus-top-banner.home-new-banner .banner4caption {
        height: 127vh;
    }

    .nexus-top-banner.home-new-banner .banner2caption {
        height: 127vh;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img {
        margin-top: 30px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content img.top-img-banner {
        margin-top: 155px;
    }

    .nexus-top-banner.home-new-banner .banner3caption .right-nexus-content img.top-img-banner {
        margin-top: 73px;
    }

    .nexus-top-banner.home-new-banner .banner3caption {
        height: 127vh;
    }*/
    .nexus-top-banner.home-new-banner .banner1caption .left-nexus-content .nexus-logo {
        margin-bottom: 13px;
    }

    .nexus-top-banner.home-new-banner .banner1caption .left-nexus-content h1.heading {
        margin-bottom: 10px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        margin-top: 50px !important;
    }

    .nexus-top-banner.home-new-banner .banner1caption .left-nexus-content h1.heading {
        font-size: 29px;
        margin-top: 65px;
    }

    .social-icons {
        padding: 0 15px;
    }

    .social-icons {
        left: -114px !important;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your .left-banner-part {
        padding-right: 0;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.nexusvms-top-manage-automate-your-new .left-banner-part {
        padding-right: 0;
        padding-left: 0;
    }

    .top-blue-banner.mobile-page-banner.nexusvms-top-manage-automate-your .left-banner-part .heading2 {
        font-size: 28px;
        line-height: 39px;
    }

    .ats-client-portal-section {
        padding: 60px 15px;
    }

    .ats-client-portal-section .main-portal-parts .common-format .dots-img {
        display: none;
    }

    .ats-client-portal-section .col-lg-4 {
        padding: 0;
        margin-bottom: 39px;
    }

    .ats-client-portal-section .col-lg-4:last-child {
        margin-bottom: 0;
    }

    .ats-client-portal-section .main-portal-parts .common-box-ats {
        min-height: auto;
    }

    .candidate-journey-lifecycle {
        padding: 60px 15px;
    }

    .increcsess-your-top-heading {
        padding: 60px 15px;
    }

    .increcsess-your-top-heading h3 {
        font-size: 29px;
        line-height: 40px;
    }

    .increcsess-your-top-heading h3 br {
        display: none;
    }

    .top-blue-banner.mobile-page-banner.candidate-portal-banner.our-commitment-to-prn-section .right-banner-part {
        margin-top: 0;
    }

    .top-blue-banner.nexusvms-top-manage-automate-your.our-commitment-to-prn-section .left-banner-part {
        padding-right: 0;
        padding-left: 0;
        margin-top: 40px;
    }

    .letest-updated-prn {
        padding: 60px 15px;
        height: 51vh;
        background-position: 58% center;
    }

    .letest-updated-prn .letest-updates-prn-slider {
        padding: 40px 0;
    }

    .letest-updated-prn .letest-updates-prn-slider .item p {
        font-size: 22px;
        line-height: 27px;
    }

    .letest-updated-prn .letest-updates-prn-slider .slick-arrow.slick-prev {
        left: 29%;
        bottom: -87%;
    }

    .letest-updated-prn .letest-updates-prn-slider .slick-arrow.slick-next {
        right: 29%;
        bottom: -87%;
    }

    /*nexus prn ecosystem*/
    .candidate-journey-lifecycle .main-info-grapic-part.desktop-info {
        display: none;
    }

    .candidate-journey-lifecycle .mobile-info-candidate {
        display: block;
        margin-top: 30px;
    }

    .candidate-journey-lifecycle .mobile-info-candidate .first-box-info .main-box {
        background: #00205b;
        padding: 20px;
        text-align: center;
        color: #fff;
        font-size: 24px;
        line-height: 30px;
        border-radius: 10px;
    }

    .candidate-journey-lifecycle .mobile-info-candidate .first-box-info .main-box strong {
        font-weight: 700;
    }

    .candidate-journey-lifecycle .mobile-info-candidate .first-box-info .row .col-lg-6 {
        width: 50%;
        padding: 0 5px;
    }

    .candidate-journey-lifecycle .mobile-info-candidate .first-box-info .option-part {
        padding: 30px 0;
        text-align: center;
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        text-align: center;
        color: #000;
    }

    .candidate-journey-lifecycle .mobile-info-candidate .first-box-info .main-box.box2 {
        background: #00b5e2;
    }

    .candidate-journey-lifecycle .mobile-info-candidate .first-box-info .main-box.box3 {
        background: #fc4b5b;
    }

    .candidate-journey-lifecycle .mobile-info-candidate .first-box-info .main-box.box4 {
        background: #ffa300;
    }

    /*   .letest-updated-prn .letest-updates-prn-slider .item .center-part {
          height: auto;
      } */
    .letest-updated-prn .heading-part {
        margin-bottom: 0;
        text-align: center;
    }

    .social-icons {
        left: -129px !important;
    }

    .carrer-main-top-content {
        padding: 60px 15px;
        margin-bottom: 0;
        padding-top: 60px !important;
    }

    /* home slider css */
    .hero-new-section .slider-first .col-lg-6:first-child {
        order: 2;
    }

    .hero-new-section .slider-first .col-lg-6:last-child {
        order: 1;
    }

    .hero-new-section .slider-second .left-side-part h2 {
        font-size: 31px;
        line-height: 39px;
    }

    .hero-new-section .slider-second .left-side-part p br {
        display: none;
    }

    .hero-new-section .slider-second .left-side-part {
        margin-bottom: 30px;
    }

    .hero-new-section .slider-third .bottom-laptop-img img {
        width: 100%;
    }

    .hero-new-section .slider-third .bottom-laptop-img {
        margin-top: 26%;
    }

    .hero-new-section .slider-third .right-side-part {
        margin-bottom: 30px;
    }

    .hero-new-section .slider-third .right-side-part p br {
        display: none;
    }

    .hero-new-section .slick-arrow.slick-prev {
        left: 5px;
        right: auto;
    }

    .hero-new-section .slick-arrow.slick-next {
        left: auto;
        right: 5px;
    }

    .hero-new-section .slider-first .right-side-part p br {
        display: none;
    }

    .hero-new-section .slick-arrow {
        top: 76%;
    }

    /* home slider css */
    .searchbar.mobile-view-search {
        position: absolute;
        top: 98px;
        left: 0;
        width: 100%;
        display: flex;
        background: #fff;
        border: 1px solid #ddd;
    }

    .searchbar.mobile-view-search .button-part {
        background: #657274;
        border: 0;
        color: #fff;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px 0 0 6px;
    }

    .searchbar.mobile-view-search input {
        width: 82%;
        padding: 11px;
        border: 0;
        font-size: 15px;
        border-radius: 0;
    }

    .right-header-part.desktop-image .searchbar {
        display: none;
    }

    .header-top-margin {
        margin-top: 125px !important;
    }

    .header {
        background: #fff;
    }

    .hero-new-section .slider-third.slider-third1 .row .col-lg-6:last-child {
        order: 1;
    }

    .hero-new-section .slider-third.slider-third1 {
        padding-top: 0;
    }

    .hero-new-section .slider-third.slider-third1 .row .col-lg-6:first-child {
        order: 2;
    }

    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 144%;
    }

    .hero-new-section .slider-third.slider-third1 .right-side-part .certification-logo img {
        width: 74%;
    }

    .hero-new-section .slider-second {
        padding-bottom: 0;
    }

    .big-content-infographic .infographic-part .center-part-img .infographic-box.ats, .big-content-infographic .infographic-part .center-part-img .infographic-box.mobile {
        margin-right: 0;
    }

    .our-team.philosophy-section .col-lg-3 {
        padding: 0;
    }

    .philosophy-section .philosophy-left .founder-img {
        margin-left: 0;
        text-align: center;
    }

    .reposting-section .repoting-stpes.dashboards-and-reporting-steps-section .left-steps-content.slider6.common-slider {
        margin-bottom: 50px;
    }

    .reposting-section .repoting-stpes .right-steps-content {
        margin-top: 49px;
    }

    .bog-details-section {
        padding-top: 0;
    }

    .send-to-laboredge .send-to-form {
        padding: 0;
        margin-top: 50px;
    }

    .higher-productivity .productivity-steps .steps .left-icon strong {
        width: auto;
        padding-left: 0;
        text-align: center;
    }

    .higher-productivity .productivity-steps .steps {
        width: 21%;
        min-height: 371px;
    }

    .hero-new-section .slider-fourth .right-side-part .sub-head {
        font-size: 29px;
        line-height: 37px;
        margin-bottom: 15px;
    }

    .hero-new-section .slider-fourth .right-side-part .top-new-nexus-logo {
        margin-bottom: 30px;
        width: 75%;
    }

    .hero-new-section .slider-fourth .right-side-part p br {
        display: none;
    }

    .hero-new-section .slider-fourth .right-side-part {
        height: auto;
        display: block;
        margin-bottom: 40px;
    }

    .sldier-top-banner-home .slider-fourth .right-side-part .sub-head {
        font-size: 29px;
        line-height: 37px;
        margin-bottom: 15px;
    }

    .sldier-top-banner-home .slider-fourth .right-side-part .top-new-nexus-logo {
        margin-bottom: 30px;
        width: 75%;
    }

    .sldier-top-banner-home .slider-fourth .right-side-part p br {
        display: none;
    }

    .sldier-top-banner-home .slider-fourth .right-side-part {
        height: auto;
        display: block;
        margin-bottom: 40px;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .container .right-side-part {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .right-side-part .center-content-part .sub-head {
        font-size: 35px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .left-side-part {
        margin-top: 0;
        margin-bottom: 54px;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .right-side-part .center-content-part .red-btn {
        font-size: 16px;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .container .right-side-part {
        padding-top: 60px;
        display: block;
    }

    .nexus-top-banner.home-new-banner .container-fluid {
        width: 100% !important;
    }

}

/* end 1023 */
@media screen and (min-width:768px) and (max-width:991px) {
    .nexus-top-banner .right-nexus-content img.top-img-banner {
        width: 53%;
        margin: auto;
    }

    .another-transformative-sec-left {
        width: 60%;
        margin: 0 auto 40px;
    }

    .nexus-top-banner .right-nexus-content .popup-img1 {
        left: 146px;
    }

    .nexus-top-banner .right-nexus-content .popup-img2 {
        top: 144px;
        right: 168px;
    }

    .higher-productivity .productivity-steps .steps {
        width: 21%;
        display: inline-block;
        vertical-align: top;
        min-height: 297px;
        margin: 0 10px;
    }

    .higher-productivity .productivity-steps .steps .right-content strong {
        margin-bottom: 17px;
    }

    .higher-productivity .productivity-steps .steps .right-content p, .higher-productivity .productivity-steps .steps .right-content strong {
        text-align: center;
    }

    .higher-productivity .complete-healthcare-ecosystem .right-ecosystem-content {
        text-align: center;
    }

    .advanced-mobile-platform .mobile-set {
        width: 306px !important;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items .frame-mobile {
        width: 90%;
    }

    .why-labor-edge .mobile-image-show {
        z-index: 5;
        position: relative;
    }

    .why-labor-edge .setpe-of-labor-edge .slick-arrow.slick-prev {
        left: 42%;
    }

    .why-labor-edge .setpe-of-labor-edge .slick-arrow.slick-next {
        right: 42%;
    }

    .blog-and-updated .blog-thumbs .blog-thumb-content h2 {
        font-size: 17px;
        line-height: 25px;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow.slick-prev {
        left: 42%;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .slick-arrow.slick-next {
        right: 42%;
    }

    .get-intouch {
        margin: -110px 97px 0;
    }

    .top-blue-banner .left-banner-part p br {
        display: block;
    }

    .reposting-section.about-us-details .repoting-stpes .right-steps-content .yellow-repoting-cut {
        right: 55px;
    }

    .core-team .team-list .col-lg-3, .number-of-count .col-lg-3 {
        width: 50%;
    }

    .featurs-list-section.solution-freatures .padd {
        width: 50%;
    }

    .featurs-list-section.solution-freatures .featurs-list-box {
        min-height: 285px;
    }

    .compenents-nexus .accordion-container {
        max-width: none;
    }

    .compenents-nexus .content .nexus-accodina-img {
        margin-left: 10px;
        width: 31%;
    }

    .themobiledevice .modal-content .mobile-emtty {
        width: 78%;
    }

    .candidate-assignments .tab-content .orange-cut1 {
        width: 14%;
    }

    .candidate-assignments .conent-part-tab .col-lg-6 {
        padding: 0 15px;
        width: 50%;
    }

    .featurs-list-section.candidate-required-document .col-lg-4:nth-child(4) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(5) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(6) .featurs-list-box {
        min-height: 304px;
    }

    .featurs-list-section.candidate-required-document .col-lg-4:nth-child(1) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(2) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(3) .featurs-list-box {
        min-height: 304px;
    }

    .featurs-list-section.candidate-required-document .col-lg-4 {
        width: 50%;
    }

    .industry-stats-job-graph .mobile-image-show img, .reposting-section .repoting-stpes.compliance-stpes.job-bill-setps .right-steps-content .repoting-dashboard img {
        margin: auto;
    }

    .reposting-section .repoting-stpes.job-management-stpes.profession-specialty-setps .right-steps-content .repoting-dashboard img {
        margin: 0 auto 30px;
        display: block;
    }

    .integrations-section .integrations-logo img {
        width: 39%;
    }

    .candidate-portal-banner.api-documentation {
        padding-bottom: 134px;
    }

    .blog-thumb-section .col-lg-4 {
        width: 50%;
    }

    .blog-thumb-section .blog-thumb .content-blog {
        min-height: 187px;
    }

    .contact-us-details .col-lg-4 {
        padding: 0 10px;
        width: 33%;
    }

    .contact-us-details .location-details {
        padding: 15px;
    }

    .contact-us-details .location-details .image-icon img {
        width: 50px;
    }

    .contact-us-details .location-details p {
        font-size: 15px;
        line-height: 26px;
    }

    .nexus-top-banner .left-nexus-content .red-btn, .top-blue-banner .left-banner-part .red-btn {
        display: inline-block;
    }

    .integrations-brand .brand-logo.staffingfull img {
        margin-top: 18px;
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__arrows .splide__arrow.splide__arrow--next {
        right: 113px;
    }

    .advanced-mobile-platform .mobile-platform-slider .splide__arrows .splide__arrow.splide__arrow--prev {
        left: 113px;
    }

    .featurs-list-section.about-us-details .col-lg-4 {
        width: 50px;
    }

    .featurs-list-section.about-us-details .col-lg-4:nth-child(1), .featurs-list-section.about-us-details .col-lg-4:nth-child(2), .featurs-list-section.about-us-details .col-lg-4:nth-child(3) {
        min-height: 453px;
    }

    .candidate-assignments .nav-tabs .nav-item button {
        font-size: 16px;
    }

    .vms-mobile-section .mobile-part .empty-mobile {
        top: -131px;
    }

    .vms-mobile-section .mobile-part .slider-for {
        top: -120px;
    }

    .vms-mobile-section .mobie-full {
        margin-top: 144px;
    }

    .infographic-section .infographic-part .infographic-box {
        width: 273px;
        margin-right: 30px;
    }

    .enlarge-view-popup .modal-dialog {
        max-width: 100%;
        margin-right: 20px;
        margin-left: 20px;
    }

    .enlarge-view-popup .modal-body img {
        display: block;
        margin: auto;
    }

    .candidate-assignments.microservices-architecture-section .nav-tabs .nav-item button {
        font-size: 13px;
    }

    .top-blue-banner.ats-banner-section .right-banner-part .yellow-cut {
        left: 80px;
    }

    .modal.request-demo-popup .modal-dialog {
        max-width: 100%;
        margin: 50px;
    }

    .vms-video-banner-section .right-banner-part .video-container .video-div video {
        width: 100%;
    }

    .microservices-architecture-section-new .conent-part-tab .col-lg-6 {
        width: 100%;
    }

    .vms-mobile-section.vms-section-new-formate-section .left-part-section .top-img {
        width: 47%;
        display: inline-block;
        vertical-align: top;
    }

    .vms-mobile-section.vms-section-new-formate-section .left-part-section .top-img img {
        width: 54%;
    }

    .vms-mobile-section.vms-section-new-formate-section .left-part-section .item-text {
        width: 43%;
        display: inline-block;
        vertical-align: top;
        padding-left: 0;
    }

    .mobile-page-banner .right-feature-img img {
        width: 50%;
    }

    .what-our-clients .clients-testimonial .clients-testimonial-slider .testimonial-item .user-details .user-details-info {
        margin: auto;
    }

    .candidate-assignments .conent-part-tab .right-assigment-tab-content {
        margin-top: 0;
    }

    .schemes-part {
        padding: 7px 0;
    }

    .schemes-part p {
        color: #000b33;
        font-size: 12px;
    }

    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 70%;
    }

    .higher-productivity .productivity-steps .steps .left-icon {
        display: block;
    }

    .higher-productivity .productivity-steps .steps .left-icon img {
        margin: 0 auto 20px;
        display: block;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .container .right-side-part {
        padding-top: 136px;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .left-side-part {
        margin-top: 74px;
        margin-bottom: 162px;
    }

}

@media only screen and (min-device-width:800px) and (max-device-width:820px) {
    .advanced-mobile-platform .mobile-platform-slider .mobile-items .frame-mobile {
        width: 39%;
    }

    .hero-new-section .slider-third.slider-third1 .left-side-image img {
        width: 70%;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .container .right-side-part {
        padding-top: 136px;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .left-side-part {
        margin-top: 74px;
        margin-bottom: 162px;
    }

}

@media only screen and (min-device-width:360px) and (max-device-width:361px) {
    .advanced-mobile-platform .mobile-set {
        top: 227px;
        width: 241px;
    }

    .nexus-top-banner.home-new-banner .banner2caption, .nexus-top-banner.home-new-banner .banner4caption, .nexus-top-banner.home-new-banner .banner3caption {
        min-height: 101vh !important;
    }

}

@media only screen and (min-device-width:390px) and (max-device-width:392px) {
    .nexus-top-banner.home-new-banner .banner1caption.slider-five .left-side-part {
        margin-top: 0;
        margin-bottom: 137px;
    }

}

@media only screen and (min-device-width:393px) and (max-device-width:394px) {
    .advanced-mobile-platform .mobile-set {
        width: 269px;
    }

    .nexus-top-banner.home-new-banner .banner2caption, .nexus-top-banner.home-new-banner .banner4caption, .nexus-top-banner.home-new-banner .banner3caption {
        min-height: 101vh !important;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .left-side-part {
        margin-top: 0;
        margin-bottom: 142px;
    }

}

@media only screen and (min-device-width:600px) and (max-device-width:610px) {
    .advanced-mobile-platform .mobile-set {
        top: 226px;
        width: 315px;
    }

    .advanced-mobile-platform .mobile-platform-slider .mobile-items .frame-mobile {
        width: 54%;
    }

    .get-intouch .nexus-in-operation .doctor-img img {
        margin: auto;
    }

    .nexus-top-banner .right-nexus-content img.top-img-banner {
        width: 75%;
        margin: auto;
    }

    .nexus-top-banner .right-nexus-content .popup-img1 {
        left: 56px;
    }

    .nexus-top-banner .right-nexus-content .popup-img2 {
        top: 151px;
        right: 76px;
    }

    .get-intouch .mobile-doctor img {
        margin: auto;
    }

    .core-team .team-list .col-lg-3 {
        width: 50%;
    }

    .featurs-list-section.solution-freatures .padd {
        width: 50%;
    }

    .featurs-list-section.solution-freatures .featurs-list-box {
        min-height: 332px;
    }

    .mobile-feature-list .slick-dots {
        display: none !important;
    }

    .themobiledevice .modal-body .mobile-screen img {
        width: 75%;
    }

    .featurs-list-section.candidate-required-document .col-lg-4 {
        width: 50%;
    }

    .featurs-list-section.candidate-required-document .featurs-list-box {
        padding: 15px;
    }

    .featurs-list-section.candidate-required-document .col-lg-4:nth-child(4) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(5) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(6) .featurs-list-box {
        min-height: 351px;
    }

    .featurs-list-section.candidate-required-document .col-lg-4:nth-child(1) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(2) .featurs-list-box, .featurs-list-section.candidate-required-document .col-lg-4:nth-child(3) .featurs-list-box {
        min-height: 351px;
    }

    .integrations-section .integrations-logo img {
        width: 58%;
    }

    .candidate-portal-banner.api-documentation {
        padding-bottom: 113px;
    }

    .error-page-section .left-banner-part .heading2 span {
        font-size: 98px;
        display: block;
        margin-bottom: 38px;
    }

    .error-page-section .left-banner-part .heading2 {
        font-size: 34px;
    }

    .integrations-brand {
        margin-top: 0;
    }

}

@media screen and (min-width:768px) and (max-width:899px) {
    .advanced-mobile-platform .mobile-set {
        top: 228px;
        width: 180px;
    }

    .nexus-top-banner.home-new-banner .banner2caption .left-nexus-content {
        width: 100% !important;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        margin-top: -150px;
    }

    .nexus-top-banner .right-nexus-content img.top-img-banner {
        width: 53%;
        margin-left: 153px;
    }

}

@media (max-width:575px) {
    .nexus-top-banner.home-new-banner .banner2caption .left-nexus-content {
        width: 100% !important;
    }

    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        margin-top: -80px;
    }

    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 93% !important;
    }

}

@media only screen and (min-device-width:344px) and (max-device-width:345px) {
    .nexus-top-banner.home-new-banner .banner1caption.slider-five .left-side-part {
        margin-top: 0;
        margin-bottom: 179px;
    }

}

@media (max-width:450px) {
    .nexus-top-banner.home-new-banner .banner2caption .right-nexus-content.business-intelligence-left-img img.top-img-banner {
        margin-top: -30px;
    }

    .webinars-page-sec.conference-page-sec .com-upcoming-webinars .big-button .conference-btn a {
        margin: 15px 12px !important;
        font-size: 16px;
        padding: 15px 26px;
    }

    .com-sec-cont img.decorate-img.mob-img {
        width: 75px !important;
    }

    .webinars-page-sec.conference-page-sec .conference-btn a {
        margin: 15px 2px !important;
    }

    .left-nexus-content.healthcare-industry-right p {
        line-height: 32px;
        font-size: 22px;
        margin-top: 50px;
    }

    .why-labor-edge .setpe-of-labor-edge .slick-arrow.slick-next {
        left: auto;
        right: 30%;
    }

    .why-labor-edge .setpe-of-labor-edge .slick-arrow.slick-prev {
        left: 30%;
        right: auto;
    }

    .why-labor-edge {
        padding: 68px 0 20px;
    }

    .top-ten-highlights-sec-right-img img {
        margin-top: 50px;
    }

    .com-sec-cont img.decorate-img {
        right: -21px;
        top: -70px;
        width: 100px;
    }

    .com-sec-cont img.decorate-img.vms-end-of-year-wrap-img {
        width: 150px;
    }

    .bog-details-section-area h1 {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .bog-details-section-area h4 {
        padding: 0 20px;
    }

    .bog-details-section footer {
        padding: 249px 20px 40px;
    }

    .left-nexus-content.healthcare-industry-right {
        flex-direction: column-reverse;
    }

    .healthcare-industry-right-cont {
        width: 96%;
    }

    .left-nexus-content.healthcare-industry-right .healthcare-industry {
        width: 58%;
        margin-top: 100px;
    }

    .nexus-top-banner .right-nexus-content {
        margin-top: 0;
    }

    .nexus-top-banner.home-new-banner .banner2caption {
        min-height: 100vh;
    }

    .nexus-top-banner .right-nexus-content {
        margin-top: -6px;
    }

    .left-nexus-content.healthcare-industry-right .healthcare-industry {
        margin-top: 27px;
    }

    .nexus-top-banner.home-new-banner .banner3caption .right-nexus-content .move-img-hover img {
        margin-top: 50px;
    }

    .nexus-top-banner.home-new-banner .banner2caption, .nexus-top-banner.home-new-banner .banner4caption, .nexus-top-banner.home-new-banner .banner3caption {
        min-height: 99vh !important;
    }

}

@media only screen and (min-device-width:400px) and (max-device-width:430px) {
    .advanced-mobile-platform .mobile-platform-slider .mobile-items .frame-mobile {
        width: 69%;
    }

    .advanced-mobile-platform .mobile-set {
        top: 230px;
        width: 272px;
    }

    .reposting-section.about-us-details .repoting-stpes {
        margin-bottom: 90px;
    }

    .nexus-top-banner.home-new-banner .banner2caption, .nexus-top-banner.home-new-banner .banner4caption, .nexus-top-banner.home-new-banner .banner3caption {
        min-height: 101vh !important;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .left-side-part {
        margin-top: 0;
        margin-bottom: 243px;
    }

}

@media only screen and (min-device-width:414px) and (max-device-width:415px) {
    .advanced-mobile-platform .mobile-set {
        width: 262px;
    }

    .nexus-top-banner.home-new-banner .banner2caption, .nexus-top-banner.home-new-banner .banner4caption, .nexus-top-banner.home-new-banner .banner3caption {
        min-height: 101vh !important;
    }

    .nexus-top-banner.home-new-banner .banner1caption.slider-five .left-side-part {
        margin-top: 0;
        margin-bottom: 243px;
    }

}

@media only screen and (min-device-width:540px) and (max-device-width:541px) {
    .nexus-top-banner.home-new-banner .banner1caption.slider-five .left-side-part {
        margin-top: 0;
        margin-bottom: 213px;
    }

}
