/********** Template CSS **********/
:root {
    --primary: #00B074;
    --secondary: #2B9BFF;
    --light: #EFFDF5;
    --dark: #2B3940;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 90px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 40px;
    height: 40px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.nav-icon {
    margin-right: 5px;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.job-box {
    width: 100%;
    /* max-width: 250px; */
    max-width: 414px;
    padding: 20px;
    /* text-align: center; */
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.job-btn {
    width: 100%;
    padding: 15px;
}

/* ============ Resume box ============*/
.apply-btn-container {
    position: relative;
    display: inline-block;
}

.apply-btn-bg {
    /* width: 100%; /* Make the image responsive */
    /* height: auto; */
    position: absolute;
    top: 35px;
    right: 0;
    z-index: 0;
    border-radius: 5px;
    border: 1px solid #efeaea;
    width: 85px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    margin-left: -38px;
}

.apply-btn-bg1 {
    /* width: 100%; /* Make the image responsive */
    /* height: auto; */
    /* position: absolute;
    top: 60px;
    right: 0;
    z-index: 0; */
    border-radius: 5px;

    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    /* margin-left: -38px; */
}

.apply-btn {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7); /* Optional: Add some transparency */
    color: white; /* Ensure text visibility */
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
}

.job-box1 {
    background: linear-gradient(to bottom, #ffffff, #f1f1f1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%;
    /* border-left: 5px solid #00B074; */
    border-left: 5px solid #d05d46;
    position: relative;
}

.job-box2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #ffffff, #f1f1f1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 100%;
    border-left: 5px solid #d05d46;
}

.job-box1:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.job-box1 h5 {
    font-weight: bold;
    color: #08352c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    position: relative;
}

.apply-btn {
    background: #28a745;
    border: none;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
}

.apply-btn:hover {
    background: #218838;
}

.job-box1 p {
    font-size: 14px !important;
    margin-bottom: 5px !important;
    color: #0e0e0e;
}

.job-details {
    font-size: 14px;
    margin-top: 10px;
}

.job-location {
    font-weight: bold;
    color: #d9534f;
}

.job-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-left: -38px;
}

.more-jobs-btn {
    background: #28a745; /* Green button */
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.more-jobs-btn:hover {
    background: #218838;
    transform: scale(1.05); /* Slightly enlarge on hover */
}
.bg1{
    background-color: #d05d46;;
}

.icon-container {
    position: absolute;
    bottom: 10px;
    right: 30px;
    display: flex;
    gap: 10px;
}

.icon-container i {
    font-size: 18px;
    color: #d05d46;
    cursor: pointer;
    transition: color 0.3s;
}

.icon-container i:hover {
    color: #00B074;
}

/* Company Info */
.company-info {
    /* display: flex; */
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.company-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 8px;
    border: 1px solid #efeaea;
}

.company-name {
    font-size: 14px;
    font-weight: bold;
    color: #08352c;
}

/* Salary Styling */
.salary-icon {
    color: #28a745;
}

@media (max-width: 768px) {
    .more-jobs-btn {
        width: 100%; /* Full width on small screens */
        text-align: center;
    }

    .company-info {
        justify-content: center;
        flex-direction: column;
        /* text-align: center; */
    }

    .company-logo {
        margin-bottom: 5px;
    }
}

.job-info {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-wrap: wrap; /* Ensures responsiveness */
    /* font-size: 12px;
    color: #555; */
    gap: 10px;
}
.job-info1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* font-size: 12px;
    color: #555; */
}

.job-info p {
    margin: 0;
    flex: 1; /* Makes both items take equal space */
    white-space: nowrap;
    /* min-width: 50%;  */
}
@media (max-width: 576px) {
    .job-info {
        flex-direction: column; /* Stack on smaller screens */
    }
}

/* =======End Resume box ============*/

/* ==========Government Box =========== */
/* Box Styling */
.info-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #00B074;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

/* Box Titles */
.box-title {
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    color: #ffffff;
    background: #007bff;
    border-radius: 8px;
}

/* Colors for Different Boxes */
.info-box:nth-child(1) .box-title { background: #00B074; }
.info-box:nth-child(2) .box-title { background: #ffc107; }
.info-box:nth-child(3) .box-title { background: #dc3545; }

/* List Styling */
.box-list {
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
}

.box-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.box-list li:last-child {
    border-bottom: none;
    font-weight: bold;
    text-align: center;
}

.box-list li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: block;
    transition: color 0.3s ease-in-out;
}

.box-list li a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-box {
        text-align: center;
    }
}
/* =============End Government Box =============== */

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .job-box1 {
        flex-direction: column;
        /* text-align: center; */
    }

    .job-image {
        margin-top: 10px;
        width: 60px;
        height: 60px;
    }
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 27px 0 45px 35px;
    border-left: 15px solid var(--primary);
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: var(--primary);
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        /* min-height: 500px; */
        min-height: 300px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
.about-bg {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 5px 5px;
}


/*** Category ***/
.cat-item {
    text-align: center;
    /* display: block; */
    /* background: #fff; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* transition: all 0.3s ease-in-out; */
    display: block;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    border: 1px solid transparent;
    transition: .5s;
}

.cat-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}

.view-all {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}
.view-all:hover {
    text-decoration: underline;
}


/*** Job Listing ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

.job-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.job-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}

.home4-counter-area .counter-single {
    display: flex;
    align-items: center;
    transition: 0.35s;
}

.home4-counter-area .counter-single .counter-icon {
    padding-right: 25px;
    position: relative;
    transition: 0.35s;
}

.home4-counter-area .counter-single .counter-icon::after {
    content: "";
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background-color: rgba(0, 167, 172, 0.15);
    position: absolute;
    bottom: -12px;
    right: 12px;
}

.home4-counter-area .counter-single .coundown h3 {
    font-family: var(--font-exo2);
    font-weight: 600;
    font-size: 36px;
    color: var(--title-color1);
    margin-bottom: 0px;
    line-height: 1;
}

.home4-counter-area .counter-single .coundown span {
    font-family: var(--font-exo2);
    font-weight: 600;
    font-size: 36px;
    color: var(--title-color1);
    margin-left: -6px;
    line-height: 1;
}

.home4-counter-area .counter-single .coundown p {
    margin-bottom: 0;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-color1);
    padding-top: 13px;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.home1-trusted-company.two {
    background-color: transparent;
    padding: 0;
}

.home1-trusted-company .section-title {
    margin-bottom: 15px;
}

.home1-trusted-company .section-title h5 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--title-color1);
    font-family: var(--font-exo2);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.home1-trusted-company .section-title h5::after {
    content: "";
    width: 114px;
    height: 1px;
    background-color: rgba(0, 167, 172, 0.5);
    border-radius: 5px;
    position: absolute;
    top: 55%;
    right: -130px;
    transform: translateY(-50%);
}

.swiper-pointer-events {
    touch-action: pan-y;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.home1-trusted-company .company-logo {
    display: flex;
    align-items: center;
}

/* ====================== Tabs ====================== */
.nav-tabs{
    border: none;
}

.nav-tabs .nav-link {
    font-weight: bold;
    color: #333;
}
/* .nav-tabs .nav-link.active {
    background-color: #007bff;
    color: #fff;
} */
.tab-content a {
    /* display: block; */
    /* padding: 5px 0; */
    text-decoration: none;
    box-sizing: border-box;
    margin: 0;
    min-width: 0;
    font-size: 16px;
    line-height: 24px;
    font-family: Relative Pro, Arial, sans-serif;
    font-weight: 350;
    color: #0C2577;
}
.tab-content a:hover {
    text-decoration: underline;
}

.nav{flex-wrap: nowrap !important;}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #000;
    background-color: #ffffff;
    border: none;
    border-bottom: 2px solid #006a46;

}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:hover{
      border-color: #fff;
        isolation: isolate;
        border: none;
}

/* .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link:hover {
    color: #495057;
    background-color: #EFFDF5;
    border-color: #dee2e6 #dee2e6 #EFFDF5;
} */


/* =================End Tabs ===============*/
    .cont1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* gap: 20px; */
        /* padding: 40px; */
    }
    .card {
        background: white;
        /* padding: 20px; */
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        /* width: 300px; */
        width: auto;
        /* text-align: center; */
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        justify-content: space-between;
        height: 100%;
    }
    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }
    .card h3 {
        margin: 15px 0;
        font-size: 22px;
        line-height: 32px;
        font-family: Relative Pro, Arial, sans-serif;
        font-weight: 700;
        color: #0C2577;
        margin-bottom: 8px;
        padding: 0px 20px;

    }
    .pd-txt{
        padding: 10px 20px;
        flex-grow: 1;
    }
    .card a {
        text-decoration: none;
        display: block;
        width: 100%;
        padding: 10px;
        background: #0C2577;
        color: white;
        border-radius: 5px;
        text-align: center;
        margin-top: auto;
    }
    .card:hover {
        transform: scale(1.05);
        transition: all 0.3s ease-in-out;
    }
    @media (max-width: 768px) {
        .container {
            flex-direction: column;
            align-items: center;
        }
    }
/*===== End Tabs =====*/

/* .whatsapp-icon {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.whatsapp-icon img {
    width: 40px;
    height: 40px;
} */

/*===== Start Whatapp =====*/

.whatsapp-container {
    position: fixed;
    bottom: 160px;
    right: 10px;
    display: flex;
    align-items: center;
    background-color: #00B074;
    padding: 8px;
    border-radius: 25px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9;
}
.whatsapp-icon img {
    width: 40px;
    height: 40px;
}
.whatsapp-text {
    color: white;
    font-weight: bold;
    margin-left: 10px;
    font-family: Arial, sans-serif;
}

/*===== End Whatapp =====*/

/*===== Start Banner =====*/
.img-fluid {
    width: 100%;
    height: 400px;
    border: 1px solid rgb(232, 223, 223);
}

@media (max-width: 576px) {
    .img-fluid {
        height: auto !important;
    }
}
/*===== End Banner =====*/

/*=========== Search Box ============*/
/* Search Lens Icon Styling */
/* Search Lens Icon Styling */
.search-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.search-icon {
    font-size: 18px;
    color: #333;
}

.search-icon-container:hover {
    background: #e0e0e0;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .d-flex {
        /* flex-direction: column; */
        align-items: center;
        text-align: center;
        /* padding: 0px 10px; */
    }

    .form-check {
        margin-bottom: 8px;
    }

    .search-icon-container {
        margin-top: 10px;
    }
}

/*
.search-box {
    width: 250px;
}

@media (max-width: 768px) {
    .search-box {
        width: 100%;
    }
} */
/*===== End Search Box =====*/

.bg2{
    background-color: #d3c6c63d;
    padding: 5px;
    border-radius: 5px;
}

/* ======= Skills =======*/
.skills-container {
    display: flex;
    flex-wrap: wrap;
    max-height: 40px; /* Adjust height for two lines */
    overflow: hidden;
    position: relative;
    background-color: #d3c6c63d;
    padding: 5px;
    border-radius: 5px;
    margin-right: 3px;
}
.extra-skill {
    display: none; /* Hide extra skills initially */
}

.plus-icon {
    cursor: pointer;
    font-weight: bold;
    /* color: #006a46; */
    color:rgb(208, 93, 70);
    margin-left: 5px;
}

/* ======= End Skills =======*/
.bordr{border-bottom: 1px solid #006a46;}

/*================= Model Jobseeker Registration Form ===============*/
.modal-content{padding: 20px 30px;}
.form-label {
    margin-bottom: 2px;
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 880px;
        right: 0px;
        position: absolute;
        top: 48px;
    }
}
/*================= End Model Jobseeker Registration Form ===============*/
