@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Theme Name: Template Name mn Highlights HTML5 Template
    Author: DeshiSmash
    Support:
    Description:
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

    01. THEME DEFAULT CSS
    02. HEADER CSS

**********************************************/

/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/

/* Urbanist Font  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    /**
        @font family declaration
    */

    --mn-ff-body: 'Poppins',
        sans-serif;
    /**
        @color declaration
    */
    --mn-common-white: #ffffff;
    --mn-common-black: #000;
    --mn-primary: #0165E1;
    --mn-secundry: #2a3d71;
    --mn-color-1: #222F5A;
    --mn-color-2: #5F617A;
    --mn-color-3: #696969;
    --mn-color-4: #202124;




    /**
        @font weight declaration
    */
    --mn-fw-normal: normal;
    --mn-fw-elight: 200;
    --mn-fw-light: 300;
    --mn-fw-regular: 400;
    --mn-fw-medium: 500;
    --mn-fw-sbold: 600;
    --mn-fw-bold: 700;
    --mn-fw-ebold: 800;
    --mn-fw-black: 900;
    /**
        @font size declaration
    */
    --mn-fs-body: 14px;
    --mn-fs-p: 14px;
    --mn-fs-h1: 40px;
    --mn-fs-h2: 36px;
    --mn-fs-h3: 24px;
    --mn-fs-h4: 20px;
    --mn-fs-h5: 16px;
    --mn-fs-h6: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Preloader start  */

.loader-wrap {
    background-color: #fff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
}

.cube-preloader {
    position: relative;
    width: 80px;
    height: 80px;
    perspective: 500px;
    margin: 0 auto;
    top: 50%;
    z-index: 9999;
}

.cube {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 15px;
    left: 15px;
    transform-style: preserve-3d;
    animation: rotate 2s linear infinite;
    border-radius: 5px;
}

.cube:before,
.cube:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
}

.cube:before {
    background-color: #0468e4;
    /* Set your desired cube color */
    transform: rotateX(90deg);
    opacity: 0.7;
}

.cube:after {
    background-color: #243261;
    /* Set your desired cube color */
    transform: rotateY(90deg);
    opacity: 0.7;
}

@keyframes rotate {

    0%,
    100% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: rotateX(180deg) rotateY(0deg);
    }

    50% {
        transform: rotateX(180deg) rotateY(180deg);
    }

    75% {
        transform: rotateX(0deg) rotateY(180deg);
    }
}

/* Preloader End  */
/*---------------------------------
	typography css start 
---------------------------------*/
body {
    font-family: var(--mn-ff-body);
    font-size: var(--mn-fs-body);
    font-weight: var(--mn-fw-normal);
    color: var(--mn-text-body);
    line-height: 26px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--mn-heading-primary);
    margin-top: 0px;
    font-weight: 600;
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

h1 {
    font-size: var(--mn-fs-h1);
}

h2 {
    font-size: var(--mn-fs-h2);
}

h3 {
    font-size: var(--mn-fs-h3);
}

h4 {
    font-size: var(--mn-fs-h4);
}

h5 {
    font-size: var(--mn-fs-h5);
}

h6 {
    font-size: var(--mn-fs-h6);
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-family: var(--mn-ff-p);
    font-size: var(--mn-fs-p);
    font-weight: var(--mn-fw-normal);
    color: var(--mn-text-body);
    line-height: 26px;
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


/*Landing Header CSS  */
.header-search-wrap input {
    width: 300px;
}

.header-wrap {
    padding: 20px 0;
    /* box-shadow: 0 3px 59px rgb(0, 0, 0, 5%); */
    /* padding-left: 25px; */
}

.navbar-brand img {
    width: 90%;
    margin-top: -3px;
}

.form-control::placeholder {
    color: var(--mn-color-1) !important;
    opacity: 1;
}

.header-search-wrap input:focus {
    box-shadow: none;
}

.nav-item {
    margin-right: 20px;
}

.nav-item a {
    font-size: 20px;
    color: var(--mn-color-1);
    font-weight: var(--mn-fw-sbold);
}

.nav-link.active {
    color: var(--mn-primary) !important;
    font-weight: var(--mn-fw-bold);
}

.nav-link.header-login-btn {
    background: #1478E5;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    width: 110px;
    text-align: center;
}

.nav-link.header-login-btn.no-bg {
    background: none;
    color: #222f5a;
    border: 1px solid #222f5a;
}

.form-select {
    border: 2px solid #F5F5F5;
    font-size: 18px;
}

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


/* Auth Form Style  */
.auth-form-wrap {
    margin: 35px 0;
}

.container.auth-form-shadow {
    box-shadow: 0 15px 39px rgb(0, 0, 0, 5%);
}

.auth-input {
    position: relative;
}

.auth-input input {
    height: 70px;
    margin-bottom: 20px;
    padding: 0px 40px;
}

.auth-input input:focus {
    box-shadow: none !important;
}

.auth-input i {
    position: absolute;
    left: 11px;
    top: 22px;
    font-size: 22px;
}

.auth-others p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--mn-color-2);
}

.auth-others p a {
    color: var(--mn-color-2);
    font-weight: 600;
}

.submit-btn {
    border: 0;
    background: var(--mn-primary);
    width: 235px;
    height: 60px;
    border-radius: 5px;
    text-align: center;
    color: var(--mn-common-white);
    font-size: 18px;
}

.switch-account {
    background: #fff;
    width: 406px;
    margin: 0 auto;
    border: 1px solid var(--mn-color-2);
    border-radius: 5px;
}

.switch-account a {
    background: #fff;
    width: 200px;
    margin: 0 auto;
    border-radius: 5px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    border: 0;
    font-size: 18px;
    font-weight: var(--mn-fw-bold);
}

.switch-account a.active {
    background: var(--mn-primary) !important;
    border: 0;
    /* border: 1px solid var(--mn-primary) !important; */
    color: #fff;
}

.account-type p {
    color: var(--mn-color-2);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}



/* Hero area  */
.hero-area-wrap {
    background-image: url('../images/home/bg-1.png');
    background-size: cover;
    background-position: center;
    padding: 100px !important;
    min-height: 600px;
}

.slogan {
    color: var(--mn-primary);
    font-weight: 600;
    font-size: 20px;
}

.hero-content h1 {
    font-weight: 600;
    /* letter-spacing: 3px; */
    color: var(--mn-secundry);
    font-size: 50px;
    line-height: 60px;
    margin-top: 20px;
}

.hero-content p {
    font-size: 18px;
    margin: 20px 0;
    color: #808080;
    line-height: 30px;
}

.btn-1 {
    background: var(--mn-primary);
    width: 210px;
    display: inline-block;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}

.btn-1:hover {
    background: var(--mn-secundry);
    width: 210px;
    display: inline-block;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
}

/* Hero End  */

/* Section Title  */
.title-view-more a {
    font-size: 18px;
    text-transform: capitalize;
    color: var(--mn-secundry);
    font-weight: 500;
}

.section-title h3 {
    font-size: 35px;
    line-height: 1.2em;
    color: var(--mn-secundry);
    font-weight: 700;
}

.section-title p {
    margin-top: 5px;
    font-size: 16px;
    line-height: 26px;
    color: var(--mn-color-3);
    font-weight: 500;
}

/* Section Title  End */


/* Top Category Start  */
.single-category-wrap {
    position: relative;
    margin-bottom: 30px;
}

.single-category-wrap .category-box {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ECEDF2;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 19px;
    transition: all 300ms ease;
}

.single-category-wrap .content {
    position: relative;
    display: flex;
    justify-content: center;
    padding-left: 90px;
    min-height: 70px;
    flex-direction: column;
}

.single-category-wrap .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 70px;
    width: 70px;
    background: #ECEDF2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--mn-primary);
    font-size: 36px;
    border-radius: 10px;
    transition: all 300ms ease;
}

.single-category-wrap h4 {
    font-size: 18px;
    color: var(--mn-color-1);
    font-weight: 500;
    line-height: 29px;
    margin-bottom: 4px;
}

.single-category-wrap h4 a {
    color: var(--mn-color-1);
    transition: all 300ms ease;
    font-size: 18px;
    font-weight: 600;
}

.single-category-wrap p {
    font-size: 14px;
    color: var(--mn-color-3);
    font-weight: 400;
}

.single-category-wrap .category-box:hover {
    box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}

.single-category-wrap .category-box:hover .icon {
    color: #ffffff;
    background: var(--mn-secundry);
}

/* Top Category end  */

/* feature-company-wrap */

.feature-company-wrap {
    background-image: url('../images/home/bg-1.png');
}


.company-block-wrap {
    position: relative;
    padding: 0 15px;
    margin-bottom: 30px;
}

.company-block-wrap .company-inner-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    /* background: #FFFFFF; */
    border: 1px solid #ECEDF2;
    border-radius: 8px;
    transition: all 300ms ease;
}

.company-block-wrap .company-inner-item .content {
    position: relative;
    padding-left: 110px;
    min-height: 90px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.company-block-wrap .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 14px;
    background-size: cover;
    background-position: center;
}

.company-block-wrap .image img {
    width: 100%;
}

.company-block-wrap .name {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--mn-color-4);
    margin-bottom: 5px;
}

.company-block-wrap .location {
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--mn-color-3);
}

.company-block-wrap .location i {
    font-size: 14px;
    margin-right: 5px;
}

.company-block-wrap .theme-btn {
    width: 150px;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 23px;
    font-weight: 400;
    border-radius: 20px;
}

.btn-style-three {
    position: relative;
    text-align: center;
    white-space: nowrap;
    color: var(--mn-primary);
    background-color: #E2EAF8;
    font-size: 15px;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 18px 35px 15px 35px;
}

.btn-style-three:hover {
    color: #FFFFFF;
    background-color: var(--mn-primary);
}

.company-block-wrap .company-inner-item:hover {
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    background: #FFFFFF;
}

/* feature-company-wrap end */


/* Featured Job  Start */

.single-page-job-wrap-wrap {
    position: relative;
    margin-bottom: 30px;
}

.job-section-four.alternate .single-page-job-wrap-wrap .single-page-job-wrap-inner-item {
    padding: 45px 35px 35px;
}

.single-page-job-wrap-wrap .single-page-job-wrap-inner-item {
    position: relative;
    padding: 47px 45px 37px;
    background: #FFFFFF;
    border: 1px solid #ECEDF2;
    border-radius: 8px;
    transition: all 300ms ease;
    text-align: center;
}

.single-page-job-wrap-wrap .job-others-info {
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single-page-job-wrap-wrap .job-others-info .time {
    position: absolute;
    right: 10px;
    margin-right: 0px;
    border-radius: 40px;
}

.single-page-job-wrap-wrap .job-others-info li {
    width: auto;
    display: inline-block;
    border-radius: 0;
    border-radius: 0 30px 30px 0;
}

.single-page-job-wrap-wrap .job-others-info li {
    width: auto;
    display: inline-block;
    border-radius: 0;
    border-radius: 0 30px 30px 0;
}

.job-others-info li.green,
.job-others-info li.privacy {
    background: rgba(52, 168, 83, 0.15);
    color: var(--mn-primary);
}

.job-others-info li {
    position: relative;
    font-size: 13px;
    line-height: 15px;
    margin-right: 15px;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.single-page-job-wrap-wrap .job-others-info li {
    width: auto;
    display: inline-block;
    border-radius: 0;
    border-radius: 0 30px 30px 0;
}

.job-others-info li.required {
    background: rgba(249, 171, 0, 0.15);
    color: #0dcaf0;
}

.single-page-job-wrap-wrap .job-company-logo {
    position: relative;
    display: block;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    transition: all 300ms ease;
    background-position: center;
    background-size: cover;
}

.single-page-job-wrap-wrap .company-name {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: var(--mn-primary);
    margin-bottom: 6px;
}

.job-section-four.alternate .single-page-job-wrap-wrap h4 {
    font-size: 16px;
    line-height: 22px;
}

.single-page-job-wrap-wrap h4 {
    font-size: 18px;
    color: var(--mn-color-4);
    font-weight: 500;
    line-height: 26px;
    top: -3px;
    margin-bottom: 3px;
}

.single-page-job-wrap-wrap h4 a {
    color: var(--mn-color-4);
    transition: all 300ms ease;
}

.single-page-job-wrap-wrap .location {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 22px;
    color: var(--mn-color-3);
    font-weight: 400;
    padding-left: 25px;
}

.single-page-job-wrap-wrap .location .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 22px;
    color: var(--mn-color-3);
}

.job-others-info li.time {
    background: rgba(25, 103, 210, 0.15);
    color: var(--mn-primary);
}

/* Featured Job  End */

/* Testimonials Start  */
.testimonials-wrap {
    background-image: url('../images/home/bg-1.png');
}

.testimonial-wrap {
    position: relative;
    padding: 10px;
    margin-right: 20px;
    opacity: 1;
    transition: all 300ms ease;
}

.testimonial-wrap .testimonial-inner-item {
    position: relative;
    padding: 40px 40px;
    background: #ffffff;
    border: 1px solid #ECEDF2;
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    border-radius: 8px;
}

.testimonial-wrap .testimonial-inner-item::before {
    position: absolute;
    height: 26px;
    width: 34px;
    right: 28px;
    top: 25px;
    background-image: url('../images/home/quote-icon.png');
    content: "";
    z-index: 2;
}

.testimonial-wrap .title {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    color: var(--mn-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.testimonial-wrap .text {
    font-size: 16px;
    line-height: 26px;
    color: var(--mn-color-3);
    margin-bottom: 50px;
}

.testimonial-wrap .info-box {
    position: relative;
    padding-left: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px;
}

.testimonial-wrap .thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: #101C5D;
}

.thumb img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.testimonial-wrap .name {
    font-size: 18px;
    color: var(--mn-color-3);
    font-weight: 500;
}

.testimonial-wrap .designation {
    position: relative;
    display: block;
    font-size: 14px;
    color: var(--mn-color-3);
}

.testimonial-section .testimonial-carousel .active .testimonial-wrap {
    opacity: 1;
}

.swiper-pagination.mb-2.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-top: -10px !important;
    display: block;
    position: relative;
}

/* Testimonials End  */

/* News Blog Start  */


.news-wrap {
    position: relative;
    margin-bottom: 30px;
}

.news-wrap .news-wrap-inner-item {
    position: relative;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
    background: #f2f4fa;
}

.news-wrap .image-box {
    position: relative;
}

.news-wrap .image-box .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
}

.news-wrap .image-box img {
    display: block;
    width: 100%;
    transition: all 300ms ease;
}

.news-wrap .news-wrap-inner-item:hover img {
    transform: scale(1.2);
}

.news-wrap .lower-content {
    padding: 20px 20px 16px;
    position: relative;
}

.news-wrap .post-meta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.news-wrap .post-meta li::before {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px;
    height: 6px;
    width: 6px;
    background: var(--mn-color-3);
    border-radius: 5px;
    content: "";
}

.news-wrap .post-meta li:first-child::before {
    display: none;
}

.news-wrap .post-meta li a:hover,
.news-wrap .post-meta li a {
    color: inherit;
}

.news-wrap .lower-content h3 {
    font-size: 18px;
    color: var(--mn-color-4);
    font-weight: 500;
    margin-bottom: 10px;
}

.news-wrap .lower-content h3 a {
    color: var(--mn-color-4);
    transition: all 300ms ease;
    font-size: 19px;
    font-weight: 500;
}

.news-wrap .lower-content .text {
    font-size: 14px;
    line-height: 24px;
    color: var(--mn-color-3);
    margin-bottom: 15px;
}

.news-wrap .read-more {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: var(--mn-primary);
}

.news-wrap .read-more i {
    margin-left: 10px;
    transition: all 300ms ease;
}

/* News Blog End  */


/* Footer area Start */
.footer-wrap.footerStyle {
    background-color: #262C3F;
}

.footer-wrap.footerStyle .footer-widgets {
    padding: 100px 0 50px;
}

.footer-wrap .footer-column {
    position: relative;
    margin-bottom: 50px;
}

.footer-wrap .logo {
    position: relative;
    margin-bottom: 25px;
}

.footer-wrap .logo img {
    display: block;
}

.footer-wrap .phone-num {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: #202124;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-wrap .phone-num span {
    position: relative;
    display: block;
}

.footer-wrap .address {
    font-size: 14px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
}

.about-widget p {
    color: #fff;
}

.email {
    color: #fff;
}

.footer-wrap .footer-column {
    position: relative;
    margin-bottom: 50px;
}

.footer-wrap.footerStyle .links-widget {
    padding-left: 0;
}

.footer-wrap .widget-title {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #2F2D51;
    line-height: 1.4em;
    margin-bottom: 30px;
}

.footer-wrap.footerStyle .phone-num,
.footer-wrap.footerStyle .phone-num a,
.footer-wrap.footerStyle .widget-title {
    color: #ffffff;
}

.footer-wrap .list {
    position: relative;
}

.footer-wrap.footerStyle .list li::before {
    border-color: #ffffff;
}

.footer-wrap .list li::before {
    position: absolute;
    left: 0;
    top: 10px;
    height: 2px;
    width: 0px;
    content: "";
    border-bottom: 2px solid var(--mn-secundry);
    transition: all 300ms ease;
}

.footer-wrap .footer-column {
    position: relative;
    margin-bottom: 50px;
}

.footer-wrap .widget-title {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #2F2D51;
    line-height: 1.4em;
    margin-bottom: 30px;
}

.list li {

    list-style: none;
}

.list li a {
    color: #fff;
}

.footer-bottom {
    height: 50px;
    background: #fff;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
}

/* Footer area End */


/* ------------- Jobs Page Start ------------- */
.jobs-page-rightSidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 105px;

}

.inner-page-filter-widget p {
    color: var(--mn-color-3);
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.inner-page-filter-widget select {
    color: var(--mn-color-3);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
}

.filters-column {
    position: relative;
    background: #F5F7FC;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 30px 30px 10px;
}

/* Sidebar  */
.static-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-bg {
    position: relative;
    background: #F5F7FC;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 10px;
}

.sidebar-widget-wrap {
    position: relative;
    display: block;
    background: #fff;
    padding: 42px 30px 50px;
    border-radius: 10px;
    margin-bottom: 10px;
    /* box-shadow: 0 15px 40px #00000014; */
    border: 1px solid #ECEDF2;
}

.widget-title {
    margin-bottom: 23px;
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

.search-form input {
    position: relative;
    width: 100%;
    height: 60px;
    border: 1px solid #e6ebeb;
    border-radius: 10px;
    font-size: 16px;
    color: #848484;
    padding: 10px 50px 10px 20px;
    transition: all .5s ease;
}

.search-form button {
    position: absolute;
    right: 10px;
    background: 0;
    border: 0;
    font-size: 22px;
    color: var(--mn-color-3);
    top: 18px;
}

.custom-check-box {
    margin-bottom: 10px !important;
}

.material-checkbox input {
    position: relative;
    margin-right: 10px;
    top: 2px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #ededed !important;
    cursor: pointer;
    border-radius: 3px;
}

.description {
    position: relative;
    display: inline-block;
    padding: 0;
    font-size: 15px;
    color: gray;
    cursor: pointer;
    font-weight: 500;
}

.category-list li {
    list-style: none;
}

.form-select {
    display: block;
    -moz-padding-start: calc(0.75rem - 3px);
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 60px;
    border: 1px solid #e6ebeb !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    color: #848484;
    padding: 10px 50px 10px 20px !important;
}

/* Pagination  */
.pagination-wrap {
    position: relative;
    margin-top: 30px;
}

.pagination-wrap ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-wrap ul li {
    list-style: none;
}

.pagination-wrap li {
    position: relative;
    margin: 0 5px;
    font-size: 14px;
    color: var(--mn-color-3);
    line-height: 45px;
    min-width: 45px;
    font-weight: 400;
    text-align: center;
}

.pagination-wrap li.next a,
.pagination-wrap li.prev a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin: 0 12px;
}

.pagination-wrap li a {
    position: relative;
    display: block;
    color: var(--mn-color-3);
    border-radius: 50%;
    transition: all 300ms ease;
}

.pagination-wrap li a:hover,
.pagination-wrap li a.current-page {
    background: var(--mn-secundry);
    color: #ffffff;
}

/* ------------- Jobs Page End ------------- */


/* -------------  Profile Page Start -------------  */

.user-profile-wrap {
    position: relative;
    padding: 0 15px;
    margin-bottom: 30px;
}

.user-profile-wrap .user-profile-inner-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    background: #FFFFFF;
    border: 1px solid #ECEDF2;
    border-radius: 8px;
    transition: all 300ms ease;
}

.user-profile-wrap .user-profile-inner-item .content {
    position: relative;
    padding-left: 110px;
    min-height: 90px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.user-profile-wrap .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 14px;
    background-size: cover;
    background-position: center;
}

.user-profile-wrap .image img {
    width: 100%;
}

.user-profile-wrap .name {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 5px;
}

.user-profile-wrap .name a {
    color: #202124;
}

.user-profile-wrap .candidate-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.user-profile-wrap .candidate-info li.designation {
    display: block;
    font-size: 14px;
    line-height: 19px;
    padding-left: 0;
}

.user-profile-wrap .candidate-info li {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    color: var(--mn-color-3);
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 5px;
    margin-right: 20px;
}

.user-profile-wrap .candidate-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 22px;
    color: var(--mn-color-3);
}

.user-profile-wrap .post-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.user-profile-wrap .post-tags li {
    position: relative;
    background: #E6EBEB;
    border-radius: 30px;
    font-size: 14px;
    line-height: 20px;
    color: var(--mn-color-3);
    padding: 5px 20px;
    border-radius: 20px;
    margin-right: 10px;
}

.user-profile-wrap .post-tags li a {
    color: var(--mn-color-3);
}

.user-profile-wrap .bookmark-btn {
    position: relative;
    height: 30px;
    width: 30px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    background: none;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    border: 0;
    font-size: 20px;
    margin-right: 20px;
}

.btn-style-three {
    position: relative;
    text-align: center;
    white-space: nowrap;
    color: var(--mn-secundry);
    background-color: #E2EAF8;
    font-size: 15px;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 18px 35px 15px 35px;
}

.theme-btn {
    position: relative;
    display: inline-flex;
    transition: all 0.5s ease;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.btn-style-three {
    text-align: center;
    white-space: nowrap;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    background: var(--mn-secundry);
}

.user-profile-wrap .user-profile-inner-item:hover {
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

.user-profile-wrap .user-profile-inner-item:hover .bookmark-btn {
    opacity: 1;
    visibility: visible;
}

/* -------------  Profile Page End -------------  */



/* -------------  Blogs Page Start -------------  */



/* -------------  Blogs Page End -------------  */




/* Login Page CSS Start */
.default-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.login-form .field-outer {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px;
}

.checkboxes {
    list-style: none;
    padding: 0;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.login-form .field-outer .pwd {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: #202124;
    white-space: nowrap;
}

.login-form .form-group .theme-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.btn-style-one {
    position: relative;
    text-align: center;
    white-space: nowrap;
    color: #ffffff;
    background-color: var(--mn-primary);
    font-size: 15px;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    border: 0;
    padding: 18px 35px 15px 35px;
}

.login-form .bottom-box {
    position: relative;
    padding-top: 12px;
    text-align: center;
}

.login-form .text {
    position: relative;
    font-size: 14px;
    line-height: 19px;
    color: #696969;
    text-align: center;
    margin-top: 5px;
}

.login-form .text a {
    color: #696969;
    font-weight: 500;
}

.login-form .bottom-box .divider::after {
    position: absolute;
    left: 50%;
    top: 0px;
    height: 20px;
    width: 60px;
    background: #fff;
    margin-left: -30px;
    content: "";
}

.login-form .bottom-box .divider::before {
    position: absolute;
    left: 0;
    top: 10px;
    height: 1px;
    width: 100%;
    background: #ECEDF2;
    border-radius: 8px;
    content: "";
}

.login-form .bottom-box .divider {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 20px;
    color: #696969;
    background: #ffffff;
    margin: 10px 0 25px;
}

.login-form .bottom-box .btn-box {
    position: relative;
}

.social-btn-two {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    color: inherit;
    font-size: 14px;
    border-radius: 8px;
    background-color: inherit;
    border: 1px solid #fff;
    font-weight: 500;
    padding: 10px 30px;
    color: var(--mn-primary);
    ;
    line-height: 25px;
    margin-bottom: 20px;
}

.social-btn-two.facebook-btn {
    border-color: #3b5998;
    color: #3b5998;
}

.social-btn-two.facebook-btn:hover {
    background-color: #3b5998;
    color: #ffffff;
}

.social-btn-two i {
    margin-right: 10px;
    font-size: 15px;
}

.social-btn-two.google-btn {
    border-color: #dc4d28;
    color: #dc4d28;
}

.social-btn-two.google-btn:hover {
    background-color: #dc4d28;
    color: #ffffff;
}

.social-btn-two {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    color: inherit;
    font-size: 14px;
    border-radius: 8px;
    background-color: inherit;
    border: 1px solid #fff;
    font-weight: 500;
    padding: 10px 30px;
    color: var(--mn-primary);
    ;
    line-height: 25px;
    margin-bottom: 20px;
}

.login-form .bottom-box .divider span {
    position: relative;
    z-index: 9;
}






.default-form .form-group input[type="text"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="number"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="url"],
.default-form .form-group textarea,
.default-form .form-group select {
    position: relative;
    width: 100%;
    display: block;
    height: 60px;
    line-height: 30px;
    padding: 15px 20px;
    font-size: 15px;
    color: #696969;
    background: #E6EBEB;
    border: 1px solid #E6EBEB;
    box-sizing: border-box;
    border-radius: 8px;
    transition: all 300ms ease;
}


.inner-form-select img {
    width: 60px;
    display: block;
    text-align: center;
}

.inner-form-select {
    background: #fff;
    margin-right: 15px;
    width: 150px;
    height: 150px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .3s;
    color: var(--mn-secundry);
    border: 1px solid var(--mn-secundry);
}

.inner-form-select:hover {
    background: var(--mn-secundry);
    transition: .3s;
    color: #fff;
}

.inner-form-select i {
    font-size: 40px;
    margin-bottom: 10px;
}




/* Multistep Form CSS  */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.error-message {
    color: red;
    margin-top: 5px;
}

.register-form input {
    position: relative;
    width: 100%;
    display: block;
    height: 60px;
    line-height: 30px;
    padding: 15px 20px;
    font-size: 15px;
    color: #696969;
    background: #E6EBEB;
    border: 1px solid #E6EBEB;
    box-sizing: border-box;
    border-radius: 8px;
    transition: all 300ms ease;
}

.goals-wrap input {
    padding: 8px;
    height: inherit;
    width: inherit;
}

.goals-wrap label {
    color: #696969 !important;
    margin-left: 5px;
}

.goals-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
}

.goals-wrap div {
    margin-bottom: 10px;
}

.register-form button {
    float: right;
    position: relative;
    text-align: center;
    white-space: nowrap;
    color: #ffffff;
    background-color: var(--mn-primary);
    font-size: 15px;
    line-height: 20px;
    border-radius: 4px;
    font-weight: 400;
    border: 0;
    width: 150px;
    height: 50px;
    margin-top: 55px;
    margin-left: 15px;
}

.form-step h2 {
    font-size: 22px;
    color: #696969;
    margin-bottom: 20px;
}

.register-form {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px !important;
    box-shadow: 0 15px 40px #00000014;
}



/* Jobs By Category  */

.single-page-job-wrap {
    position: relative;
    margin-bottom: 30px;
}

.single-page-job-wrap .single-page-jw-job-description-inner-item {
    position: relative;
    padding: 32px 20px 22px 30px;
    background: #FFFFFF;
    border: 1px solid #ECEDF2;
    box-sizing: border-box;
    border-radius: 10px;
    transition: all 300ms ease;
}

.single-page-job-wrap .content {
    position: relative;
    padding-left: 68px;
    min-height: 51px;
}

.single-page-job-wrap .company-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    transition: all 300ms ease;
    height: 50px;
    border-radius: 100px;
    background-size: cover;
    background-position: center;
}

.ls-section h4 {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #202124;
    margin-bottom: 16px;
}

.single-page-job-wrap h4 a {
    color: #202124;
    transition: all 300ms ease;
}

.single-page-job-wrap .job-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.single-page-job-wrap .job-info li {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    color: #696969;
    font-weight: 400;
    padding-left: 25px;
    margin-bottom: 5px;
    margin-right: 20px;
}

.single-page-job-wrap .job-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 22px;
    color: #696969;
}

.single-page-job-wrap .job-other-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.job-other-info li.time {
    background: rgba(25, 103, 210, 0.15);
    color: var(--mn-primary);
    ;
}

.job-other-info li {
    position: relative;
    font-size: 13px;
    line-height: 15px;
    margin-right: 15px;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.job-other-info li.green,
.job-other-info li.privacy {
    background: rgba(52, 168, 83, 0.15);
    color: #34A853;
}

.job-other-info li.required {
    background: rgba(249, 171, 0, 0.15);
    color: #0dcaf0;
}

.single-page-job-wrap .bookmark-btn {
    position: absolute;
    right: 0;
    top: -15px;
    height: 30px;
    width: 30px;
    line-height: 35px;
    text-align: center;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    background: #ffffff;
    transition: all 300ms ease;
    border: 0;
    font-size: 22px;
}


/* Job Details Page  Start */

.job-description-wrap {
    position: relative;
}

.job-description-wrap .job-description-inner-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.job-description-wrap .content {
    position: relative;
    padding-left: 120px;
    min-height: 51px;
}

.job-description-wrap .company-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    transition: all 300ms ease;
    height: 100px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.job-description-wrap .company-logo img {
    display: block;
    width: 100%;
}

.job-description-wrap h4 {
    position: relative;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.3em;
    color: #202124;
    top: -3px;
    margin-bottom: 10px;
}

.job-description-wrap h4 a {
    color: #202124;
    transition: all 300ms ease;
}

.job-description-wrap .job-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.job-description-wrap .job-info li {
    position: relative;
    font-size: 14px;
    line-height: 22px;
    color: #696969;
    font-weight: 400;
    padding-left: 25px;
    margin-right: 20px;
    margin-bottom: 3px;
}

.job-description-wrap .job-info li .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 22px;
    color: #696969;
}

.job-description-wrap .job-other-info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.job-other-info li {
    position: relative;
    font-size: 13px;
    line-height: 15px;
    margin-right: 15px;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.job-other-info li.time {
    background: rgba(25, 103, 210, 0.15);
    color: var(--mn-primary);
    ;
}

.job-other-info li.green,
.job-other-info li.privacy {
    background: rgba(52, 168, 83, 0.15);
    color: #34A853;
}

.job-other-info li.required {
    background: rgba(249, 171, 0, 0.15);
    color: #0dcaf0;
}

.job-detail {
    position: relative;
    padding-right: 30px;
}

.job-overview-two h4,
.job-detail h4 {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #202124;
    margin-bottom: 20px;
}

.job-detail p {
    position: relative;
    font-size: 15px;
    line-height: 26px;
    color: #696969;
    margin-bottom: 26px;
}

.job-detail-li-style {
    position: relative;
    margin-bottom: 50px;
}

.job-detail-li-style li {
    position: relative;
    font-size: 15px;
    line-height: 26px;
    color: #696969;
    padding-left: 20px;
    margin-bottom: 25px;
}

.job-detail-li-style li::before {
    position: absolute;
    left: 0;
    top: 12px;
    height: 4px;
    width: 4px;
    background: #202124;
    content: "";
}

.sidebar {
    position: relative;
}

.sidebar .btn-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar .btn-box .theme-btn {
    width: 100%;
}

.btn-style-one {
    position: relative;
    text-align: center;
    white-space: nowrap;
    color: #ffffff;
    background-color: var(--mn-primary);
    font-size: 15px;
    line-height: 20px;
    border-radius: 8px;
    font-weight: 400;
    padding: 18px 35px 15px 35px;
}

.sidebar .btn-box .bookmark-btn {
    display: flex;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    color: var(--mn-primary);
    border-radius: 7px;
    background: rgba(25, 103, 210, 0.07);
    transition: all 300ms ease;
    margin-left: 20px;
    flex: 0 0 50px;
    border: 0;
}

.sidebar-widget {
    position: relative;
    padding: 30px 30px 30px;
    background: #F5F7FC;
    border-radius: 8px;
    margin-bottom: 40px;
}

.sidebar-widget .widget-title {
    position: relative;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #202124;
    margin-bottom: 30px;
}

.job-overview {
    position: relative;
}

.job-overview li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.job-overview .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 50px;
    background-repeat: no-repeat;
    background-position: center;
    font-size: 20px;
    color: var(--mn-primary);
    ;
}

.job-overview h5 {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #202124;
}

.job-overview span {
    font-size: 15px;
    line-height: 20px;
}

.job-skills {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.job-skills li {
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}

.job-skills li a {
    padding: 5px 20px;
    display: block;
    font-size: 14px;
    line-height: 19px;
    color: #696969;
    border-radius: 4px;
    background: #FFFFFF;
}


.company-widget .company-title {
    position: relative;
    padding-left: 78px;
    min-height: 60px;
    padding-top: 5px;
}

.company-widget .company-logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.company-widget .company-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #202124;
}

.company-widget .profile-link {
    font-size: 14px;
    line-height: 19px;
    color: var(--mn-primary);
}

/* Job Details Page  End */

/* Company Profile Start */
.sidebar-widget {
    position: relative;
    padding: 30px 30px 30px;
    background: #F5F7FC;
    border-radius: 8px;
    margin-bottom: 40px;
}

.company-widget .company-info {
    position: relative;
    margin-top: 25px;
}

.company-widget .company-info li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #202124;
    margin-bottom: 19px;
}

.company-widget .company-info li span {
    font-size: 15px;
    line-height: 25px;
    text-align: right;
    color: #696969;
}

.company-widget .social-links {
    display: flex;
    align-items: center;
}

.company-widget .social-links a {
    font-size: 18px;
    line-height: 26px;
    color: #696969;
    margin-left: 17px;
    transition: all 300ms ease;
}

.job-detail-section .related-jobs {
    position: relative;
    margin-bottom: 50px;
}

.related-jobs .title-box {
    position: relative;
    margin-bottom: 28px;
}

.related-jobs .title-box h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 35px;
    color: #000000;
    margin-bottom: 10px;
}

.related-jobs .text {
    color: #696969;
}


/* Company Profile End */

/* Select 2 Custome CSS*/

.select2.select2-container {
    width: 100% !important;
}

.select2.select2-container .select2-selection {
    outline: none !important;
    position: relative;
    min-width: 180px;
    height: 60px;
    border: 1px solid #e6ebeb;
    border-radius: 10px;
    font-size: 16px;
    transition: all .5s ease;
    line-height: 60px !important;
    padding-top: 14px;
    text-transform: capitalize;
    width: 100%;
    padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 35%;
    margin-left: -4px;
    margin-top: 0px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
    color: #848484;
    line-height: 32px;
    padding-right: 60px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
    margin-bottom: 15px;
    outline: none !important;
    /* width: 100%; */
    height: 55px;
    border-radius: 10px;
    font-size: 16px;
    color: #848484;
    padding: 0px 0px 0px 0px;
    transition: all .5s ease;
    border: 0;
    position: absolute;
    /* right: -90px; */
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
    background: #f8f8f8;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
    -webkit-border-radius: 0 3px 0 0;
    -moz-border-radius: 0 3px 0 0;
    border-radius: 0 3px 0 0;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--multiple {
    border: 1px solid #34495e;
}

.select2.select2-container .select2-selection--multiple {
    height: auto;
    min-height: 34px;
}

.select2.select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
    margin-top: 0;
    height: 32px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: block;
    padding: 0 4px;
    line-height: 29px;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 4px 4px 0 0;
    padding: 0 6px 0 22px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    position: relative;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    margin: 0;
    text-align: center;
    color: #e74c3c;
    font-weight: bold;
    font-size: 16px;
}

.select2-container .select2-dropdown {
    background: transparent;
    border: none;
    margin-top: -11px;
    color: #696969;
    text-transform: capitalize;
}

.select2-container .select2-dropdown .select2-search {
    padding: 0;
}

.select2-container .select2-dropdown .select2-search input {
    outline: none !important;
    border: 1px solid #e6ebeb !important;
    border-bottom: none !important;
    padding: 4px 6px !important;
}

.select2-container .select2-dropdown .select2-results {
    padding: 0;
}

.select2-container .select2-dropdown .select2-results ul {
    background: #fff;
    border: 1px solid #e6ebeb;
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
    background-color: var(--mn-primary);
}

/* Select 2 Custome CSS End  */

/* User Profile Start */

.progress {
    height: 30px;
}



.cv-single-box {
    position: relative;
}

.cv-single-box .inner {
    position: relative;
    padding-left: 60px;
    z-index: 1;
    padding-bottom: 60px;
}

.cv-single-box .inner:before {
    position: absolute;
    left: 14px;
    top: 5px;
    bottom: 0;
    z-index: -1;
    border-left: 2px dashed #ededed;
    content: "";
}

.cv-single-box:last-child .inner {
    padding-bottom: 30px;
}

.cv-single-box:last-child .inner:before {
    display: none;
}

.cv-single-box .name {
    position: absolute;
    left: 0;
    top: 5px;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 12px;
    text-align: center;
    border-radius: 50%;
    background: #f9e0df;
    color: #dc3545;
    z-index: 2;
}

.cv-single-box .title-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.cv-single-box .info-box {
    position: relative;
    margin-right: 20px;
}

.cv-single-box .info-box h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #202124;
}

.cv-single-box .info-box span {
    font-size: 16px;
    line-height: 22px;
    color: #dc3545;
}

.cv-single-box .cv-edit-box {
    display: flex;
    align-items: center;
}

.cv-single-box .cv-edit-box .year {
    position: relative;
    font-size: 13px;
    padding: 5px 20px;
    line-height: 15px;
    color: #dc3545;
    font-weight: 500;
    border-radius: 20px;
    background: rgba(217, 48, 37, 0.15);
    color: #dc3545;
}

.cv-wrap.theme-blue .cv-single-box .cv-edit-box .year,
.cv-wrap.theme-blue .cv-single-box .name {
    background: #eff4fc;
    color: #0165e1;
}

.cv-wrap.theme-blue .cv-single-box .info-box span {
    color: #0165e1;
}

.cv-wrap.theme-yellow .cv-single-box .cv-edit-box .year,
.cv-wrap.theme-yellow .cv-single-box .name {
    background: #0dcaf021;
    color: #0dcaf0;
}

.cv-wrap.theme-yellow .cv-single-box .info-box span {
    color: #0dcaf0;
}


/* User Profile End */

/* Faq Page CSS Start */

.accordion-button:focus {
    box-shadow: none;
}

/* Faq Page CSS End*/

.tos-text p {
    margin-bottom: 20px;
}


/* User Profile Card Start */
.user-profile-dp {
    height: 100px;
    width: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 100px;
    text-align: center;
    margin: 15px auto;
    margin-top: 0;
}

.profile-card-wrap {
    background: #FFFFFF;
    border: 1px solid #ECEDF2;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 19px;
    transition: all 300ms ease;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
}

.user-profile-name {
    color: #2a3d71;
    font-size: 18px;
    margin-bottom: 0;
}

.view-profile-btn {
    display: block;
    background: #2a3d710a;
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 10px auto;
    border-radius: 5px;
    color: #696969;
    text-transform: capitalize;
}

.view-profile-btn:hover {
    background-color: #2a3d71;
    color: #fff;
}

.profile-card-wrap span {
    color: #2a3d71;
}

.profile-card-wrap button {
    border: 0;
    font-size: 15px;
    display: block;
    background: 0;
    margin: 0 0 0 auto;
    width: 30px;
    text-align: center;
    height: 30px;
    border-radius: 50px;
    margin-top: -10px;
    opacity: 0;
}

.profile-card-wrap button:hover {
    background: #2a3d71;
    width: 30px;
    text-align: center;
    height: 30px;
    border-radius: 50px;
    margin-top: -10px;

}

.profile-card-wrap button:hover span {
    color: #fff !important;
}

.profile-card-wrap:hover.profile-card-wrap button {
    opacity: 1;
}

/* User Profile Card End */

/* How it Work Start */

.how-its-work-wrap {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 19px;
    transition: all 300ms ease;
    text-align: center;
}

.how-its-work-wrap:hover {
    box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
    border: 1px solid #ECEDF2;
}

.how-its-work-wrap img {
    width: 80px;
    height: 80px;
}

.how-its-work-img {
    background-color: rgba(2, 100, 214, 0.1) !important;
    border-radius: 100%;
    color: #0264d6 !important;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    margin: 0 auto;
}

.how-its-work-wrap h3 {
    color: #2a3d71;
    margin: 15px 0;
    font-size: 22px;
    font-weight: 600;
}

.how-its-work-wrap p {
    margin-top: 5px;
    font-size: 14px;
    line-height: 25px;
    color: var(--mn-color-3);
    /* font-weight: 500; */
}

/* How It Work End  */

/* Jobs Card  */

.jobs-card-wrap {
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #ECEDF2;
    border-radius: 8px;
    transition: all 300ms ease;
    margin-bottom: 20px;
}

.jobs-cat-time {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.jobs-cat-time h6 {
    margin-bottom: 0;
    margin-right: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #2a3d71;
}

.jobs-cat-time span {
    color: #a0abb8 !important;
}

.jobs-title-sdisc {
    margin-bottom: 20px;
}

.jobs-title-sdisc h4 {
    color: #2a3d71;
    font-weight: 600;
    line-height: 1.5 !important;
    font-size: 20px;
}

.jobs-title-sdisc p {
    color: #5d6f7d;
    font-size: 13px;
    font-weight: 400;
}

.jobs-options {
    margin-bottom: 20px;
}

.job-option-item {
    padding: 4px 15px;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
    font-size: 75%;
}

.bg-light-warning {
    background-color: rgba(246, 149, 32, 0.1) !important;
}

.text-warning {
    color: #f69520 !important;
}

.bg-light-success {
    background-color: rgba(0, 152, 104, 0.1) !important;
}

.text-success {
    color: #009868 !important;
}

.bg-light-purple {
    background-color: rgba(99, 99, 245, 0.1) !important;
}

.text-purple {
    color: #6363f5 !important;
}

.jobs-footer {
    background: #f1f5f8 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.jobs-logo h4 {
    margin-bottom: 0;
    margin-right: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #2a3d71;
}

.jobs-logo-item {
    height: 40px;
    width: 40px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}

.jobs-apply a {
    background: #0264d6;
    border-color: #0264d6;
    color: #ffffff;
    padding: .25rem .5rem;
    height: 35px;
    font-size: 12px;
    border-radius: 3px;
    display: block;
}

/* ===================================== Features Page CSS  ===================================== */

.features-hero-bg {
    background-image: url('../images/features/hero-bg-2.png');
    background-size: cover;
    background-position: center;
}

.features-hero-content h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
    text-transform: capitalize;
}

.features-hero-content {
    min-height: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
}

.features-hero-content p {
    margin: 20px 0;
    color: #fff;
    font-size: 18px;
    padding: 0 130px;
    line-height: 35px;
}

.features-hero-content a {
    background: #1478e5;
    display: block;
    color: #fff;
    width: 250px;
    height: 60px;
    border-radius: 100px;
    font-size: 22px;
    text-transform: uppercase;
    line-height: 60px;
    font-weight: bold;
    margin-bottom: 50px;
}

.features-image {
    background: #CAE0F9;
    padding: 20px;
    border-radius: 20px;
}

.single-features-item {
    padding: 120px 0;
}

.py-120 {
    padding: 120px 0;
}

.pb-120 {
    padding-bottom: 120px;
}


.widget-box {
    /*! border: 2px solid #2a3d71; */
    padding: 30px;
    border-radius: 20px;
    margin-right: 30px;
    /* margin-bottom: 20px; */
    box-shadow: 0px 2px 20px 19px rgb(0, 0, 0, 2%);
}

.features-image img {
    width: 100%;
    border-radius: 15px;
    /* border: 2px solid; */
}

.features-content {
    margin-left: 50px;
}

.features-content h1 span {
    font-weight: bold;
    color: #022F36;
}

.features-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.features-content p {
    line-height: 25px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #696969;
}

.features-listed-wrap li span {
    background: #CDBCFF;
    width: 30px;
    display: inline-block;
    height: 30px;
    border-radius: 100px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    margin-right: 10px;
    color: #022f36;
}

.features-listed-wrap li {
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.elevate-content h1 {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 20px;
}

.elevate-content h1 span {
    color: #1478e5;
}

.elevate-content p {
    font-size: 18px;
    padding: 0 50px;
    color: #696969;
}

.elevate-wrap {
    background-color: transparent;
    background-image: linear-gradient(180deg, #eff8ff 55%, #020f33 45%);
}

.elevate-box {
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.elevate-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.elevate-box p {
    color: #696969;
    font-size: 15px;
    margin-top: 20px;
}

/* fet-products-wrap  */

.fet-products-wrap {
    background: #F7F5F0;
}

.fet-products-item {
    box-shadow: 0px 30px 40px -10px rgba(31.999999999999993, 55.99999999999997, 84.99999999999996, 0.12);
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 25px;
    min-height: 260px;
}

@media (width: 1366px) {
    .fet-products-item {
        min-height: 320px;
    }
}

.fet-products-item i {
    background: #F2F2F2;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
    border-radius: 100px;
    text-align: center;
    color: #FF8100;
    margin-bottom: 15px;
}

.fet-products-item h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.fet-products-item p {
    line-height: 29px;
    text-transform: capitalize;
    color: #696969;
}

.features-hero-content img {
    background: #fff;
    padding: 10px;
    border-radius: 45px;
}

.single-step-image {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    /* box-shadow: 0px 2px 9px 9px rgb(0, 0, 0, 10%); */
    box-shadow: 0px 2px 20px 19px rgb(0, 0, 0, 2%);
}

.single-step-image img {
    border-radius: 15px;
}

/* Hero New Slider  */
.hero-slider-banner {
    height: 600px;
    width: 100%;
    background-size: cover;
    background-position: center;
}