@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --theme_blue: #4edeee;
    --deep_blue: #1abdcf;
    --theme_red: #d30a0a;
    --pure_white: #fff;
    --para_color: #4C4B4C;
    --font_color: #18191c;
}
body {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}
ul {
    padding: 0;
    margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

/* ====header start======= */
.top_search_btn {
    position: absolute;
    top: 8px;
    left: 15px;
    font-size: 20px;
}
.top_searchjob {
    margin-left: 30px;
    position: relative;
}
.top_searchjob input {
    min-width: 450px;
    padding: 11px;
    padding-left: 45px;
    box-shadow: none !important;
    transition: 0.5s;
}
.top_searchjob input:active, .top_searchjob input:focus {
    border-color: var(--theme_red);
    transition: 0.5s;
}
.logarea {
    gap: 15px;
}
.default_btn {
        font-size: 16px;
        line-height: 24px;
        border-radius: 4px;
        padding: 12px 24px 13px 24px;
        font-weight: 600;
        transition: all .24s cubic-bezier(.55, .055, .675, .19);
        overflow: hidden;
        width: fit-content;
        font-weight: 600;
        position: relative;
        z-index: 1;
        white-space: nowrap;
        text-overflow: ellipsis;
        background: var(--theme_blue);
        color: var(--pure_white) !important;
}
.default_btn:hover {
    background: var(--deep_blue);
    transition: all .24s cubic-bezier(.55, .055, .675, .19);
}
.default_btn2 {
    border: 1px solid #4edeee38;
    color: var(--theme_blue) !important;
    padding: 12px 24px 13px 24px;
    font-weight: 600;
    transition: all .24s cubic-bezier(.55, .055, .675, .19);
}
.default_btn2:hover {
    background: #c5f9ff38;
    border: 1px solid var(--theme_blue);
    transition: all .24s cubic-bezier(.55, .055, .675, .19);
}
.userlog_mob {
    display: none;
}
/* ====header close======= */


/* ===banner start======== */
.banner_sec {
    position: relative;
}
.banner_wrapper {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
h1.hero_text {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--font_color);
}
.hero_para {
    color: var(--para_color);
    margin-bottom: 15px;
}
.main_search {
    background: var(--pure_white);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 20px;
    box-shadow: 0 12px 40px rgba(0,44,109,.04);
}
.main_search_area {
    position: relative;
}
.keyword_area::after {
    content: "";
    width: 1px;
    background: #eee;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
}
.keyword_area {
    max-width: 45%;
}
.main_search_area .form-control {
    padding: 11px;
    padding-left: 65px;
    border: none !important;
    box-shadow: none !important;
    font-size: 15px;
}
.main_search_btn {
    position: absolute;
    top: 11px;
    left: 0px;
    font-size: 15px;
    color: var(--font_color);
    font-weight: 700;
}
.location_area {
    width: 35%;
}
.wrapper_btn {
    width: 24%;
    padding: 12px 24px 10px 24px;
    line-height: 1;
}
.trending_keywords {
    font-size: 14px;
    margin-top: 15px;
}
.trending_keywords span {
    color: var(--para_color);
}
.trending_keywords a {
    text-decoration: none;
    color: var(--font_color);
    transition: 0.5s;
}
.trending_keywords a:hover {
    color: var(--deep_blue);
    transition: 0.5s;
}
/* ====banner close========= */

/* ====numbers section start=== */
section.numbers_sec {
    position: relative;
    z-index: 9;
    margin-top: -30px;
}
.numbers_item {
    padding: 20px;
    border-radius: 8px;
    display: flex;
    box-shadow: 0 12px 48px rgb(110 110 110 / 13%);
    align-items: center;
    gap: 15px;
    background: var(--pure_white);
}
.numbers_icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-content: center;
    background: #eee;
    border-radius: 4px;
    font-size: 40px;
}
.numbers_detail b {
    font-size: 22px;
    display: block;
}
.numbers_detail p {
    color: var(--para_color);
    font-size: 14px;
}
/* ====numbers section start=== */

/* ====popular job start==== */
.popular_job {
    padding: 80px 0 50px;
}
.section_title b {
    font-size: 32px;
    font-weight: 500;
    color: var(--font_color);
}
.section_title p {
    color: var(--para_color);
    font-size: 14px;
}
.browse_btn {
    margin-left: auto;
    display: table;
    color: var(--deep_blue) !important;
    position: relative;
    padding: 0;
}
.browse_btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    display: block;
    background: var(--deep_blue);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.browse_btn:hover:after {
    left: 0;
    width: 100%;
}
.p_job_item {
    padding: 15px;
    background: #fff;
    border: 1px solid #ecedf2;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    text-decoration: none;
    align-items: center;
    transition: all 0.4s ease-in-out 0s;
}
.p_job_item:hover {
    box-shadow: 0 7px 18px rgba(64,79,104,.05);
    transition: all 0.4s ease-in-out 0s;
}
.pjob_icon {
    width: 70px;
    height: 70px;
    background: #f1fdff;
    border-radius: 8px;
    display: grid;
    place-content: center;
    transition: all 0.4s ease-in-out 0s;
}
.p_job_item:hover .pjob_icon {
    background: var(--theme_blue);
    transition: all 0.4s ease-in-out 0s;
}
.pjob_icon img {
    width: 50px;
    transition: 0.5s;

}
.pjob_detail b {
    color: var(--font_color);
    transition: 0.5s;

}
.pjob_detail p {
    color: var(--para_color);
    font-size: 14px;
}
.p_job_item:hover .pjob_icon img {
    filter: brightness(0) invert(1);
        transition: 0.5s;
}
.p_job_item:hover .pjob_detail b {
    color: var(--deep_blue);
    transition: 0.5s;
}

/* ===featured_sec start=== */
.featured_sec {
    background: #f9fcff;
    padding: 80px 0 200px;
}
.featured_item {
    display: flex;
    border-radius: 8px;
    gap: 15px;
    padding: 20px;
    background: var(--pure_white);
    border: 1px solid #ecedf2;
    text-decoration: none;
    position: relative;
    margin-bottom: 30px;
}
.featured_icon {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    border: 1px solid #ecedf2;
    background: #ecedf224;
    display: grid;
    place-content: center;
    color: var(--font_color);
    font-size: 24px;
    font-weight: 800;
}
.featured_details {
    width: calc(100% - 85px);
}
.featured_details a {
    color: var(--font_color);
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    transition: 0.5s;
    text-decoration: none;
    font-size: 18px;
}
ul.job-info {
    display: flex;
    list-style: none;
    font-size: 14px;
    color: #9f9f9f;
    gap: 15px;
    margin-top: 7px;
}
ul.job-other-info {
    display: flex;
    list-style: none;
    gap: 5px;
    margin-top: 7px;
}
.job-other-info li {
    font-size: 12px;
    padding: 8px 20px;
    line-height: 1;
    font-weight: 500;
    border-radius: 44px;
}
.job-other-info li.time {
    background: rgba(25,103,210,.15);
    color: #1967d2;
}
.job-other-info li.privacy {
    background: rgba(52,168,83,.15);
    color:  #34a853;
}
.job-other-info li.required {
    background: rgba(249,171,0,.15);
    color:  #f9ab00;
}
.featured_item:hover .featured_details a {
    color: var(--theme_blue);
}
.bookmarkbtn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #000;
    font-size: 18px;
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    transition: 0.5s;
    cursor: pointer;
}
.bookmarkbtn:hover {
    background: #ecedf2;
    transition: 0.5s;
}
.featured_item:hover {
    box-shadow: 0 7px 18px rgba(64,79,104,.05);
    transition: all 0.4s ease-in-out 0s;
}
/* ===featured_sec close=== */

/* ===post_job sec start=== */
.post_job {
    margin-top: -150px;
}
.postjob_inner {
    padding: 50px;
    background: #fff url(../images/recruiting_bg.png) no-repeat;
    background-position: right;
    box-shadow: 0 12px 48px rgb(110 110 110 / 13%);
    border-radius: 8px;
}
.postjob_content b {
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}
.postjob_content p {
    color: var(--para_color);
    margin-bottom: 30px;
    font-size: 14px;
}
/* ===post_job sec start=== */


/* ====how works start==== */
section.how_works {
    padding: 80px 0 110px;
}
.works_item {
    background: var(--pure_white);
    box-shadow: 0 25px 70px rgba(1,33,58,.07);
    border-radius: 8px;
    padding: 50px 28px 50px 42px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.work_icon {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    display: grid;
    place-content: center;
    font-size: 28px;
}
.item1 {
    background-color: rgba(134,123,242,.2);
    color: #867bf2;
}
.work_detail b {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 4px;
}
.work_detail p {
    font-size: 14px;
    color: var(--para_color);
}
.works_item::after {
    content: attr(data-no);
    width: 100px;
    height: 100px;
    position: absolute;
    top: -21px;
    right: -20px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    font-size: 28px;
    color: #a5a2a2;
}
.works_item::before {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    top: -50px;
    right: -40px;
    background: #e9e9e92e;
    border-radius: 50%;
    display: grid;
    place-content: center;
    color: #959595;
    font-size: 28px;
}
.trnlt-60 {
    transform: translateY(60px);
}
.item2 {
    background-color: rgba(240,161,76,.2);
    color: #f0a14c;
}
.item3 {
    background-color: rgba(193, 108, 193, 0.2);
    color: #b86ac1;
}
.item4 {
    background-color: rgba(140, 193, 108, 0.2);
    color: #8bc16a;
}
.works_content {
    padding-left: 100px;
}
.works_content ul {
    list-style: none;
    margin-top: 40px;
    display: grid;
    gap: 10px;
}
.works_content ul span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    background: var(--font_color);
    color: var(--pure_white);
    border-radius: 50%;
    margin-right: 15px;
}
/* ====how works close==== */

/* =====our cta start===== */
section.our_cta {
    background: #f9fcff;
}
.cta_content {
    margin: 80px 0;
}
section.our_cta .col-lg-6 {
    position: relative;

}
.our_cta .section_title b {
    margin-bottom: 15px;
    display: block;
}
.cta_btns  {
    margin-top: 30px;
    gap: 5px;
}
.ctaimg {
    position: absolute;
    bottom: 0;
}

/* ======footer start======= */
.footer_area {
    background: url(../images/footer_bg.jpg) no-repeat;
    background-size: cover;
    padding: 80px 0 10px;
    /* background-attachment: fixed; */
}
.brand_logo {
    display: block;
}
a.contact_item {
    display: flex;
    gap: 15px;
    color: var(--pure_white);
    margin: 20px 0 15px;
    text-decoration: none;
    transition: 0.5s;
}
a.contact_item span {
    width: 25px;
    background: #2e2e2e;
    height: 25px;
    border-radius: 4px;
    color: var(--pure_white);
    display: inline-grid;
    place-content: center;
    transition: 0.5s;
}
a.contact_item:hover {
    color: var(--deep_blue);
    transition: 0.5s;
}
.footer_area small {
    color: #a5a5a5;
}
a.contact_item:hover span {
    background: var(--deep_blue);
    transition: 0.5s;
}
.brand_address {
    font-size: 14px;
    color: #a5a5a5;
    margin-bottom: 10px;
}
.subscribe_area {
    position: relative;
    max-width: 400px;
}
.subscribe_btn {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 48px;
}
.newsButton .p-4 {
    padding: 0 20px !important;
    width: 100% !important;
    display: inline-block;
}
.subscribe-inputbox-1 button {
    width: 100%;
    background: var(--theme_blue);
    border-color: var(--theme_blue);
}
.subscribe-inputbox-1 button:hover {
    background: var(--deep_blue);
    transition: all .24s cubic-bezier(.55, .055, .675, .19);
}
.subscribe_area .form-control {
    padding: 15px;
    box-shadow: none !important;
    padding-right: 130px;
}
.subscribe_area .form-control:focus {
    border-color: var(--theme_red) ;
    transition: 0.5s;
}
.footer_content b {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin: 50px 0 15px;
    border-bottom: 1px solid #a5a5a5;
    color: #a5a5a5;
}
.footer_content ul {
    list-style: none;
    display: grid;
    gap: 10px;
}
.footer_content ul li a {
    color: var(--pure_white);
    text-decoration: none;
    transition: 0.5s;
    display: inline-block;
}
.footer_content ul li a:hover {
    color: var(--deep_blue);
    transform: translateX(15px);
    transition: 0.5s;
}
.copyrighttext p {
    font-size: 14px;
    text-align: center;
    border-top: 2px solid #2d717833;
    margin-top: 30px;
    padding-top: 15px;
    color: #a5a5a5;
}
.main-menu .menu-active-classes li a.active {
    border-bottom: 2px solid var(--theme_blue)!important;
    color: var(--theme_blue) !important;
}
.main-menu .menu-active-classes li a {
    text-decoration: none;
}
.main-menu .menu-active-classes li:hover a {
    color: var(--theme_blue)!important;
    border-bottom: 2px solid var(--theme_blue)!important;
}
button.btn.btn-sm.default_btn.tw-inline-block {
    max-height: 44px;
    padding: 9px 25px;
}
a {
    text-decoration: none;
}
.card:hover {
    border-color: var(--theme_blue);
}
.form-control:focus, [type=color]:focus, [type=date]:focus, [type=datetime-local]:focus, [type=datetime]:focus, [type=email]:focus, [type=month]:focus, [type=number]:focus, [type=password]:focus, [type=search]:focus, [type=tel]:focus, [type=text]:focus, [type=time]:focus, [type=url]:focus, [type=week]:focus, input:not([type]):focus, textarea:focus {
    border-color: var(--theme_blue)!important;
}
.page-item.active .page-link {
    background-color: var(--theme_blue);
}
.page-item i {
    color: var(--theme_blue);
}
.page-item:first-child .page-link:hover, .page-item:last-child .page-link:hover {
    background: #cefaff;
}
.breadcrumb li svg  {
    font-size: 14px;
}
.login_required {
    color: var(--deep_blue) !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: var(--theme_blue);
}