:root {
    --first-color: #42279a;
    --second-color: #ec5a04;
    --gradient: linear-gradient(229deg, var(--first-color) 22%, var(--second-color) 68%) !important;
    --heading-font: "Marcellus", serif;
}

.first-color {
    color: var(--first-color);
}

.second-color {
    color: var(--second-color);
}

.heading-font {
    font-family: var(--heading-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

a {
    color: var(--second-color);
    text-decoration: none;
    cursor: pointer;
}
p.desc1 {
    font-size: 13px;    text-align: justify;
    margin-bottom: 10px;
}
 
form {
    margin: 0px;
}

a:hover {
    color: var(--second-color);
}

p {
    font-size: 16px;
}

label.label {
    display: inline-block;
    text-align: center;
    font-size: 0.75rem;
    padding: 3px 7px 5px 8px;
}

.label-danger {
    background: #FF1616;
    color: #fff;
}

.label-warning {
    background: #FFAA16;
    color: #fff;
}

.label-success {
    background: #7ED321;
    color: #fff;
}
.main-header.fixed-header {
    position: fixed;
    width: 100%;
    background: #fff;
}

.main-header {
    position: relative;
    top: 0px;
    width: 100%;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.06);
    z-index: 999;
    background-color: #fff;
}

.main-header.fixed-header {
    position: fixed;
    top: 0;
} 

.nav-list ul.nav-menu li .sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 10;
    text-align: left;
    width: 200px;
    border-radius: 0 0 10px 10px;
    background-color: #fff;
    box-shadow: 0 8px 8px rgba(23, 22, 24, 4%), 0 4px 4px rgba(23, 22, 24, 4%), 0 2px 2px rgba(23, 22, 24, 4%);
    transition: transform .3s cubic-bezier(.175, .885, .32, 1.275);
    transform: translate3d(0, 2rem, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
    overflow: hidden;
    /* border-bottom: 2px solid var(--second-color); */
}

.nav-list ul.nav-menu {
    display: flex;
    gap: 0 32px;
    justify-content: space-between;
    align-items: center;
    margin-right: 35px;
}

.list-style {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.nav-list ul.nav-menu li {
	    /* border-bottom: 1px solid #e8ab5380; */
	    list-style: none;
	    padding: 0;
	    display: block;
	    text-align: left;
	    position: relative;
}

.navbar-right-menu {
    display: flex;
    align-items: center;
    justify-content: end;
}

.nav-list ul.nav-menu li a {
    padding: 22px 0;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #323232;
    font-weight: 600;
}

.nav-list ul.nav-menu li a i {
    line-height: 0;
    font-size: 17px;
    margin-right: 6px;
    text-align: center;
    display: inline-block;
    margin-left: 5px;
    color: var(--second-color);
    transition: all 0.3s ease;
}

.btn {
    background: var(--first-color);
    color: #fff;
    padding: 10px 23px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s 
ease;
}
.btn.btn1 {
    background: var(--first-color);
    color: #fff;
    padding: 10px 23px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s 
ease;
}

.btn.btn1:hover {
    background: var(--second-color);
}

.nav-list ul.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    z-index: 9999;
}

.nav-list ul.nav-menu li:hover a {
    color: var(--first-color);
}

.nav-list ul.nav-menu li .sub-menu li a {
    font-size: 14px;
    color: #565656;
    display: block;
    width: 100%;
    padding: 10px 16px;
    transition: all 500ms ease;
    font-weight: 500;
}

.nav-list ul.nav-menu li .sub-menu li:hover a {
    background: var(--second-color);
    color: #fff;
}
 

.btn.btn2:hover {
    background: #000;
    color: #fff;
}

.default-padding {
    padding: 60px 0;
}
 .logo-div img {
        width: 80px;
    height: auto;
    padding: 4px 0;
}

.nav-list ul.nav-menu li:hover a i {
    color: var(--first-color);
}
ul.slick-dots {
    position: absolute;
    left: 50%;
    bottom: 0px;
    padding: 0;
    transform: translate(-50%, 0); 
}

ul.slick-dots li {
    margin-right: 6px;
    border-color: #909BA9;
    border: 1px solid #909BA9;
    background: #909BA9;
    border-radius: 50%;
    display: inline-block;
    width: 7px;
    height: 7px;
}

ul.slick-dots li button {
    display: none;
}

ul.slick-dots li.slick-active {
    border-color: var(--second-color);
    border: 1px solid var(--second-color);
    background: var(--second-color);
}


.no-arrow .slick-arrow {
    display: none !important;
}

.slick-slide {
    height: auto;
}

  
.scroll-top {
    display: none;
    z-index:9;
    position: fixed;
    bottom: 30px;
    right: 20px;
    padding: 8px 14px;
    margin-bottom: 0px;
    border-radius: 8px;
    color: #fff;
    background: var(--first-color);
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: var(--second-color);
    color: #fff;
}


.nav-list ul.nav-menu li:last-child {
    border: none;
}
.slick-arrow {
    position: absolute;
    border: none;
    outline: none !important;
    width: 43px;
    height: 43px;
    background: var(--first-color);
    text-align: center;
    border-radius: 50%;
    top: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-arrow i {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
 
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #fff;
    outline: none;
    background: var(--second-color);
}
 
 .top-header {
    background: var(--first-color);
}
  ul.contact-list {
    padding-left: 0px;
    list-style: none;
}

  ul.contact-list li {
    margin-bottom: 8px;
}

  ul.contact-list li a {
    display: flex;
    align-items: flex-start;
    align-items: center;
}

 ul.contact-list li a i {
    color: var(--second-color);
    line-height: 0px;
}

  ul.contact-list li a span {
    color: #ddd;
    margin-left: 10px;
    line-height: 10px;
}

.top-header .contact-list li {
    display: inline-block;
    margin-right: 25px;
}

ul.media-list {
    list-style: none;
    padding: 0px;
}
 

ul.media-list li {
    display: inline-flex; 
}

ul.media-list li a {
    background-color: #fff;
    font-size: 14px;
    color: #191f29;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

ul.media-list li a i {
    color: #fff;
}
ul.media-list li a.facebook {
    background: #4a639f;
}

ul.media-list li a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

ul.media-list li a.linkedin {
    background: #0077B5;
}
ul.media-list li a.twitter i {
    color: #fff;
}
ul.media-list li a.twitter {
    background: #000;
}
ul.media-list li a.youtube i {
    color: #fff;
}
ul.media-list li a.youtube {
    background: #ff0033;
}
   
 .bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-content {
    padding: 70px 0;
    text-align: center;
}

.banner-section {
    background-image: url('../image/bg.jpg');
}
.banner-content h3 {
    font-size: 41px;
    font-weight: 600;
    color: var(--second-color);
    margin-bottom: 20px;
}

.banner-content h5 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 30px;
}

.btn.btn2 {
    background: var(--second-color);
    color: #fff;
    padding: 10px 23px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hire-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
}

.hire-box .hire-text {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.hire-box .hire-text img {
    width: 30px;
    margin-right: 10px;
}

.hire-box .hire-text h4 {
    font-size: 21px;
    margin-bottom: 6px;
    font-weight: 600;
}

.hire-box .hire-text p {
    margin-bottom: 0px;
    font-size: 15px;
}

.btn.btn3 {
      color: var(--second-color);
    padding: 0px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    transition: .3s;
    background: transparent;
}

.btn.btn3:hover {
    color: var(--first-color);
}
.sec-title {
    margin-bottom: 25px;
}

.sec-title h4 {
    margin-bottom: 0px;
    font-size: 35px;
    font-weight: 800;
    color: var(--second-color);
}

.cat-box {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
    background: #f2f2ff;
    padding: 33px 0;
    border-radius: 15px;
    transition: .3s;
}

.cat-box .cat-icon {
    width: 100px;
    background: #fff;
    border-radius: 13px;
    margin-bottom: 13px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
    transition: .3s;
}

.cat-box .cat-icon img {width: 53px;}
 

.cat-box .cat-desc h6 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--first-color);
    font-weight: 700;
}

.cat-box .cat-desc p {
    margin-bottom: 0px;
    font-size: 13px;
}

.cat-box:hover {
    background: var(--second-color);
}

.cat-box:hover h6 {
    color: #fff;
}

.cat-box:hover p {
    color: #eee;
}
.job-box {
    background: #FFFFFF;
    border: 1px solid rgba(82, 88, 102, 0.2);
    box-shadow: 0px 4px 4px rgba(25, 34, 63, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
	    margin-bottom: 20px;
    padding: 20px 20px;
}

.job-box .upper-flex {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.job-box .upper-flex .time-posted {
    position: absolute;
    left: 0px;
    top: -2px;
    font-size: 12px;
    color: #6e6060;
}

.job-box .upper-flex .com-logo {}

.job-box .upper-flex .com-logo img {
    width: 45px;
}

.job-box .job-desc {
    text-align: center;
    margin-bottom: 20px;
}

.job-box .job-desc h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 9px;
}

.job-box .job-desc h6 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--second-color);
}

.job-box .job-desc p {
    margin-bottom: 0px;
    font-size: 13px;
    color: #6e6060;
}

.job-box   .bottom-flex {
    display: flex;
    justify-content: space-between;
}
 

.job-tags a {
    background: #f2f2ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.job-box .bottom-flex h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--first-color);
}

.job-box .upper-flex .wishlist-icon {
    position: absolute;
    right: 0px;
    top: -2px;
}

.job-box .upper-flex .wishlist-icon i {
    font-size: 18px;
}

.stepd-div {}

.stepd-div {
    position: relative;
    margin-bottom: 15px;
}

.stepd-div h5 {
    font-size: 21px;
    font-weight: 700;
}

.stepd-div p {
    font-size: 15px;
}
.stepd-div img {
    width: 70px;
    margin-bottom: 20px;
}
.inner-flex {
    display: flex;
    justify-content: space-between;
}

.default-padding.newsletter {
    padding: 0px;
}

.inner-flex .letter-img {
    width: 366px;
    margin-right: 30px;
    padding-top: 75px;
}

.letter-content {
    padding-top: 97px;
    padding-bottom: 97px;
    width: 59%;
}

.letter-content h3 {
    font-size: 47px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.letter-content p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    width: 650px;
}

.subscribe-form .form-control {
    border-radius: 30px 0px 0px 30px;
    padding: 15px 15px 15px 31px;
}

.subscribe-form .btn.btn1 {
    border-radius: 0px 30px 30px 0px;
    width: 32%;
    padding: 10px 15px;
}
 

.footer-logo img {
    width: 100px;
    margin-bottom: 15px;
}


.footer-logo img {
    width: 100px;
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}

.footer {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--second-color);
}
 

.footer-widget .widget-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.footer-widget ul.footer-list {
    padding: 0px;
    list-style: none;
    margin: 0px;
}

.footer-widget ul.footer-list a {
    display: block;
    width: 100%;
    font-size: 15px;
    margin-bottom: 7px;
    color: #eee;
}
.footer-widget ul.footer-list a:hover {
    color: #fff;
    font-weight: 500;
}

.copyright-sec {
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.copyright-sec p {
    font-size: 15px;
    margin-bottom: 0px;
}

.copyright-sec p a {
    font-weight: 600;
}

.text-right {
    text-align: right;
}
.blog-box {
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    position: relative;
    margin-bottom: 10px;
}

.blog-box .blog-img {
    position: relative;
}

.blog-box .blog-img img {
    border-radius: 30px;
}

.blog-box .blog-img .date-box {
    position: absolute;
    background: var(--first-color);
    bottom: 0px;
    padding: 8px 10px;
    color: #fff;
    font-size: 12px;
    border-top-right-radius: 12px;
}

.blog-box .blog-img .date-box b {
    display: block;
    font-size: 18px;
    color: #fff;
}

.blog-box .blog-text {
    padding: 20px 20px;
}

.blog-box .blog-text h5 {
    font-size: 21px;
    font-weight: 600;
    color: var(--second-color);
    line-height: 26px;
    margin-bottom: 13px;
}

.blog-box .blog-text p {
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-box .blog-text .btn.btn3 {
       color: var(--second-color);
    font-size: 15px;
    border: none;
    padding: 0px;
}
.blog-box .blog-text .btn.btn3:hover{ 
    background: transparent;
}

.blog-box:hover {
    background: var(--first-color);
}

.blog-box:hover h5 {
    color: #fff;
}

.blog-box:hover p {
    color: #eee;
}

.blog-box:hover .btn.btn3 {
    color: #fff;
}
section.split-section {
    overflow: hidden;
    display: flex;
}

.split-section .inner-div {
    width: 50%;
    text-align: center;
    padding: 150px 87px;
    color: #fff;
}

.split-section .inner-div.seeker {
    background: #FF6600;
}

.split-section .inner-div.provider {
    background: #003366;
}

.split-section .inner-div h3 {
    font-size: 41px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
}

.split-section .inner-div img {
    width: 248px;
    margin-bottom: 25px;
}
.split-section .inner-div h5 {
    font-size: 24px;
    margin-bottom: 25px;
    line-height: 30px;
}
.btn-white {
    background: #fff;
    color: #ff6600;
}

.btn-white:hover {
    background: var(--first-color);
}
.btn-white {
    background: #fff;
    color: #ff6600;
}

.btn-white:hover {
    background: var(--first-color);
}
.btn-green {
    background: #69ba0a;
}

.btn-green:hover {
    background: var(--first-color);
}
.marquee-section div {
    display: block;
    width: 200%;
    position: absolute;
    animation: marquee 12s linear infinite;
    overflow: hidden;
}

.marquee-section span {
    float: left;
    width: 50%;
}

section.marquee-section {
    font-size: 2vw;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    height: 2.5vw;
    overflow: hidden;
    background-color: #000;
    position: relative;
}

@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}


.category-siebar {
    position: relative;
}
.sidebar-block {
    background: #fff;
    padding: 12px 10px 15px 10px;
    border-bottom: 1px solid #ddd;
}

.sidebar-block.filter-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.sidebar-block.filter-div h5 {
    margin-bottom: 0pc;
    font-size: 19px;
}
.sidebar-block.filter-div i {
    color: var(--first-color);
}
.filter-close {
    display: none;
}
.sidebar-block .title-div {
    position: relative;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar-block .title-div h4 {
    margin-bottom: 0px;
    font-size: 17px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--first-color);
    width: -webkit-fill-available;
} 
.sidebar-block .title-div .dropdown {
    font-size: 12px;
    color: #717288;
    transition: 0.3s ease;
}
.sidebar-block .title-div .dropdown.rotate {
    transform: rotate(90deg);
}
.sidebar-block .inner-div.sub-menu {
    overflow: hidden;
    opacity: 0;
    height: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.sidebar-block .inner-div.sub-menu.active {
    overflow: visible;
    height: auto;
    opacity: 1;
}
.sidebar-block .inner-div .cat-menu-list {
    margin-top: 17px;
}
.sidebar-block .inner-div .cat-menu-list li {
    position: relative;
    display: block;
    margin-bottom: 6px;
}
.sidebar-block .inner-div .cat-menu-list li .form-check .form-check-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 0px);
    font-size: 13px;
    width: 100%;
    cursor: pointer;
    margin-top: 3px;
}
.sidebar-block .inner-div .cat-menu-list li .form-check .form-check-label span {
    float: right;
    color: #94969f;
    font-size: 11px;
}
 .inner-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 0px;
    padding: 5px 8px;
}

.sidebar-block:last-child {}

.form-check-input:checked {
    background-color: var(--second-color);
    border-color: var(--second-color);
}
.form-check-input:focus {
    border-color: #00000040;
    box-shadow: none;
}
 
.search-box {
    position: relative;
    margin-bottom: 10px;
    margin-top: 10px;
}

.search-box .form-control {
    padding: 8px 15px 8px 34px;
    font-size: 14px;
    border-radius: 28px;
    border-color: #eee;
    background: #eef8fd;
}

.search-box .search-icon {
    position: absolute;
    top: 9px;
    font-size: 12px;
    color: var(--second-color);
    left: 12px;
}

.search-box .search-icon i {
    line-height: 0px;
}


.category-siebar .app-filter {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 7px 15px;
    font-size: 13px;
}
.jobresuls-box {
    color: #5c6170;
    border: 1px solid #e9eaf3;
    cursor: pointer;
    margin: 0 0 10px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 6px 8px rgba(0, 55, 183, .08);
    border-radius: 8px;
    position: relative;
	transition: .2s linear;
}
.jobresuls-box:hover {
    box-shadow: 0 14px 40px rgba(30, 10, 58, .1);
}
.jobresuls-box .upper-div {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9eaf3;
    padding-bottom: 10px;
    margin-bottom: 10px; 
}
 

.jobresuls-box .upper-div .com-logo img {
    width: 50px;
    margin-right: 19px;
    border-radius: 50%;
}

.jobresuls-box .com-dt {}

.jobresuls-box .com-dt h4 {
    font-size: 17px;
    color: var(--second-color);
    font-weight: 600;
    margin-bottom: 2px;
}

.jobresuls-box .com-dt p {
    margin-bottom: 0px;
    font-size: 13px;
}

.jobresuls-box .job-desc {}

.jobresuls-box   li {
    display: inline-block;
    width: 29%;
    margin-bottom: 8px;
}

.jobresuls-box   ul li i {
    margin-right: 3px;
    font-size: 16px;
}

.jobresuls-box .job-desc ul li.d-block {
    display: block;
    width: 100%;
}

.jobresuls-box  ul li span {
    font-size: 16px;
}

.jobresuls-box   ul {
    margin-bottom: 15px;
}

.job-tags {}

.job-tags p {
    background: #f2f2ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 0px;
    display: inline-block;
}
.details-debar.highlighted {
    background: #d0d0fe;
    border-color: #e1e1e1;
}
.details-debar.highlighted .jobresuls-box {
    background: none;
}
section.breadcrumb {
    text-align: left;
    padding: 9px 0 9px;
    background: #ffece0;
    margin: 0px;
}
  

.breadcrumb-content h2 {
    font-size: 20px;
    line-height: 19px;
    font-weight: 600;
        margin-bottom: 2px;
    margin-top: 5px;
    color: var(--first-color);
}
  
ul.breadcrumb-menu li {
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
    position: relative;
    color: var(--second-color);
    font-weight: 500;
    padding-right: 10px;
    margin-right: 11px;
}
 

ul.breadcrumb-menu li:last-child {
    margin: 0px;
    padding: 0px;
}

ul.breadcrumb-menu li:first-child:after {
    content: '';
    position: absolute;
    top: 3px;
    right: -4px;
    height: 12px;
    width: 2px;
    background-color: var(--second-color);
}

ul.breadcrumb-menu li a {
    color: var(--second-color);
}


.btn-icon {
    display: inline-flex;
    align-items: center;
}

.btn-icon i {
    padding-right: 7px;
}

.job-posted {
    padding-top: 10px;
}

.job-posted p {
    font-size: 12px;
    margin-bottom: 0px;
}

.job-posted p i {
    color: var(--first-color);
    padding-left: 5px;
}

.jobresuls-box h4 {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.jobresuls-box h5 {
    font-size: 15px;
    color: var(--second-color);
    margin-bottom: 10px;
        margin-left: auto;
}

.jobresuls-box.full-desc p {
    font-size: 14px;
}
 

.details-debar {
    cursor: pointer;
    margin: 0 0 10px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 6px 8px rgba(0, 55, 183, .08);
    border-radius: 8px;
    position: relative;
    transition: .2s linear;
    border: 1px solid #e9eaf3;
}

.details-debar .jobresuls-box {
    border: none;
    padding: 0px;
    box-shadow: none;
}

.seprator {
    border-bottom: 1px solid #e9eaf3;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.details-debar .jobresuls-box .upper-div {
    border: 0;
    padding-bottom: 4px;
}

.details-debar .jobresuls-box .job-desc ul li {
    margin-bottom: 3px;
}

.details-debar .jobresuls-box .job-desc ul li span {
    font-size: 14px;
}

.details-debar .jobresuls-box .job-desc ul li i {
    font-size: 13px;
}

.details-debar .jobresuls-box ul {
    margin-bottom: 9px;
}
/* login */
.login-flex {
    align-items: center;
    display: flex;
    border: 1px solid #e9eaf3;
    margin:160px 0;
    padding: 40px 40px;
    background: #fff;
    box-shadow: 0 6px 8px rgba(0, 55, 183, .08);
    border-radius: 8px;
    position: relative;
    transition: .2s linear;
}

.login-box .logo {
    width: 106px;
    margin-bottom: 20px;
    margin-left: auto;
    text-align: center;
}

.login-box  .form-group {
    position: relative;
    margin-bottom: 15px;
}

.login-box .form-group span.icon {
    position: absolute;
       bottom: 10px;
    left: 12px;
    color: var(--second-color);
}

.login-box .form-group .form-control {
    padding: 11px 14px 11px 36px;
    border-radius: 9px;
    border-color: #e9edf6;
    color: #8f8fb1;
    font-size: 13px;
}
.link-btn {
    color: #503c3c;
    font-size: 13px;
    margin-bottom: 14px;
    display: block;
    text-align: right;
}

.login-box .btn {
    padding: 11px 18px;
}
 .login-box .form-group span.icon.eye {
    right: 12px;
    left: unset;
    cursor: pointer;
}
.login-page {
    height: 100vh;
    background: #ffece0;
}
.login-box h4 {
    font-size: 25px;
    font-weight: 600;
    color: var(--first-color);
    margin-bottom: 15px;
    /* text-align: center; */
}

.login-box p {
    /* text-align: center; */
    font-size: 14px;
    margin-bottom: 15px;
}
 
.login-box {
    width: 60%;
    margin-right: 35px;
}

.login-slider-div {
    width: 40%;
}

.login-box .form-group label {
    line-height: 13px;
    margin-bottom: 7px;
    color: #1d212f;
    font-weight: 500;
    font-size: 13px;
}

.or-div {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.or-div:after {
    content: '';
    position: absolute;
    border: 1px dashed #ddd;
    left: 0px;
    top: 12px;
    width: 100%;
}

.or-div span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    background: #fff;
    position: relative;
    padding: 0px 9px;
    border-radius: 50%;
    z-index: 1;
}

.login-methods li a {
    margin-right: 10px;
    display: inline-block;
    background: #F5F7F9;
    border-radius: 30px;
    color: #212529;
    padding: 8px 23px;
    border: 1px solid #E4E4ED;
}

.login-methods ul {
    padding-left: 0px;
    text-align: center;
}

.login-methods img.lgmt-img {
    width: 20px;
    margin-right: 10px;
    margin-top: -5px;
}

.login-methods li {
    display: inline-block;
}

.login-methods {
    margin: 20px 0;
}

.login-methods li a:hover {
    background: var(--second-color);
    color: #fff;
}

.login-methods li a:hover img {
    filter: brightness(200);
} 

.login-slider ul.slick-dots {
    margin: 0px;
    bottom: -25px;
}
.text-second{
    color:var(--second-color)!important;
}
.d-sidebar {
    border: 1px solid #ededed;
    overflow: hidden;
    border-radius: 13px;
	    margin-bottom: 15px;
}
  
.d-sidebar ul li {
    border-bottom: 1px solid #ededed;
}

.d-sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 11px 18px;
    position: relative;
    transition: .3s;
}

.d-sidebar ul li a .icon {
    font-size: 18px;
    margin-top: 3px;
    color: var(--primary-color);
}

.d-sidebar ul li a .text {
    width: -webkit-fill-available;
}

.d-sidebar ul li a .text h6 {
    font-size: 14px;
    margin-bottom: 0px;
    color: #282C3F;
}

.d-sidebar ul li a .text p {
    margin-bottom: 0px;
    font-size: 10px;
    color: #94969F;
    display: none;
}

.d-sidebar ul li a .right-arrow {
    font-size: 11px;
    position: absolute;
    right: 11px;
    top: 33%;
}

.d-sidebar ul li a .right-arrow i {
    color: #282C3F;
}

.d-sidebar ul li:last-child {
    border-bottom: none;
}

.d-sidebar ul li a:hover {
    background: var(--gradient);
}


.d-sidebar ul li a:hover .text h6 {
    color: #fff;
}

.d-sidebar ul li a:hover .right-arrow i {
    color: #fff;
}

.d-sidebar ul li a:hover i {
    color: #fff;
}

.d-sidebar ul li.active a  {
    background: var(--gradient);
}


.d-sidebar ul li.active a  .text h6 {
    color: #fff;
}

.d-sidebar ul li.active a .right-arrow i {
    color: #fff;
}

.d-sidebar ul li.active a i {
    color: #fff;
}

.white-box {
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0px 9px 20px rgb(46 35 94 / 7%);
    padding: 14px 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border: 1px solid #eee;
}

.white-box h5 {
    font-size: 16px;
    margin-bottom: 9px;
}

.white-box h4 {
    font-size: 25px;
    margin-bottom: 0px;
    font-weight: 600;
    color: var(--first-color);
}

.white-box .icon-div {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: #ffece0;
    border-radius: 50%;
}

.white-box .icon-div i {
    color: var(--second-color);
}
.table-box {
    margin-bottom: 18px;
    border-radius: 15px;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    background: #fff;
    border: 1px solid #ecf3fa;
    border: 1px solid #eee;
}
.table-box .card-header {
    padding: 14px 14px;
    /* border-bottom: 1px solid #e9edf4; */
    background: transparent;
}
.user-table {
    padding: 0px;
}
.table-box .card-header h4 {
    font-size: 16px;
    font-weight: 700; 
    color: var(--first-color);
}
.user-table .table>thead {
    background: #f4f6ff;
}
.user-table .table thead th, .user-table .table tbody td{
    vertical-align: top;
    font-size: 13px;
    padding: 10px 13px;
    font-weight: 600;
}
.table>:not(:last-child)>:last-child>* {
    border-bottom-color: #ddd;
}

 .badge.complete {
    background: #51bb252e!important;
    color: #51bb25;
    padding: 7px 16px;
    border-radius: 27px;
}

 .badge.pending {
    background: #ff9b211a !important;
    color: #ff9b21;
    padding: 7px 16px;
    border-radius: 27px;
}

 .badge.uncomplete {
    background: #fd60741a !important;
    color: #fd6074;
    padding: 7px 16px;
    border-radius: 27px;
}

.user-table .table>thead {
    background-color: #f4f6ff!important;
}
 
.com-logo {
    display: flex;
    align-items: center;
}
.noticeboard {
    margin-bottom: 18px;
    border-radius: 15px;
    box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
    background: #fff;
    border: 1px solid #ecf3fa;
}

.header-text {
    padding: 12px 17px;
    border-bottom: 1px solid #ecf3fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-text h4.heading {
    margin-bottom: 0px;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--first-color);
}

.noticeboard-inner {
    padding: 15px 12px;
    border-radius: 5px;
}

.noticeboard-inner ul {
    position: relative;
    padding-left: 0px;
    margin-bottom: 0;
}
 

.noticeboard-inner ul li {
    align-items: flex-start;
    padding-bottom: 7px;
}
 
span.date-content {
    font-size: 9px;
    background-color: #eef1f6;
    padding: 4px 8px;
    border-radius: 5px;
}

.noticeboard-inner h6 {
    margin-bottom: 3px;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

p.f-light {
    color: #52526C;
    opacity: 0.8;
    font-size: 12px;
    font-weight: 400;
}

span.badge.txt-success {
    background-color: #D6EED4;
    color: #54BA4A !important;
}

 .table-com-logo {
    display: flex;
    align-items: center;
}

.table-com-logo .com-logo {
    display: block;
    width: 55px;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin-right: 10px;
}

.table-com-logo .com-logo img {
    border-radius: 50%;
}

.table-com-logo h5 {
    font-size: 17px;
    margin-bottom: 2px;
}

.table-com-logo p {
    margin-bottom: 0px;
    font-size: 13px;
    color: #746565;
}

.user-table .table>tbody td {
    font-size: 13px;
}

.user-table .btn {
    padding: 6px 15px;
    font-size: 13px;
}
.white-box .form-group {
        margin-bottom: 10px;
    position: relative;
}

.white-box .form-group label {
    font-size: 13px;
    margin-bottom: 4px;
    color: var(--first-color);
}

.white-box .form-group .form-control {
    padding: 8px 11px;
    border-radius: 6px;
    background: #ffff;
    font-size: 13px;
}
  
.form-control[readonly] {
    background-color: #fad7a754 !important;
}
.nav-list ul.nav-menu li.candidate-menu ul.profile-dropdown {
    -webkit-box-shadow: 0 0 20px rgb(89 102 122 / 10%);
    box-shadow: 0 0 20px rgb(89 102 122 / 10%);
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    right: 0;
    position: absolute;
    transition: all linear 0.3s;
    z-index: 8;
    background-color: #fff;
    top: 50px;
    display: block;
    padding: 0px;
    width: 180px;
    border: 1px solid #E4E4ED;
}

.nav-list ul.nav-menu li.candidate-menu {}

.nav-list ul.nav-menu li.candidate-menu .can-dt {
    display: flex;
    align-items: center;
}

.nav-list ul.nav-menu li.candidate-menu .can-dt img {
    width: 30px;
    border-radius: 50%;
    margin-right: 8px;
}

.nav-list ul.nav-menu li.candidate-menu .can-dt h5 {
    font-size: 16px;
    color: #323232;
    font-weight: 600;
    margin-bottom: 0px;
}

.nav-list ul.nav-menu li.candidate-menu .can-dt h5 i {
    font-size: 13px;
    padding-left: 3px;
}

.nav-list ul.nav-menu li.candidate-menu:hover {}

.nav-list ul.nav-menu li.candidate-menu:hover ul.profile-dropdown {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    visibility: visible;
    border-radius: 5px;
    overflow: hidden;
}

ul.profile-dropdown li {}

.nav-list ul.nav-menu li.candidate-menu ul.profile-dropdown li {
    list-style: none;
    display: block;
    border-bottom: 1px solid #E4E4ED;
}

.nav-list ul.nav-menu li.candidate-menu ul.profile-dropdown li a {
    padding: 9px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    font-size: 14px;
    color: #6e5a5a;
    transition: all 0.3s ease;
}

.nav-list ul.nav-menu li.candidate-menu ul.profile-dropdown li a i {
    font-size: 14px;
}

.nav-list ul.nav-menu li.candidate-menu ul.profile-dropdown li:hover {
    background: var(--first-color);
}

.nav-list ul.nav-menu li.candidate-menu ul.profile-dropdown li:hover a {
    color: #fff;
}

.nav-list ul.nav-menu li.candidate-menu ul.profile-dropdown li:hover a i {
    color: #fff;
}
.d-sidebar ul li.can-div {
    padding: 15px 16px;
    position: relative;
    transition: .3s;
}

.d-sidebar ul li.can-div .can-dt {
    display: flex;
    align-items: flex-start;
}

.d-sidebar ul li.can-div .can-dt img {
    width: 50px;
    margin-right: 15px;
}

.d-sidebar ul li.can-div .can-dt h5 {
    font-size: 17px;
    color: var(--first-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.d-sidebar ul li.can-div .can-dt p {
    color: #625a5a;
    margin-bottom: 9px;
    font-size: 14px;
}

.d-sidebar ul li.can-div .can-dt .btn.btn1 {
    padding: 3px 15px;
    font-size: 13px;
}

.records-found .form-group {
    width: max-content;
    display: inline-block;
    margin-bottom: 0px;
}

.records-found .showing-from {
    display: inline-block;
    margin-right: 10px;
}

.ml-auto {
    margin-left: auto!important;
    text-align: right;
}

.records-found p {
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 400;
}

.records-found {
    margin-bottom: 12px;
}
.records-found .form-select {
    font-size: 13px;
    padding: 4px 28px 6px 12px;
    background-size: 12px 10px;
    background-position: right 8px center;
}
.pagination-more-btn {
    width: max-content;
    margin-left: auto;
    margin-top: 0px;
}

.pagination-more-btn a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #5e5555;
}

.pagination-more-btn a:hover , .pagination-more-btn a.active {
    cursor: pointer;
    background: var(--second-color);
    color: #fff;
}  

.cselct-options ul {
    list-style: none;
    background: #fff;
    /* box-shadow: 0 0px 15px rgb(0 0 0 / 20%); */
    padding: 0;
    width: 100%;
    overflow-y: auto;
    margin-bottom: 0px;
    height: auto;
    max-height: 250px;
}

.cselct-options ul li {
    margin-bottom: 0;
    width: 100%;
    cursor: pointer;
    padding: 9px 13px;
    border-bottom: 1px solid #5b5b5e4d;
}

.select-list .select-list-div span {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 10px;
    margin-bottom: 0px;
}

.cselct-options ul li:hover {
    transition: .2s;
    background: var(--first-color);
    color: #fff;
}

.cselct-options .search-inner {
    position: relative;
}

.cselct-options .search-inner .search-icon {
    position: absolute;
    top: 9px;
    left: 16px;
    color: #1e3fab;
}

.cselct-options .search-inner .form-control {
    padding-left: 40px!important;
    border-radius: 30px;
    padding: 10px 10px;
    height: auto;
    border-color: #e6e9f3;
}

.cselct-options.select-list-div {
    top: 65px;
    position: absolute;
    z-index: 9;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0px 15px rgb(0 0 0 / 20%);
}

.cselct-options.select-list-div .search-bar {
    margin-bottom: 0;
    width: 100%;
    cursor: pointer;
    padding: 9px 9px;
    border-bottom: 1px solid #f5f5f5;
    background: #fff;
}

.cselct-options ul li span {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #5b5b5eeb;
}

.cselct-options ul li:hover span {
    color: #fff;
}
.btn.sm {
    padding: 4px 16px!important;
    font-weight: 600!important;
    font-size: 13px!important;
}
.form-control:focus{
    box-shadow: none;
}
.upload-img-div {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.upload-img-div .img-block {
    position: relative;
    width: 150px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.upload-img-div .img-block img {
    width: 100%;
    border-radius: 8px;
}

.upload-img-div .img-block .img-bl-close {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    border-radius: 50%;
    transition: .3s;
    opacity: 0;
    cursor: pointer;
}

.upload-img-div .img-block .img-bl-close:hover {
    background: var(--second-color);
    color: #fff;
}
 

.upload-img-div .img-block:hover .img-bl-close {
    opacity: 1;
}
.upload-file-div {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.upload-file-div .file-block {
    width: 20%;
    position: relative;
}

.upload-file-div .file-block .file-detail {
    border: 1px solid #d7cef3;
    background: #f3efff;
    border-radius: 10px;
    padding: 5px 19px;
    margin-right: 11px;
}

.upload-file-div .file-block .file-detail .filename {
    font-size: 14px;
}

.upload-file-div .file-block .file-detail .extension {
    font-size: 15px;
    margin-bottom: 4px;
}

.upload-file-div .file-block .file-detail:hover {
    background: var(--first-color);
    color: #fff;
}

.upload-file-div .file-block .file-close {
    right: 0px;
    top: 16px;
    position: absolute;
    font-size: 21px;
    background: #fff;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
    border: 1px solid #eee;
}

.upload-file-div .file-block .file-close:hover {
    cursor: pointer;
    background: red;
    color: #fff;
}
.table-search-div {
    padding: 15px 15px;
    border-top: 1px solid #eee;
}

.table-search-div .form-control {
    font-size: 14px;
    padding: 11px 13px;
}

.search-bar {
    position: relative;
}

.search-bar .btn.sm.search-btn {
    padding: 4px 8px !important;
    position: absolute;
    right: 7px;
    top: 7px;
    border-radius: 6px;
}

.table-search-div  .form-select.form-control {
    padding: 11px 41px 11px 13px;
}
.text-left {
    text-align: left!important;
} 

.alert-query ul.list {
    padding: 0px;
    list-style: none;
}

.alert-query ul.list li {
    font-size: 12px;
}

.alert-query ul.list li strong {
    font-weight: 700;
}

.user-table .table tbody td {
    color: #020202;
    font-weight: 400;
}
.user-table .table thead th {
    background: #eef1f6;
}
.following-box {
    position: relative;
    border-radius: 12px;
    border: 1px solid #E4E4ED;
    margin-bottom: 15px;
    padding: 15px 15px;
}

.following-box .following-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    border-radius: 50%;
    transition: .3s;
    cursor: pointer;
}

.following-box .uppar-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.following-box .uppar-box .img-div {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
 

.following-box .uppar-box .text h4 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}
 

.following-box .uppar-box .text ul li {
    display: inline-flex; 
    font-size: 14px;
    color: #483030;
    align-items: center;
    gap: 3px;
}

.following-box .uppar-box .text ul li i {
    font-size: 13px;
    color: var(--first-color);
}
 

.following-box ul li {
    display: inline-block;
    padding-right: 13px;
    position: relative;
    font-size: 14px;
    color: #000;
}

.following-box ul li a {color: #000;position: relative;}

.following-box ul li a:after {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--first-color);
    top: 9px;
    right: -10px;
}

.following-box ul li:last-child a:after {
    content: none;
}

.following-box .following-close:hover {
    background: red;
    color: #fff;
} 

.loginModal .modal-content {
    display: block;
    border-radius: 16px;
    padding: 31px 30px;
}

.loginModal .login-box {
    position: relative;
    width: 100%;
    margin: 0px;
}

.loginModal .modal-dialog {min-width: 700px;}
.loginModal .btn-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
    cursor: pointer;
}

.candidate-box {
    display: flex;
    align-items: flex-start;
}

.candidate-box img {
    width: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.candidate-box .candidate-det {}

.candidate-box .candidate-det h4 {
    font-size: 17px;
    margin-bottom: 5px;
}

.candidate-box .candidate-det h4 span {
    color: #1e1717;
    padding-left: 8px;
    font-size: 14px;
}

.candidate-box .candidate-det p {
    color: #000;
    font-size: 13px;
    margin-bottom: 4px;
}

.candidate-box .candidate-det p a {
    color: #000;
}

.candidate-box .candidate-det p a:hover {
    color: var(--first-color);
}
 

.candidate-box .candidate-det ul li {
    display: inline-flex;
    font-size: 12px;
    color: #483030;
    align-items: center;
    gap: 2px;
    padding-right: 13px;
}

.candidate-box .candidate-det ul li i {
    color: var(--second-color);
    padding-right: 1px;
}

.user-table .btn.btn-light {
    background: #eee;
    color: #000;
    padding: 6px 9px;
}

.user-table .btn.btn-light:hover {
    background: var(--first-color);
    color: #fff;
}

h5.heading2 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 600;
}
.fs-10 {
    font-size: 12px;
}
.price-box {
    border: 1px solid #E4E4ED;
    border-radius: 14px;
    padding: 20px 19px;
}

.price-box h4 {
    font-size: 23px;
    color: var(--first-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.price-box p {
    font-size: 13px;
    color: #625a5a;
    margin-bottom: 10px;
}

.price-box h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 10px;
}

.price-box h6 {
    font-size: 15px;
    margin-bottom: 10px;
}

.price-box ul {}

.price-box ul li {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    font-size: 13px;
    color: #876b6b;
}

.price-box ul li .check-icon {
    width: 20px;
    height: 20px;
    background: #E6F7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.price-box ul li .check-icon i {
    font-size: 12px;
    color: #635BFF;
}

.price-box .btn {
    width: 100%;
    margin-bottom: 11px;
    font-size: 14px;
    padding: 8px 23px;
}.price-box.selected {
    background: #faf9ff;
}

.price-box:hover {
    background: #faf9ff;
}

.ds2 .inner-flex { 
    align-items: center;
}
.ds2 .inner-flex .letter-img {
    width: 257px;
    height: auto;
    margin-right: 0;
    padding-top: 48px;
}
.ds2 .letter-content {
    padding-top: 43px;
    padding-bottom: 49px;
    width: 69%;
}
.stepd-div.ds2 { 
    padding: 0 60px;
}
.stepd-div.ds2 h5 {
    font-size: 21px;
    font-weight: 500;
    line-height: 26px;
}
.offer-box img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.offer-box {
    background: #FFFFFF;
    border: 1px solid #52586614;
    box-shadow: 0px 4px 4px rgba(25, 34, 63, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 9px 9px;
}
.offer-box .cnt {
    padding: 0 12px 12px 12px;
}

.offer-box .cnt h5 {
    font-size: 20px;
    font-weight: 700;
}

.offer-box .cnt p {
    color: #6e6767;
    font-size: 14px;
    margin-bottom: 10px;
}

.offer-box .cnt .btn {
    padding: 7px 21px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.faq .accordion-item {
    border-radius: 0px;
    border-left: 0;
    border-right: 0;
    overflow: hidden;
    border-top: 0;
}
.faq .accordion-item .accordion-button {
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
}
.faq .accordion-item .accordion-button {
    font-size: 14px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-transform: capitalize;
    padding: 13px 13px;
}.faq .accordion-item .accordion-button:not(.collapsed) {
    background-color: #eef2ff;
    color: var(--first-color);
    padding-bottom: 10px;
}

.faq .accordion-item .accordion-collapse {
    background-color: #eef2ff;
}
.faq  .accordion-item .accordion-button::after { 
	    background-size: 13px;
    top: 4px;
    position: relative;
}
.faq .accordion-item .accordion-collapse .accordion-body {
    font-size: 13px;
}
.accordion-button:not(.collapsed)::after {
    top: -5px !important;
}
.bg-lg-1{
    background: #ffece0!important;
}
.register-page {
    padding: 50px 0;
}

.register-page .login-flex {
    display: block;
    margin: 0px;
}

.register-page .login-flex .login-box {
    width: 100%;
    margin: 0px;
}


.iti__country-list {
    max-width: 374px;
}
.iti--separate-dial-code .iti__selected-flag {
    background: #e9edf6;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.iti { 
    width: 100%;
}
.register-page .login-box .form-group .form-control {
    padding: 11px 14px 11px 14px;
}
.copyright-sec.ds2 {
    text-align: center;
    padding: 13px 0;
}

.copyright-sec.ds2 .hori-menu {
    margin-bottom: 10px;
}

.copyright-sec.ds2 .hori-menu li {
    display: inline-block;
    padding: 0 13px;
    position: relative;
}

.copyright-sec.ds2 .hori-menu li:after {
    content: '';
    position: absolute;
    right: -2px;
    height: 19px;
    width: 1px;
    top: 5px;
    background: #332e2e9c;
}

.copyright-sec.ds2 .hori-menu li:last-child:after {
    content: none;
}

.copyright-sec.ds2 .hori-menu li a {
    color: #625454;
    font-size: 14px;
}

.copyright-sec.ds2 .hori-menu li:hover a {
    color: var(--first-color);
}
.status-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 20px;
}

.status-box .work-box {
    display: flex;
    align-items: center;
    width: 40%;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 13px 15px;
    cursor: pointer;
}

.status-box .work-box img {
    width: 50px;
    margin-left: 20px;
}

.status-box .work-box h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.status-box .work-box p {
    margin-bottom: 0px;
    font-size: 12px;
    color: #504141;
}
.work-box.active {
    background: #eee9ff;
    border-color: #dacfff;
}
.register-div {
    padding-top: 50px;
}

.register-div h3 {
    font-size: 35px;
    font-weight: 600;
}

.register-div p {
    margin-bottom: 17px;
    font-size: 15px;
}

.register-div .people-img {
    width: 150px;
}
.sm-img {
    width: 18px;
    margin-right: 4px;
}   
.register-div.register-as {
    padding-top: 0px;
    margin-bottom: 30px;
}

.register-div.register-as h3 {
    color: var(--second-color);
    margin-bottom: 15px;
}

.form-group.register-btn {
    display: inline-block;
}

.form-group.register-btn input {
    display: none;
}

.form-group.register-btn label,
.form-group.register-btn a {
    color: #263838;
    border-radius: 30px;
    cursor: pointer;
    margin: 0px 3px 0 0px;
    padding: 9px 23px;
    border: 1px solid #00000017;
    background-color: transparent;
    text-align: left;
    line-height: 17px;
    text-transform: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    display: inline-block;
    width: auto;
    background: #fff;
}
 

.form-group.register-btn .form-check-input:checked[type=radio]+label,
.form-group.register-btn a.active,
.form-group.register-btn a:hover {
    border: 1px solid var(--second-color)!important;
    background: var(--second-color)!important;
    color: #fff;
}
.offer-box.mis-box img {
    width: 70px;
}

.offer-box.mis-box .cnt {
    height: 231px;
}

.offer-box.mis-box:hover {
    background: #f6f4ff;
}
.contact-section  .contact-list {
    margin-bottom: 20px;
}

.contact-section  .contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-section  .contact-list li .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--first-color);
    margin-right: 15px;
    font-size: 14px;
    color: #ffff;
}

.contact-section .contact-list li .text {
    font-size: 15px;
}
 

.contact-section .contact-list li .text span {
    font-weight: 500;
} 

.contact-section .contact-section p.desc1 {
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-section h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--first-color);
    margin-top: 30px;
}
.policy-section {}

.policy-section h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
        color: var(--first-color);
}

.policy-section h4 {
    font-size: 27px;
    font-weight: 800;
    color: var(--second-color);
        margin-bottom: 15px;
}

.policy-section p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #6c5d5d;
}
 

.policy-section ul li {
    font-size: 15px;
    margin-bottom: 6px;
}

.policy-section table {
    margin-bottom: 20px;
}

.policy-section table th , .policy-section table td {
    font-size: 13px;
    padding: 13px 14px;
}

.policy-section table thead tr th {
    background: #eee;
}

.text-first {
    color: var(--first-color)!important;
}
.dir-img {
    border-radius: 50%;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    line-height: 13px;
    margin-bottom: 5px;
    color: #1d212f;
    font-weight: 500;
    font-size: 13px;
}
.form-group .form-control {
        border-color: #e9edf6;
    color: #8f8fb1;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 7px;
} 
.form-group .form-control.form-select {
    color: #3c3c40;
}
.how-it-works .offer-box {padding: 29px 43px;text-align: center;}

.how-it-works .offer-box .cnt {
    height: auto;
}
.how-it-works .offer-box p {
    margin-bottom: 0px;
}
table.style1 {}

table.style1 tr th, table.style1 tr td {
    font-size: 14px;
    padding: 10px 10px;
}

table.style1 thead tr th {
    background-color: #e8e1ff;
    font-weight: 600;
}

.lock-img {
    width: 20px;
    margin-left: 2px;
}
.ph-number-div {
    display: flex;
    align-items: center;
    gap: 2px;
        cursor: pointer;
}
.unlockModal {}

.unlockModal .modal-header {
    padding: 13px 20px;
}

.unlockModal .modal-header h5.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--first-color);
}

.unlockModal .modal-body {
    padding: 20px;
}

.unlockModal .modal-body h6 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

ul.check-list {
    margin-bottom: 15px;
}

ul.check-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 4px;
    gap: 8px;
}

ul.check-list li i {
    color: #4bb101;
}

.unlockModal .modal-body h5 {
    font-size: 22px;
    margin-bottom: 11px;
}

.unlockModal .modal-body h5 b {
    color: var(--second-color);
}

.unlockModal .modal-body p {
    margin-top: 10px;
    font-size: 14px;
}
.jobresuls-box.highlighted {
    background: #f2f2ff;
    border-color: #e1e1e1;
}

.jobresuls-box.highlighted .job-tags p {
    background: #fff;
}
.botton-hr-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*border-top: 1px solid #e9eaf3;*/
    padding-top: 0px;
    margin-top: 0px;
}

.botton-hr-div p {
    font-size: 18px;
    margin-bottom: 8px;
    color: #000;
}

.botton-hr-div .btn {
    padding: 7px 20px;
    font-size: 15px;
}
.btn-close:focus {
    box-shadow: none;
}
.jobresuls-box .upper-div .upper-logo-flex {
    display: flex;
    align-items: center;
}

.jobresuls-box .upper-div .right-tex-contact {
    color: #000;
}
.details-debar .botton-hr-div p {
    font-size: 11px;
    margin-bottom: 4px;
}

.details-debar .botton-hr-div .btn {
    font-size: 11px;
    padding: 5px 13px;
    margin-left: 10px;
}

.testimonial-box {
    padding: 20px 22px;
    text-align: left;
    margin: 7px 0px 19px 0;
    box-shadow: 1px 1px 8px #e9fff1;
    border-radius: 13px;
    background: #fff;
    border: 1px solid #e6e6e6;
    cursor: pointer;
}

.testimonial-box .customer-details p.customer-name {
    font-size: 17px;
    margin-bottom: 0;
    color: var(--first-color);
    font-weight: 600;
}

.testimonial-box p.review {
    color: #555;
}

.testimonial-box .rating i {
    color: #fdc22d;
}

.testimonial-slider ul.slick-dots {
    margin: 0;
    bottom: -7px;
}

.testimonial-slider .item {
    margin: 0 15px;
}
 
.testimonial-box .customer-details {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-box .customer-details img {
    width: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-box .customer-details p.designation {
    margin-bottom: 0px;
    font-size: 13px;
}

.testimonial-block {
    background: #f8effd;
}

.cookie-div {
    position: fixed;
    background: #010101c7;
    bottom: 0px;
    z-index: 00;
    width: 100%;
    padding: 25px 20px;
    box-shadow: 0px 4px 40px rgba(39, 32, 120, 0.1);
    border-top: 1px solid #eeeeee52;
}

.cookie-div p {
    color: #fff;
    font-size: 20px;
}

.cookie-div .btn-div {
    display: flex;
    gap: 10px;
}
 

.cookie-div .btn-div .btn {
    font-size: 13px;
}

.btn.btn3 {
    border: 1px solid var(--second-color);
    color: #fff;
    padding: 9px 22px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn.btn3:hover {
    background: var(--second-color);
}

.cookieModal {}

.cookieModal .modal-dialog {
    min-width: 700px;
} 

.cookieModal .modal-dialog .modal-header {
    border: none;
}

.cookieModal .modal-dialog .modal-title {
    font-size: 23px;
    font-weight: 800;
    color: var(--first-color);
    margin-bottom: 0px;
}
 

.cookieModal p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #605656;
}

.cooke-opt {
    margin-bottom: 15px;
}

.cooke-opt .flex-div {
    display: flex;
    align-items: flex-start;
}

.cooke-opt h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cooke-opt .flex-div p {
    width: 90%;
    text-align: justify;
    margin-right: 30px;
}
 

.cooke-opt .flex-div .form-switch {
    cursor: pointer;
}
.hire-box .btn.btn3 {
    border: none;
    padding: 0px;
    color: var(--second-color);
}

.hire-box .btn.btn3:hover {
    background: transparent;
    color: var(--first-color);
}
.can-searh-div {
    background: #E6F7FF;
}

.can-search-box {
    display: flex;
    width: 100%;
    background: #fff;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E4E4ED;
    box-shadow: 0px 6px 100px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    padding: 20px 27px;
    gap: 13px;
}

.can-search-box .form-group {
    display: flex;
    align-items: center;
    width: 39%;
    margin-bottom: 0px;
}

.can-search-box .form-group .icon-span {
    color: var(--second-color);
    margin-right: 7px;
}

.can-search-box .form-group .form-control {
    border: none;
    padding: 0px;
}

.can-search-box .form-group .form-select {
    border: none;
    padding: 0 0 0 0;
    color: #505062;
    font-size: 13px;
}

.can-search-box .btn {
    display: flex;
    width: 18%;
    justify-content: center;
    gap: 10px;
    padding: 7px 16px;
    font-size: 14px;
}

.form-select:focus {
    box-shadow: none;
}

.can-search-box .form-group .form-select option {
    padding: 10px!important;
}
.btn.btn-link {
    padding: 0px;
    background: transparent;
    color: var(--second-color);
    font-size: 13px;
}

.btn.btn-link:hover {
    color: var(--first-color);
} 

.candidates .inner-box {
    margin-bottom: 20px;
    position: relative;
}
.job-box.for-can {}

.job-box.for-can .upper-flex .com-logo img {
    width: 60px;
    border-radius: 50%;
}

.job-box.for-can .upper-flex {
    margin-bottom: 13px;
}

.job-box.for-can ul {
    margin-bottom: 15px;
    margin-top: 8px;
}

.job-box.for-can ul li {
    display: inline-flex;
    font-size: 13px;
    align-items: center;
    color: #585050;
    padding: 0 3px;
    position: relative;
}

.job-box.for-can ul li i {
    color: var(--first-color);
    padding-right: 3px;
}

.job-box.for-can ul li:after {
    content: "|";
    padding-left: 6px;
}

.job-box.for-can ul li:last-child {}

.job-box.for-can ul li:last-child::after {
    content: none;
}

.job-box.for-can .btn {
    color: var(--second-color);
    padding: 6px 19px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: center;
}

.job-box.for-can .job-desc {
    margin-bottom: 0px;
}

.job-box.for-can  {
    margin-bottom: 15px;
}

.job-box.for-can:hover .btn {
    background: var(--second-color);
    color: #fff;
}


.can-detail {}
 

.can-detail .jobresuls-box .com-dt li {
    width: max-content;
    margin-bottom: 0px;
    padding-right: 26px;
}

.can-detail .jobresuls-box .com-dt ul {
    margin-bottom: 0px;
    margin-top: 5px;
}

.can-detail .jobresuls-box .upper-div .com-logo img {
    width: 100px;
    padding: 5px;
    border: 2px solid #eee;
}

.can-detail .jobresuls-box  p {
    margin-top: 9px;
}
.can-detail .jobresuls-box .job-desc .inn-dec-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.can-detail .jobresuls-box .job-desc .inn-dec-flex h5 {
    margin-bottom: 3px;
}

.can-detail .jobresuls-box .job-desc .inn-dec-flex .btn {
    padding: 7px 23px;
    font-size: 13px;
    margin-left: 0px!important;
}
.exp-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.exp-box .latter-box {
    width: 50px;
    height: 50px;
    background: #ebe5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #eee;
    color: var(--first-color);
    font-weight: 500;
    text-transform: uppercase;
}

.exp-box .text {
    width: 90%;
}

.exp-box .text h5 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 6px;
}

.exp-box .text h6 {
    font-size: 14px;
    margin-bottom: 7px;
}

.exp-box .text ul {
    padding: 0px;
    margin-bottom: 5px;
}

.exp-box .text ul li {
    position: relative;
    width: auto;
    font-size: 15px;
    color: #000;
    padding-right: 23px;
}

.exp-box .text p {}

.exp-box .text ul li:after {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    background: var(--first-color);
    border-radius: 50%;
    top: 9px;
    right: 6px;
}

.exp-box .text ul li:last-child:after {
    content: none;
}
.rating-flex {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rating-flex .total-review {
    width: 35%;
    text-align: center;
}

.rating-flex .total-review h3 {
    color: var(--first-color);
    font-size: 35px;
    font-weight: 700;
}

.rating-flex .total-review .total-stars {
    margin-bottom: 10px;
}

.rating-flex .total-review .total-stars i {
    font-size: 17px;
    color: #ffca00;
}

.rating-flex   p.reviews {
    margin-top: 0px;
    font-size: 14px;
}

.rating-flex .rating-in-star {
    width: 65%;
}

.rating-flex .rating-in-star ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.rating-flex .rating-in-star ul li {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
}

.rating-flex .rating-in-star ul li span.star-num {
    color: #000;
    font-size: 13px;
    padding-right: 0px;
    width: 6%;
}

.rating-flex .rating-in-star ul li span.star-num i {
    padding-left: 4px;
    font-size: 13px;
    color: #ffca00;
}

.rating-flex .rating-in-star ul li .progress {
    width: 70%;
    font-size: 10px;
    height: 7px;
}
 

.rating-flex .rating-in-star ul li .review-num {
    font-size: 12px;
    width: 25%;
    padding-left: 8px;
    color: #878787;
    padding-right: 8px;
}

.latter-box.img {}

.latter-box.img img {
    border-radius: 50%;
}

.user-rv-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: -7px;
}

.user-rv-flex .total-stars {
    margin-bottom: 10px;
}

.user-rv-flex .total-stars i {
    font-size: 15px;
    color: #ffca00;
}
.review-form {}

.review-form .btn {
    margin-bottom: 15px;
}

.review-form  .select-star {
    font-size: 14px;
    color: #ffc845;
    margin-bottom: 10px;
    margin-top: 3px;
}

.review-form  .select-star .form-group {
    display: inline-block;
    margin-bottom: 0px;
}

.review-form  .select-star .form-group input {
    display: none;
}

.review-form  .select-star .form-group label {
    font-size: 18px;
    color: #ffc845;
    cursor: pointer;
}
.review-form .select-star .form-group.selected i::before {
    content: "\f586";
}
.select-star i:hover::before {
	content: "\f586";
}
.sticy-candidate-det.jobresuls-box {
    position: sticky;
    top: 100px;
}

.sticy-candidate-det.jobresuls-box ul li {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 13px;
}

.sticy-candidate-det.jobresuls-box ul li p {
    margin-bottom: 2px;
    font-size: 15px;
}

.sticy-candidate-det.jobresuls-box ul li .dest-desc {
    color: #4c4242;
}

.sticy-candidate-det.jobresuls-box ul li .dest-desc i {
    color: var(--second-color);
    margin-right: 8px;
}

.sticy-candidate-det.jobresuls-box ul li:last-child {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.lb-nav a.lb-prev {
    background: url(../image/prev.png) left 48% no-repeat!important;
}

.lb-nav a.lb-next {
    background: url(../image/next.png) right 48% no-repeat!important;
}





@media only screen and (max-width: 767px) {
	 
.logo-div img {
    width: 65px;
}


.toggle-menu {
        display: block;
        float: right;
        text-align: right;
        margin-left: auto;
    }
    .toggle-icon {
        position: relative;
        width: 31px;
        height: 20px;
    }
    .toggle-icon span {
        position: absolute;
        width: 100%;
        height: 1px;
        display: inline-block;
        transition: all 0.3s;
        left: 0;
        background: #3f3f3f;
    }
    .toggle-icon span:first-child {
        top: 0;
    }
    .toggle-icon span:nth-child(2) {
        top: 44%;
    }
    .toggle-icon span:last-child {
        bottom: 2px;
    }
    body.mobile-menu .toggle-icon span:first-child {
        transform: rotate(45deg) translate(3px, 9px);
    }
    body.mobile-menu .toggle-icon span:nth-child(2) {
        opacity: 0;
    }
    body.mobile-menu .toggle-icon span:last-child {
        transform: rotate(-45deg) translate(3px, -9px);
    }
    .navbar-right-menu {
          display: none;
        left: -100%;
        top: 0px;
        position: fixed;
        width: 100%;
        max-width: 100%;
        height: 100% !important;
        background: var(--gradient);
        padding: 20px 25px;
        animation: slide-in-left 1s forwards;
        z-index: 999;
    }
    body.mobile-menu .navbar-right-menu {
        display: block !important;
        overflow-y: auto;
    }
    .nav-list ul.nav-menu {
        display: block;
        margin-right: 0;
    }
    .nav-list ul.nav-menu li a {
        padding: 12px 0;
        display: block;
        width: 100%;
        font-size: 15px;
        color: #fff; 
    }
    body.mobile-menu .close-menu {
        display: block !important;
        position: absolute;
        top: 0;
        right: 9px;
    }
    body.mobile-menu .close-menu i {
        color: #fff;
        font-size: 28px;
    }
	.category-siebar {
    display: none;
}
	.job-fliter-div {
    display: flex!important;
    white-space: nowrap;
    overflow-x: scroll;
    scrollbar-width: none;
    margin: 0 -13px 20px;
    padding: 6px 0 8px;
    background: #f2f2ff;
}

.job-fliter-div .sticky-filer {
    border: 1px solid #f0f2f8;
    height: 32px;
    outline: none;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 106, 194, .2);
    white-space: nowrap;
    border-radius: 0 18px 18px 0;
    color: #009688;
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    display: flex;
    align-items: center;
    padding: 6px 12px 6px 8px;
    margin: 4px 6px 4px 0;
    position: sticky;
    left: 0;
}

.job-fliter-div .fl-opt {
    color: #263838;
    border: 1px solid #dfe3f0;
    cursor: pointer;
    margin: 4px 6px 4px 0;
    padding: 0 12px;
    font-size: 13px;
    text-align: left;
    font-weight: 600;
    line-height: 16px;
    text-transform: none;
    background-color: #fff;
    border-radius: 18px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    white-space: nowrap;
}

.job-fliter-div .sticky-filer i {
    padding-right: 6px;
}

.job-fliter-div .fl-opt.active {
    border-color: var(--first-color);
    background: var(--first-color);
    color: #fff;
}

.jobresuls-box .job-desc ul li {
    width: 100%;
    margin-bottom: 4px;
}

.jobresuls-box .job-desc ul li i {
    margin-right: 3px;
    font-size: 14px;
}

.jobresuls-box .job-desc ul li span {
    font-size: 13px;
}

.job-tags p {
    padding: 4px 13px;
    border-radius: 20px;
    font-size: 11px;
    margin-bottom: 3px;
}
.default-padding {
    padding: 40px 0;
    overflow: hidden;
}
.category-section {
    padding-top: 0px;
}
    .modalBottom {
        z-index: 999999;
    }
    .modalBottom.modal.show {
        transition: transform 0.3s ease-in-out;
        transform: translateY(0);
    }
.modal-dialog .modal-content {
        background-color: #fefefe;
        margin: unset;
        border: none;
        width: 100%;
        border-radius: 10px;
    }
.modalBottom .modal-dialog .modal-content {
        border-top-left-radius: 27px;
        border-top-right-radius: 27px;
    }
    .modalBottom .modal-dialog .modal-header {
        padding: 13px 21px;
        border-bottom: 1px solid #b4b4b4;
    }
.modalBottom .modal-dialog .modal-header .modal-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--second-color);
        text-transform: uppercase;
    }
 
    .modalBottom .modal-dialog .modal-header button.close {
        position: absolute;
        right: 10px;
        top: -53px;
        background-color: #fff;
        border: none;
        padding: 0px;
        height: 40px;
        width: 40px;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 0px;
        border-radius: 50%;
    }

    .modal-dialog .modal-content .modal-body {
        padding: 0;
    }
    #filterModal .modal-body {
        height: 65vh;
        overflow-y: hidden;
    }
.modalBottom .modal-body .default-inner {
        padding: 0;
    }
	    .form-group {
        margin-bottom: 10px;
    }
	#sortModal .filter-radio-group .form-group {
        width: 100%;
		    margin-bottom: 0px;
    }
	    #sortModal .filter-radio-group .form-group input {
        visibility: hidden;
        opacity: 0;
        width: 0;
        height: 0px;
		        display: none;
    }
	#sortModal .filter-radio-group .form-group label {
        width: 100%;
        display: flex;
        padding: 18px 23px;
        color: #3e4152;
        font-size: 13px;
        align-items: center;
        cursor: pointer;
    }
	#sortModal .filter-radio-group .form-group input:checked[type=radio]+label {
        background: #eee;
        color: var(--secondary-color);
        font-weight: 500;
    }
	#sortModal .filter-radio-group .form-group label i {
        font-size: 21px;
        margin-right: 11px;
        color: #6c6c6c;
    }
	    #sortModal .filter-radio-group .form-group input:checked[type=radio]+label i {
        color: var(--secondary-color);
    }
	.filter-sticky-bottom {
        position: sticky;
        bottom: 0px;
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, .08), 0 16px 16px 0 rgba(0, 0, 0, .08);
        z-index: 16;
        background-color: #fff;
        padding: 9px 10px;
    }

    .filter-sticky-bottom .clear-all {
        color: #454545;
        font-weight: 500;
    }

    #filterModal .modal-body .filter-flex {
        display: flex;
        height: 100%;
        width: 100%;
    }

    #filterModal .modal-body .filter-flex .fl-left-tab {
        width: calc(calc((100vw - 72px) / 6)* 2 + 8px);
        margin-left: 4px;
        margin-right: 4px;
        display: flex;
        flex-direction: column;
        padding-left: 12px;
        padding-top: 16px;
        border-right: 1px solid #dde2eb;
    }

    #filterModal .modal-body .filter-flex .fl-right-content {
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        width: calc(calc((100vw - 72px) / 6)* 4 + 50px);
        margin-left: 4px;
        margin-right: 0;
        padding-right: 12px;
        padding-top: -1px;
    }

    .modal-body .filter-flex .fl-left-tab .fl-tab-opt {
        position: relative;
        display: flex;
        justify-content: space-between;
        color: #181a1f;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 18px;
    }

    .modal-body .filter-flex .fl-left-tab .fl-tab-opt.active {
        color: var(--first-color);
        font-weight: 600;
    }

    .modal-body .filter-flex .fl-left-tab .fl-tab-opt.active:before {
        content: '';
        top: 0px;
        height: 34px;
        right: 0;
        width: 4px;
        border-bottom-left-radius: 6px;
        border-top-left-radius: 6px;
        position: absolute;
        background: var(--first-color);
        transition: all 0.65s ease;
    }

    .modal-body .filter-flex .fl-right-content .fl-content-box {
        height: 100%;
    }

    .modal-body .filter-flex .fl-right-content .fl-content-box .fl-search-box {
        background: #fff;
        position: sticky;
        top: 0;
        padding-bottom: 16px;
        z-index: 1;
        padding-top: 10px;
    }

    .modal-body .filter-flex .fl-right-content .fl-option-div {
        margin-left: 8px;
        margin-right: 8px;
    }

    .modal-body .filter-flex .fl-right-content .fl-content-box .fl-search-box .form-control {
                display: flex;
        align-items: center;
        padding: 9px 38px 9px 16px;
        height: 40px;
        border: 1px solid #dde2eb;
        border-radius: 29px;
        font-size: 13px; 
    }

    .modal-body .filter-flex .fl-right-content .fl-content-box .fl-search-box .search-icon {
     position: absolute;
        right: 16px;
        top: 18px;
        font-size: 14px;
        color: var(--second-color);
    }

    .modal-body .filter-flex .fl-right-content .fl-option-div .form-group {
        margin-bottom: 7px;
    }

    .form-group {
        position: relative;
    }

    .modal-body .filter-flex .fl-right-content .fl-option-div .form-group label.form-check-label {
        margin-bottom: 0px;
        margin-left: 7px;
        color: #5a5a5a;
        font-size: 0.875rem;
        font-weight: 400;
        width: -webkit-fill-available;
    }

    .modal-body .filter-flex .fl-right-content .fl-option-div .form-group .right-item-num {
        position: absolute;
        right: 0px;
        font-size: 10px;
        color: #94969f;
    }

    .filter-sticky-bottom .btn.btn1 {
        border-color: var(--primary-color);
        border-radius: 30px;
    }
    #filterModal .modal-body {
        height: 65vh;
        overflow-y: hidden;
    }
    .modalBottom .modal-dialog {
        bottom: 0px;
        margin: 0;
        top: unset;
        position: absolute;
        width: 100%;
        left: 0px;
    }
.login-flex { 
    display: block;
}
.login-box {
    width: 100%;
    margin-right: 0px;
}
.login-slider-div {
    margin-top: 30px;
    width: 100%;
}
.login-box .logo {
    width: 85px;
}
.login-box h4 {
    line-height: 27px;
    font-size: 20px;
            margin-bottom: 10px;
}
.login-flex { 
    margin: 10px 0;
    padding: 17px 23px;
}
.login-page {
    height: auto;
} 
.login-slider ul.slick-dots { 
    bottom: -10px;
}

.copyright-sec {
    text-align: center; 
    padding: 12px 0;
}
.copyright-sec p {
    font-size: 12px; 
    text-align: center;
}
.footer-widget {
    margin-top: 15px;
}
.footer-widget ul.footer-list a { 
    font-size: 13px;
    margin-bottom: 6px;
}
.footer-widget .widget-title {
    font-size: 16px;
}
.btn.btn2 { 
    padding: 8px 19px; 
    font-size: 13px;
}

.white-box h4.title.mb-3 {
    font-size: 22px;
    margin-bottom: 10px !important;
}
p.desc1 {
    font-size: 12px;
}
.white-box .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
}
.d-sidebar ul li.can-div .can-dt p { 
    margin-bottom: 7px;
    font-size: 13px;
}
.records-found .form-group { 
    margin-bottom: 10px;
}
.loginModal .modal-dialog {
    min-width: unset;
}
.loginModal .modal-content { 
    padding: 30px 25px;
}
.btn.btn1 { 
  padding: 8px 19px; 
    font-size: 13px;
}
.white-box {
    margin-bottom: 10px; 
    padding: 15px 22px;
}
.sec-title h4 { 
    font-size: 23px;
}
.sec-title {
    margin-bottom: 15px;
}
.d-sidebar { 
    margin-bottom: 20px;
}
.upload-img-div {
    flex-wrap: wrap;
}
.upload-img-div .img-block { 
    width: 105px;
}
.upload-file-div .file-block {
    width: 48%;
}
.upload-file-div .file-block .file-detail .extension {
    font-size: 12px;
}
.upload-file-div .file-block .file-detail .filename {
    font-size: 12px;
}
.table-com-logo {
    width: max-content;
}
.table-com-logo h5 {
    font-size: 15px;
}
.table-com-logo .com-logo { 
    width: 45px; 
    margin-right: 8px;
}
.search-bar {
    margin-bottom: 10px;
}
.table-search-div .form-control
 {
    font-size: 12px;
 }
 .table-search-div .form-select.form-control {
    padding: 10px 34px 10px 10px;
}
.user-table .table>tbody td {
    font-size: 12px;
}
.user-table .btn {
    padding: 8px 11px;
    font-size: 12px;
}
    .alert-query {
    width: max-content;
}
.register-page {
    padding: 23px 0;
}

.register-div {
    padding-top: 0px;
    margin-bottom: 20px;
        text-align: center;
}
.register-div h3 {
    font-size: 30px;
}
.register-div p {
    margin-bottom: 14px;
    font-size: 14px;
}
.register-div .people-img {
    width: 115px;
}

.login-box p { 
    font-size: 13px;

} 
.login-methods li a {
    margin-right: 5px; 
    padding: 8px 13px;
    font-size: 12px;
}
.login-methods img.lgmt-img {
    width: 18px;
    margin-right: 8px;
    margin-top: -5px;
}

.status-box .work-box{
        width: 100%;
            margin-bottom: 10px;
}
.status-box {
    display: block;
}

.login-box .form-group label {
    line-height: 18px;
}

.copyright-sec.ds2 .hori-menu li a { 
    font-size: 12px;
}
.copyright-sec.ds2 .hori-menu li { 
    padding: 0 6px; 
}
.copyright-sec.ds2 .hori-menu li:after { 
    right: -2px;
    height: 14px;
    width: 1px;
    top: 8px;
}

.table.style1 thead{
    display:none;
}

.table.style1,
.table.style1 tbody,
.table.style1 tr,
.table.style1 td{
    display:block;
    width:100%;
}

.table.style1 tr{
    border:1px solid #cccccc85;
    border-radius:6px;
    margin-bottom:15px;
    padding:10px;
    background:#fff;
}

.table.style1 td{
    border:none;
    border-bottom:1px dashed #ddd;
    padding:8px 10px;
    position:relative;
    padding-left:45%;
}

.table.style1 td:last-child{
    border-bottom:none;
}

.table.style1 td:before{
    content:attr(data-label);
    position:absolute;
    left:10px;
    top:8px;
    font-weight:600;
    color:#333;
}

.cookie-div p { 
    font-size: 14px;
        margin-bottom: 10px;
}

.cookie-div .btn-div .btn {
    font-size: 12px;
    padding: 7px 14px;
}
.cookie-div{
        padding: 13px 12px;
}
.cookieModal .modal-dialog {
    min-width: 80%;
}
.modal-dialog .modal-content .modal-body {
	padding: var(--bs-modal-padding);
}
.can-detail .jobresuls-box .job-desc .inn-dec-flex {
    display: block;
}
.can-detail .jobresuls-box .job-desc .inn-dec-flex .text-right {
    text-align: left;
        margin-top: 10px;
}
.can-detail .jobresuls-box .job-desc .inn-dec-flex .btn {
    padding: 7px 20px;
    font-size: 12px;
}
.exp-box .latter-box {
    font-size: 12px;
    width: 35px;
    height: 35px;
        margin-right: 7px;
}
.exp-box .text h5 {
    font-size: 15px;

}
.exp-box .text h6 {
    font-size: 13px;
    margin-bottom: 5px;
}
.exp-box .text ul li {
    margin-bottom: 0px; 
    font-size: 12px; 
    padding-right: 19px;
}
.exp-box .text ul li:after { 
    width: 4px;
    height: 4px; 
    top: 7px;
    right: 6px;
}
.exp-box .text p {
    font-size: 12px;
    margin-top: 0px;
}
.rating-flex {
    display: block;
}
.rating-flex .total-review {
    width: 100%;
}
.rating-flex .rating-in-star {
    width: 100%;
}
.rating-flex .rating-in-star ul li span.star-num { 
    width: 13%;
}
.rating-flex .rating-in-star ul li .review-num { 
    width: 13%;
}
.user-rv-flex { 
    margin-bottom: 7px;
}
.can-searh-div .banner-content {
    padding: 23px 0;
}
.can-search-box {
    display: block;
    width: 100%;
}
.can-search-box .form-group { 
    width: 100%;
    margin-bottom: 15px;
}
.can-search-box .btn { 
    width: 100%;
}
.job-box.for-can {
    padding: 13px 13px;
}
.job-box .job-desc h4 {
    font-size: 17px; 
    margin-bottom: 5px;
}
.job-box .job-desc p { 
    font-size: 12px;
}

.job-box.for-can ul li {
    display: inline-flex;
    font-size: 11px; 
    padding: 0 0px;
}
.job-box.for-can .btn { 
    padding: 4px 19px; 
    font-size: 13px;
}



	
}
	
	
	
@keyframes slide-in-left {
    0% {
        left: -100%;
    }
    100% {
        left: 0px;
    }
}