/******commom css******/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --white: #ffffff;
    --black: #0d1114;
    --blue: #207bb4;
    --lightbg: #f0f5f8;
    --green: #23a455;
}

/*@font-face {
    font-family: 'Nexa';
    src: url('../Content/fonts/NexaBold.eot');
    src: url('../Content/fonts/NexaBold.eot?#iefix') format('embedded-opentype'), url('../Content/fonts/NexaBold.woff2') format('woff2'), url('../Content/fonts/NexaBold.woff') format('woff'), url('../Content/fonts/NexaBold.ttf') format('truetype'), url('../Content/fonts/NexaBold.svg#NexaBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('../Content/fonts/NexaLight.eot');
    src: url('../Content/fonts/NexaLight.eot?#iefix') format('embedded-opentype'), url('../Content/fonts/NexaLight.woff2') format('woff2'), url('../Content/fonts/NexaLight.woff') format('woff'), url('../Content/fonts/NexaLight.ttf') format('truetype'), url('../Content/fonts/NexaLight.svg#NexaLight') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}*/


body {
    padding: 0px;
    margin: 0px;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; /* Chrome, Safari */
    text-rendering: optimizeLegibility; /* Firefox */
    font-weight: 400;
    color: var(--black);
}

a {
    color: #002e5b;
}

img {
    max-width: 100%;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    word-break: break-word;
    line-height: 1.4;
    margin: 0;
    font-family: "Helvetica", Arial, sans-serif !important;
    font-weight: bold;
}

p {
    word-break: break-word;
    margin: 0;
}

button,
input,
optgroup,
select,
textarea {
    font-family: "Helvetica", Arial, sans-serif;
}

    button:focus {
        outline: none !important;
    }

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, a:hover {
    text-decoration: none;
}

.btn {
    font-family: "Helvetica", Arial, sans-serif;
    min-height: inherit;
    padding: 8px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: bold;
    min-width: 105px;
    border-radius: 3px;
}

.btn-primary {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        color: var(--white);
        background: var(--green) !important;
        border-color: var(--green) !IMPORTANT;
        box-shadow: none !important;
    }

.btn-secondary {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    color: var(--white);
    background: var(--black) !important;
    border-color: var(--black) !IMPORTANT;
    box-shadow: none !important;
}

.btn-outline {
    color: var(--white);
    background: none;
    border-color: var(--white);
}

.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
    color: var(--white);
    background: none !important;
    border-color: var(--white) !important;
    box-shadow: none !important;
}

.btn-outline.theme {
    color: var(--green);
    background: none;
    border-color: var(--green);
}

.btn-outline.theme:hover, .btn-outline.theme:focus, .btn-outline.theme:active {
    color: var(--green);
    background: none !important;
    border-color: var(--green) !important;
    box-shadow: none !important;
}

.scrollTop {
    position: fixed;
    z-index: 998;
    right: 50px;
    bottom: 50px;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
}

.scrollTop a {
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #baef72;
    border-radius: 2px;
}

a {
    color: var(--blue);
    text-decoration: none !important;
}
/**********common css**********/
header {
    background: var(--green);
    background: linear-gradient(90deg, #8dc73f 0, #207ab5);
    position: relative;
}
  
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}


.logo img {
    max-width: 150px;
}

header .header-top .menu-toggle {
    display: none;
}

.header-top .top-menu {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

    .header-top .top-menu > div {
        display: flex;
        align-items: center;
        grid-gap: 15px;
    }

    .header-top .top-menu ul {
        display: flex;
        align-items: center;
        grid-gap: 20px;
    }

        .header-top .top-menu ul li a {
            color: var(--white);
            font-size: 20px;
        }



.main-menu {
    background: var(--white);
    color: var(--black);
    box-shadow:0 1px 1px rgba(0,0,0,0.05);
}

header .mainNav li.mobile-top {
    display: none;
}

.main-menu ul {
    display: flex;
    align-items: center;
    grid-gap: 30px;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

    .main-menu ul li {
        position: relative;
    }

        .main-menu ul li.last-btn {
            display: none;
        }

        .main-menu ul li a {
            color: var(--black);
            font-weight: bold;
            display: flex;
            align-items: center;
            grid-gap: 5px;
            padding: 10px 0;
            font-family: "Helvetica", Arial, sans-serif;
        }

            .main-menu ul li a:hover, .main-menu ul li.active a {
                color: var(--darkyellow);
            }

        .main-menu ul li .submenu-icon {
            display: none;
        }

    .main-menu ul ul {
        display: block;
        position: absolute;
        background: var(--green);
        min-width: 200px;
        height: 0;
        overflow: hidden;
        transition: all 0.5s;
        transform: translate(-100%, 0);
        z-index: 9;
    }

    .main-menu ul li:hover ul {
        height: auto;
        transform: translate(0);
        transform-origin: 0 0;
    }

    .main-menu ul ul li a {
        padding: 7px 10px;
    }

        .main-menu ul ul li a:hover, .main-menu ul ul li.active a {
            background: var(--blue);
            color: var(--white)
        }


/* header end */


.contentsection {
    padding: 50px 0;
    overflow: hidden;
}

h2 {
    color: var(--black);
    font-weight: bold;
    font-size: 30px;
    font-family: "Helvetica", Arial, sans-serif;
}

.main-banner {
    background: url(../Images/Home/new/banner.jpg) no-repeat center center / cover;
    padding: 100px 0;
    position: relative;
    height: 100vh;
    color: #0e2243;
    display: flex;
    align-items: center;
}

    .main-banner h1 {
        font-family: "Helvetica", Arial, sans-serif;
        font-weight: bold;
        margin: 0 0 10px;
        font-size: 42px;
    }

    .main-banner p {
        font-family: "Helvetica", Arial, sans-serif;
        font-weight: bold;
        margin: 0 0 20px;
        font-size: 16px;
    }

.find-form {
    display: flex;
    grid-gap: 15px;
    width: 100%;
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 4px 4px 4px 0;
    align-items:flex-start;
}

.left-search-section {
    width: calc(100% - 100px);
}

    .left-search-section > div {
        display: flex;
        grid-gap: 15px;
        width: 100%;
    }

    .left-search-section input, .left-search-section select, .search_drawer .input-group input, .search_drawer select.form-control {
        padding: 11px 15px;
        font-size: 14px !important;
        color: #000;
        font-weight: bold;
        height: auto;
        border: 1px solid #000;
        border-radius: 4px;
        width: 100%;
        font-family: "Helvetica", Arial, sans-serif;
        min-height: inherit;
        line-height: normal;
    }

        .left-search-section input:focus, .left-search-section select:focus {
            outline: none;
            box-shadow: none;
        }

    .left-search-section > div > div {
        width: 25%;
    }

        .left-search-section > div > div.home-search-hold {
            width: 65%;
        }

        .left-search-section > div > div.location {
            width: 40%;
        }


.home-search-btn {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 4px;
    background: var(--green);
    padding:0;
    grid-gap: 6px;
    font-weight: 600;
    min-height: 41px;
}

    .home-search-btn img {
        max-width: 20px;
    }
    .home-search-btn input {
        background: none;
        border: none;
        color:#fff;
    }
    .home-search-btn button {
        display: flex;
        align-items: center;
        background: none;
        border: none;
        grid-gap: 10px;
        margin: 0;
        height: 41px;
        padding: 0 10px;
        color: #fff;
        width: 100%;
        justify-content: center;
    }
    /*.home-search-btn input {
        background: #b62fee;
        color: #fff;
        border-radius: 10px;
        min-width: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        height: 55px;
    }*/

span.search-btn-hold img {
    position: absolute;
    left: 50%;
    pointer-events: none;
    top: 50%;
    transform: translate(-50%, -50%);
}

.left-search-section > div > div.miles {
    position: relative;
}

    .left-search-section > div > div.miles span.fa {
        position: absolute;
        right: 15px;
        color: #000;
        font-size: 20px;
        top: 10px;
        pointer-events: none;
    }

    .left-search-section > div > div.miles select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: #fff !important;
        border-color: #000 !IMPORTANT;
    }
.loc-home-search a {
    color: red;
    font-weight: 500;
}
.ui-autocomplete {
    max-height: 200px;
    overflow: auto;
}

.featured-jobs {
}

    .featured-jobs .text-center p {
        font-weight: 600;
        margin-bottom: 50px;
    }

#featured-jobs .owl-item {
    padding: 8px;
}

.featured-block {
    background: var(--lightbg);
    border-radius: 4px;
    padding: 25px 20px;
}

    .featured-block:hover {
        /*background: var(--blue);
        color: var(--white);*/
        box-shadow: 0 0 10px rgba(0,0,0,0.8);
    }
    .featured-block > span {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 3px;
    }
    .featured-block > span img {
        max-width: 70px;
    }

    .featured-block h4 {
        font-weight: 700;
        margin: 15px 0;
        text-overflow: ellipsis;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        min-height: 50px;
        line-height: 1.4;
    }
        .featured-block h4 a {
            color: var(--black);
        }
    .featured-block:hover h4 a {
        color: var(--green);
    }

    .featured-block p {
        font-weight: 400;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        margin: 0 0 5px;
        min-height: 22px;
    }

    .featured-block .bottom-link {
        display: flex;
        align-items: center;
        grid-gap: 30px;
        margin-top:15px;
    }

    .featured-block .bottom-link a {
        display: flex;
        align-items: center;
        grid-gap: 5px;
        color: var(--black);
        font-size: 14px;
        font-weight: 600;
    }

    /*.featured-block:hover .bottom-link a {
        color: var(--white);
    }*/

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 7px;
    margin-top: 20px;
}

    .owl-dots button span {
        width: 13px;
        height: 13px;
        display: inline-block;
        background: #575852;
        border-radius: 50%;
    }

    .owl-dots button.active span {
        background: var(--green);
    }

.popular-search {
    background: url(../Images/Home/new/popular-search-banner.jpg) no-repeat;
    background-size: cover;
    color: var(--white);
}

.popular-search h2 {
    color: var(--white);
    margin-bottom: 40px;
}

.view-more-btn-hold {
    padding-top: 28px;
    display:inline-block;
}

.view-more-btn {
    color: #fff;
}

.view-more-btn:hover, .view-more-btn:focus{
    color: #fff;
    text-decoration:underline;
}

.popular-search-block {
    background: #ecedef;
    border-radius: 4px;
    padding: 15px;
    color: var(--black);
    display: flex;
    align-items: center;
    grid-gap: 15px;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--blue);
}

.popular-search-block img {
    max-width: 40px;
}

.popular-search .scroll-responsive .aos-animate:nth-child(n+5):nth-child(-n+8) .popular-search-block {
    border-color: var(--green);
}

.popular-search .row.first .col-md-3:nth-child(even) .popular-search-block {
    border-color: var(--green);
}

.popular-search .row.second .col-md-3:nth-child(even) .popular-search-block {
    border-color: var(--blue);
}

.popular-search .row.three .col-md-3:nth-child(even) .popular-search-block {
    border-color: var(--green);
}

.popular-search-block h5 {
    font-family: "Helvetica", Arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    line-height: normal;
    min-height: 40px;
    display: flex;
    align-items: center;
}


.featured-clients {
    background: url(../Images/Home/new/Featured-Clients-Banner.jpg) no-repeat;
    background-size: cover;
}

.featured-clients h2, .featured-jobs h2{
    margin-bottom: 40px;
}

.client-block > div {
    /*border: 1px solid #ebeaea;*/
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

    .client-block > div img {
        max-height: 93px;
        object-fit: contain;
        max-width:200px;
    }

ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0;
    grid-gap: 7px;
}

    ul.slick-dots li button {
        width: 13px;
        height: 13px;
        display: inline-block;
        background: #575852;
        border-radius: 50%;
        text-indent: -9999px;
        border: none;
    }

    ul.slick-dots li.slick-active button {
        background: var(--green);
    }

.browse-jobs {
    background: #0d1114;
    color: var(--white);
}

    .browse-jobs h2 {
        margin-bottom: 40px;
        color: var(--white);
    }

.browse-tabs .nav-tabs {
    border-bottom: 2px solid var(--white);
}

    .browse-tabs .nav-tabs li {
        margin-bottom: -2px;
    }

        .browse-tabs .nav-tabs li a {
            color: var(--white);
            font-weight: 600;
            border: none;
            padding: 10px 30px;
        }

        .browse-tabs .nav-tabs li.active a, .browse-tabs .nav-tabs li:hover a {
            background: none;
            border: none;
            color: var(--green);
        }

        .browse-tabs .nav-tabs li.active {
            border-bottom: 2px solid var(--green);
        }

            .browse-tabs .nav-tabs li.active a:before {
                content: "";
                border: 5px solid var(--green);
                position: absolute;
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
                border-bottom: 5px solid transparent;
                bottom: -12px;
                left: 50%;
                transform: translate(-50%, 0);
            }

.browse-tabs .jobs-list ul {
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 10px;
}

    .browse-tabs .jobs-list ul li {
        width: calc(33.33% - 10px);
    }
        .browse-tabs .jobs-list ul li.sidereadmore {
            width:100%;
            margin-top:30px;
        }
           

            .browse-tabs .jobs-list ul li a {
                color: var(--white);
                font-weight: 600;
                font-size: 13px;
            }

            .browse-tabs .jobs-list ul li a:hover {
                color: var(--green);
            }


.upload-sec {
    background: var(--green);
    background: linear-gradient(90deg, #8dc73f 0, #207ab5);
    padding-bottom: 0;
}

    .upload-sec .upload-block {
        background: url(../Images/Home/new/upload-cv.png) no-repeat;
        background-size: cover;
        border-radius: 4px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 25px 30px;
        grid-gap: 30px;
    }

        .upload-sec .upload-block.create-alert {
            background: url(../Images/Home/new/create-alert.png) no-repeat;
            background-size: cover;
        }

        .upload-sec .upload-block h5 {
            color: var(--white);
            font-weight: 600;
            font-size: 18px;
            line-height: 1.2;
        }

        .upload-sec .upload-block .btn {
            min-width: 135px;
        }

    .upload-sec .bottom-img {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        grid-gap: 200px;
        margin: 20px 0 0;
    }

        .upload-sec .bottom-img img {
            max-width: 63px
        }



.articles-section {
    background: var(--lightbg);
}

    .articles-section h1 {
        text-align: center;
        margin: 0 0 10px;
    }

.article-block {
    display: block;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    color: #000;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    margin-top: 30px;
    margin-bottom: 15px;
}

    .article-block > img {
        height: 185px;
        object-fit: cover;
        width: 100%;
    }

.article-desc {
    padding: 20px;
}

    .article-desc h4 {
        line-height: 1.3;
        margin-bottom: 10px;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        min-height: 47px;
        font-family: "Helvetica", Arial, sans-serif;
        font-weight: bold;
    }

    .article-desc p {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 0;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
        min-height: 44px;
    }

    .article-desc .bottom {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
        .article-desc .bottom > div {
            width:95%;
        }
            .article-desc .bottom > div.text-right {
                width: auto;
            }
            .article-desc .bottom > div span:first-child {
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
                width: 100%;
            }
        .article-desc .bottom span {
            display: flex;
            align-items: center;
            grid-gap: 10px;
            font-weight: 500;
            font-size: 14px;
            margin-top: 10px;
        }
            .article-desc .bottom span dd {
                text-overflow: ellipsis;
                display: -webkit-box;
                overflow: hidden;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
            }
            .article-desc .bottom span img {
                max-width: 17px;
            }

.article-block:hover {
    color: #000;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

    .article-block:hover .article-desc h4 {
        color: var(--green);
    }

    .article-block:hover .article-desc span i {
        color: var(--blue);
    }



.career-advice {
    background: var(--white);
}

    .career-advice .article-desc {
        background: var(--lightbg);
    }

        .career-advice .article-desc span {
            display: block;
            height: 24px;
        }

.mt-3 {
    margin-top: 20px;
}

footer .footer-top {
    background: #0d1114;
    padding: 15px 0;
}

    footer .footer-top img {
        max-width: 150px;
    }

.footer-top .container > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-top .social-icons {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

    .footer-top .social-icons li a {
        color: var(--white);
        font-size: 16px;
    }

        .footer-top .social-icons li a:hover {
            color: var(--blue);
        }

footer .footer-middle {
    background: #161a1d;
    padding: 40px 0;
    color: var(--white);
}

    footer .footer-middle p {
        margin: 0 0 15px;
        font-size: 13px;
    }

        footer .footer-middle p a {
            color: var(--white);
        }

.footer-middle .f-menu h5 {
    color: var(--white);
    font-size: 16px;
    margin: 0 0 15px;
    font-weight: 600;
}

.footer-middle .f-menu li {
    padding: 2px 0;
}

    .footer-middle .f-menu li a {
        color: var(--white);
        font-size: 14px;
        opacity: 0.9;
    }

        .footer-middle .f-menu li a:hover {
            color: var(--blue);
            opacity: 1;
        }

footer .footer-bottom {
    background: #0d1114;
    color: var(--white);
    padding: 40px 0;
}

    footer .footer-bottom h1 {
        font-weight: 700;
        margin: 0 0 10px;
        font-size: 42px;
    }

    footer .footer-bottom .mailing-sec > div {
        display: flex;
        align-items: center;
        margin: 20px 0 0;
        grid-gap: 15px;
    }

        footer .footer-bottom .mailing-sec > div img {
            max-width: 130px;
        }

.footer-bottom .col-md-3 > div {
    display: flex;
    align-items: center;
    min-height: 185px;
}

    .footer-bottom .col-md-3 > div img {
        max-width: 180px;
    }

.copyright {
    background: #161a1d;
    padding: 15px 0;
    color: var(--white);
}

    .copyright p {
        font-size: 12px;
        text-align: center;
        opacity: 0.9;
    }


/*****************************************Old Css***********************************************/

.da-slide h2 i {
    background-color: rgba(40,56,131,.7);
    font-weight: 600 !important;
}

.slider-inner {
    position: relative;
}

.search-block {
    background: #4e4e4e;
    padding: 15px 0;
}

.sticky-hold {
    position: fixed;
    top: 60%;
    transform: translateY(-50%);
    z-index: 100;
    transition: all .5s;
    right: -261px;
    border: 1px solid #eee;
    border-right: 0;
}

    .sticky-hold.open {
        right: 0;
    }

.sticky-btn {
    background: #189dd8;
    color: #fff;
    font-size: 18px;
    transform: rotate(-90deg);
    padding: 6px 16px;
    position: absolute;
    max-width: 180px;
    left: -93px;
    top: 48px;
    cursor: pointer;
}

.sticky-side-area .close-btn {
    position: absolute;
    right: 10px;
    color: #555;
    top: 10px;
}

    .sticky-side-area .close-btn a {
        color: #555;
        font-size: 16px;
    }

.sticky-side-sec {
    background: #fefefe;
    display: inline-block;
    max-width: 260px;
    padding: 15px;
    text-align: center;
    color: #555;
}

    .sticky-side-sec h2 {
        font-weight: bold;
        margin: 25px 0 0 0;
    }

    .sticky-side-sec p {
        font-size: 18px;
        line-height: 1.3;
        margin: 15px 0;
    }

        .sticky-side-sec p span {
            font-size: 22px;
            display: inline-block;
            font-weight: bold;
        }

            .sticky-side-sec p span a {
                color: #555;
            }

.help-text-sticky {
    border-top: 1px solid #dedede;
    padding-top: 15px;
}

.sticky-side-sec .btn {
    background: #189dd8;
    color: #fff;
    border: 0;
    padding: 12px 30px !important;
    font-size: 18px;
    margin: 5px 0;
}

.slider-inner .search-block {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: calc(100% - 175px);
    width: 100%;
    z-index: 99;
    padding: 20px 0;
}

    .slider-inner .search-block.searchopen {
        top: calc(100% - 263px);
    }

.da-slider {
    height: 350px !important;
}

    .da-slider.searchopen {
        height: 434px !important;
    }

.search-block .input-group.required {
    width: 100%;
}

.input-hint01 {
    color: #efefef;
    font-style: italic;
    font-size: 13px;
    float: left;
}

.search-block .select2-container--default .select2-selection--multiple {
    background-color: white;
    border: none !important;
    border-radius:4px !important;
    cursor: text;
    color: #555;
    min-height: 35px !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
    min-height: 23px;
    margin-top: 0 !important;
    padding-top:5px !important;
    color: #1b1b1b;
    font-size: 15px !important;
    width: auto !important;
    padding-left: 0px !important;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: none;
}

.main-search-hold .select2-container--default .select2-search--inline .select2-search__field {
    padding-left: 10px !important;
}

.job_preference .select2-container--default .select2-search--inline .select2-search__field {
    padding-left: 10px;
}

.jobs-by-email1 .select2-container--default .select2-search--inline .select2-search__field {
    padding-top: 10px !important;
    width: auto !important;
}

.jobs-by-email1 .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 15px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    box-shadow: none;
}

.jobs-by-email1 .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #a4a4a4 !important;
    box-shadow: none;
}

.search-block input[type="text"], .search-block select {
    color: #1b1b1b !important;
    padding: 3px 5px 3px;
    min-height: 35px;
    width: 100%;
    border: none;
    height: auto;
    border-radius: 4px !important;
    font-family: "Helvetica", Arial, sans-serif;
}

    .search-block input[type="text"]:focus-visible {
        outline: 0;
        box-shadow: 0px 0px 5px rgba(24, 157, 216,0.5),0 0px 2px #fff;
    }

.search-block select {
    height: 30px;
}

.main-search-section {
    margin-bottom: 8px;
}

    .main-search-section label {
        display: none;
    }

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
    white-space: normal;
    line-height: 1.2;
    font-size: 13px;
}

.search_drawer {
    background: rgba(0,0,0,.5);
    padding: 10px 15px 15px;
    float: left;
    width: 100%;
    border-radius: 0 0 4px 0px;
    overflow: auto;
    max-height: 300px;
    display: none;
    color:#000;
}
.search_drawer-inner {
    display: flex;
    align-items: flex-start;
}
    .search_drawer-inner .col-sm-4, .search_drawer-inner .col-sm-8 {
        padding: 0;
    }
    .search_drawer-inner .col-sm-4 {
        width: 50.5%;
    }
    .search_drawer-inner .col-sm-8 .row {
        display: flex;
        flex-wrap: wrap;
        grid-gap: 15px;
        margin: 0;
    }
        .search_drawer-inner .col-sm-8 .row .col-sm-6 {
            padding: 0;
            width: calc(50% - 15px);
        }
        .search_drawer-inner .col-sm-8 .row .col-sm-4 {
            width: calc(33.33% - 15px);
        }
    .search_drawer .input-group {
        width: 100%;
    }
.search_drawer-inner .select2-container--default .select2-search--inline .select2-search__field {
    min-height: 32px;
    font-size: 14px !important;
}
.search_drawer-inner .select2-container--default .select2-selection--multiple {
    border: 1px solid #000;
}
input:focus, select:focus {
    outline: none !important;
    box-shadow: none !important;
}
.ui-menu .ui-menu-item-wrapper {
    display: block;
}
.inner-search-sec {
    background: #333;
}

.job-types-hold {
    padding-left: 0;
    margin-top: -10px;
}

    .job-types-hold span {
        color: #fff;
        line-height: 1;
        font-size: 13px;
        display: block;
        margin-bottom: 5px;
    }

.salary-slider-hold {
    color: #fff;
}

.search_drawer label {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 0;
    color: #fff;
}
.search_drawer .input-group label {
    margin-bottom: 5px;
}

.search_drawer select {
    min-height: 0;
    height: auto;
    font-size: 13px !important;
}

.ui-slider-horizontal.ui-slider {
    height: 6px;
    background: #bcbcbc;
    width: 100%;
    display: inline-block;
    border-radius: 10px !important;
    padding: 0;
    margin: 0 9px;
    position: relative;
    border: 0;
}

.ui-slider-range.ui-widget-header {
    background: #555;
    position: absolute;
    display: block;
    border-radius: 10px !important;
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 6px;
    background: #fff;
    padding: 0;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    top: 0;
    cursor: default;
    background: #3498db;
    margin-top: -6px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 50% !important;
    padding: 0;
    margin-left: -9px;
    display: inline-block;
}

.salary-rate {
    font-size: 12px;
    margin-top: 4px;
}

/*loader spinner css*/
.spinner {
    display: inline-block;
}

    .spinner > div {
        width: 20px;
        height: 20px;
        background-color: #189dd8;
        margin-right: 10px;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.8s ease-in-out infinite both;
        animation: sk-bouncedelay 1.8s ease-in-out infinite both;
    }

    .spinner .bounce1 {
        -webkit-animation-delay: -.32s;
        animation-delay: -.32s;
    }

    .spinner .bounce2 {
        -webkit-animation-delay: -.16s;
        animation-delay: -.16s;
    }

@-webkit-keyframes sk-bouncedelay {
    0%,80%,to {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes sk-bouncedelay {
    0%,80%,to {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}
/*loader spinner css*/

.search-option {
    color: white;
    border: 1px solid white;
    padding: 3px 10px 3px 10px;
    font-weight: normal;
    display: inline-block;
    margin: 0 8px 0 0;
    font-size: 12px;
    cursor: pointer;
}

    .search-option.selected {
        background: #fff;
        color: #222;
    }

    .search-option input {
        position: absolute;
        visibility: hidden;
    }

.more-search-btn {
    background: rgba(0,0,0,.5);
    padding: 4px 12px;
    display: inline-block;
    color: var(--white) !important;
    border-radius: 0 0 4px 4px;
}

.border-style {
    border-radius: 4px 4px 0 0;
}

.slider-inner .main-search-btn {
    transition: all .5s;
}


.search-block input[type="text"]::-webkit-input-placeholder {
    color: #838383 !important;
    opacity: 1;
}

.search-block input[type="text"]::-moz-placeholder {
    color: #838383 !important;
    opacity: 1;
}

.search-block input[type="text"]:-ms-input-placeholder {
    color: #838383 !important;
    opacity: 1;
}

.search-block input[type="text"]:-moz-placeholder {
    color: #838383 !important;
    opacity: 1;
}

.search-block input[type="submit"] {
    background: var(--green);
}

.search-block a {
    color: #fff;
}
.btn-u {
    border: 0;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    font-weight: 700;
    padding: 6px 13px;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    text-decoration: none;
    background: #207ab4;
    border-radius:4px;
    min-height:35px;
}
.btn-u:hover {
    color:#fff;
}
.search-block .search-btn {
    width: 100%;
    float: none;
    margin: 0;
    height: auto;
    border-radius:4px;
    box-shadow: none;
    text-indent: 0;
}

.search-block h2 {
    text-align: center;
    font: normal 600 44px/46px 'Cabin';
    color: #fff;
    display: block;
    padding: 0;
    margin: 0 0 15px 0;
}

.more-options {
    display: block;
    margin: 8px 0 0;
}
.content-style p {
    margin-bottom:10px !important;
}
.header-style{
    font-weight:bold !important;
}
.browse-jobs-responsive {
    display:none;
}
.btn-top-space {
    margin-top:10px;
}

@media (min-width:768px) {
    .main-search-section .col-sm-5, .main-search-section .col-sm-7, .main-search-section .col-sm-4, .main-search-section .col-sm-3, .main-search-section .col-sm-2 {
        padding-right: 0;
    }
}

@media (min-width:992px) {

    /* .main-search-hold1 {
        width: calc(100% - 176px);
    }

    .main-search-section .col-sm-2 {
        width: 176px;
    }*/

    .main-search-hold {
        width: calc(100% - 191px);
    }

    .main-search-btn {
        width: 191px;
    }
}

.otp-block {
    margin:40px 0;
}
.otp-block h2 {
    text-align:center;
}
.otp-sec {
    max-width: 500px;
    margin: 20px auto 0;
    padding: 25px;
    background: #edf8ff;
    border-radius: 4px;
    box-shadow: none;
    text-align: center;
}
.otp-sec img {
    max-width:80px;
    margin:0 auto 20px;
    display:block;
}
.otp-sec p {
    font-weight: 500;
}
 
.otp-container {
    display: flex;
    grid-gap: 10px;
    justify-content: center;
    margin: 30px 0;
}
.otp-container .otp-box {
    border-radius: 4px !important;
    border: 1px solid #ddd;
    width: 46px;
    height: 50px;
    font-size: 24px !important;
    text-align: center;
    font-weight: bold;
}

.blog-search-form form {
    display: flex;
}
    .blog-search-form form button.search-ico.btn.btn-info {
        width: auto;
        min-width: inherit;
        padding: 0;
        margin-left: 5px;
        border: 1px solid #999;
    }
    .blog-search-form form input {
        border-radius: 4px !important;
    }
.blog-categories {
    margin: 15px 0 0;
}
    .blog-categories ul.blog-categorylist li {
        padding: 2px 0;
    }
.blog-post a {
    color: #2379b4;
    font-weight: 600;
    justify-content: flex-start;
}
    .blog-post a h3 {
        line-height: 1.3;
        margin: 0 0 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color:#000;
    }
.blog-post .blog-post-date {
    display: block;
    clear: both;
    margin-bottom:10px;
}
    .blog-post .blog-post-date ul {
        display: flex;
        grid-gap: 5px;
    }
        .blog-post .blog-post-date ul li:last-child {
            /*margin-left: 10px;*/
            font-weight: 600;
        }

.admin-tab {
    background: #bde6fa;
    padding: 3px 30px;
    border-radius: 5px;
    margin-right:5px;
    font-weight:600;
}
.date-tab {
    background: var(--green);
    padding: 3px 25px;
    border-radius: 5px;
    margin-left: 0;
    color: #fff;
}
.next-prev-btns {
    text-align: center;
    border-top: 1px solid #e2e3e5;
    padding-top: 30px;
}
.next-prev-btns .prev-btn {
    background: #dfe6ec;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    color: #b0b5b9;
}
.next-prev-btns .next-btn {
    background: #8cc63e;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    color: #fff;
}
.next-prev-btns .num-tab{
    margin: 0 30px;
}
.blog-post-item-details {
    margin-bottom: 20px;
    overflow: hidden;
    border-bottom: 1px solid #ddd;
    padding: 0 0 20px;
}
.blog-img {
    margin-bottom: 15px;
}
    .blog-img img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        border-radius: 6px;
    }
.blog-header h2.blog-h1 {
    float: none;
    width: auto;
    text-align: center;
    margin: 0 0 30px;
}
.blog-header .blog-back {
    display: none;
}
.blog-post-item-details h1.sub-post-title {
    color: #000;
    line-height: 1.2;
    margin: 0 0 10px;
}
.blog .post-meta {
    margin: 0 0 10px;
}
.blog-post-item-details .blog-img img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}
.blog-post p {
    margin-bottom: 20px;
}
.blog-job-listhold {
    margin-top: 15px;
}
.subdetailes-img {
    margin:0 0 10px 0;
}
.blog-job-listdetails .subdetailes {
    /*border-bottom: 1px solid #ddd;*/
    margin-bottom: 20px;
    padding: 15px;
}
.blog-job-listhold {
    display:block !important;
}



/******************************end***********************************/




/********************************Advertise page css*****************************/

.btn-white {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.advertise-banner {
    background: url(../Images/Home/new/advertise-banner.jpg) no-repeat center center / cover;
}

    .advertise-banner .banner-content {
        max-width: 500px;
    }

        .advertise-banner .banner-content .btn {
            padding: 12px 30px;
        }

        .advertise-banner .banner-content ul {
            display: flex;
            grid-gap: 20px;
            margin: 30px 0 0;
        }

            .advertise-banner .banner-content ul li h4 {
                font-weight: 900;
                font-size: 20px;
                text-align: center;
            }

            .advertise-banner .banner-content ul li span {
                font-size: 12px;
                font-weight: 600;
            }

.banner-box {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translate(0, -50%);
    width: 200px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.b-block {
    background: #6cc398;
    display: inline-flex;
    grid-gap: 8px;
    border-radius: 4px;
    padding: 10px;
    width: 170px;
    height: 71px;
    align-items: center;
}

    .b-block .img-b {
        background: #89cda4;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
        width: 40px;
        height: 40px;
    }

        .b-block .img-b img {
            max-width: 30px;
        }

    .b-block h4 {
        font-weight: 700;
        font-size: 15px;
        line-height: 1;
    }

    .b-block span {
        font-weight: 400;
        font-size: 12px;
        opacity: 0.8;
        line-height: 1.3;
        display: block;
        margin: 4px 0 0;
    }

.banner-box .b-block:nth-child(2) {
    position: absolute;
    right: 250px;
    top: 50%;
    transform: translate(0, -50%);
}


.advertise-benefits p {
    font-weight: 600;
    font-size: 14px;
}

.advertise-benefits .adv-block {
    margin: 40px 0 0;
}

    .advertise-benefits .adv-block h4 {
        color: var(--green);
        margin: 0 0 10px;
        font-weight: 700;
        font-size: 16px;
    }

    .advertise-benefits .adv-block ul li {
        font-weight: 600;
    }

.list-unstyled li {
    background: url(../Images/Home/new/tick.png);
    background-repeat: no-repeat;
    background-size: 20px;
    padding: 6px 0 6px 30px;
    font-size: 13px;
    background-position: 0 5px;
}


.section-pricing {
    background: #20292e;
    color: var(--white);
}

    .section-pricing h2 {
        color: var(--white);
    }

        .section-pricing h2 + p {
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 50px;
        }

.price-box {
    background: #2b3439;
    border-radius: 20px;
    padding: 30px;
    height: 570px;
    position:relative;
    margin-bottom:30px;
}

    .price-box .top {
        text-align: center;
        min-height: 72px;
    }
        .price-box .top p {
            min-height: 43px;
        }
        .price-box .top h3 {
            font-size: 20px;
            font-weight: 800;
        }

        .price-box .top span {
            font-size: 12px;
            font-weight: 600;
            color: #dadee1;
        }

    .price-box .price {
        font-weight: 900;
        font-size: 30px;
        text-align: center;
        margin: 15px 0;
    }

        .price-box .price span {
            font-weight: 600;
            font-size: 12px;
            color: #afb4b7;
        }

    .price-box ul {
        margin-bottom: 20px;
        max-height: 214px;
        overflow: auto;
        min-height: 300px;
        scrollbar-width: thin;
    }

    .price-box .btn {
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }

    .price-box.premium {
        background: linear-gradient(160deg, #9cc954 0%, #279f91 100%);
        /*margin-top: -12px;
        height: 480px;*/
    }

        .price-box.premium > span {
            background: var(--white);
            color: #000;
            border-radius: 30px;
            font-size: 12px;
            padding: 3px 12px;
            font-weight: bold;
            font-family: "Helvetica", Arial, sans-serif;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translate(-50%);
        }

        .price-box.premium .top span {
            color: #b1ffd8;
        }

        .price-box.premium .price span {
            color: var(--white);
        }

        .price-box.premium .btn {
            background: var(--white);
            border-color: var(--white);
            color: var(--black);
        }

            .price-box.premium .btn:hover {
                color: var(--white);
            }

.bottom-p {
    color: #dadee1;
    font-size: 12px;
    font-weight: 600;
    margin-top: 30px;
}

.advertise-res .article-desc span {
    height: auto;
    background: linear-gradient(90deg, #8dc73f 0, #207ab5);
    border-radius: 4px;
    display: inline-block;
    padding: 2px 10px;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
}

.advertise-res .article-desc {
    background: var(--white);
}

    .advertise-res .article-desc h4 {
        margin: 0;
    }

.featured-client-advertise {
    background: #e5e5e5;
}

    .featured-client-advertise .client-block > div {
        background: var(--white);
    }

.connecting-brands {
    background: #ffffff;
}

.connecting-brands-block {
    background: linear-gradient(150deg, #8dc73f 0, #207ab5);
    padding: 80px 50px;
    text-align: center;
    color: #fff;
    border-radius: 4px;
}

    .connecting-brands-block > div {
        max-width: 520px;
        margin: 0 auto;
    }

        .connecting-brands-block > div h2 {
            color: #fff;
            line-height: 1.1;
        }

        .connecting-brands-block > div p {
            margin: 25px 0;
        }

        .connecting-brands-block > div .btn {
            min-width: 150px;
            margin: 0 5px;
        }

.testimonial-block {
    margin: 50px 0 0;
}

    .testimonial-block h6 {
        color: var(--green);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
        display: flex;
        align-items: center;
        grid-gap: 10px;
    }

    .testimonial-block p {
        margin: 15px 0;
    }

    .testimonial-block ul {
        display: flex;
        grid-gap: 5px;
        color: #fbbe26;
        margin-bottom: 15px;
    }

    .testimonial-block > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .testimonial-block > div span {
            font-size: 14px;
            opacity: 0.8;
        }

        .testimonial-block > div .name-tag {
            opacity: 1;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e4fbf6;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #94e1ed;
            color: var(--green);
            font-weight: 600;
        }

.contact-us iframe {
    width: 100%;
}





/**************************************end**************************************/


/*********************Responsive start css*********************/

@media (max-width:1200px) {
    .popular-search-block {
        padding: 10px;
        grid-gap: 9px;
    }

    .client-block > div img {
        max-height: 90px;
        max-width: 80%;
    }

    .upload-sec .upload-block {
        padding: 20px;
        grid-gap: 10px;
    }
}

@media(max-width:1199px) {
    .search_drawer-inner .col-sm-4 {
        width: 47%;
    }
}

@media (max-width:991px) {

    header {
        padding: 0;
    }

        header .NavBar {
            padding: 10px 0;
        }

        header.fixed {
            position: fixed;
            z-index: 9999;
            width: 100%;
        }

    .header-top .top-menu ul li a {
        font-size: 13px;
    }

    header .header-top .menu-toggle {
        display: block;
        background: none;
        width: auto;
        height: 26px;
        margin: 0;
        color: var(--white);
        text-align: right;
    }

    header.fixed .header-top .menu-toggle {
        color: var(--white);
    }

    .header-top .top-menu ul {
        grid-gap: 15px;
    }



    header ul.mainNav li.mobile-top {
        display: block;
        padding: 10px 10px;
        position: sticky;
        top: 0;
        z-index: 99;
        background: var(--green);
        background: linear-gradient(90deg, #8dc73f 0, #207ab5);
    }



        header ul.mainNav li.mobile-top .m-top-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

    header .logo img, header .mainNav li.mobile-top a > img {
        max-width: 75px;
    }

    header .logo span {
        color: var(--black);
        font-weight: 700;
        max-width: 190px;
        display: inline-block;
        font-size: 14px;
        line-height: 1.2;
    }

    header ul.mainNav li.mobile-top .m-top-inner a.close {
        float: none;
        width: auto;
        opacity: 1;
        text-shadow: none;
        color: var(--white);
        background: none !important;
        text-indent: 0 !important;
    }

        header ul.mainNav li.mobile-top .m-top-inner a.close:hover {
            background: none;
        }

    header ul.mainNav {
        float: none;
        width: 100%;
        display: block;
        position: fixed;
        top: 0;
        background: #fff;
        z-index: 999;
        max-height: 100vh;
        overflow: auto;
        min-height: 100vh;
        left: -100%;
        -moz-transition-property: all;
        -o-transition-property: all;
        -webkit-transition-property: all;
        transition-property: all;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -moz-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        -o-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
        transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    }



        header ul.mainNav.active {
            left: 0;
        }

        header ul.mainNav li {
            font-size: 16px;
            display: block;
            padding: 10px 20px;
        }

    header .mainNav li {
        padding: 15px 20px;
        margin: 0;
        height: auto;
    }

        header .mainNav li a {
            color: #000;
            padding: 0
        }

    header .mainNav > li > a i.material-icons {
        display: none;
    }

    .main-menu ul li .submenu-icon {
        display: block;
        height: 24px;
        position: absolute;
        right: 15px;
        top: 10px;
        cursor: pointer;
        z-index: 1;
        color: var(--darkyellow);
    }

    header ul.mainNav ul.subMenu {
        position: relative;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-duration: 0.4s;
        transition-duration: 0.2s;
        display: none;
        overflow: visible;
        opacity: 1;
        max-height: inherit;
        border: none;
        margin-top: 10px;
    }

    header .mainNav li:before {
        display: none;
    }

    .main-menu ul ul {
        display: none;
        position: static;
        background: none;
        min-width: 200px;
        height: auto;
        overflow: visible;
        transition: all 0.5s;
        transform: none;
        z-index: 9;
    }

        .main-menu ul ul li {
            padding: 0;
        }

            .main-menu ul ul li a {
                font-size: 15px;
            }

    .header-top .top-menu > div {
        display: none;
    }

    .main-menu ul li.last-btn {
        display: block;
    }

        .main-menu ul li.last-btn > div {
            display: flex;
            align-items: center;
            grid-gap: 15px;
        }

            .main-menu ul li.last-btn > div a {
                padding: 10px;
                color: var(--white);
            }

                .main-menu ul li.last-btn > div a.btn-outline {
                    color: var(--green);
                    border-color: var(--green);
                }

    .browse-tabs .nav-tabs li a {
        padding: 10px 15px;
    }

    .browse-tabs .jobs-list ul li {
        width: calc(50% - 20px);
    }

    .upload-sec .upload-block {
        margin-bottom: 10px;
    }

    .footer-middle .f-menu {
        margin-top: 30px;
    }

    footer .footer-bottom {
        padding: 0 0 30px;
    }

    .main-banner {
        height: 70vh;
    }

    .left-search-section > div > div.home-search-hold {
        width: 60%;
    }

    .banner-box {
        display: none;
    }

    .price-box {
        height: auto;
        margin-bottom: 30px;
    }

        .price-box.premium {
            margin-top: 0;
            height: auto;
        }

    .bottom-p {
        margin-top: 0;
    }
    .search_drawer-inner .col-sm-4 {
        width: 40%;
    }
    .price-box .top {
        min-height: inherit;
    }
    .price-box ul {
        min-height: inherit;
    }

}

@media (max-width:767px) {
    h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .main-banner {
        min-height: 80vh;
        height: auto;
        padding: 50px 0;
    }

    .find-form {
        flex-wrap: wrap;
        grid-gap: 10px;
        padding: 10px;
    }

    .left-search-section {
        width: 100%;
    }

        .left-search-section > div {
            flex-wrap: wrap;
            grid-gap: 10px;
        }

            .left-search-section > div > div.home-search-hold {
                width: 100%;
            }

            .left-search-section > div > div.location {
                width: 60%;
            }

            .left-search-section > div > div {
                width: calc(40% - 10px);
            }

    .home-search-btn {
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .main-banner h1 {
        font-size: 36px;
        line-height: 1.1;
    }

    .featured-jobs .text-center p {
        margin-bottom: 20px;
    }

    .popular-search h2 {
        margin-bottom: 20px;
    }

    .popular-search-block {
        margin-bottom: 15px;
    }

    .featured-clients h2, .featured-jobs h2 {
        margin-bottom: 20px;
    }

    .browse-jobs h2 {
        margin-bottom: 20px;
    }

    .client-block > div {
        min-height: 100px;
    }

    .browse-tabs .jobs-list ul {
        max-height: 200px;
        overflow: auto;
    }

        .browse-tabs .jobs-list ul li {
            width: 100%;
        }

    .browse-tabs .nav-tabs {
        white-space: nowrap;
        display: flex;
        overflow-x: auto;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border: none;
    }

        .browse-tabs .nav-tabs li {
            margin-bottom: 0;
            border-bottom: 2px solid var(--white);
        }

    .upload-sec .upload-block {
        margin-bottom: 10px;
        display: block;
        text-align: center;
    }

        .upload-sec .upload-block h5 {
            margin-bottom: 10px;
        }

    .upload-sec .bottom-img {
        grid-gap: 100px;
    }

    .footer-top .social-icons {
        grid-gap: 12px;
    }

    footer .footer-bottom h1 {
        font-size: 36px;
        line-height: 1.1;
    }
    .search-block input[type="text"], .search-block select {
        margin-bottom:5px;
    }
    .otp-container .otp-box {
        width: 40px;
        height: 45px;
        font-size: 20px !important;
        padding: 5px !important;
    }
/***********Horizontal scroll***********/
    .popular-search-hold {
        display:inline-block;
        width:100%;
        overflow-x:auto;
    }
    .scroll-responsive {
        display: inline-block;
        width: 225%;
        margin-bottom: 20px;
    }
    .scroll-responsive .aos-animate, .scroll-responsive  .aos-init {
        display: inline-block;
    }
    .scroll-responsive  .aos-init.show{
        display: inline-block;
    }
    .row.first,
    .row.second,
    .row.three {
        flex: 0 0 100%; 
        max-width: 100%;
        scroll-snap-align: start;
        display: flex;
        flex-wrap: wrap; 
        justify-content:center;
        padding: 20px 0;
        max-width:350px;
    }
    .popular-search-block{
        width:300px;
    }
    .responsive-none {
        display:none;
    }
    .browse-jobs-responsive {
        display: block;
    }
        .browse-jobs-responsive .accordion {
            background: #1c2124;
            color: #fff;
            border: 1px solid #bdbdbd;
            /*border-radius: 10px;*/
            margin-bottom: 10px;
            font-weight: bold;
            border-radius:4px;
        }

    .advertise-banner {
        padding: 50px 0;
    }

    .section-pricing h2 {
        margin-bottom: 10px;
    }

    .connecting-brands-block {
        padding: 40px 20px;
    }

        .connecting-brands-block > div .btn {
            min-width: inherit;
        }
    .contact-us iframe {
        height: 250px;
    }
    .title-sec {
        border-top: none;
        /*margin-top: 0;*/
    }
    .search_drawer-inner .col-sm-4 {
        width: 70%;
        margin-right: 15px;
    }
    .search_drawer-inner .col-sm-8 .row .col-sm-6 {
        width: 100%;
    }
    .search_drawer-inner .col-sm-8 .row .col-sm-4 {
        width: 100%;
        margin-right: 0;
    }
    .search_drawer-inner .col-sm-8 .row {
        grid-gap: 0;
        margin: 0;
        grid-row-gap: 10px;
    }
        .search_drawer-inner .col-sm-8 .row .col-sm-4:first-child {
            margin-top: 10px;
        }
}

@media (max-width:576px) {
    .main-menu ul li.last-btn > div {
        flex-wrap: wrap;
        grid-gap: 10px;
    }

        .main-menu ul li.last-btn > div a {
            width: 100%;
        }

    .left-search-section > div > div {
        width: 100%;
    }
        .left-search-section > div > div.location {
            width: 100%;
        }

    .row.first,
    .row.second,
    .row.three {
        max-width: 320px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .search_drawer-inner .col-sm-4 {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .search_drawer-inner {
        flex-wrap: wrap;
    }
}


/*change*/
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}


    .browse-jobs-responsive .active, .accordion:hover {
        color: var(--green);
        border-color: var(--green);
    }


.browse-jobs-responsive .panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    background: #1c2124;
    margin-top: -10px;
    border-radius: 0px;
    padding: 20px;
    max-height: 327px;
    overflow:auto;
}
.browse-jobs-responsive button.accordion:after {
    font-family: "Material Icons";
    content: "keyboard_arrow_down";
    color: #777;
    font-weight: bolder;
    float: right;
    margin-left: 5px;
}
.browse-jobs-responsive button.accordion.active:after {
    content: "keyboard_arrow_up";
}
.browse-jobs-responsive .panel a {
    color: #fff;
    font-weight: 500;
}
.browse-jobs-responsive .panel ul li {
    margin-bottom:10px;
}
.browse-jobs-responsive .panel a:hover,
.browse-jobs-responsive .panel a:focus {
    color: var(--green);
}