@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --black-clr: #000000;
    --white-clr: #fff;
    --primary-clr: #77742F;
    --text-333: #333333;
    --text-666: #666666;
    --text-DEDE: #DEDEDE;
    --text-CDCD: #CDCDCD;
    --text-BA: #BABABA;
    --text-2E: #2E2E2E;
}


html,
body {
    font-family: "Inter", sans-serif;
    color: var(--black-clr);
    position: relative;
}

ul {
    margin-bottom: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--black-clr);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

button,
textarea,
input {
    border: 0;
    outline: none;
}

.flex {
    display: flex;
}

.item-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pg-main-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;

}

.sec-heading {
    font-size: 35px;
    font-weight: 700;
    line-height: 45px;
    color: var(--black-clr);
}

.sec-heading span {
    color: var(--primary-clr)
}

.cmn-btn {
    border-radius: 59px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    min-width: 195px;
    justify-content: center;
    min-height: 50px;
}

.blk-btn span,
.wht-btn span {
    position: absolute;
    right: 24px;
    display: block;
    height: 2px;
    width: 15px;
    background-color: var(--white-clr);
    border-radius: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .3s ease;
}

.blk-btn {
    background: #000;
    color: white;
    transition: .3s ease;
    border: 1px solid transparent;
    position: relative;
}

.blk-btn:hover {
    background: var(--primary-clr);
    color: var(--white-clr);
    border: 1px solid var(--primary-clr);
}

.blk-btn i {
    font-size: 16px;
    transition: .3s ease;

}

.blk-btn:hover i {
    transform: translateX(10px);
}


.blk-btn:hover span {
    opacity: 1;
}

.wht-btn {
    background: white;
    color: #000;
    transition: .3s ease;

}

.wht-btn:hover {
    background: #000;
    color: white;
}

.wht-btn i {
    opacity: 1;
    transition: .3s ease;
}

.wht-btn:hover i {
    transform: translateX(10px);
}

.wht-btn:hover span {
    opacity: 1;
}

/* ---Navbar-- */
.navbar {
    padding: 15px 0 14px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    border-bottom: 1px solid var(--text-DEDE);
    background: white;
    z-index: 9;
}

.auth-btn-box .cmn-btn {
    gap: 5px;
}

.nagivator-wrapper {
    margin-left: auto;
}


.nav-link {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    transition: .3s ease;
    color: var(--text-333);
    border-radius: 50px;
    padding: 14px 16px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white-clr);
    background: var(--primary-clr);
}

.nav-links li:nth-of-type(1) a.active {
    background: transparent;
    color: var(--text-333);
}

.nav-links li:nth-of-type(1) a:hover {
    color: var(--white-clr);
    background: var(--primary-clr);
}

.nav-job-btn .other-nav-link {
    border: 1px solid #000;
    min-width: 145px;
    margin-inline: 24px 38px;
    background: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    transition: .3s ease;
    justify-content: center;
    min-height: 50px;
}

.nav-job-btn .other-nav-link:hover {
    color: var(--white-clr);
    background: var(--primary-clr);
    border-color: var(--primary-clr);
}

.sec-area-inner {
    max-width: 1298px;
    border-radius: 30px 30px 0px 0px;
    margin: auto;
}

/* ------Hero Section--- */


.grad-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.grad-bg div {
    border-radius: 50%;
    height: 740px;
    position: absolute;
    width: 740px;
    filter: blur(100px);
}

.grad-bg .bg-tl,
.grad-bg .bg-br {
    background: rgba(184, 184, 184, 0.1);
}

.grad-bg .bg-tr,
.grad-bg .bg-bl {
    background: rgba(161, 154, 154, 0.1);

}

.grad-bg .bg-tl {
    left: -240px;
    top: -240px;
}

.grad-bg .bg-bl {
    left: -320px;
    bottom: -495px;
}

.grad-bg .bg-tr {
    right: -200px;
    top: -400px;
}

.grad-bg .bg-br {
    right: -140px;
    bottom: -530px;
}

.hero-section {
    margin-top: 95px;
    overflow: hidden;
}

.hero-section .grad-bg .bg-tl,
.hero-section .grad-bg .bg-br {
    background: rgb(179 179 179 / 10%);
}

.hero-section .grad-bg .bg-tr,
.hero-section .grad-bg .bg-bl {
    background: rgb(181 181 181 / 10%);
}

.hero-left-col {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
}

.hero-left-col .cta span {
    right: 40px;
}

.arrow-art {
    position: absolute;
    right: 44px;
    z-index: 1;
    bottom: -44px;
    max-height: 200px;
}

.hero-heading {
    max-width: 340px;
    font-family: "Poppins", sans-serif;

}

.sec-area-inner {
    position: relative;
}

.hero-section .sec-area-inner {
    padding: 62px 0 42px;
    overflow: hidden;
}

.hero-right-col img {
    width: 85%;
}

.hero-section .cus-container {
    height: 100%;
}

.hero-heading span {
    color: var(--primary-clr);
}

.hero-para {
    margin: 25px 0;
}

.hero-right-col {
    width: 100%;
    text-align: end;
}

.portfolio-counter {
    background: var(--black-clr);
    color: var(--white-clr);
    padding: 41px 0 46px;
}

.portfolio-counter .counter-wrapper {
    justify-content: space-between;
    text-align: center;
}

.portfolio-counter .counter-wrapper h3 {
    font-size: 80px;
    font-weight: 700;
    line-height: 97px;
}

.portfolio-counter .counter-wrapper span {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    color: var(--text-BA)
}

/* -----Services-Section-- */


.services-section {
    padding: 121px 0 130px;
}

.services-section .sec-heading {
    text-align: center;
}

.services-section .sec-heading {
    margin-bottom: 40px;
}


.srv-card-wrapper .srv-card {
    box-shadow: 9px 14px 25px 5px #8484841A;
    border-radius: 20px;
    padding: 45px 35px 28px;
    height: 324px;
    display: flex;
    flex-direction: column;

}

.srv-card-wrapper:hover .srv-card.srv-card-main .title,
.srv-card-wrapper:hover .srv-card.srv-card-main .info-para,
.srv-card-wrapper:hover .srv-card.srv-card-main .other {
    color: white;
}

.srv-card.srv-card-main {
    position: relative;
    overflow: hidden;
}

.srv-card-wrapper .srv-card.srv-card-main::after {
    content: ' ';
    position: absolute;
    inset: 0;
    z-index: -1;
    transition: .3s ease;
    background-size: cover;
    opacity: 0;
}

.srv-card-wrapper:hover .srv-card.srv-card-main::after {
    opacity: 1;
}

.srv-card-wrapper:nth-of-type(1) .srv-card.srv-card-main::after {
    background: url(../assets/images/contract-staffing-hvr.png) no-repeat;
    background-size: cover;
}

.srv-card-wrapper:nth-of-type(2) .srv-card.srv-card-main::after {
    background: url(../assets/images/recruitment-hvr.png) no-repeat;
    background-size: cover;
}

.srv-card-wrapper:nth-of-type(3) .srv-card.srv-card-main::after {
    background: url(../assets/images/labour-hvr.png) no-repeat;
    background-size: cover;
}

.srv-card-wrapper:nth-of-type(4) .srv-card.srv-card-main::after {
    background: url(../assets/images/housekeeping-hvr.png) no-repeat;
    background-size: cover;
}

.srv-card-wrapper:nth-of-type(5) .srv-card.srv-card-main::after {
    background: url(../assets/images/All-legal-hvr.png) no-repeat;
    background-size: cover;
}

.srv-card .title {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: var(--text-2E);
    margin: 20px 0 12px;
    transition: .3s ease;

}

.srv-card .info-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--text-333);
    transition: .3s ease;

}

.srv-card .other {
    margin-top: auto;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: var(--primary-clr);
    display: block;
    width: fit-content;
    transition: .3s ease;

}

.srv-card.get-touch {
    background: var(--primary-clr);
}

.srv-card.get-touch .sec-heading {
    text-align: left;
    margin-bottom: 8px;
    color: white;
}

.srv-card.get-touch .info-para {
    font-weight: 500;
    color: #CDCDCD;
}

.srv-card.get-touch .other a {
    font-size: 14px;
    line-height: 14px;
    min-width: 142px;
    gap: 7px;
    position: relative;
    transition: background .4s ease;
}

/* .srv-card-wrapper {
    max-width: 340px;
} */

.srv-card-main .icon {
    position: relative;
}

.srv-card-main .srv-cd-icon {
    transition: all .3s;

}

.srv-card-main .cd-icn-sub {
    position: absolute;
    opacity: 0;
    left: 0;
}

.srv-card-wrapper:hover .srv-card.srv-card-main .srv-cd-icon {
    opacity: 0;
}

.srv-card-wrapper:hover .srv-card.srv-card-main .cd-icn-sub {
    opacity: 1;
}

.srv-card-outside {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    padding: 0;
}

/* ----recuirt section---- */
.about-section .sec-area-inner {
    padding: 102px 0;
    border-radius: 30px;
    overflow: hidden;
}

.abt-left-col.left-cus-col img {
    user-select: none;
    pointer-events: none;
}

.abt-right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 554px;
}

.abt-heading {
    max-width: 496px;
}

.abt-para {
    color: var(--text-333);
    margin-bottom: 20px;
}

.para-box {
    margin: 18px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.abt-para:last-of-type {
    margin: 0;
}

.cta,
.abt-btn {
    display: flex;
}

.abt-btn .cmn-btn,
.cta .cmn-btn {
    gap: 13px;
}

.abt-btn .blk-btn span {
    right: 27px;
}

.abt-left-col {
    position: relative;
}

.abt-arrow {
    position: absolute;
    right: 46px;
    z-index: 1;
    bottom: -118px;
}

.abt-btn .cmn-btn {
    min-width: 175px;
    gap: 5px;
}

/* ---video section-- */
#video-sec {
    display: none;
}

.video-section {
    padding: 130px 0 117px;
}

.vdo-frame {
    border-radius: 20px;
    height: 319px;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 0;
    position: relative;
    width: 100%;
}

.vdo-frame::after {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all .3s;
}

.vdo-frame:hover::after {
    opacity: .7;

}

.vdo-frame .yt-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: auto;
    max-height: 44px;
}

.vdo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.vdo-frame:hover .vdo-thumb {
    height: 105%;
}


.vdo-info h4,
.vdo-info p {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    color: var(--text-2E);
}

/* --download app section-- */
.dn-file-section {
    padding-bottom: calc(127px - 32px);
}

.dn-file-left-col {
    flex-direction: column;
    max-width: 480px;
    padding: 0;
    justify-content: center;
    position: relative;
    padding-left: 36px;
}

.dn-file-left-col .arrow-art {
    left: -78px;
    bottom: 5px;
    max-height: 178px;
}

.dn-file-left-col p {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: var(--text-2E);
    margin: 25px 0;
}

.dn-file-left-col .blk-btn {
    min-width: 214px;
}

.dn-file-left-col .blk-btn span {
    right: 21px;
}

/* -----_FOOTER--- */
.footer {
    border-radius: 50px 50px 0 0;
    background: #000;
    padding: 31px 0 0;
    position: relative;
    overflow: hidden;
    background: #FFFFFB;
}

.footer::before {
    content: ' ';
    position: absolute;
    top: -131px;
    width: 100%;
    height: 177px;
    background: #77732f34;
    filter: blur(95px);
    z-index: 0;
    pointer-events: none;
}

.footer::after {
    content: ' ';
    position: absolute;
    width: 801px;
    height: 801px;
    filter: blur(95px);
    left: 50%;
    transform: translateX(-50%);
    bottom: -141.71%;
    background: rgb(119 115 47 / 30%);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.footer .container {
    padding: 0;
    position: relative;
    z-index: 1;
}

.ft-head {
    color: var(--white-clr);
}

.ft-header {
    padding-bottom: 25px;
    position: relative;
}

.social-wrapper {
    gap: 17px;
    justify-content: flex-start;
    margin-top: 38px;
}

.social-wrapper .social-link {
    --sz: 25px;
    height: var(--sz);
    width: var(--sz);
    background: url(../assets/icons/social-icon-sprite.svg);
    overflow: hidden;
    transition: all .2s ease-in-out;
}


.social-wrapper .social-link.ig-link {
    background-position: -42px;
}

.social-wrapper .social-link.ldn-link {
    background-position: calc(-42px * 2);
}

.social-wrapper .social-link.yt-link {
    background: url("../assets/icons/yt-logo.svg") no-repeat center;
    background-size: cover;
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 3px;
}

.social-link:hover {
    filter: drop-shadow(2px 2px 5px var(--primary-clr));
}

.social-wrapper .social-link.yt-link:hover {
    box-shadow: none;

}

.ft-copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 27px;
    color: #222222;
    padding-bottom: 8px;
}

.ft-middle {
    padding-top: 25px;
}

.ft-lists .ft-nav-item {
    margin-bottom: 8px;
}

.usef-col .ft-lists .ft-nav-item {
    margin-bottom: 2px;
}

.ft-lnk-title {
    color: var(--primary-clr);
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    margin-bottom: 19px;
    display: block;
}

.ft-hlp-col .ft-lnk-title {
    margin-bottom: 15px;
}


.ft-nav-item a {
    display: inline-block;
    color: var(--text-333);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    transition: all .2s ease-in-out;
    width: fit-content;
}

.ft-nav-item a .icon {
    height: 18px;
    display: inline-block;
    margin-right: 10px;
    min-width: 18px;
}

.ofc-col .ft-nav-item a,
.ft-hlp-col .ft-nav-item a,
.ofc-other-col .ft-nav-item a {
    display: flex;
}

.ft-nav-item a .icon img {
    width: 100%;
    height: 100%;
}

.ft-nav-item a:hover,
.ft-nav-item a.active {
    color: var(--primary-clr);
}

.ft-md-col {
    margin-right: auto;
    padding: 0;
}

.ft-md-col:last-of-type {
    margin-right: auto;
}

.usef-col {
    max-width: 136px;
    width: 100%;
}

.ofc-col {
    max-width: 314px;
    width: 100%;
}

.ofc-other-col {
    max-width: 307px;
    width: 100%;
}

.ft-middle .row {
    padding: 0 12px;
    justify-content: center;
}

.clnt-link {
    margin-bottom: 38px;
}

.dn-file-right-col {
    width: calc(100% - 480px);
    max-height: 417px;
    text-align: end;
}

.dn-file-right-col img {
    width: auto;
    height: 100%;
    transform: translateY(50px);
    margin-left: 159px;
}

.ham-btn {
    display: none;
}

.overlay {
    display: flex;
    pointer-events: none;
    position: absolute;
    background: var(--black-clr);
    opacity: 0;
    transition: all .3s ease;
    z-index: 2;
    height: 100%;
    width: 100%;
    left: 0;
}

.overlay.ham-menu-active {
    opacity: .7;
    pointer-events: all;

}

.video-mdl-dlg {
    max-width: 600px;
}

.video-mdl-dlg .modal-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    max-width: calc(100% - 35px);
    color: var(--text-333);
}

.vdo-mdl-frm {
    height: 250px;
    width: 100%;
    border-radius: 10px;
}

/* ---ABOUT US PG--- */

.oth-pg-header {
    margin-top: 95px;
    max-width: 1298px;
    margin-inline: auto;
    border-radius: 0 0 30px 30px;
    padding: 101px 0;
    background: var(--primary-clr);
    position: relative;
    overflow: hidden;
}

.oth-pg-header::before {
    content: ' ';
    position: absolute;
    right: 0;
    pointer-events: none;
}

.about-header.oth-pg-header::before {
    min-height: 1017px;
    width: 557px;
    top: -322px;
    background: url(../assets/images/sec-header-bg1.png) no-repeat;
    background-position: right;
    transform: rotate(-37deg);
}


p.oth-head-para {
    max-width: 557px;
    margin-top: 10px;
}

.head-col-box {
    color: var(--white-clr);
    position: relative;
}

.head-col-box .pg-main-heading {
    font-size: 50px;
}

.head-col-box span {
    color: var(--black-clr);
}

.oth-sec-area-inner.sec-area-inner {
    background: var(--white-clr);
}

/* ---Mission Section-- */

.mist-sec {
    padding: 130px 9px;
}

.mist-card {
    padding-inline: calc(30px - 12px);
    border-radius: 20px;
    height: 489px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding-block: 38px 030px;
    transition: all .3s ease;

}

.mist-card:hover {
    box-shadow: 9px 14px 25.6px 5px #8484841A;
}

.mist-card .content .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: var(--text-333);
    margin: 23px 0 15px;
}

.mist-card .content .info {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--text-666);
    padding-right: 13px;
}

.map-sec .sec-area-inner {
    padding: 87px 9px 15px;
    border-radius: 30px;
    overflow: hidden;
}

.map-content .info-para,
.map-content .city-listing .city-item {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-333);
}

.city-item {
    display: flex;
    align-items: center;
}

.map-content .info-para {
    margin: 19px 0 22px;
    line-height: 25px;
    max-width: 487px;
}

.list-icon {
    background: url(../assets/icons/list-icon.png) no-repeat center;
    height: 18px;
    width: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.city-listing {
    display: flex;
    gap: 30px;
}

.city-listing ul {
    min-width: 167px;
}

.city-listing .city-item {
    line-height: 30px;
}

.map-bg {
    text-align: end;
}

.ofc-map-img {
    transform: translateY(-46px);
    filter: drop-shadow(20px 30px 9px #77777740);
}

.choose-us-sec {
    padding: 130px 21px;
}

.choose-us-sec .sec-heading {
    text-align: left;
    margin-left: -12px;
    margin-bottom: 35px;
}

.choose-us-sec .csu-card {
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 30px;
    height: 419px;
    color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.choose-us-sec .csu-card .icon {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.choose-us-sec .csu-card .content {
    max-width: 175px;
    position: relative;
    z-index: 1;
}

.choose-us-sec .csu-card .content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.choose-us-sec .csu-card .content p:not(:last-of-type) {
    margin-bottom: 20px;
}

.choose-us-sec .cus-col .csu-card {
    position: relative;
}

.choose-us-sec .cus-col:nth-child(1) .csu-card {
    background: #77742F;
}

.choose-us-sec .cus-col:nth-child(2) .csu-card {
    background: #8F8D58;
}

.choose-us-sec .cus-col:nth-child(3) .csu-card {
    background: #00000099;

}

.choose-us-sec .cus-col:nth-child(4) .csu-card {
    background: #000000;
}

.choose-us-sec .cus-col .csu-card::after {
    content: ' ';
    position: absolute;
    inset: 0;
}

.choose-us-sec .cus-col:nth-child(1) .csu-card::after {
    background: url('../assets/images/low-charge-bg.png') no-repeat;
    background-position: bottom right;
}

.choose-us-sec .cus-col:nth-child(2) .csu-card::after {
    background: url('../assets/images/candidate-bg.png') no-repeat;
    background-position: bottom right;
}

.choose-us-sec .cus-col:nth-child(3) .csu-card::after {
    background: url('../assets/images/manage-hr-bg.png') no-repeat;
    background-position: bottom right;
}

.choose-us-sec .cus-col:nth-child(4) .csu-card::after {
    background: url('../assets/images/communication-bg.png') no-repeat;
    background-position: bottom right;
}

/* ---Client section-- */
.client-section {
    padding: 130px 0 100px;
    overflow: hidden;
}


.client-section .sec-heading {
    text-align: center;
}

.slide-img-sub {
    position: absolute;
    opacity: 0;
    transition: all .3s ease;
}

.client-slider {
    padding: 30px 0 0;
    display: flex;
    overflow: hidden;
}

.slider-item {
    border-radius: 10px;
    min-width: 263px;
    max-width: 263px;
    height: 200px;
    width: 100%;
    display: flex;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    position: relative;
}

.slider-item:hover {
    /* box-shadow: 9px 14px 25px 5px #8484841A; */
    box-shadow: 9px 14px 15px 5px #84848423;
}

.slider-item:hover .slide-img-sub {
    opacity: 1;
}

.client-slider .slick-slide {
    padding: 30px 20px !important;
}

.group-sec .inner-section {
    max-width: 1400px;
    margin: auto;
    width: 100%;
    /* min-height: 463px; */
    min-height: 506px;
    position: relative;
}

.group-sec .inner-section img {
    /* max-height: 463px; */
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
}

/* -------OUR SERVICES PAGE----- */

.our-srvc-header p.oth-head-para {
    max-width: 447px;
}

.our-srvc-header.oth-pg-header::before {
    background: url(../assets/images/sec-header-bg3.png) no-repeat;
    min-width: 569px;
    min-height: 356px;
    top: 0;
    left: 50px;
    background-position: right;
    right: 80px;
}

.services-sec-item {
    display: flex;
    max-width: 1140px;
    margin: auto;
}

.item-col {
    max-width: 50%;
    flex: 0 0 50%;
}

.services-sec-wrapper {
    max-width: 1298px;
    margin: auto;
    padding: 130px 0;
}

.services-sec-item .content-box {
    position: relative;
}

.services-sec-item .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.services-sec-item .title {
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    color: var(--text-2E);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.services-sec-item .info-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--text-333);

}


.services-sec-item:not(:last-of-type) {
    margin-bottom: 100px;
}

.services-sec-item:nth-child(even) .img-inner {
    margin-left: auto;
    text-align: end;
}

.services-sec-item:nth-child(odd) .content {
    max-width: 467px;
}

.services-sec-item:nth-child(even) .content {
    max-width: 604px;
    padding-left: 97px;
}

.services-sec-item:nth-child(even) .content-box {
    max-width: 55%;
    flex: 0 0 55%;
}

.services-sec-item:nth-child(even) .img-box {
    max-width: 45%;
    flex: 0 0 45%;
}

.content-box::after {
    content: ' ';
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: 150px;
    max-height: 150px;
}

.services-sec-item:nth-child(odd) .content-box::after {
    top: 0;
    right: -79px;
}

.services-sec-item:nth-child(even) .content-box::after {
    bottom: 0;
    left: -79px;
}

.services-sec-item:nth-child(1) .content-box::after {
    background: url(../assets/images/staff-light.png) no-repeat;
    background-size: contain;
}

.services-sec-item:nth-child(2) .content-box::after {
    background: url(../assets/images/recruite-light.png) no-repeat;
    background-size: contain;
}

.services-sec-item:nth-child(3) .content-box::after {
    background: url(../assets/images/labour-light.png) no-repeat;
    background-size: contain;
}

.services-sec-item:nth-child(4) .content-box::after {
    background: url(../assets/images/house-light.png) no-repeat;
    background-size: contain;
}

.services-sec-item:nth-child(5) .content-box::after {
    background: url(../assets/images/stamp-light.png) no-repeat;
    background-size: contain;
}

/* ----process section-- */
.process-sec .sec-area-inner {
    padding: 121px 21px 128px;
    border-radius: 30px;
    overflow: hidden;
    background: url(../assets/images/arrow-lines.svg) no-repeat;
    background-size: contain;
    background-position: center;
}

.process-sec .sec-heading {
    margin-bottom: 56px;
}


.prc-card {
    cursor: default;
    display: flex;
    gap: 10px;
}

.prc-card .counter {
    font-size: 150px;
    font-weight: 700;
    line-height: 150px;
    font-family: "DM Sans", sans-serif;
    transition: opacity .2s;
}

.prc-card .counter.counter-main {
    color: rgba(119, 116, 47, 1);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(119, 116, 47, 1);
}

.prc-card .counter.counter-back {
    position: absolute;
    left: 0;
    color: rgba(119, 116, 47, 0.2);
    transform: translate(4px, 5px);
    top: 0;
}

.prc-card .counter.counter-sub {
    top: 0;
    opacity: 0;
    position: absolute;
    left: 0;
    color: var(--primary-clr);
}

.prc-card:hover .counter {
    opacity: 0;
}

.prc-card:hover .counter.counter-sub {
    opacity: 1;
}

/* .prc-card .num-icon {
    transition: all .3s ease;
}

.prc-card:hover .num-icon {
    opacity: 0;

}

.prc-card .num-icon-sub {
    left: 0;
    opacity: 0;
}

.prc-card:hover .num-icon-sub {
    opacity: 1;
} */


.prc-card .content h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    color: var(--text-2E);
    margin-bottom: 5px;
    text-transform: capitalize;
}

.prc-card .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--text-333);
}

.process-sec .row {
    row-gap: 41px;
}

/* ---CLIENT PAGE-- */

.clnt-header.oth-pg-header::before {
    background: url(../assets/images/sec-header-bg2.png) no-repeat;
    min-width: 660px;
    min-height: 675px;
    top: 0;
    right: 25px;
}

.clnt-header p.oth-head-para {
    max-width: 455px;
}

.clnt-card {
    height: 200px;
    box-shadow: 0px 5px 15px 0px #00000026;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.clnt-card-wrapper {
    padding: 130px 0px;
    display: grid;
    gap: 30px;
    /* grid-template-columns: repeat(4, 1fr);  */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 0 -12px;
}

.clnt-card-wrapper .clnt-card img {
    width: 100%;
    /* aspect-ratio: 6/4; */
    object-fit: contain;
}

/* ---------GALLERY PAGE-------- */

.glry-header.oth-pg-header::before {
    background: url(../assets/images/sec-header-bg4.png) no-repeat;
    top: -13px;
    min-width: 621px;
    min-height: 348px;
}

.glry-header p.oth-head-para {
    max-width: 487px;
}

.glry-inner {
    padding: 130px 21px;
}

.glry-tab .tab-nav-link.active,
.glry-tab.show>.tab-nav-link {
    color: var(--white-clr);
    background: var(--primary-clr);
}

.glry-tab .tab-nav-link {
    padding: 13px 0;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    background: #EBEBEB;
    transition: all .3s;
    width: 100%;
}


.glry-tab .tab-nav-link:hover {
    background: var(--primary-clr);
    color: var(--white-clr);

}

ul.glry-tab {
    gap: 20px;
    justify-content: space-between;
    display: flex;
    padding: 20px;
    border-radius: 50px;
    box-shadow: 0px 0px 20px 0px rgba(101, 101, 101, 0.1);
    background: #fff;
    margin-bottom: 32px;
}

.glry-tab li {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
}

.glry-tab-content {
    padding-top: 52px;
    margin: 0 -12px;
}

.photo-wrapper .photo-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 20px 20px 0px #93939333;
}

.photo-wrapper .grid-item {
    margin-bottom: 20px;
}

.photo-wrapper .photo-card::after {
    content: "";
    background: linear-gradient(transparent, black);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(100%);
    transition-duration: .5s;
}

.photo-wrapper .photo-card:hover::after {
    transform: translateY(50%);
}

.photo-wrapper .photo-card>* {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: .5s;
}

.photo-wrapper .photo-card:hover>img {
    transform: scale(1.05);
}


/* ---CONTACT US PAGE--- */
.contactUs-header.oth-pg-header::before {
    min-height: 1017px;
    width: 557px;
    top: -268px;
    background: url(../assets/images/sec-header-bg1.png) no-repeat;
    background-position: right;
    right: 80px;
}

.contactUs-header .oth-head-para {
    max-width: 455px;
}

.map-section-area {
    padding: 130px 21px;
    max-width: 1370px;
    margin: auto;
}

.hero-section .container,
.about-section .container,
.map-sec .container,
.process-sec .container {
    position: relative;
}

.get-touch-box {
    position: relative;
    /* padding-bottom: 94px; */
    min-height: 235px;
    gap: 58px;
}

.get-touch-box .left-col .sec-heading {
    margin-bottom: 24px;
}

.get-touch-box .left-col .blk-btn span {
    right: 20px;
}

.get-touch-box .arrow {
    position: absolute;
    bottom: 0;
    left: -104px;
}

.get-touch-box .left-col {
    padding-top: 12px;
}

.get-touch-box .right-col {
    gap: 45px;
}

.get-touch-box .cta {
    gap: 20px;
    flex-wrap: wrap;
}

.get-touch-box .cta .wts-app-btn {
    gap: 5px;
    min-width: 215px;
}

.get-touch-box .cta .wts-app-btn:hover i {
    transform: none;
}

.get-touch-box .right-col .card-title {
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    color: var(--text-2E);
    margin-bottom: 20px;
}

.map-section-area .hlp-lists li:not(:last-of-type) {
    margin-bottom: 11px;
}

.map-content .hlp-lists li:not(:last-of-type) {
    margin-bottom: 20px;
}

.map-section-area .hlp-lists li .hlp-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--text-333);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: fit-content;
}

.map-section-area .hlp-lists li .hlp-item .icon {
    --sz: 40px;
    height: var(--sz);
    width: var(--sz);
    min-width: var(--sz);
    border-radius: 50%;
    background: #77742F33;
    position: relative;
    transition: .3s ease-in-out;
}

.map-section-area .hlp-lists li .hlp-item:hover .icon {
    background: var(--primary-clr);
}

.map-section-area .hlp-lists li .hlp-item .icon::after {
    height: 100%;
    width: 100%;
    content: ' ';
    position: absolute;
    transition: .3s ease-in-out;
}

.map-section-area .hlp-lists li .hlp-item:hover .icon::after {
    filter: brightness(0) invert(1);
}

.map-section-area .hlp-lists li .hlp-item .icon.email-icon::after {
    background: url(../assets/icons/email-icon.png) no-repeat center;
}

.map-section-area .hlp-lists li .hlp-item .icon.call-icon::after {
    background: url(../assets/icons/call-icon.png) no-repeat center;
}

.map-section-area .hlp-lists li .hlp-item .icon.location-icon::after {
    background: url(../assets/icons/map-icon.png) no-repeat center;
}

.map-section-area .hlp-lists li .hlp-item .icon.clock-icon::after {
    background: url(../assets/icons/clock-icon.png) no-repeat center;
}

.map-content .title {
    margin-bottom: 30px;
}

.map-section-area .hlp-lists li .hlp-item.location-item {
    align-items: flex-start;
    max-width: 353px;
}

.map-details:not(:last-of-type) {
    margin-bottom: 30px;
}

.map-details {
    display: flex;
}

.map-container {
    margin-top: 30px;
}

.map-section-area .map-content {
    padding: 108px 50px;
    box-shadow: 0px 0px 30px 0px #44444426;
    border-radius: 20px;
    max-width: 750px;
    width: 100%;
}

.map-details {
    position: relative;
}

.map-frame-main {
    max-width: 555px;
    max-height: 481px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: absolute;
}

.map-frame-main .place-card {
    display: none !important;
    pointer-events: none;
}

.photo-wrapper {
    column-count: 4;
}

.ft-logo img {
    min-width: 98px;
}

.slick-slide img {
    display: block;
    /* width: 100%; */
    /* aspect-ratio: 6/4; */
    /* height: 100%; */
    object-fit: contain;
    pointer-events: none;
    max-width: 100%;
}

/* ---Media Queries--- */
@media screen and (min-width:1400px) {

    .prc-card .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .ofc-map-img {
        width: 89%;
    }

    .arrow-art {
        right: 80px;
        max-height: 234px;
    }

    .sec-area-inner,
    .oth-pg-header {
        max-width: 1570px;
    }

    .srv-card-wrapper:nth-of-type(4) .srv-card.srv-card-main::after {
        background-size: 120%;
        background-position: center;
    }

    .map-container {
        max-width: 1190px;
        margin-inline: auto;
    }
}

@media screen and (max-width:1300px) {
    .dn-file-right-col img {
        height: 98%;
        margin-left: 140px;
    }

    .content-box::after {
        max-width: 100px;
        max-height: 100px;
    }

    .services-sec-item:nth-child(odd) .content-box::after {
        right: -40px;
    }

    .services-sec-item:nth-child(even) .content-box::after {
        left: -40px;
    }

    .services-sec-item .img-inner {
        width: 400px;
        height: 300px;
    }

    .services-sec-item {
        max-width: 960px;
    }

    .content-box::after {
        max-width: 70px;
    }

    .services-sec-item:nth-child(even) .content {
        padding-left: 70px;
    }

    .services-sec-item .img-inner img {
        width: 100%;
    }
}

@media screen and (max-width:1199px) {
    .choose-us-sec .csu-card .content p {
        font-size: 18px;
        line-height: 27px;
    }

    .services-sec-wrapper {
        overflow: hidden;
    }

    .dn-file-right-col img {
        margin-left: 50px;
        width: 94%;
        height: 100%;
    }

    .nagivator-wrapper {
        margin-right: 25px;
    }

    .hero-left-col .arrow-art {
        max-height: 148px;
        right: 18px;
    }

    .dn-file-left-col .arrow-art {
        left: -68px;
        bottom: -15px;
        max-height: 158px;
    }

    .ham-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 21px;
        cursor: pointer;
        height: 18px;
    }

    .ham-btn span {
        display: block;
        background: var(--black-clr, black);
        border-radius: 10px;
        width: 100%;
        height: 3px;
        transition: opacity .1s ease, transform 0.3s ease, background 0.3s ease;
    }

    .ham-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5.2px, 4.6px);
    }

    .ham-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .ham-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5.3px);
    }

    .nav-wrapper {
        height: 95px;
    }

    .nav-right-actions {
        position: fixed;
        background: var(--white-clr);
        right: -300px;
        flex-direction: column;
        top: 95px;
        height: calc(100vh - 95px);
        width: 300px;
        transition: right .3s ease-in-out;
        overflow-y: auto;
        padding: 20px 0;
    }

    .nav-right-actions.active {
        right: 0;
    }

    .nagivator-wrapper {
        margin-right: 0;
        width: 100%;
    }

    .nav-job-btn .other-nav-link {
        min-width: 195px;
        margin-inline: 0;
        margin-block: 12px;
        min-height: 50px;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-link {
        padding: 12px 16px;
    }

    .abt-left-col .about-bg {
        max-height: 450px;
    }

    .srv-card.get-touch .main-info {
        max-width: 290px;
    }

    .vdo-frame {
        height: 259px;
    }

    .vdo-info h4,
    .vdo-info p {
        font-size: 14px;
        line-height: 20px;
    }

    .video-section {
        padding: 105px 0;
    }

    .ft-middle .row {
        justify-content: space-between;
    }

    .ft-hlp-col {
        margin-top: 35px;
    }

    .choose-us-sec .cus-col:nth-child(2) .csu-card {
        background-size: 129%;
    }

    .city-listing {
        gap: 10px;
    }

    .map-bg img {
        height: 100%;
        width: 90%;
    }

    .group-sec .inner-section img {
        object-fit: contain;
    }

    .clnt-card-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    ul.glry-tab {
        flex-wrap: wrap;
    }

    .get-touch-box .arrow {
        bottom: -30px;
        left: -230px;
    }

    .map-container {
        margin-top: 80px;
    }

    .map-section-area .map-content {
        max-width: 638px;
        padding: 70px 50px;
    }

    .map-content .title {
        max-width: 330px;
    }

    .map-frame-main {
        max-width: 515px;
        max-height: 441px;
    }

    .ft-middle .row {
        margin: 0 -20px;
        row-gap: 35px;
    }

    .ft-md-col {
        padding: 0 20px;
        max-width: 50%;
    }

    .ft-hlp-col {
        margin-top: 0;
    }

    .about-header.oth-pg-header::before {
        right: -150px;
    }

    .contactUs-header.oth-pg-header::before {
        right: -60px;
    }

    .clnt-header.oth-pg-header::before {
        right: -75px;
    }

    .our-srvc-header.oth-pg-header::before {
        right: -90px;
    }

    .footer::after {
        bottom: -80.71%;
    }

    .prc-card .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .prc-card {
        gap: 12px;
    }
}

@media screen and (max-width:991px) {
    .srv-card.get-touch .main-info {
        max-width: 240px;
    }

    .services-section {
        padding: 105px 0 120px;
    }

    .srv-card-outside {
        gap: 35px;
    }

    .sec-heading {
        font-size: 30px;
        line-height: 40px;
    }

    .pg-main-heading,
    .head-col-box .pg-main-heading {
        font-size: 35px;
        line-height: 42px;
    }

    .portfolio-counter .counter-wrapper span {
        font-size: 13px;
        line-height: 17px;
    }

    .portfolio-counter .counter-wrapper h3 {
        font-size: 50px;
        line-height: 50px;
    }

    .hero-para {
        font-size: 14px;
        line-height: 19px;
    }

    .hero-section {
        overflow: hidden;
    }

    .hero-left-col .arrow-art {
        max-height: 127px;
        right: -66px;
        bottom: -70px;
    }

    .hero-section .sec-area-inner {
        padding: 50px 0;
    }

    .abt-left-col,
    .abt-btn {
        justify-content: center;
    }

    .abt-heading {
        max-width: fit-content;
    }

    .abt-right-col {
        margin-top: 45px;
        max-width: fit-content;
        text-align: center;
    }

    .abt-arrow {
        right: 52px;
        bottom: -74px;
    }

    .dn-file-left-col {
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .dn-file-left-col .cta {
        justify-content: center;
    }

    .dn-file-left-col .arrow-art {
        left: -78px;
        bottom: -65px;
        max-height: 178px;
    }

    .dn-file-right-col {
        width: 100%;
    }

    .dn-file-right-col img {
        transform: translate(-70px, 50px);
        height: 90%;
        width: unset;
    }

    .dn-file-section {
        padding: 70px 0 0;
    }

    .ofc-col {
        max-width: 311px;
        width: 100%;
        margin-left: -35px;
        padding-left: 35px;
    }

    .mist-sec {
        padding: 70px 9px;
    }

    .mist-card {
        height: 359px;
        padding: 35px;
    }

    .mist-card-box {
        margin: 0 -12px;
    }

    .map-content .info-para {
        max-width: 100%;
    }

    .map-bg {
        margin-top: 50px;
        text-align: center;
    }

    .map-bg img {
        width: 70%;
    }

    .city-listing {
        gap: 10px;
        justify-content: space-between;
    }

    .map-sec .sec-area-inner {
        padding: 70px 9px 50px;
    }

    .choose-us-sec .cus-col:nth-child(2) .csu-card {
        background-size: 105%;
    }

    .choose-us-sec .row {
        row-gap: 24px;
    }

    .choose-us-sec .csu-card .content {
        max-width: 232px;
    }

    .choose-us-sec .sec-heading {
        margin-left: 0;
    }

    .choose-us-sec .cus-col:nth-child(1) .csu-card {
        background-position: bottom;
    }

    .choose-us-sec .cus-col:nth-child(3) .csu-card {
        background-position: center bottom -80px;
    }

    .choose-us-sec .cus-col:nth-child(4) .csu-card {
        background-position: center bottom -109px;
    }

    .choose-us-sec {
        padding: 70px 9px;
    }

    .group-sec .inner-section {
        min-height: 393px;
    }

    .slider-item {
        min-width: unset;
        padding: 15px;
    }

    .slide-img.slide-img-sub {
        padding: 15px;
    }

    /* .slider-item {
        min-width: 233px;
        max-width: unset;
    }

    .slick-slide img {
        max-width: 140px;
        height: auto;
    } */

    .services-sec-item {
        flex-direction: column;
        margin-bottom: 75px;
    }

    .item-col {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .services-sec-wrapper {
        padding: 90px 0;
        overflow: hidden;
    }

    .services-sec-item .img-inner {
        margin-bottom: 50px;
    }

    .services-sec-item .img-inner {
        margin-inline: auto;
    }

    .services-sec-item {
        max-width: 720px;
    }

    .services-sec-item:nth-child(even) .content {
        padding-left: 60px;
        max-width: 100%;
    }

    .services-sec-item:nth-child(even) {
        flex-direction: column-reverse;
    }

    .services-sec-item:nth-child(odd) .content {
        max-width: calc(100% - 70px);
    }

    .clnt-card-wrapper {
        padding: 90px 0;
        grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
        gap: 25px;
    }

    .clnt-card {
        height: 155px;
    }

    .nav-pills.glry-tab .tab-nav-link {
        min-width: 325px;
    }

    .get-touch-box {
        gap: 48px;
        flex-direction: column;
    }

    .get-touch-box .arrow {
        bottom: 93px;
        left: -204px;
    }

    .map-section-area {
        padding: 80px 21px;
    }

    .get-touch-box .right-col {
        justify-content: space-between;
    }

    .map-container {
        margin-top: 60px;
    }

    .map-details {
        width: 100%;
        flex-direction: column;
        padding: 70px 50px;
        box-shadow: 0px 0px 30px 0px #44444426;
        border-radius: 20px;
        gap: 50px;
    }

    .map-section-area .map-content {
        max-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .map-frame-main {
        max-width: 100%;
        max-height: 441px;
        position: static;
        transform: none;
        height: 340px;
    }

    .map-content .title {
        max-width: unset;
    }

    .map-details .hlp-lists {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .map-details .hlp-lists li {
        max-width: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    }

    .about-header.oth-pg-header::before {
        right: -80px;
        background-position: top 149px right -240px;
    }

    .contactUs-header.oth-pg-header::before {
        right: -230px;
    }

    .clnt-header.oth-pg-header::before {
        right: -255px;
    }

    .our-srvc-header.oth-pg-header::before {
        right: -230px;
    }

    .glry-header.oth-pg-header::before {
        right: -230px;

    }

    .ofc-map-img {
        transform: translateY(0);
    }

    .services-sec-item .img-inner {
        width: 80%;
        height: auto;
    }

    .services-sec-item:not(:last-of-type) {
        margin-bottom: 70px;
    }

    .choose-us-sec .csu-card .content p {
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
    }
}

@media screen and (max-width:767px) {
    .hero-left-col .arrow-art {
        display: none;
    }

    .hero-right-col {
        margin-top: 35px;
    }

    .ham-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5.5px);
    }

    .abt-left-col .about-bg {
        max-height: 400px;
    }

    .abt-arrow {
        display: none;
    }

    .sec-heading {
        font-size: 28px;
    }

    .srv-card.get-touch .main-info {
        max-width: 320px;
    }

    .srv-card-wrapper .srv-card {
        height: 300px;
    }

    .video-section .row {
        row-gap: 15px;
    }

    .dn-file-right-col img {
        transform: translate(-0%, 50px);
        height: 90%;
    }

    .ofc-col {
        max-width: 100%;
    }

    .ft-md-col:not(:last-of-type),
    .ft-middle .row {
        margin: 0;
        row-gap: 25px;
    }

    .ofc-other-col,
    .ft-hlp-col {
        margin-top: 0;
    }

    .clnt-link {
        margin-bottom: 30px;
    }

    .ft-copyright {
        display: block;
        padding-bottom: 27px;
    }

    .ft-header {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        text-align: center;
    }

    .choose-us-sec .cus-col:nth-child(2) .csu-card {
        background-size: 129%;
    }

    .choose-us-sec .cus-col:nth-child(3) .csu-card,
    .choose-us-sec .cus-col:nth-child(4) .csu-card {
        background-position: center;
    }

    .group-sec .inner-section {
        min-height: 283px;
    }

    .slider-item {
        min-width: 143px;
        height: 171px;
    }

    .client-slider .slick-slide {
        padding: 30px 11px !important;
    }

    .slick-slide img {
        max-width: 165px;
    }

    .client-section {
        padding: 70px 0 40px;
    }

    .client-slider {
        padding: 25px 0 0;
    }

    .content-box::after {
        display: none;
    }

    .services-sec-item {
        max-width: 540px;
    }

    .services-sec-item:nth-child(odd) .content {
        max-width: calc(100%);
    }

    .services-sec-item:nth-child(even) .content {
        padding-left: 0;
    }

    .services-sec-wrapper {
        padding: 90px 0 15px;
    }

    .process-sec .sec-area-inner {
        padding: 90px 21px 90px;
    }

    .prc-card .num-icon {
        max-height: 100px;
    }

    .prc-card {
        gap: 7px;
    }

    .clnt-card-wrapper {
        gap: 20px;
    }

    .clnt-card {
        padding: 15px;
    }

    .glry-inner {
        padding: 80px 21px;
    }

    .get-touch-box .hlp-lists li:nth-of-type(1) .hlp-item {
        align-items: flex-start;
        word-break: break-all;
    }

    .map-details .hlp-lists {
        flex-direction: column;
        gap: 0;
    }

    .map-details .hlp-lists li {
        max-width: 100%;
    }

    .abt-right-col {
        margin-top: 30px;
    }

    .ft-md-col {
        max-width: 100%;
        padding: 0;
    }

    .hero-right-col {
        text-align: center;
    }

    .oth-pg-header {
        padding: 80px 0;
    }

    .photo-wrapper {
        column-count: 3;
    }

    .photo-wrapper .photo-card {
        border-radius: 10px;
    }

    .clnt-header.oth-pg-header::before {
        right: -405px;
    }

    .about-header.oth-pg-header::before {
        right: -210px;
    }

    .our-srvc-header.oth-pg-header::before {
        right: -340px;
    }

    .glry-header.oth-pg-header::before {
        right: -340px;

    }

    .contactUs-header.oth-pg-header::before {
        right: -380px;
    }

    .footer::after {
        bottom: -65%;
    }

    .process-sec .sec-area-inner {
        background-size: 1290px 471px;
    }

    .client-section {
        padding: 60px 0;
    }

}

@media screen and (max-width:575px) {
    .client-slider {
        padding: 10px 0 0;
    }

    .photo-wrapper {
        column-count: 2;
    }

    .group-sec {
        display: none;
    }

    .ft-nav-item a,
    .ft-lnk-title {
        font-size: 13px;
        line-height: 25px;
    }

    .ft-copyright {
        font-size: 11px;
        line-height: 18px;
    }

    .navbar {
        padding: 15px 21px 14px;
    }

    .sec-area-inner {
        padding-inline: 9px;
    }

    .ft-lnk-title {
        margin-bottom: 5px;
    }


    .services-section {
        padding: 60px 21px 85px;
    }

    .video-section {
        padding: 60px 9px 80px;
    }

    .dn-file-left-col {
        padding-left: 0;
    }

    .dn-file-section {
        padding-inline: 21px;
    }

    .dn-file-left-col .arrow-art {
        display: none;
    }

    .srv-card-wrapper:nth-of-type(4) .srv-card.srv-card-main::after {
        background-size: 120%;
        background-position: center;
    }

    .abt-left-col .about-bg {
        max-height: 330px;
    }

    .portfolio-counter .counter-wrapper {
        flex-direction: column;
        gap: 45px;
    }

    .about-section .sec-area-inner {
        padding: 60px 9px 85px;
    }

    .sec-heading {
        font-size: 24px;
        line-height: 33px;
    }

    .abt-para {
        font-size: 15px;
    }

    .hero-para {
        margin: 22px 0;
    }

    .logo img {
        max-height: 50px;
    }

    .nav-wrapper {
        height: auto;
    }

    .hero-section {
        margin-top: 80px;
    }

    .nav-right-actions {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .dn-file-right-col img {
        height: 70%;
    }

    .footer {
        border-radius: 30px 30px 0 0;
        padding: 31px 21px 0;
    }

    .vdo-frame {
        padding-top: 56.25%;
    }

    .vdo-frame img {
        position: absolute;
        top: 0;
        left: 0;
    }

    .vdo-frame:hover .vdo-thumb {
        height: 100%;
        transform: scale(1.05);
    }

    .video-section .row {
        row-gap: 35px;
    }

    .hero-section .sec-area-inner {
        padding: 50px 9px;
    }

    .oth-pg-header {
        margin-top: 80px;
    }

    .oth-pg-header {
        padding: 51px 12px;
    }

    p.oth-head-para {
        font-size: 14px;
        max-width: 356px;
    }

    .mist-sec {
        padding: 60px 9px;
    }

    .mist-card {
        height: auto;
        text-align: center;
    }

    .mist-card .icon {
        margin: auto;
    }

    .mist-card .content .info {
        padding-right: 0;
    }

    .mist-card-box {
        margin: 0;
    }

    .city-listing ul {
        min-width: unset;
    }

    .choose-us-sec .csu-card {
        height: 340px;
    }

    .choose-us-sec .csu-card .content {
        max-width: unset;
    }

    .choose-us-sec {
        padding: 60px 9px;
    }

    .client-section {
        padding: 70px 0 0;
    }

    .services-sec-item {
        padding: 0 21px;
        margin-inline: 0;
    }

    .services-sec-item .img-inner {
        width: 100%;
    }

    .process-sec .sec-area-inner {
        padding: 70px 21px 70px;
    }

    .process-sec .sec-heading {
        margin-bottom: 30px;
    }

    .prc-card .content h4 {
        font-size: 16px;
        line-height: 22px;
    }

    .prc-card .content p {
        font-size: 13px;
        line-height: 19px;
    }

    .prc-card .num-icon {
        max-height: 80px;
    }

    .clnt-card-wrapper {
        padding: 70px 21px;
    }

    .clnt-card-wrapper .clnt-card img {
        height: 100%;
    }

    .nav-pills.glry-tab .tab-nav-link {
        font-size: 14px;
        line-height: 22px;
        min-width: 1px;
        width: 100%;
    }

    .glry-inner {
        padding: 60px 21px;
    }

    li.glry-nav-item {
        width: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    }

    .glry-tab-content {
        padding-top: 42px;
    }

    .get-touch-box .arrow {
        display: none;
    }

    .map-section-area {
        padding: 60px 9px;
    }

    .get-touch-box {
        gap: 40px;
    }

    .hero-left-col {
        text-align: center;
    }

    .hero-left-col .cta {
        justify-content: center;
    }

    .hero-heading {
        margin: auto;
    }

    .ft-hlp-col .ft-lnk-title {
        margin-bottom: 5px;
    }

    .glry-tab li {
        flex-basis: 100%;
        max-width: 100%;
    }

    ul.glry-tab {
        gap: 10px;
    }

    p.oth-head-para {
        max-width: 100%;
    }

    .oth-pg-header::before {
        display: none;
    }

    .process-sec .sec-area-inner {
        background-size: 1110px 471px;
        background-position: center right -420px;
    }

    .ft-logo img {
        min-width: 1px;
        max-height: fit-content !important;
        max-width: 85px;
    }

    .services-sec-item:not(:last-of-type) {
        margin-bottom: 60px;
    }

    .prc-card .counter {
        font-size: 90px;
        line-height: 90px;
    }
    .slick-slide img {
        width: 100%;
        aspect-ratio: 6/4;
        height: 100%;
    }
}

@media screen and (max-width:480px) {
    .hero-right-col img {
        width: 100%;
    }

    .map-details {
        padding: 35px 35px;
    }

    .abt-btn .cmn-btn,
    .cta .cmn-btn {
        gap: 8px;
    }

    .abt-btn .blk-btn span {
        right: 35px;
    }

    .map-content .title {
        margin-bottom: 21px;
    }

    .dn-file-left-col .blk-btn span {
        right: 23px;
    }

    .map-frame-main {
        height: 199px;
        border-radius: 12px;
    }

    .abt-para {
        font-size: 14px;
        line-height: 23px;
    }

    .vdo-info h4,
    .vdo-info p {
        font-size: 13px;
        line-height: 19px;
    }

    .vdo-frame {
        margin-bottom: 13px;
    }

    .ft-copyright {
        font-size: 9px;
        line-height: 15px;
    }

    .abt-right-col {
        margin-top: 25px;
    }

    .abt-left-col .about-bg {
        max-height: 300px;
        width: 100%;
    }

    .dn-file-section {
        padding-bottom: 30px;
    }

    .srv-card .title {
        font-size: 16px;
        line-height: 19px;
    }

    .srv-card .info-para,
    .srv-card .other {
        font-size: 14px;
        line-height: 22px;
    }

    .srv-card-wrapper .srv-card {
        padding: 30px;
    }

    .dn-file-right-col img {
        transform: translate(18px, 31px);
        height: 100%;
        width: 100%;
        margin: 0;
    }

    .mist-card .content .info {
        font-size: 14px;
        line-height: 23px;
    }

    .mist-card .content .title {
        font-size: 18px;
        line-height: 17px;
    }

    .map-content .info-para,
    .map-content .city-listing .city-item {
        font-size: 14px;
        line-height: 23px;
    }

    .list-icon {
        scale: .8;
        margin-right: 5px;
    }

    .city-item:not(:last-of-type) {
        margin-bottom: 5px;
    }

    .city-listing {
        flex-wrap: wrap;
    }

    .city-listing {
        gap: 30px;
        justify-content: space-between;
    }

    .map-bg img {
        width: 88%;
    }

    .mist-card .icon img {
        max-height: 55px;
    }

    .mist-card {
        padding: 30px 25px;
    }

    .choose-us-sec .csu-card {
        padding: 22px;
        height: auto;
        min-height: 250px;
    }

    .choose-us-sec .csu-card .content p {
        font-size: 14px;
        line-height: 20px;
    }

    .choose-us-sec .csu-card .icon img {
        max-height: 35px;
    }

    .services-sec-wrapper {
        padding: 80px 0 0px;
    }

    .services-sec-item {
        margin-bottom: 50px;
    }

    .services-sec-item .title {
        font-size: 18px;
        line-height: 17px;
    }

    .services-sec-item .info-para {
        font-size: 14px;
        line-height: 20px;
    }

    li.glry-nav-item {
        width: 100%;
        flex-basis: 100%;
    }

    .get-touch-box .right-col {
        flex-direction: column;
    }

    .get-touch-box .hlp-lists li:nth-of-type(1) .hlp-item {
        align-items: center;
    }

    .get-touch-box .right-col .card-title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 13px;
    }

    .map-section-area .hlp-lists li .hlp-item {
        font-size: 14px;
        line-height: 17px;
    }

    .map-section-area .hlp-lists li .hlp-item .icon {
        --sz: 30px;
    }

    .map-section-area .hlp-lists li .hlp-item .icon.email-icon::after,
    .map-section-area .hlp-lists li .hlp-item .icon.location-icon::after,
    .map-section-area .hlp-lists li .hlp-item .icon.clock-icon::after,
    .map-section-area .hlp-lists li .hlp-item .icon.call-icon::after {
        background-size: 45%;
    }

    .get-touch-box .right-col {
        gap: 25px;
    }

    .map-container {
        margin-top: 40px;
    }

    .map-section-area {
        padding: 28px 9px;
    }

    .get-touch-box .left-col .sec-heading {
        margin-bottom: 18px;
    }

    .get-touch-box .left-col .blk-btn span {
        right: 22px;
    }

    .get-touch-box .cta {
        gap: 15px;
        flex-direction: column;
    }

    .get-touch-box .cta a {
        min-width: 230px !important;
        margin-right: auto;
    }

    .get-touch-box .left-col .blk-btn span {
        right: 40px;
    }

    .glry-tab .tab-nav-link {
        padding: 10px 0;
        font-size: 14px;
    }

    ul.glry-tab {
        border-radius: 34px;
    }

    .hero-left-col .cta span {
        right: 41px;
    }
    .choose-us-sec .cus-col:nth-child(1) .csu-card::after,
    .choose-us-sec .cus-col:nth-child(2) .csu-card::after,
    .choose-us-sec .cus-col:nth-child(3) .csu-card::after,
    .choose-us-sec .cus-col:nth-child(4) .csu-card::after {
        background-size: 50%;
    }
}

@media screen and (max-width:420px) {

    .cmn-btn,
    .nav-job-btn .other-nav-link {
        font-size: 12px;
        min-width: 166px;
        min-height: 46px;
    }

    .blk-btn:hover i {
        transform: translateX(6px);
    }

    .dn-file-left-col .blk-btn span {
        right: 36px;
    }

    .blk-btn i,
    .wht-btn i {
        font-size: 14px;
        transition: .3s ease;
    }

    .get-touch-box .left-col .blk-btn span {
        right: 050px;
    }

    .get-touch-box .left-col .blk-btn {
        gap: 10px;
    }

    .choose-us-sec .cus-col:nth-child(2) .csu-card {
        background-size: 109%;
        background-position: center -210px;
    }

    .srv-card-main .srv-cd-icon {
        max-height: 50px;
    }

    .srv-card-wrapper .srv-card {
        height: 250px;
    }

    .blk-btn span,
    .wht-btn span {
        right: 22px;
    }

    .srv-card .title {
        font-size: 14px;
        line-height: 17px;
        margin: 15px 0 10px;
    }

    .srv-card .info-para,
    .srv-card .other {
        font-size: 12px;
        line-height: 16px;
    }

    .srv-card.get-touch .other a span {
        right: 24px;
    }

    .nav-link {
        font-size: 12px;
        line-height: 11px;
    }

    .dn-file-left-col p {
        font-size: 12px;
        margin: 18px 0;
        max-width: 305px;
        margin-inline: auto;
    }

    .sec-heading {
        font-size: 22px;
        line-height: 29px;
    }

    p.oth-head-para {
        font-size: 13px;
        line-height: 18px;
    }

    .prc-card .content h4 {
        font-size: 14px;
        line-height: 19px;
    }

    .prc-card .content p {
        font-size: 11px;
        line-height: 16px;
    }

    .prc-card .num-icon {
        max-height: 60px;
    }

    .clnt-card-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }

    .clnt-card {
        padding: 5px;
    }

    .photo-wrapper .photo-card>* {
        object-fit: unset;
    }

    .map-content .hlp-lists li:not(:last-of-type) {
        margin-bottom: 15px;
    }

    .map-details {
        gap: 30px;
    }

    .auth-btn-box .blk-btn span {
        width: 13px;
    }

    .nav-right-actions {
        right: -100%;
        width: 100%;
    }

    .photo-wrapper {
        column-count: 1;
    }

    .hero-left-col .cta span {
        right: 37px;
        width: 13px;
    }
}

@media screen and (max-width:375px) {
    .srv-card-outside {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }

    .map-details {
        padding: 30px 25px;
    }
}

/* //Job Opening */
.find-job-header {
    margin-top: 95px;
    background: var(--primary-clr);
    color: white;
}

.find-job-header .header-inner {
    text-align: center;
    padding: 30px 0;
}

.header-filter-wrapper {
    border-bottom: 1px solid #ddd;
    background: #fff;
    width: 100% !important;
}

.header-filter-wrapper.stickyScroll {
    position: sticky;
    top: 95px;
    z-index: 4;
}

.find-job-header .header-inner h1 {
    font-weight: 800;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 13px;
}

.find-job-header .header-inner h1 span {
    color: #000;
}

.find-job-header .header-inner p {
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
}

.job-filter-form {
    width: 100%;
}

.job-filter-form .form-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 8px 0;
}

.job-filter-form .input-field {
    min-height: 36px;
    border-radius: 6px;
    border: 1px solid #AFAFAF;
    max-width: 180px;
    width: 100%;
    position: relative;
    padding: 0 10px 0 28px;
    font-size: 13px;
    height: 100%;
}

.job-filter-form .input-block {
    position: relative;
}

.job-filter-form .input-block .icon-box {
    position: absolute;
    z-index: 1;
    top: 17px;
    transform: translateY(-50%);
    left: 10px;
}

.job-filter-form .jb-src-btn {
    border-radius: 6px;
    min-height: 36px;
    padding: 0 57px;
    font-size: 13px;
    font-weight: 600;
}

.green-btn {
    background: var(--primary-clr);
    color: white;
    transition: .3s ease;
}

.green-btn:hover {
    background: #000;
}

.job-title-block .input-field {
    max-width: 220px;
    width: 100%;
}

.select-input-block {
    max-width: 180px;
    width: 100%;
}

.select-input-block .cmn-select+.select2-container--default .select2-selection--single {
    min-height: 36px;
    border-radius: 6px;
    border-color: #adadad;
    transition: border-color .2s ease;
}

.select-input-block .cmn-select+.select2-container--default.select2-container--open .select2-selection--single,
.select-input-block .cmn-select+.select2-container--default .select2-selection--single:hover {
    border-color: var(--primary-clr);
}

.select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}

.select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__rendered {
    background-color: 77742F;
    color: #fff;
    line-height: 35px;
    font-size: 13px;
    padding-left: 28px;
}

.select-input-block .select2-container--open .select2-dropdown {
    z-index: 3;
}

.select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #666666;
}

.select-input-block .cmn-select+.select2.select2-container .select2-selection {
    outline: none;
    height: 35px;
    border-radius: 6px;
}

.select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 0;
    margin-left: -9px;
    top: calc(50% - 3px);
    transform: translateY(-50%) rotate(135deg);
    background: transparent;
    border-color: #666666;
    border-width: 1px 1px 0 0;
    width: 8px;
    height: 8px;
    border-style: solid;
}

.job-filter-form .select2-results__options li {
    font-size: 13px;
}

.job-filter-form .select2-container--default .select2-search--dropdown .select2-search__field {
    font-size: 13px;
}

.select-input-block .cmn-select+.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select-input-block .cmn-select+.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.job-filter-form .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--primary-clr);
    color: #fff;
}

.job-filter-form .select2-container--default .select2-results__option--highlighted[aria-selected],
.multi-form .select-input-block .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #918d3c;
    color: #fff;
}

.job-listing-wrapper {
    padding: 22px 0;
}

.job-listing-wrapper .job-available-box {
    padding-top: 23px;
}

.job-listing-wrapper .job-available-box .listing-box {
    max-height: 900px;
    overflow: hidden auto;
    margin-right: -13px;
    padding-right: 11px;
    margin-left: -12px;
    padding-left: 12px;
}

.job-listing-wrapper .job-available-box .box-title h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #333;
}

.job-listing-wrapper .job-available-box .listing {
    margin: 15px 0;
}

.job-listing-wrapper .job-available-box .listing-box .listing {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-listing-wrapper .job-available-box .listing .jb-card-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #0000001A;
    padding: 20px;
    border: 1px solid transparent;
    transition: .3s ease;
    cursor: pointer;
}

.job-listing-wrapper .job-available-box .listing .jb-card-wrapper:hover {
    border: 1px solid #77742F;
    box-shadow: none;
}

.listing-box .listing li.active .jb-card-wrapper {
    border: 1px solid #77742F;
    box-shadow: none;
}

.job-listing-wrapper .job-available-box .jb-card-wrapper .jb-type {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    line-height: 19px;
}

.job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc {
    margin-top: 10px;
}

.job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul {
    display: flex;
    gap: 11px 21px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul li {
    max-width: calc(50% - 11px);
    flex-basis: calc(50% - 20px);
    display: flex;
    gap: 8px;
    line-height: 17px;
    align-items: baseline;
}

.job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul li:nth-of-type(even) {
    padding-left: 3%;
}

.job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul li .text {
    color: #666666;
    font-size: 14px;
}

.job-listing-wrapper .job-available-box .jb-card-wrapper .posted-time {
    margin-top: 10px;
    display: block;
    font-size: 12px;
    line-height: 14px;
    color: #999;
}

.job-detail-box .jb-detail-outer {
    padding: 23px 27px;
    box-shadow: 0px 0px 5px 0px #0000001A;
    border-radius: 10px;
    background: #fff;
}

.job-detail-box .jb-detail-outer .header .job-name {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #333;
    margin-bottom: 20px;
}

.job-insights-provider {
    margin-bottom: 20px;
}

.job-insights-provider ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.job-insights-provider ul li {
    display: flex;
    min-width: 287px;
    gap: 10px;
}

.job-insights-provider ul li .icon-box {
    line-height: 15px;
}

.job-insights-provider ul li .text {
    font-size: 14px;
    line-height: 17px;
    color: #666;
}

.jb-detail-outer .header .bottom-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.jb-detail-outer .header .bottom-actions .apply-btn {
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    padding: 13px 33px;
}

.jb-detail-outer .header .bottom-actions .add-Tofav-btn,
.jb-detail-outer .header .bottom-actions .share-btn {
    border-radius: 50%;
    --sz: 40px;
    height: var(--sz);
    width: var(--sz);
    border: 1px solid #B7B7B7;
    padding: 0;
    background: #fff;
    position: relative;
}

.jb-detail-outer .header .bottom-actions .add-Tofav-btn .icon-sub {
    position: absolute;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.jb-detail-outer .header .bottom-actions .add-Tofav-btn .icon {
    transition: .2s linear;
}

.jb-detail-outer .header .bottom-actions .add-Tofav-btn:hover .icon-main {
    opacity: 0;
}

.jb-detail-outer .header .bottom-actions .add-Tofav-btn:hover .icon-sub,
.jb-detail-outer .header .bottom-actions .add-Tofav-btn.active .icon-sub {
    opacity: 1;
}

.jb-detail-outer .header .bottom-actions .share-btn.dropdown-toggle::after {
    display: none;
}

.share-job-dd .dropdown-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    padding: 8px 15px;
    line-height: 17px;
}

.share-job-dd .dropdown-menu {
    padding: 0;
    overflow: hidden;
    z-index: 3;
    min-width: auto;
}

.share-job-dd .dropdown-item:focus,
.share-job-dd .dropdown-item:hover {
    background: var(--primary-clr);
    color: #fff;
}

.jb-detail-outer .inner .header {
    position: relative;
    margin-bottom: 20px;
}

.jb-detail-outer .inner .header .divider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: calc(100% - 3px);
    height: 1px;
    background: #ddd;
    bottom: -20px;
}

.jb-detail-outer .inner .main-content {
    margin: 40px 0 0;
    max-height: 707px;
    overflow: hidden auto;
    margin-right: -17px;
    padding-right: 8px;
}

.jb-detail-outer .inner .main-content .jb-short-desc li {
    display: flex;
    gap: 0 10px;
}

.jb-detail-outer .inner .main-content .jb-short-desc li span {
    font-size: 14px;
    line-height: 29px;
}

.jb-detail-outer .inner .main-content .jb-short-desc li span.title {
    min-width: 110px;
}

.jb-detail-outer .inner .main-content .jb-short-desc li span.info {
    color: #666;
}

.jb-overview {
    margin-top: 20px;
}

.jb-overview h3.title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #333;
}

.jb-overview .listing-col h5.sub-title {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    margin: 20px 0 15px;
}

.jb-overview .listing-col .listing-box {
    padding-left: 25px;
}

.jb-overview .listing-col .listing-box li {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    position: relative;
    list-style-type: disc;
}

.jb-detail-outer .inner .main-content::-webkit-scrollbar,
.listing-box::-webkit-scrollbar {
    width: 9px;
}

.jb-detail-outer .inner .main-content::-webkit-scrollbar-track,
.listing-box::-webkit-scrollbar-track {
    background: #E8E8E8;
}

.jb-detail-outer .inner .main-content::-webkit-scrollbar-thumb,
.listing-box::-webkit-scrollbar-thumb {
    background: #C0C0C0;
}

.share-btn .icon-sub {
    position: absolute;
    opacity: 0;
    transition: .1s linear;
}

.share-btn:hover .icon-sub,
.share-btn.dropdown-toggle.show .icon-sub {
    opacity: 1;
}

/* // small screen filer start---- */
.mob-filter-box {
    display: none;
}

.modal-bottom-fixed .modal-dialog {
    margin: 0;
    max-width: 100%;
    height: 100%;
}

.modal-bottom-fixed .modal-dialog .modal-content {
    position: absolute;
    bottom: 0;
    border-radius: 20px 20px 0px 0px;
    border: 0;
}

.modal-bottom-fixed .modal-dialog .modal-header {
    border-bottom: 0px;
    padding: 20px;
}

.modal-bottom-fixed .modal-dialog .modal-header .title-text {
    font-weight: 600;
    color: #222;
}

.modal-bottom-fixed.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, 50px);
}

.modal-bottom-fixed.show .modal-dialog {
    transform: translateY(0);
}

.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.filter-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

.filter-box .filter-title-box .filter-title-text {
    color: #666;
    font-size: 15px;
    display: block;
}

.dropdown-toggle-custom {
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border: 0;
}

.filter-box .filter-title-box {
    margin-right: 5px;
}

.modal-bottom-fixed .modal-dialog .modal-content .modal-body {
    padding: 20px;
    padding-top: 0px;
}

.filter-box .filter-dropdown-box .filter-dropdown-text {
    font-weight: 700;
    color: var(--primary-clr);
    font-size: 15px;
}

.mob-filters-dd button {
    margin-left: auto;
}

.dropdown-toggle-custom::after {
    background: url(../assets/icons/dropdown-icon-small.svg) center center no-repeat;
    border: 0px;
    height: 8px;
    width: 10px;
    margin-top: 3px;
}

.dropdown-toggle-custom.show.dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-toggle::after {
    transition: 0.4s ease-in-out;
}

.dropdown-menu-box {
    background: #fff;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: none;
    padding: 15px;
}

.bottom-custom-filter .dropdown-menu-box .dropdown-content-box .full-dd-radio-wrapper .radio-select-box .radio-box .dd-radio-label {
    width: 100%;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.radio-custom,
.radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.radio-custom {
    opacity: 0;
    position: absolute;
}

.bottom-custom-filter .dd-radio-custom:checked+.dd-radio-label {
    color: var(--primary-clr);
}

.bottom-custom-filter .dd-radio-custom:checked+.dd-radio-label:hover {
    color: #fff;
}

.bottom-custom-filter .dd-radio-label:hover {
    background: var(--primary-clr);
    color: #fff;
    transition: 0.2s;
}

.dropdown-footer-btn-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 14px;
}

.dropdown-footer-btn-box .btn-box .btn-text {
    color: #AAA;
    background: #fff;
}

.input-block {
    position: relative;
}

.mob-field-block .icon-box {
    position: absolute;
    z-index: 1;
    top: 17px;
    transform: translateY(-50%);
    left: 10px;
}

.dropdown-footer-btn-box .btn-box.apply-btn .btn-text {
    color: #fff;
    background: var(--primary-clr);
    min-width: 80px;
    padding: 6px 0px;
    border: 1px solid var(--primary-clr);
    border-radius: 8px;
    font-size: 14px;
}

.dropdown-footer-btn-box .btn-box.reset-btn .btn-text {
    transition: .2s ease;
}

.dropdown-footer-btn-box .btn-box.reset-btn .btn-text:hover {
    color: #444;
}

.main-btn.width-full {
    width: 100%;
}

.filter-main-apply-btn {
    padding: 12px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.load-more-btn{
    display: block;
    margin: 20px auto;
    border-radius:60px;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    padding: 13px 33px;

}

.bottom-custom-filter .dropdown-menu-box .dropdown-content-box .full-dd-radio-wrapper {
    max-height: 186px;
    overflow: hidden auto;
}

.bottom-custom-filter .dropdown-menu-box .dropdown-content-box .full-dd-radio-wrapper::-webkit-scrollbar {
    width: 5px;
}

.bottom-custom-filter .dropdown-menu-box .dropdown-content-box .full-dd-radio-wrapper::-webkit-scrollbar-track {
    background: #AFAFAF;
    border-radius: 5px;
}

.radio-select-box .radio-box {
    margin-right: 12px;
}

.bottom-custom-filter .dropdown-menu-box .dropdown-content-box .full-dd-radio-wrapper::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--primary-clr);
}

/* // small screen filer end---- */
/* //job details modal start--- */
.custom-fullPage-mdl .modal-dialog {
    height: 100%;
    margin: 0;
    max-width: 100%;
}

.custom-fullPage-mdl .modal-body {
    overflow: hidden;
    padding: 0;
}

.custom-fullPage-mdl .modal-content {
    border-radius: 0;
    margin: 0;
    border: 0;
    height: 100%;
}

.custom-fullPage-mdl .modal-header .btn-close {
    margin: 0;
    opacity: 1;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 10px 20px;
    margin-right: 25px;
    gap: 10px;
    color: white;
}

.custom-fullPage-mdl .content-outer {
    max-height: calc(100% - 70px);
    overflow: hidden auto;
}

.mob-job-detail-box .jb-detail-outer {
    padding: 16px;
    box-shadow: none;
    border-radius: unset;
}

.mob-job-detail-box .jb-detail-outer .inner .main-content {
    max-height: unset;
}

.mob-job-detail-box .stick-bottom-action-wrapper {
    position: fixed;
    bottom: 0;
    background: white;
    padding: 0 10px;
    width: 100%;
    left: 0;
    border-top: 1px solid #ddd;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-job-detail-box .stick-bottom-action-wrapper button {
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
}

@media screen and (max-width:420px) {
    .custom-fullPage-mdl .modal-header .btn-close {
        font-size: 14px;
        margin-right: 15px;
    }

    .custom-fullPage-mdl .modal-header .title-text {
        font-size: 18px;
    }

}

/* //job details modal end--- */
.dt-block .datepicker table tbody tr td.disabled,
.dt-block .datepicker table tbody tr td span.disabled {
    pointer-events: none;
}

.hidden {
    display: none;
}

@media screen and (max-width: 1199px) {
    .filter-row .filter-col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 8px;
        margin-bottom: 10px;
    }

    .filter-row {
        margin: 0 -8px;
    }

    .jb-detail-outer .inner .main-content {
        max-height: 646px;
    }
}

@media screen and (max-width: 991px) {
    .web-field-block {
        display: none;
    }

    .job-filter-form .form-inner {
        flex-wrap: wrap;
        gap: 8px 15px;
        justify-content: flex-end;
    }

    .job-filter-form .input-block {
        flex-grow: 1;
    }

    .job-title-block .input-field {
        max-width: 100%;
    }

    .mob-filter-box {
        display: block;
        width: 100%;
    }

    .mob-filter-box .mob-filters-dd {
        text-align: end;
    }

    .mob-filter-box .mob-filters-dd .dropdown-toggle {
        background: transparent;
        color: var(--primary-clr);
        font-weight: 500;
        font-size: 15px;
    }

    .mob-field-block .input-field {
        width: 100%;
        border-radius: 6px;
        border: 1px solid #AFAFAF;
        font-size: 14px;
        padding: 0 28px;
        min-height: 36px;
    }

    .formOne .input-block:nth-of-type(5),
    .formOne .input-block:nth-of-type(6) {
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 767px) {
    .modal-bottom-section .mob-modal-filter-area .filter-row .filter-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .job-listing-wrapper .job-available-box .listing-box {
        max-height: max-content;
        margin: 0 -12px;
        padding: 0 12px;
    }

    .find-job-header .header-inner {
        padding: 30px 9px;
    }

    .filter-box {
        padding-inline: 9px
    }

    .mob-modal-filter-area .filter-box {
        padding-inline: 0px
    }

    .job-listing-wrapper {
        padding: 22px 9px;
    }

    .header-wrapper .regForm-header {
        padding: 30px 30px 40px;
    }

    .reg-tab-wrapper {
        padding: 0 30px;
    }

    .multi-form .fields-wrapper {
        gap: 0 20px;
    }

    .multi-form .input-block {
        max-width: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
    }

    .regUser-fetch-inner {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}

@media screen and (max-width: 575px) {
    .find-job-header {
        margin-top: 80px;
    }

    .reg-user-form-section {
        padding-top: 81px;
    }

    .reg-form-outer {
        margin: 0 -12px;
        box-shadow: none;
        border-radius: 0;
        background: white;
    }

    .multi-form.formTwo .input-block {
        max-width: 100%;
        flex-basis: 100%;
    }

    .radio-item3 .circular-radio.radio-select-box {
        justify-content: space-between;
    }

    .header-filter-wrapper.stickyScroll {
        top: 79px;
    }
}


@media screen and (max-width: 480px) {
    .find-job-header .header-inner p {
        font-size: 13px;
        line-height: 18px;
        padding: 0 15px;
    }

    .job-filter-form .jb-src-btn {
        flex-grow: 1;
    }

    .job-listing-wrapper .job-available-box {
        padding-top: 0;
    }

    .filter-box .filter-title-box .filter-title-text,
    .filter-box .filter-dropdown-box .filter-dropdown-text {
        font-size: 14px;
    }

    .mob-filter-box {
        width: max-content;
    }

    .job-listing-wrapper .job-available-box .listing .jb-card-wrapper {
        padding: 15px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-type {
        font-size: 15px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul {
        gap: 5px 21px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul li {
        gap: 5px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul li .text {
        font-size: 13px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul li .icon-box img {
        max-width: 14px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .posted-time {
        font-size: 11px;
    }

    .form-progressbar li .text {
        font-size: 13px;
    }

    .form-progressbar li .prog-circle {
        width: 25px;
        height: 25px;
        margin: 8px auto 0;
    }

    .form-progressbar li:after {
        top: calc(50% + 13px);
    }

    .prog-fill {
        font-size: 13px;
        line-height: 14px;
    }

    .form-progressbar li.active.completed .prog-fill::before {
        top: -1px;
        left: -2.5px;
        scale: .8;
    }

    .regUser-fetch-inner .left-col p:first-of-type {
        font-size: 14px;
        line-height: 18px;
    }

    .regUser-fetch-inner .left-col p:last-of-type {
        font-size: 12px;
        line-height: 14px;
        margin-top: 5px;
    }

    .regUser-fetch-inner {
        margin-top: 60px;
    }

    .regUser-fetch-inner::before {
        top: -30px;
    }

    .fetch-old-data-btn.fm-prog-btn {
        font-size: 13px;
    }

    .regForm-header .job-apply-desc .inner .header .info {
        font-size: 15px;
    }

    .regForm-header .job-apply-desc .inner .job-insights-provider ul {
        gap: 10px;
    }

    .regForm-header .job-apply-desc .inner .job-insights-provider ul li {
        gap: 4px;
    }

    .regForm-header .job-apply-desc .inner .job-insights-provider ul li .text {
        font-size: 12px;
    }

    .resume-dropZone {
        min-height: 147px;
    }

    .dropzone-desc .desc-text {
        font-size: 10px;
        line-height: 14px;
    }
}

@media screen and (max-width: 420px) {
    .multi-form .fields-wrapper {
        flex-direction: column;
    }

    .multi-form .input-block {
        max-width: 100%;
        flex-basis: 100%;
    }

    .circular-radio.radio-select-box {
        gap: 0 20px;
    }

    .reg-tab-wrapper {
        padding: 0 21px;
    }

    .header-wrapper .regForm-header {
        padding: 30px 21px 40px;
    }

    .form-progBtn-wrapper {
        gap: 16px;
        padding: 0;
    }

    .fm-prog-btn {
        min-height: 45px;
        padding: 0;
        max-width: calc(50% - 8px);
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .multi-form .input-block label {
        font-size: 13px;
    }

    .cl-checkbox>span {
        font-size: 11px;
    }
}

@media (max-height: 425px) and (orientation: landscape) {
    .modal-bottom-fixed .modal-dialog .modal-content .modal-body {
        max-height: 300px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .header-filter-wrapper.stickyScroll {
        position: static;
    }
}


/* //user registratopn from */
.overlay {
    z-index: 5;
}

body.modal-open {
    padding-right: 0 !important;
    overflow: hidden !important;
}

.reg-user-form-section {
    padding-top: 96px;
}

.reg-form-outer {
    margin: 49px auto 30px;
    box-shadow: 0px 0px 5px 0px #0000001A;
    border-radius: 10px;
    background: white;
    max-width: 830px;
}

.header-wrapper .regForm-header {
    padding: 40px;
}

.regForm-header .form-header h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    text-align: center;
}

.regForm-header .form-header h2 span {
    color: var(--primary-clr);
}

.regForm-header .job-apply-desc {
    margin-top: 30px;
}

.regForm-header .job-apply-desc .inner {
    border: 1px solid #77742F;
    border-radius: 10px;
    padding: 20px;
}

.regForm-header .job-apply-desc .inner .header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 8px 15px;
    flex-wrap: wrap;
}

.regForm-header .job-apply-desc .inner .header .info span {
    color: var(--primary-clr);
}

.regForm-header .job-apply-desc .inner .header .info {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 19px;
}

.regForm-header .job-apply-desc .inner .header .other-info {
    padding: 0;
    background: none;
    color: var(--primary-clr);
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}

.regForm-header .job-apply-desc .inner .job-insights-provider {
    margin-bottom: 0;
}

.regForm-header .job-apply-desc .inner .job-insights-provider ul li {
    min-width: 1px;
}

.form-progressbar {
    margin-bottom: 30px;
    overflow: hidden;
}

.form-progressbar li {
    list-style-type: none;
    color: #99a2a8;
    font-size: 9px;
    width: calc(100%/3);
    float: left;
    position: relative;
    text-align: center;
}

.form-progressbar li .prog-circle {
    width: 28px;
    height: 28px;
    line-height: 50px;
    display: block;
    background: #CFCEBC;
    border-radius: 50%;
    margin: 13px auto 0;
    position: relative;
    z-index: 2;
}

.form-progressbar li:after {
    content: "";
    width: 100%;
    height: 3px;
    background: #CFCEBC;
    position: absolute;
    left: -50%;
    top: calc(50% + 17px);
    z-index: 0;
    transform: translateY(-50%);
}

.form-progressbar li:last-child:after {
    width: 150%;
}

.form-progressbar li.active {
    color: #5cb85c;
}

.form-progressbar li.active:before,
.form-progressbar li.active:after {
    background: #5cb85c;
    color: white;
}

.form-progressbar li.active:after {
    background: var(--primary-clr);
    z-index: 1;

}

.form-progressbar li .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    margin-bottom: 8px;
    color: #666666;
}

.form-progressbar li.active .text {
    color: #333333;
}

.prog-fill {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: var(--primary-clr);
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
}

.form-progressbar li.active .prog-circle {
    background: var(--primary-clr);
}

.form-progressbar li.active .prog-fill {
    font-size: 0;
    background: #FFFFFF;
    border-radius: 50%;
}

.form-progressbar li.active.completed .prog-fill {
    background: transparent;
}

.form-progressbar li.active.completed .prog-fill::before {
    content: "";
    display: block;
    position: absolute;
    top: -2px;
    left: -3px;
    width: 14px;
    height: 7px;
    border: solid 2px #fff;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

.reg-tab-wrapper {
    padding: 0 40px;
}

.multi-form .fields-wrapper {
    display: flex;
    gap: 0 30px;
    flex-wrap: wrap;
}

.multi-form .input-block {
    margin-bottom: 20px;
    max-width: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
}

.multi-form .input-block label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    margin-bottom: 4px;
    display: block;
    width: fit-content;
}

.multi-form .input-block .input-field {
    display: block;
    border: 1.5px solid #adadad;
    border-radius: 6px;
    min-height: 45px;
    padding: 0 14px;
    font-size: 14px;
    width: 100%;
}

.multi-form .input-block textarea.input-field {
    resize: none;
    padding: 9px 14px;
    min-height: 90px;
}

.cl-checkbox {
    position: relative;
    display: inline-block;
}

.cl-checkbox>input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

.cl-checkbox>span {
    /* display: inline-block; */
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    user-select: none;
}

.cl-checkbox>span::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 0px 5px 2px 0;
    border: solid 2px;
    border-color: #C9C9C9;
    border-radius: 2px;
    width: 15px;
    height: 15px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}

.cl-checkbox>span::after {
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 9px;
    height: 5px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: translate(3px, 4px) rotate(-45deg);
}

.cl-checkbox>input:checked,
.cl-checkbox>input:indeterminate {
    background-color: #018786;
}

.cl-checkbox>input:checked+span::before,
.cl-checkbox>input:indeterminate+span::before {
    border-color: var(--primary-clr);
    background-color: var(--primary-clr);
}

.cl-checkbox>input:checked+span::after,
.cl-checkbox>input:indeterminate+span::after {
    border-color: #fff;
}

.cl-checkbox>input:indeterminate+span::after {
    border-left: none;
    transform: translate(4px, 3px);
}

.cl-checkbox:hover>input {
    opacity: 0.04;
}

.cl-checkbox>input:focus {
    opacity: 0.12;
}

.cl-checkbox:hover>input:focus {
    opacity: 0.16;
}

.cl-checkbox>input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.cl-checkbox>input:active+span::before {
    border-color: #85b8b7;
}

.cl-checkbox>input:checked:active+span::before {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.6);
}

.cl-checkbox>input:disabled {
    opacity: 0;
}

.cl-checkbox>input:disabled+span {
    color: rgba(0, 0, 0, 0.38);
    cursor: initial;
}

.cl-checkbox>input:disabled+span::before {
    border-color: currentColor;
}

.cl-checkbox>input:checked:disabled+span::before,
.cl-checkbox>input:indeterminate:disabled+span::before {
    border-color: transparent;
    background-color: currentColor;
}

.radio-custom+.radio-custom-label.dd-radio-label:before {
    display: none;
}

.label-block {
    display: flex;
    justify-content: space-between;
}

.circular-radio.radio-select-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.circular-radio.radio-select-box .radio-box {
    margin-right: 20px;
}

.radio-custom-label {
    position: relative;
    transition: 0.4s ease-in-out;
}

.radio-custom:checked+.radio-custom-label:before {
    background: var(--primary-clr);
    box-shadow: inset 0px 0px 0px 3px #ffffff;
}

.radio-custom+.radio-custom-label:before {
    content: "";
    background: #fff;
    border: 1.3px solid #adadad;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 6px;
    text-align: center;
}

.radio-custom+.radio-custom-label:before {
    border-radius: 50%;
}

.circular-radio .radio-custom-label span {
    vertical-align: middle;
    font-weight: 400;
}

.radio-block label.title {
    margin-bottom: 17px;
}

.input-block .field-icon-box {
    position: absolute;
    top: 30px;
    right: 10px;
    pointer-events: none;
}

.datepicker-field::placeholder {
    color: var(--primary-clr);
    font-weight: 500;
    font-size: 14px;
}

.form-progBtn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 30px;
}

.fm-prog-btn {
    min-height: 50px;
    border-radius: 50px;
    padding: 0 66px;
    font-size: 14px;
    font-weight: 500;

}

.btn-upload-input {
    position: relative;
    overflow: hidden;
    margin: 0px;
    color: #333;
    background-color: #fff;
    border: 1.5px solid var(--primary-clr);
    padding: 11px 30px;
    width: fit-content;
    gap: 10px;
    color: var(--primary-clr);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.btn-upload-input img {
    transition: .17s ease-in-out;
}

.btn-upload-input:hover,
.btn-upload-input:active {
    border-color: #000;
    color: #000;
}

.btn-upload-input:hover img,
.btn-upload-input:active img {
    filter: grayscale(100) contrast(100);
}

.btn-upload-input input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.step-wrapper {
    padding-bottom: 40px;
}

.upload-input::file-selector-button {
    cursor: pointer;
}

.fm-prevBtn {
    border-color: var(--black-clr);
    color: var(--black-clr);
    background: var(--white-clr);
}

.reg-form-outer .step-wrapper .select-input-block .cmn-select+.select2-container--default .select2-selection--single {
    min-height: 45px;
}

.reg-form-outer .step-wrapper .select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
    line-height: 45px;
    padding: 0 14px;
}

.reg-form-outer .step-wrapper .select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--primary-clr);
    font-weight: 500;
}

.reg-form-outer .step-wrapper .select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
}

.reg-form-outer .step-wrapper .select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -14px;
    border-color: var(--primary-clr);
}

.multi-form .input-block.full-width-block {
    max-width: 100%;
    flex-basis: 100%;
}

.btn-info {
    color: var(--primary-clr);
}

.dt-block .datepicker table tr td span {
    font-size: 14px;
    height: 45px;
    line-height: 45px;
}

.dt-block .datepicker table th {
    font-size: 15px;
}

.dt-block .datepicker table tbody tr td {
    font-size: 14px;
}

.dt-block .datepicker table tr td span.focused,
.dt-block .datepicker table tr td span:hover,
.dt-block .datepicker .datepicker-switch:hover,
.dt-block .datepicker .next:hover,
.dt-block .datepicker .prev:hover,
.dt-block .datepicker tfoot tr th:hover,
.dt-block .datepicker table tr td span.active.active,
.dt-block .datepicker table tr td.active.active,
.dt-block .datepicker table tr td.day.focused,
.dt-block .datepicker table tr td.day:hover {
    background: var(--primary-clr);
    color: var(--white-clr);
    cursor: pointer;
}

.file-name-display {
    display: block;
    width: 100%;
    word-break: break-word;
    color: #666;
    font-size: 13px;
    margin: 5px 0 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.select-input-block .select2-results__option {
    font-size: 14px;
}

.select-input-block .select2-container--default .select2-results__option--highlighted[aria-selected],
.select-input-block .select2-container--default .select2-results__option[aria-selected=true] {
    background: var(--primary-clr);
    color: var(--white-clr);
}


.resume-dropZone {
    border: 1.5px dashed #ADADAD;
    min-height: 197px;
    border-radius: 6px;
    position: relative;
    background: white;
    overflow: hidden;
}

.resume-dropZone::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(119 116 47 / 19%) 36.6%, #FFFFFF 51.6%, rgb(119 116 47 / 25%) 66.6%);
    pointer-events: none;
}

.dropzone-wrapper {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dropzone-desc {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    z-index: 2;
    width: fit-content;
}

.dropzone-desc .desc-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    cursor: pointer;
}

.dropzone-desc .desc-text span {
    color: var(--primary-clr);
}

.dropzone-desc .desc-text span:hover {
    text-decoration: underline;
}

.dropzone,
.dropzone:focus {
    position: absolute;
    outline: none !important;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.preview-zone {
    z-index: 2;
    text-align: center;
}

.preview-zone .box {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
    padding-top: 20px;
}

.box-body .file-name {
    margin: 10px 0 20px;
    font-size: 12px;
    padding: 0 10px;
}

.box-body .remove-preview {
    position: absolute;
    right: -8px;
    top: -7px;
    border-radius: 50%;
    padding: 0;
    height: 20px;
    width: 20px;
    font-size: 10px;
}

.box-body .remove-preview i {
    margin-top: 2px;
}

.box-body .preview-inner {
    position: relative;
    margin: auto;
    width: fit-content;
}

.box-body .preview-inner img {
    border-radius: 8px;
}

.upload-file-fallback-img {
    font-size: 55px;
    color: #444;
}

.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}

.spinner {
    border: 8px solid rgb(203 203 203);
    border-radius: 50%;
    border-top: 8px solid var(--primary-clr);
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.regUser-fetch-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
}

.regUser-fetch-inner::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    height: 1px;
    top: -35px;
    background: #ADADAD;
}

.regUser-fetch-inner .left-col p:first-of-type {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
}

.regUser-fetch-inner .left-col p:last-of-type {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-top: 5px;
}

.fetch-old-data-btn.fm-prog-btn {
    padding: 0 30px;
    border: 1px solid #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    background: white;
    transition: .2s ease-in-out;
    max-width: unset;
}

.fetch-old-data-btn:hover {
    border: 1px solid var(--primary-clr);
    background: var(--primary-clr);
    color: var(--white-clr);
}

.hidden {
    display: none;
}

@media screen and (max-width: 1199px) {
    .filter-row .filter-col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 8px;
        margin-bottom: 10px;
    }

    .filter-row {
        margin: 0 -8px;
    }

    .jb-detail-outer .inner .main-content {
        max-height: 646px;
    }
}

@media screen and (max-width: 991px) {
    .web-field-block {
        display: none;
    }

    .job-filter-form .form-inner {
        flex-wrap: wrap;
        gap: 8px 15px;
        justify-content: flex-end;
    }

    .job-filter-form .input-block {
        flex-grow: 1;
    }

    .job-title-block .input-field {
        max-width: 100%;
    }

    .mob-filter-box {
        display: block;
        width: 100%;
    }

    .mob-filter-box .mob-filters-dd {
        text-align: end;
    }

    .mob-filter-box .mob-filters-dd .dropdown-toggle {
        background: transparent;
        color: var(--primary-clr);
        font-weight: 500;
        font-size: 15px;
    }

    .mob-field-block .input-field {
        width: 100%;
        border-radius: 6px;
        border: 1px solid #AFAFAF;
        font-size: 14px;
        padding: 0 28px;
        min-height: 36px;
    }

    .formOne .input-block:nth-of-type(5),
    .formOne .input-block:nth-of-type(6) {
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 767px) {
    .modal-bottom-section .mob-modal-filter-area .filter-row .filter-col {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .job-listing-wrapper .job-available-box .listing-box {
        max-height: max-content;
        margin: 0 -12px;
        padding: 0 12px;
    }

    .find-job-header .header-inner {
        padding: 30px 9px;
    }

    .filter-box {
        padding-inline: 9px
    }

    .mob-modal-filter-area .filter-box {
        padding-inline: 0px
    }

    .job-listing-wrapper {
        padding: 22px 9px;
    }

    .header-wrapper .regForm-header {
        padding: 30px 30px 40px;
    }

    .reg-tab-wrapper {
        padding: 0 30px;
    }

    .multi-form .fields-wrapper {
        gap: 0 20px;
    }

    .multi-form .input-block {
        max-width: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
    }

    .regUser-fetch-inner {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
}

@media screen and (max-width: 575px) {
    .find-job-header {
        margin-top: 80px;
    }

    .reg-user-form-section {
        padding-top: 81px;
    }

    .reg-form-outer {
        margin: 0 -12px;
        box-shadow: none;
        border-radius: 0;
        background: white;
    }

    .multi-form.formTwo .input-block {
        max-width: 100%;
        flex-basis: 100%;
    }

    .radio-item3 .circular-radio.radio-select-box {
        justify-content: space-between;
    }

    .header-filter-wrapper.stickyScroll {
        top: 79px;
    }
}


@media screen and (max-width: 480px) {
    .find-job-header .header-inner p {
        font-size: 13px;
        line-height: 18px;
        padding: 0 15px;
    }

    .job-filter-form .jb-src-btn {
        flex-grow: 1;
    }

    .job-listing-wrapper .job-available-box {
        padding-top: 0;
    }

    .filter-box .filter-title-box .filter-title-text,
    .filter-box .filter-dropdown-box .filter-dropdown-text {
        font-size: 14px;
    }

    .mob-filter-box {
        width: max-content;
    }

    .job-listing-wrapper .job-available-box .listing .jb-card-wrapper {
        padding: 15px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-type {
        font-size: 15px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul {
        gap: 5px 21px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul li {
        gap: 5px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul li .text {
        font-size: 13px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .jb-desc ul li .icon-box img {
        max-width: 14px;
    }

    .job-listing-wrapper .job-available-box .jb-card-wrapper .posted-time {
        font-size: 11px;
    }

    .form-progressbar li .text {
        font-size: 13px;
    }

    .form-progressbar li .prog-circle {
        width: 25px;
        height: 25px;
        margin: 8px auto 0;
    }

    .form-progressbar li:after {
        top: calc(50% + 13px);
    }

    .prog-fill {
        font-size: 13px;
        line-height: 14px;
    }

    .form-progressbar li.active.completed .prog-fill::before {
        top: -1px;
        left: -2.5px;
        scale: .8;
    }

    .regUser-fetch-inner .left-col p:first-of-type {
        font-size: 14px;
        line-height: 18px;
    }

    .regUser-fetch-inner .left-col p:last-of-type {
        font-size: 12px;
        line-height: 14px;
        margin-top: 5px;
    }

    .regUser-fetch-inner {
        margin-top: 60px;
    }

    .regUser-fetch-inner::before {
        top: -30px;
    }

    .fetch-old-data-btn.fm-prog-btn {
        font-size: 13px;
    }

    .regForm-header .job-apply-desc .inner .header .info {
        font-size: 15px;
    }

    .regForm-header .job-apply-desc .inner .job-insights-provider ul {
        gap: 10px;
    }

    .regForm-header .job-apply-desc .inner .job-insights-provider ul li {
        gap: 4px;
    }

    .regForm-header .job-apply-desc .inner .job-insights-provider ul li .text {
        font-size: 12px;
    }

    .resume-dropZone {
        min-height: 147px;
    }

    .dropzone-desc .desc-text {
        font-size: 10px;
        line-height: 14px;
    }
}

@media screen and (max-width: 420px) {
    .multi-form .fields-wrapper {
        flex-direction: column;
    }

    .multi-form .input-block {
        max-width: 100%;
        flex-basis: 100%;
    }

    .circular-radio.radio-select-box {
        gap: 0 20px;
    }

    .reg-tab-wrapper {
        padding: 0 21px;
    }

    .header-wrapper .regForm-header {
        padding: 30px 21px 40px;
    }

    .form-progBtn-wrapper {
        gap: 16px;
        padding: 0;
    }

    .fm-prog-btn {
        min-height: 45px;
        padding: 0;
        max-width: calc(50% - 8px);
        width: 100%;
    }
}

@media screen and (max-width: 375px) {
    .multi-form .input-block label {
        font-size: 13px;
    }

    .cl-checkbox>span {
        font-size: 11px;
    }
}

@media (max-height: 425px) and (orientation: landscape) {
    .modal-bottom-fixed .modal-dialog .modal-content .modal-body {
        max-height: 300px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .header-filter-wrapper.stickyScroll {
        position: static;
    }
}
/* radio button*/
.radio-custom,
.radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.radio-custom {
    opacity: 0;
    position: absolute;
}
/* job apply box*/
.job-insights-provider ul li .text {
    font-size: 14px;
    line-height: 17px;
    color: #666;
}

.job-insights-provider {
    margin-bottom: 20px;
}

.job-insights-provider ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.job-insights-provider ul li {
    display: flex;
    min-width: 287px;
    gap: 10px;
}

.job-insights-provider ul li .icon-box {
    line-height: 15px;
}

.job-insights-provider ul li .text {
    font-size: 14px;
    line-height: 17px;
    color: #666;
}
.select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
}
.select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    line-height: 35px;
    font-size: 13px;
    padding-left: 28px;
}
.input-block {
    position: relative;
}
.select-input-block .cmn-select+.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 0;
    margin-left: -9px;
    top: calc(50% - 3px);
    transform: translateY(-50%) rotate(135deg);
    background: transparent;
    border-color: #666666;
    border-width: 1px 1px 0 0;
    width: 8px;
    height: 8px;
    border-style: solid;
}
.error-message {
    color: red;
    font-size: 0.9em;
}

/* Loader Styles */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.swal2-popup {
    width: 400px; /* Adjust width */
    height: 200px; /* Adjust height */
    font-size: 14px; /* Adjust font size */
}

.swal2-title {
    font-size: 16px; /* Adjust title font size */
}

.swal2-content {
    font-size: 14px; /* Adjust content font size */
}
.txt-666 {
    color: #666666;
}

.regType-option-box {
    padding: 10px 40px 50px;
}

.regType-option-box .head {
    max-width: 592px;
    margin-bottom: 30px;
}

.regType-option-box .head h3 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 22px;
}

.regType-option-box .head p {
    font-size: 14px;
}

.opt-wrapper {
    gap: 32px;
}

.opt-wrapper .opt-card {
    border: 1px solid #DDDDDD;
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: border .2s ease-out;
    height: 100%;
}

.opt-wrapper .opt-card:hover {
    border: 1px solid #908E51
}

.opt-card .icon-bx {
    --sz: 60px;
    height: var(--sz);
    width: var(--sz);
}

.opt-card .content {
    margin-top: 13px;
}

.opt-card .content .title {
    color: #2E2E2E;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 21px;
}

.opt-card .content .info {
    font-size: 16px;
}

.regEd-email-box {
    padding: 0 40px 50px;
    margin-top: -10px;
}

.regEd-email-box .head h3 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 22px;
}

.regEd-email-box .head p {
    font-size: 14px;
}

.regEd-email-box .input-box {
    margin-top: 10px;
}

.regEd-email-box .input-box form {
    gap: 20px;
}

.regEd-email-box .input-box form input {
    border: 1.5px solid #ADADAD;
    font-size: 14px;
    padding: 11px 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: border .2s ease-out;
}

.regEd-email-box .input-box form input::placeholder {
    color: #999999;
}

.regEd-email-box .input-box form input:focus,
.regEd-email-box .input-box form input:hover {
    border-color: var(--primary-clr);
}

.opt-col {
    max-width: 50%;
    flex-basis: 50%;
    min-height: 100%;
}

.regEd-email-box .input-box form .green-btn {
    min-width: 140px;
    min-height: 45px;
    border-radius: 6px;
}

.regEd-email-box .input-box .error-block svg {
    min-width: 14px;
}

.regEd-email-box .input-box .error-block {
    gap: 5px;
    align-items: baseline;
    max-width: 590px;
    margin-top: 15px;
}

.regEd-email-box .input-box .error-block p {
    font-size: 14px;
}
.regEd-email-box .input-box .success-block svg {
    min-width: 14px;
}

.regEd-email-box .input-box .success-block {
    gap: 5px;
    align-items: baseline;
    max-width: 590px;
    margin-top: 15px;
}

.regEd-email-box .input-box .success-block p {
    font-size: 14px;
}

.txt-ff7 {
    color: #FF7F27;
}

.txt-c70 {
    color: #C70000;
}

@media screen and (max-width:767px) {
    .opt-col {
        max-width: 100%;
        flex-basis: 100%;
    }

    .opt-card .content .info {
        font-size: 13px;
    }

    .opt-card .content .title {
        font-size: 16px;
        margin-bottom: 7px;
    }

    .regType-option-box,
    .regEd-email-box {
        padding: 0 30px 40px;
    }
}

@media screen and (max-width:480px) {

    .regType-option-box,
    .regEd-email-box {
        padding: 0 21px 40px;
    }

    .opt-wrapper .opt-card {
        border-radius: 10px;
        padding: 23px;
    }

    .opt-wrapper {
        gap: 25px;
    }

    .opt-card .icon-bx {
        --sz: 40px;
    }
    .regEd-email-box .input-box form {
        flex-direction: column;
        gap: 10px;
    }

    .regEd-email-box .input-box form .green-btn {
        width: 100%;
        font-size: 14px;
    }
}
/* //Filter -block test 2 Start== */
.job-filter-form{
    width: fit-content;
    margin: 0 auto;
}
.web-field-block {
    display: block;
}

.mob-filter-box {
    display: none;
}
.job-filter-form .input-block {
    min-width: 180px;
}
.job-filter-form .form-inner{
    flex-wrap: wrap;
    justify-content:flex-start;
}
#job_clear_btn{
    padding: 0 33px;
}
@media screen and (max-width: 991px) {
    .job-filter-form .form-inner {
        justify-content: flex-start;
    }

    .job-filter-form .input-block {
        flex-basis: calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
        min-width: auto;
    }

    .job-filter-form .input-block .input-field {
        max-width: 100%;
    }
}

@media screen and (max-width:480px) {
    .job-filter-form .input-block {
        flex-basis: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
   #job_filter_form .jb-src-btn{
    padding: 0;
    width: calc(50% - 8px);
   }
}
/* //Filter -block test 2 End== */

span.info{
    display: block;
    margin-bottom: -16px;
}
span.info > *{
    color: #666666;
}
span.info table {
    color: #222;
    max-width: 100%;
}
span.info table tr ,span.info table td{
    border: 1px solid #222;
    padding: 2px 6px;
}
span.info h1,
span.info h2,
span.info h3,
span.info h4,
span.info h5,
span.info h6{
    color: #222;
    margin-bottom: 16px;
}
span.info ul,span.info ol{
    padding-left: 30px;
    clear: both;
}
span.info a{
    color:#77742F;
}
span.info a:hover,
span.info a:focus{
    color: #413d00;
}
span.info p,
span.info table,
span.info ul,
span.info div{
    margin-bottom: 16px;
    clear: both;
}
span.info ul li{
    list-style: disc;
}
span.info ol li{
    list-style: decimal;
}
span.info h1{
    font-size: 20px;
}
span.info h2{
    font-size: 18px;
}
span.info h3{
    font-size: 16px;
}
span.info h4{
    font-size: 14px;
}
span.info h5{
    font-size: 12px;
}
span.info h6{
    font-size: 10px;
}
span.info .marker{
    background-color: #fffe50;
}

span.info  blockquote {
    font-style: italic;
    padding: 2px 0;
    padding-left: 20px;
    padding-right: 8px;
    border-style: solid;
    border-width: 0;
    border-left-width: 5px;

}
@media screen and (max-width:420px) {
    span.info p, span.info table, span.info ul, span.info h2 {
        font-size: 14px;
    }
}
.counter{
    cursor: default;
}

.select-input-block .cmn-select+.select2-container--default .select2-selection--multiple .select2-selection__rendered{
    color: #000;
    line-height: 33px;
    font-size: 13px;
    padding-left: 28px;
    margin-top: -6px;
}
/* //B */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #77742F !important;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 11px !important;
    padding: 0 5px;
    border: 0;
    color: #fff;
    line-height: 33px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #fff !important;
}
.select-input-block .cmn-select+.select2.select2-container .select2-selection{
    min-height: 35px;
    line-height: 1;
    height: auto;
}
/* focusout email description css*/
.email_verified{
    padding: 4px 9px;
    background-color: #fff5da;
    border:1px solid #ffcb81;
    margin:4px 1px;
    border-radius: 10px;
    font-size:14px;
    line-height:normal;
    color:#ff0000;
}
/* end date disabled color change*/
#end_date:disabled {
    color: gray; 
    background-color: #f0f0f0; 
}
#regEd_email:disabled {
    background-color: #f0f0f0; 
    color: gray; 
}
/* email is readonly color change*/
input[type="email"][readonly] {
    background-color: #f0f0f0; 
    color: #666; 
    cursor: not-allowed; /* Change cursor to indicate it's read-only */
}
/* hover effect on click here buton*/
#new_user:hover,#submit_email:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline; /* Underline on hover */
}
.old-resume-dropZone {
    min-height: 100px;
}
.old-resume-dropZone {
    border: 1.5px dashed #ADADAD;
    min-height: 80px;
    border-radius: 6px;
    position: relative;
    background: white;
    overflow: hidden;
}
.old-resume-dropZone::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(119 116 47 / 19%) 36.6%, rgb(119 116 47 / 25%) 66.6%);
    pointer-events: none;
}

.primary-link-dotted{
    color: var(--primary-clr);
    text-decoration: underline;
    text-decoration-style: dotted;
}
.text-12{
    font-size: 12px !important;
}
.jobs-listing-single-line{
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: unset !important;
    padding-left: 0 !important;
}
.add-btn{
    background-color: #77742f !important;
    color:white;
    height: 40px;
    width: 165px;
    font-weight: 600;
}
.add-btn:hover{
    color:white;
}
.minus-btn:hover{
    border:1px solid #e60000;
    color:red;
}
.minus-btn{
    color:red;
    height: 40px;
    width: 50px;
    font-weight: 600;
}
.exp-heading ,.edu-heading{
    color:var(--primary-clr);
    font-weight: 600;
}
hr{
    margin-top: 0;
    border:1px solid var(--primary-clr);
}
*:focus {
    outline: none;
}
/* multiple exp -edu UI changes */
.experience-section , .education-section{
    border: 1px solid var(--primary-clr);
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 20px;
}