/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Variable */
:root {
    --nb-primary: #22479e;
    --nb-hover: #2f64a3;
    --nb-green: #008a22;
    --nb-secondary: #f5f5f5;
    --nb-body-color: #333;
    --nb-text-color: #424242;
    --nb-svg-color: #388ea9;
    --nb-bg-color: #ebf4f6;
    --nb-font: "Inter", sans-serif;
}

/* Reset css */
body {
    font-family: var(--nb-font);
    font-size: 16px;
    line-height: 1.5;
    color: var(--nb-body-color);
}
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none;
}

button:focus,
.btn-close:focus,
input:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--nb-bg-color);
}
.section-padding {
    padding: 60px 0;
}
.section-heading {
    margin-bottom: 30px;
}
.section-heading h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 0px;
}
@keyframes tpfadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.tpfadeInDown {
    animation: tpfadeInDown 1s ease-out forwards;
}

/* Ads Banner Design */
.alert-wrap {
    padding: 0px;
    margin-bottom: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    background-color: var(--nb-primary);
    position: relative;
    gap: 10px;
}
.alert-wrap button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: #fff;
    border: none;
    background-color: transparent;
}
/* Header Style */
.header-wrapper {
    box-shadow: 0 4px 20px rgb(0 0 0 / 5%);
    background-color: #ffff;
}
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    -webkit-animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
    animation: 0.7s ease-in-out 0s normal none 1 running tpfadeInDown;
}
.logo-area a img {
    max-width: 170px;
}
.header-menu-area nav ul li a,
.menu-area ul li a {
    color: var(--nb-text-color);
    font-size: 14px;
    padding: 20px 15px;
    display: inline-block;
    transition: all 0.3s ease;
}
.header-menu-area nav ul li a:hover,
.menu-area ul li a:hover {
    color: var(--nb-hover);
    background-color: var(--nb-secondary);
}
.header-menu-area nav ul li .post-a-job .menu-area ul li .post-a-job {
    background: var(--nb-green);
    padding: 10px 15px;
    color: #fff;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 12px;
}
.header-menu-area nav ul li .post-a-job:hover,
.menu-area ul li .post-a-job:hover {
    background-color: var(--nb-green);
    color: #fff;
}
/* Hero section */
.heroSlider .swiper-button-prev,
.heroSlider .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid var(--nb-green);
    transition: all 0.3s ease;
}
.heroSlider .swiper-button-next:after,
.heroSlider .swiper-button-prev:after {
    font-size: 14px;
    color: var(--nb-green);
}
.heroSlider .swiper-button-prev:hover,
.heroSlider .swiper-button-next:hover {
    background-color: var(--nb-green);
}
.heroSlider .swiper-button-prev:hover:after,
.heroSlider .swiper-button-next:hover:after {
    color: #fff;
}
.heroSlider .swiper-button-prev {
    left: 35px;
}
.heroSlider .swiper-button-next {
    right: 35px;
}
.hero-container-wrapper {
    position: absolute;
    z-index: 1;
    bottom: 80px;
}
.hero-content,
.slider-content {
    max-width: 610px;
    width: 100%;
}
.slider-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 518px;
}
.slider-content {
    padding: 150px 0px;
}
.slider-content h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    line-height: 120%;
    margin-bottom: 20px;
}
.slider-content p {
    color: #fff;
    max-width: 461px;
    width: 100%;
}
.jobs-information {
    position: absolute;
    right: 50px;
    bottom: 20px;
    display: flex;
    z-index: 1;
    gap: 20px;
    align-items: center;
}
.info-card {
    background-color: var(--nb-green);
    text-align: center;
    padding: 20px 56px;
    border-radius: 8px;
}
.info-card h2 {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}
.info-card h4 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0px;
}
.search-jobs {
    display: flex;
    align-items: center;
}
.search-jobs input {
    background-color: #fbfbfb;
    border: 1px solid #ededed;
    box-shadow: 0px 4px 26px 0px rgba(0, 0, 0, 0.1);
    border-radius: 50px !important;
    padding: 13px 20px 13px 52px;
    color: var(--nb-text-color);
}
.find-a-jobs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.find-a-jobs-wrap button {
    border: 0;
    background-color: var(--nb-green);
    color: var(--nb-secondary);
    font-size: 16px;
    width: 120px;
    padding: 14px 15px;
    border-radius: 30px;
}
.search-jobs input::placeholder {
    color: #c7c7c7;
}
.search-icon {
    width: 36px;
    height: 36px;
    background-color: #ebf4f6;
    border-radius: 20px !important;
    position: absolute;
    display: flex;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    z-index: 6;
    left: 6px;
}
/* District */
.district-section-wrapper {
    padding: 40px 0px;
}
.district-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.district-wrap li a {
    display: inline-block;
    background-color: #ebf4f6;
    border-radius: 30px;
    border: 1px solid #add1dc;
    padding: 10px 16px;
    color: var(--nb-text-color);
}
/* Category */
.category-section-area,
.training-and-migration-area {
    background-color: var(--nb-secondary);
}
.category-card-wrap {
    gap: 24px;
}
.category-card {
    background-color: #fff;
    border-radius: 4px;
    padding: 4px;
    gap: 20px;
    transition: all 0.3s ease;
    flex-grow: 1;
    flex-basis: 306px;
    width: 306px;
}
.category-image-wrap {
    border-radius: 2px;
    border: 1px solid #fbfbfb;
    width: 150px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.category-content {
    width: 100%;
    height: 80px;
}
.category-content h3 {
    font-size: 16px;
    color: var(--nb-text-color);
    font-weight: 600;
    margin-bottom: 0px;
}
.available-position h4 {
    font-size: 12px;
    color: #bababa;
    line-height: 16px;
    margin-bottom: 2px;
}
.available-position h5 {
    padding: 5px 32px;
    background-color: var(--nb-bg-color);
    border-radius: 4px;
    margin-bottom: 0px;
    font-size: 12px;
    text-align: center;
    font-weight: 800;
    color: var(--nb-text-color);
}
.svg-icon {
    width: 25px;
    height: 25px;
    background-color: var(--nb-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--nb-svg-color);
    transition: all 0.3s ease;
}
.category-card:hover .svg-icon {
    width: 30px;
    height: 30px;
    background-color: var(--nb-hover);
    color: #fff;
    transition: all 0.3s ease;
}
/* job card */
.job-card {
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 24px;
}
.company-logo {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 100px;
    height: 100px;
}
.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.job-card h3 a {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 28px;
    color: var(--nb-text-color);
}
.company-info h4 {
    font-size: 17px;
    margin: 0px;
}
.location-job-type,
.exp-salary {
    gap: 20px;
    margin-bottom: 10px;
}
.location-job-type p {
    font-size: 14px;
    margin-bottom: 0px;
}
.location-job-type .employee-type {
    background-color: var(--nb-green);
    color: #fff;
    padding: 2px 10px;
    font-size: 10px;
    border-radius: 10px;
}
.location-job-type p svg {
    width: 11px;
}
.exp-salary {
    gap: 15px;
}
.exp-salary h3 {
    font-size: 14px;
    margin: 0px;
    gap: 4px;
}
.exp-salary h3 svg {
    width: 13px;
}
.exp-salary .salary-icon svg {
    height: 18px;
    width: 18px;
}
.job-card .job-short-details {
    font-size: 14px;
    border-bottom: 1px solid #d5d5d5;
    margin: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.deadline {
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
}
.deadline svg {
    width: 12px;
}
.apply-btn a {
    display: inline-block;
    background-color: var(--nb-hover);
    color: #fff;
    padding: 5px 15px;
    border-radius: 27px;
    font-size: 14px;
}
/* Training and migration */
.training-wrap {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 24px;
}
.training-wrap h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 15px;
    color: var(--nb-text-color);
}
.training-item {
    gap: 10px;
    margin-bottom: 15px;
}
.training-item:last-child {
    margin-bottom: 0px;
}
.icon-wrap {
    width: 50px;
    height: 50px;
    background-color: #e3165b;
    display: flex;
    align-items: center;
    border-radius: 4px;
    justify-content: center;
}
.icon-wrap img {
    width: 30px;
}
.training-details h3 {
    font-size: 14px;
    margin: 0 0 6px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--nb-body-color);
}
.training-details p {
    font-size: 14px;
    color: var(--nb-body-color);
    margin-bottom: 5px;
}
/* Footer */
.footer-area {
    background-color: #263238;
    padding: 50px 0px;
}
.footer-about-area {
    max-width: 396px;
    width: 100%;
}
.footer-about-area a img {
    width: 250px;
    margin-bottom: 20px;
}
.footer-about-area p,
.footer-about-area ul li a {
    color: #fff;
}
.footer-about-area ul {
    gap: 20px;
}
.footer-quick-link {
    max-width: 632px;
    width: 100%;
}
.company-link h3,
.help-link h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
}
.company-link ul li a,
.help-link ul li a {
    color: var(--nb-secondary);
    margin-bottom: 5px;
    display: inline-block;
}
.copyright-text p {
    text-align: center;
    color: var(--nb-secondary);
    margin-bottom: 0px;
    padding-top: 25px;
    margin-top: 50px;
    border-top: 1px solid var(--nb-secondary);
}

/*=======================================
			About us page
=========================================*/
.about-section-area {
    width: 100%;
    height: 618px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.about-us-hero-content-wrap {
    max-width: 623px;
    width: 100%;
}
.about-us-hero-content-wrap h1 {
    font-size: 56px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}
.about-us-hero-content-wrap p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0px;
}
/* Mission vision */
.our-mission-and-vision-section-area {
    padding: 100px 0px;
}
.mission-vision-image img {
    border-radius: 12px;
}
.mission-bottom {
    margin-bottom: 50px;
}
.mission-vision-content h2 {
    font-size: 56px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 20px;
}
.mission-vision-content p {
    font-size: 20px;
    line-height: 150%;
    color: var(--nb-body-color);
}
/* what-we-value */
.what-we-value-section {
    padding-bottom: 50px;
}
.what-we-value-heading h2 {
    font-size: 56px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 30px;
}
.card-svg-icon {
    color: var(--nb-green);
    background-color: #ebf4f6;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.card-svg-icon svg {
    width: 40px;
    height: 40px;
}
.value-card {
    border: 1px solid var(--nb-green);
    padding: 25px;
    border-radius: 8px;
}
.value-card h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    color: var(--nb-text-color);
    margin-bottom: 12px;
}
.value-card p {
    color: #868686;
    margin-bottom: 0px;
}
/*=======================================
			My Jobs Page
=========================================*/
.quick-search,
.found-jobs-count-wrap {
    position: sticky;
    top: 65px;
    z-index: 1;
}
.jobs-card-wrap {
    padding: 0px 5px;
}
.quick-search {
    background-color: #fff;
    box-shadow: 0px 4px 16px 0px rgb(0 0 0 / 6%);
    border-radius: 8px;
    padding: 20px;
}
.quick-search h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 20px;
}
.jobs-search-form input,
.jobs-search-form select {
    height: 35px;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f6f6f6;
    color: var(--nb-text-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
    border: none;
    width: 100%;
    margin-bottom: 12px;
}
.jobs-search-form input::placeholder {
    color: #868686;
}
.jobs-search-form button {
    padding: 10px 12px;
    border: none;
    background-color: var(--nb-green);
    width: 100%;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 130%;
    border-radius: 8px;
    margin-top: 28px;
}
.found-jobs-count-wrap {
    box-shadow: 0px 4px 16px 0px rgb(0 0 0 / 6%);
    background-color: #fff;
    padding: 24px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.found-jobs-count-wrap h3 {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
}
.found-jobs-count-wrap h3 span {
    color: var(--nb-green);
}
/*=======================================
			E-Learning page
=========================================*/
.e-learning-top {
    padding: 10px 20px;
}
.e-learning-input {
    width: 400px;
}
.learning-card {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 16px 0px rgb(0 0 0 / 12%);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 24px;
}
.price-box {
    gap: 2px;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 600;
}
.price-box svg {
    width: 16px;
}
.learning-card-content .top a h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--nb-text-color);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.learning-card:hover .learning-card-content .top a h3 {
    color: var(--nb-green);
}
.learning-card-content .top p {
    font-size: 15px;
}
.learning-card-content {
    padding: 20px 10px;
}
.learning-card-image {
    width: 100%;
    height: 150px;
}
.learning-card-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.register-now a {
    background-color: var(--nb-green);
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
}
.category_wrap {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 4px 16px 0px rgb(0 0 0 / 12%);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 24px;
}
.category_wrap ul li {
    border-bottom: 1px solid #f2f1f1;
}
.category_wrap ul li:last-child {
    border-bottom: 0;
}

.category_wrap ul li a {
    color: var(--nb-body-color);
    display: block;
    padding: 10px 0px;
    transition: 0.3s;
}
.category_wrap ul li a:hover {
    color: var(--nb-primary);
}
/*=======================================
			E-Learning details page
=========================================*/
.learning-details-section-area {
    background-color: var(--nb-svg-color);
    color: #fff;
    padding: 40px 0px 50px;
}
.learning-details-hero-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.learning-details-hero-content h1 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 12px;
}
.learning-details-hero-content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.learning-details-hero-content ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.learning-details-pricing {
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
    padding: 50px 20px;
    border-radius: 8px;
    width: 383px;
    text-align: center;
    right: 0;
    top: 40px;
}
.learning-details-pricing h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--nb-text-color);
    margin-bottom: 0px;
}
.learning-details-pricing p {
    font-size: 12px;
    font-weight: 400;
    color: var(--nb-body-color);
    margin-bottom: 30px;
}
.learning-details-pricing a {
    background-color: var(--nb-green);
    width: 100%;
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    padding: 12px 20px;
    margin-bottom: 30px;
}
.contact-details {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 30px;
}
.contact-item h3 {
    font-size: 16px;
    color: var(--nb-body-color);
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.learning-details-content-wrap h2,
.related-content-heading h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--nb-text-color);
    margin-bottom: 12px;
}
.learning-details-content-wrap p {
    margin-bottom: 20px;
    color: var(--nb-body-color);
}
.related-traning-wrapper {
    padding-bottom: 50px;
}
.related-content-heading {
    margin-bottom: 30px;
}
/* Job Details */
.job-details-section-area {
    background-color: var(--nb-green);
    color: #fff;
}
.job-details-hero-content h1 {
    font-size: 30px;
    font-weight: 600;
}
.job-details-content,
.job-details-summery {
    box-shadow: 0px 4px 16px 0px rgb(0 0 0 / 12%);
    background-color: #fff;
    border-radius: 8px;
}
.job-details-company-logo {
    width: 100px;
    height: 100px;
    border: 1px solid var(--nb-bg-color);
    border-radius: 4px;
}
.job-details-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.details-top {
    gap: 20px;
    padding: 30px;
    border-bottom: 1px solid var(--nb-bg-color);
}
.job-details-company-info h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
}
.job-details-company-info ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.job-details-company-info ul li {
    font-size: 14px;
}
.job-details-company-info ul li svg {
    width: 15px;
    height: 15px;
}
.details-area {
    padding: 30px;
    border-bottom: 1px solid var(--nb-bg-color);
}
.details-area h2,
.job-details-summery h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.details-area ul {
    list-style: disc;
    margin-left: 15px;
    margin-bottom: 12px;
}
.details-area ul li,
.job-details-summery ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
}
.details-area p {
    margin-bottom: 12px;
}
.job-apply-btn {
    padding: 30px;
}
.job-apply-btn a {
    background-color: var(--nb-green);
    color: #fff;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 16px;
}
.job-details-summery h2 {
    padding: 30px;
    margin-bottom: 0px;
    border-bottom: 1px solid var(--nb-bg-color);
}
.job-details-summery ul {
    padding: 30px;
    list-style: circle;
    margin-left: 15px;
}
.job-details-summery ul li span {
    color: #a5a5a5;
    font-weight: 600;
}
/*  Contact Us Page Style Here */
.contact-info h2,
.contact-form-wrap h2 {
    font-size: 30px;
    font-weight: 600;
}
.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.contact-info ul li p {
    margin-bottom: 0px;
}
.contact-form-wrap h2 {
    margin-bottom: 30px;
}
.contact-form-wrap label {
    font-size: 14px;
    margin-bottom: 5px;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
    margin-bottom: 10px;
}
.contact-form-wrap button {
    border: none;
    background-color: var(--nb-green);
    color: #fff;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 4px;
}
/*=======================================
			Responsive Style
=========================================*/
@media screen and (max-width: 1300px) {
    body {
        font-size: 14px;
    }
    .info-card {
        padding: 10px 30px;
    }
    .info-card h2 {
        font-size: 25px;
    }
    .info-card h4,
    .find-a-jobs-wrap button {
        font-size: 14px;
    }
    .district-wrap {
        gap: 10px;
        justify-content: center;
    }
    .slider-content,
    .find-a-jobs-wrap {
        margin-left: 30px;
    }
    .slider-content {
        max-width: 500px;
    }
    .slider-content h2 {
        font-size: 30px;
    }
    /* About us */
    .about-us-hero-content-wrap h1,
    .what-we-value-heading h2 {
        font-size: 40px;
    }
    .about-us-hero-content-wrap p {
        font-size: 16px;
    }
    .mission-vision-content h2 {
        font-size: 35px;
    }
    .mission-vision-content p {
        font-size: 17px;
    }
}
@media screen and (max-width: 991px) {
    .alert-wrap a img {
        width: 90%;
    }
    .alert-wrap button svg {
        width: 20px;
    }
    .header-wrapper {
        padding: 10px;
    }
    .header-menu-area .navbar-toggler svg {
        width: 25px;
        color: var(--nb-text-color);
    }
    #offcanvasNavbar {
        width: 300px;
    }
    .jobs-portal-logo a img {
        width: 200px;
    }
    .menu-area ul li a {
        display: block;
        padding: 5px 15px;
    }
    .company-logo {
        right: 5px;
        top: 5px;
        width: 70px;
        height: 70px;
    }
}
@media screen and (max-width: 575px) {
    .slider-content {
        padding: 40px 0px;
        max-width: 300px;
    }
    .footer-about-area {
        margin-bottom: 30px;
    }
    .footer-quick-link {
        flex-direction: column;
        gap: 20px;
    }
    .slider-content h2 {
        font-size: 25px;
    }
    .heroSlider .swiper-button-prev {
        left: 10px;
    }
    .heroSlider .swiper-button-next {
        right: 10px;
    }
    .heroSlider .swiper-button-prev,
    .heroSlider .swiper-button-next {
        width: 25px;
        height: 25px;
    }
    .hero-content {
        padding: 30px 0px;
    }
    .district-wrap {
        gap: 15px;
        justify-content: center;
    }
    .hero-container-wrapper {
        position: static;
        transform: translateY(0px);
    }
    .jobs-information {
        position: static;
        flex-wrap: wrap;
    }
    .hero-content h3,
    .hero-content h2,
    .hero-content p {
        color: var(--nb-text-color);
    }
    .find-a-jobs-wrap {
        flex-wrap: wrap;
        justify-content: end;
    }
    .info-card {
        width: 100%;
    }
    .slider-image img {
        height: auto;
    }
    /* About us */
    .about-section-area {
        height: auto;
        padding: 50px 0px;
    }
    .about-us-hero-content-wrap h1,
    .what-we-value-heading h2 {
        font-size: 30px;
    }
    .about-us-hero-content-wrap p {
        font-size: 15px;
    }
    .our-mission-and-vision-section-area {
        padding: 50px 0px;
    }
    .mission-vision-image img {
        margin-bottom: 20px;
    }
    .mission-vision-content h2 {
        font-size: 25px;
    }
    .mission-vision-content p {
        font-size: 16px;
    }
    .mission-bottom {
        margin-bottom: 20px;
    }
    .mobile-row {
        flex-wrap: wrap-reverse;
    }
    .value-card {
        margin-bottom: 24px;
    }
    /* My Jobs */
    .found-jobs-count-wrap {
        top: 85px;
    }
    /* E Learning */
    .found-jobs-count-wrap h3 {
        margin-bottom: 20px;
    }
    .learning-card-image {
        width: 100%;
        min-height: 200px;
    }
    /* E-Learning Details */
    .learning-details-pricing {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
    .learning-details-hero-content h1,
    .learning-details-content-wrap h2,
    .related-content-heading h2 {
        font-size: 20px;
    }
    .slider-bg-image {
        height: 260px;
    }
    .heroSlider .container,
    .slider-content {
        height: 100%;
    }
    .slider-content {
        padding: 40px 0px;
        max-width: 300px;
        align-content: center;
    }
    .job-details-summery {
        margin-bottom: 24px;
    }
    .contact-info h2,
    .contact-form-wrap h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
}
