.listhero_section {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 92px 0px 115px;
    text-align: center;
}

.listhero_text h6 {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 133.333%;
    color: rgba(40, 22, 75, 0.80);
    margin-bottom: 24px;
}

.listhero_text h2 {
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -1.5px;
    color: #28164B;
    margin-bottom: 24px;
    text-align: center;
}

.listhero_text h2 span {
    background: linear-gradient(90deg, #6B2ED9 0%, #5525AD 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.listhero_text p {
    font-family: Metropolis;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 133.333%;
    color: rgba(40, 22, 75, 0.80);
    text-align: center;
    max-width: 875px;
    width: 100%;
    margin: 0 auto 24px;
}

.search_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.search_box {
    max-width: 500px;
    width: 100%;
    position: relative;
}

.search_box button {
    width: 17px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    height: 15px;
    background: url('images/icons/search.svg') center center no-repeat;
    background-size: 17px 15px;
}

.search_box button img {
    width: 100%;
}

.search_box input {
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #3F2376;
    background: #FFF;
    border: 1px solid #CAC7D1;
    padding: 10px 12px;
    border-radius: 10px;
    padding-left: 36px;
    outline: none;
}

/* .search_box input::placeholder {
    color: #3F2376;
    opacity: 1;
} */

.search_button button {
    font-size: 14px;
    font-weight: 700;
    line-height: 142.857%;
    color: #FFF;
    background: #7325C1;
    display: inline-block;
    padding: 10.5px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px 0 rgba(107, 46, 217, 0.15);
    transition: 0.2s all ease;
}

.search_button button:hover {
    opacity: 0.85;
}

.search_button {
    flex-shrink: 0;
}

/*--------------- available section ----------------- */
.available_section {
    padding: 80px 0px;
}

.available_title h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 111.111%;
    letter-spacing: -0.9px;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 8px;
}

.available_title p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 171.429%;
    color: #444;
}

.available_wrapper {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding-top: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.available_leftcol {
    width: 23.8%;
}

.available_rightcol {
    width: 72%;
}

.filter_box {
    padding: 24px 24px;
    background: rgba(255, 255, 255, 0.50);
    border: 1px solid rgba(202, 199, 209, 0.40);
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6px);
    position: relative;
}

.close_btn {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 25px;
    right: 15px;
    cursor: pointer;
    display: none;
}

.close_btn img {
    width: 100%;
}

.filter_box h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 155.556%;
    letter-spacing: -0.45px;
    color: #28164B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter_box h3 img {
    width: 20px;
}

.filters_title {
    padding-left: 26px;
    background: url('images/icons/filter.svg') left center no-repeat;
    background-size: 20px 20px;
}

.filter_item {
    padding: 16px 0px;
    border-bottom: 1px solid #EAE9ED;
}

.filter_item p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #3F2376;
    margin-bottom: 12px;
}

.filter_item ul li a {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 133.333%;
    color: #3F2376;
    background: rgba(229, 227, 232, 0.30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 3px 12px 4px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.filter_item ul li a img {
    width: 13px;
}

.filter_item ul li a:hover {
    color: #FFF;
    background: #7325C1;
}

.filter_item ul li a.active {
    font-weight: 600;
    color: #FFF;
    /* background: #7325C1; */
    border-radius: 9999px;
    padding-right: 24px;
    background: #7325C1 url('images/icons/cross-white.svg') center right 6px no-repeat;
    background-size: 13px 13px;
}

.filter_item ul li {
    margin-bottom: 8px;
}

.filter_item ul li:last-child {
    margin-bottom: 0px;
}

.filter_box .filter_item:last-child {
    border-bottom: none;
    padding-bottom: 0rem;
}

.available_searchbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.availabel_searchBox {
    width: 100%;
    position: relative;
}

.availabel_searchBox button {
    width: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    height: 15px;
    background: url('images/icons/search.svg') center center no-repeat;
    background-size: 17px 15px;
}

.availabel_searchBox button img {
    width: 100%;
}

.availabel_searchBox input {
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #3F2376;
    background: #FFF;
    border: 1px solid #CAC7D1;
    padding: 10px 12px;
    border-radius: 10px;
    padding-left: 36px;
    outline: none;
}

/* .availabel_searchBox input::placeholder {
    color: #3F2376;
    opacity: 1;
} */

.sort_text {
    width: 30%;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sort_text p {
    font-size: 14px;
    font-weight: 400;
    color:#3F2376;
    white-space: nowrap;
}

.sort_text select {
    width: 152px;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #3F2376;
    background: #FFF;
    border: 1px solid #CAC7D1;
    padding: 10px 13px;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(new-img/down.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(100% - 12px) center;
}

.position_box {
    background: #FFF;
    border: 1px solid #F0F0F5;
    padding: 25px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.position_location {
    padding-left: 26px;
    background: url('images/icons/location.svg') left center no-repeat;
    background-size: 20px 20px;
}

.position_button {
    flex-shrink: 0;
}

.position_button a {
    font-size: 14px;
    font-weight: 700;
    line-height: 142.857%;
    color: #FFF;
    background: #7325C1;
    display: inline-block;
    padding: 10.5px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px 0 rgba(107, 46, 217, 0.15);
    transition: 0.2s all ease;
}

.position_button a:hover {
    opacity: 0.85;
}

.position_text h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.5px;
    color: #1A1A1A;
    margin-bottom: 3px;
}

.position_text h6 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 171.429%;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.position_text h6 img {
    width: 20px;
}

.position_text p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #444!important;
    margin-bottom: 16px;
}

.position_text a {
    font-size: 14px;
    font-weight: 500;
    color: #5525AD;
    line-height: 142.857%;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.position_text a img {
    width: 16px;
    margin-top: 2px;
}

.pagination_wrapper {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagination_arrow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination_arrow img {
    width: 20px;
}

.pagination_arrow img:hover {
    filter: brightness(0) saturate(100%) invert(33%) sepia(99%) saturate(1013%) hue-rotate(244deg) brightness(77%) contrast(105%);
}

.pagination_text ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pagination_text ul li a, .pagination_text ul li span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 171.429%;
    color: #1A1A1A;
    border-radius: 50%;
    transition: 0.2s all ease;
}

.pagination_text ul li a:hover,
.pagination_text ul li a.active,
.pagination_text ul li span.active {
    background: #813BC7;
    color: #FFF;
}

.filter_btn {
    display: none;
}


/* ====================== listing details page start =========================== */
.listdetails_hero {
    background: rgba(49, 31, 82, 0.02);
    padding: 64px 0px;
}

.listdetails_herotext a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #444;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: url('images/icons/left-dark.svg') left center no-repeat;
    background-size: 20px 20px;
    padding-left: 26px;
}

.listdetails_herotext p.has_location_icon {
    padding-left: 26px;
    background: url('images/icons/location.svg') left center no-repeat;
    background-size: 20px 20px;
}

.listdetails_herotext h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1.2px;
    color: #28164B;
    margin-top: 24px;
    margin-bottom: 12px;
}

.listdetails_herotext p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.listdetails_herotext p img {
    width: 20px;
    margin-top: 2px;
}

.apply_btn a {
    font-size: 16px;
    font-weight: 500;
    color: #28164B;
    background: url('images/icons/right-arrow.svg') right 24px center no-repeat;
    background-size: 20px 20px;
    background: gba(255, 255, 255, 0.90);
    border: 1px solid rgba(115, 37, 193, 0.10);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    padding-right: 54px;
    border-radius: 100px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(2px);
    transition: 0.2s all ease;
    margin-top: 24px;
}

.apply_btn a img {
    width: 20px;
}

.apply_btn a:hover {
    opacity: 0.8;
}


.listdetails_section {
    padding: 60px 0px;
}

.listdetails_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.listdetails_leftcol {
    width: 65.5%;
}

.listdetails_rightcol {
    width: 30.5%;
}

.listdetails_leftcol p {
    /* font-size: 18px; */
    /* font-weight: 500; */
    line-height: 155.556%;
    /* color: #3F2376; */
    margin-bottom: 25px;
}

.listdetails_leftcol h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 133.333%;
    letter-spacing: -0.6px;
    color: #28164B;
    margin-top: 32px;
    margin-bottom: 0;
}

.listdetails_leftcol ul {
    padding: 30px 0px 18px;
}

.listdetails_leftcol ul li {
    font-size: 18px;
    font-weight: 500;
    color: #3F2376;
    line-height: 155.556%;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.listdetails_leftcol ul li img {
    width: 24px;
}

.action_box {
    background: #FFF;
    border: 1px solid #CAC7D1;
    padding: 24px 24px;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.action_box h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.5px;
    color: #28164B;
    margin-bottom: 4px;
}

.action_box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 142.857% ;
    color: #3F2376;
    margin-bottom: 24px;
}

.action_box a {
    font-size: 14px;
    font-weight: 700;
    line-height: 142.857%;
    color: #FFF;
    background: #7325C1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px 0 rgba(107, 46, 217, 0.15);
    margin-bottom: 15px;
    transition: 0.2s all ease;
}

.action_box a img {
    width: 17px;
}

.action_box a:hover {
    opacity: 0.85;
}

.action_box a:last-child {
    margin-bottom: 0rem;
}

.action_box a.orange {
    background: #CF5117
}

.similar_heading h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.5px;
    color: #28164B;
    margin-top: 32px;
    margin-bottom: 24px;
}

.job_box {
    background: #FFF;
    border: 1px solid #F0F0F5;
    border-radius: 16px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
    padding: 25px 25px;
}

.job_box h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 155.556%;
    letter-spacing:  -0.5px;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.job_box h6 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 171.429%;
    color: #444;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.job_box h6 img {
    width: 20px;
}

.job_box p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #444;
    margin-bottom: 16px;
}

.job_box a {
    font-size: 14px;
    font-weight: 500;
    line-height: 142.857%;
    color: #5525AD;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.job_box a img {
    width: 16px;
}

.dark .listdetails_herotext a,
.dark .listdetails_herotext h1,
.dark .listdetails_herotext p,
.dark .listdetails_leftcol p,
.dark .listdetails_leftcol h4,
.dark .listdetails_leftcol ul li,
.dark .listhero_text h6,
.dark .listhero_text h2,
.dark .listhero_text p,
.dark .available_title h3,
.dark .available_title p,
.dark .sort_text p,
.dark .pagination_text ul li a,
.dark .similar_heading h4 {
    color: #FFF;
}

.dark .listdetails_herotext a img,
.dark .listdetails_herotext p img,
.dark .listdetails_leftcol ul li img,
.dark .filter_btn img {
    filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(85%) hue-rotate(155deg) brightness(119%) contrast(100%);
}

.dark .apply_btn a,
.dark .filter_box {
    background: #29292980 url('images/icons/right-orange.svg') right 24px center no-repeat;;
    color: white;
}

.dark .filter_box h3 {
    color: white;
}

.dark .filter_item p {
    color: white;
}

.dark .filter_item ul li a {
    color: white;
}

.dark .filter_item ul li a.active {
    background-color: #CF5117;
}

.dark .pagination_text ul li a, .dark .pagination_text ul li span {
    color: white;
}

.dark .position_box {
    background: #29292980;
    color: white;
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.dark .position_text h4, .dark .position_text h6, .dark .position_text p {
    color: white !important;
}

.dark .position_text a {
    color: #CF5117;
}

.dark .availabel_searchBox input {
    background: #212121;
    color: white;
}

.dark .search_button button, .dark .position_button a {
    background: #CF5117;
}

.dark .search_box input {
    background: #212121;
    color: white;
}

.dark .listhero_text h2 span {
    background: transparent;
    color: #e8693d;
    -webkit-text-fill-color: #e8693d;
}

.dark .availabel_searchBox button {
    background: url('images/icons/search-dark.svg') center center no-repeat;
}

.dark .filters_title {
    background: url('images/icons/filter-dark.svg') left center no-repeat;
}

.dark .position_location {
    background: url('images/icons/location-dark.svg') left center no-repeat;
}

.dark .search_box button {
    background: url('images/icons/search-dark.svg') center center no-repeat;
}

.dark .listdetails_hero {
    background: #29292980;
}

.dark .listdetails_herotext p.has_location_icon {
    padding-left: 26px;
    background: url('images/icons/location-dark.svg') left center no-repeat;
    background-size: 20px 20px;
}

/* --- Tablet | 991px and down ---- */
@media screen and (max-width: 991px) {

    .listhero_section {
        padding: 85px 0px 100px;
    }

    .listhero_text h6,
    .listhero_text p {
        font-size: 20px;
    }

    .listhero_text h2 {
        font-size: 50px;
    }

    .available_section {
        padding: 70px 0px;
    }

    .available_wrapper {
        padding-top: 50px;
        flex-direction: column;
    }

    .available_leftcol {
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 20px 20px;
        position: fixed;
        left: -110%;
        top: 0;
        transition: 0.25s all ease;
        z-index: 1024;
    }

    .available_leftcol.show  {
        background: #FFF;
        left: 50%;
        transform: translateX(-50%);
    }

    .available_rightcol {
        width: 100%;
    }

    .filter_btn {
        display: block;
    }

    .filter_btn button {
        width: 24px;
        display: block;
        text-align: center;
        cursor: pointer;
        margin-right: 10px;
    }

    .filter_btn img {
        width: 20px;
    }

    .available_searchbar {
        flex-wrap: wrap;
        gap: 16px;
    }

    .availabel_searchBox {
        width: 100%;
    }

    .close_btn {
        display: flex;
    }

    .listdetails_hero {
        padding: 50px 0px;
    }

    .listdetails_herotext h1 {
        font-size: 36px;
    }

    .listdetails_section {
        padding: 55px 0px;
    }

    .listdetails_wrapper {
        flex-direction: column;
    }

    .listdetails_leftcol {
        width: 100%;
    }

    .listdetails_rightcol {
        width: 100%;
        margin-top: 30px;
    }

}


/* --- Mobile | 767px and down ---- */
@media screen and (max-width: 767px) {

    .listhero_section {
        padding: 70px 0px 80px;
    }

    .listhero_text h6,
    .listhero_text p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .listhero_text h2 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .available_section {
        padding: 60px 0px;
    }

    .available_title h3 {
        font-size: 30px;
    }

    .position_box {
        flex-direction: column;
    }

    .sort_text {
        width: 60%;
    }

    .available_wrapper {
        padding-top: 40px;
    }

    .available_leftcol {
        padding: 15px 15px;
    }

    .position_box {
        padding: 20px 20px;
    }

    .listdetails_herotext h1 {
        font-size: 30px;
    } 

    .listdetails_section {
        padding: 50px 0px;
    }

    .listdetails_leftcol p {
        font-size: 16px;
        margin-bottom: 21px;
    }

    /* .listdetails_leftcol ul li {
        font-size: 16px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .listdetails_leftcol ul li img {
        width: 20px;
        margin-top: 5px;
    } */

    .listdetails_rightcol {
        margin-top: 20px;
    }


}


/*----- xs devices 575px and down -----*/
@media screen and (max-width: 575px)  {

    .search_bar {
        flex-direction: column;
    }
    .search_box {
        width: 100%;
    }

}

.job_post-template-default .action-box {
    border: 1px solid #CAC7D1;
    width: 20rem;
    min-height: 200px;
    padding: 1rem 1.5rem;
    background: white;
    margin-top: 2rem;
}

.job_post-template-default .action-box p {
    margin-bottom: 1rem;
}

.job_post-template-default .action-box .action-title{
    font-size: 1.25rem;
    color: #28164B;
    line-height: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.job_post-template-default .action-box .action-text{
    font-size: 0.875rem;
    color: #3F2376;
}

.job_post-template-default .action-box a.action-button {
    display: block;
    border-radius: 8px;
    background: #CF5117;
    color: white;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}
.job_post-template-default .action-box a.action-button.purple {
    background: #7325C1;
}

@media (min-width: 1024px) {
    .job_post-template-default .action-box {
        position: absolute;
        right: 2rem;
        top: 0px;
        margin-top: 0;
    }

    .listdetails_wrapper {
        min-height: 280px;
    }
}