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

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

body {
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: #666;
    margin: 0;
}

/* Home Page */

.header {
    position: sticky;
    padding: 15px 0;
    background: #fff;
    color: #121212bf;
    background-attachment: fixed;
    border-bottom: 1px solid #eaeaea;
    top: 0;
    z-index: 10;
}

.container {
    max-width: 143rem;
    width: 100%;
    padding: 0 1.5rem;
}

.inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-logo {
    max-width: 230px;
    width: auto;
    flex: 0 0 auto;
    padding: 0 15px 0 32px;
}

.logo-link {
    display: flex;
    text-decoration: none;
    cursor: pointer;
    max-width: 300px;
}

.logo-link img {
    height: auto;
    margin: auto;
    width: 100%;
}

.header-menu {
    display: flex;
    justify-content: center;
    flex: 1 0 0%;
}

.header-menu .menu-list {
    display: flex;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
}

.list {
    position: relative;
    flex-shrink: 0;
    margin-inline-start: 25px;
}

.list:nth-child(1) {
    margin-inline-start: 0;
}

.list .list-item {
    position: relative;
    text-decoration: none;
    display: block;
    line-height: 1;
    padding: 20px 0 14px;
    color: #121212;
    font-size: 17px;
    cursor: pointer;
    text-transform: capitalize;
}

.list.active .list-item {
    color: #006CFF;
    font-weight: 600;
}

.list:hover .list-item,
.list:hover .arrow-btn {
    color: #006CFF;
    font-weight: 600;
}

.list .list-item::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #006CFF;
    transition: width 0.3s ease;
}

.list:hover .list-item::after,
.list.active .list-item::after {
    width: 100%;
}

.list .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 265px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.list .dropdown li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #121212;
    font-size: 15px;
}

.list .dropdown li a:hover {
    background: #f0f0f0;
    color: #006CFF;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 6px;
}

.arrow-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #121212;
    padding: 20px 0 14px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-right: 32px;
}

.header-right img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.header-right img:hover {
    opacity: 0.7;
}

.header-search {
    position: absolute;
    top: 100%;
    right: 50px;
    width: 400px;
    background: #f6f5f1;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 20;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
}

.header-search.active {
    transform: translateY(10px);
    opacity: 1;
    pointer-events: auto;
}

.search-wrapper {
    position: relative;
    align-items: center;
}

.header-search input {
    padding: 10px 16px 10px 40px;
    font-size: 15px;
    border: 1px solid #ccc;
    font-family: "Poppins", sans-serif;
    border-radius: 10px;
    color: #333;
    background: #fff;
    outline: none;
    transition: border 0.3s ease;
    width: 100%;
}

.header-search input:focus {
    border-color: #999;
}

.search-icon {
    position: absolute;
    top: 45%;
    left: 13px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.search-icon img {
    opacity: 0.7;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px 20px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 20px;
    transition: right 0.35s ease;
}

.sidebar.open {
    right: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    left: 20px;
    color: #121212;
    transition: 0.3s;
}

.close-btn:hover {
    color: #006CFF;
}

.sidebar .menu-list {
    list-style: none;
    padding: 35px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar .list {
    margin: 0;
}

.sidebar .list-item {
    padding: 10px 0;
    display: block;
    font-size: 17px;
    color: #121212;
    text-decoration: none;
    transition: 0.3s;
}

.hero-section {
    padding: 0;
    background: #fff;
}

.container-fluid {
    margin: 0 auto;
    width: 100%;
    padding: 0 50px;
}

.banner-list {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
}

.main-banner {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}

.side-top-banner {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.side-bottom-banner {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.banner-list-item {
    position: relative;
    overflow: hidden;
}

.banner-list-item a {
    text-decoration: none;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.banner-item-background {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.background-image {
    min-height: 300px;
    height: 100%;
    background-color: transparent;
    display: block;
    overflow: hidden;
    position: relative;
    transition: all .3s ease-in-out;
}

.background-image img {
    object-fit: cover;
    object-position: center center;
    display: block;
    max-width: 100%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(50%);
    transition: all .3s ease-in-out;
}

.banner-list-item a:hover .background-image img {
    transform: scale(1.05);
}

.banner-item-content {
    display: flex;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    color: #fff;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
}

.main-banner .banner-item-content {
    --content-width: 60%;
}

.side-top-banner .banner-item-content,
.side-bottom-banner .banner-item-content {
    --content-width: 89%;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: var(--content-width);
}

.main-banner .banner-item-content .banner-content {
    justify-content: center;
}

.main-banner .banner-item-content .banner-content .category,
.side-top-banner .banner-item-content .banner-content .category,
.side-bottom-banner .banner-item-content .banner-content .category {
    display: inline-block;
    color: #17F300;
    font-size: 14px;
    text-transform: uppercase;
}

.main-banner .banner-item-content .banner-content h2 {
    font-size: 48px;
    margin: 0;
    color: #fff;
    font-family: "Saira Condensed", sans-serif;
    line-height: 50px;
}

.main-banner .banner-item-content .banner-content p {
    margin: 0;
    color: #fff;
}

.side-top-banner .banner-item-content .banner-content h2,
.side-bottom-banner .banner-item-content .banner-content h2 {
    font-size: 32px;
    align-self: flex-start;
    margin: 0;
    font-family: "Saira Condensed", sans-serif;
    line-height: 35px;
}

.side-top-banner .banner-item-content .banner-content p,
.side-bottom-banner .banner-item-content .banner-content p {
    align-self: flex-start;
    margin: 0;
}

.job-section {
    text-align: center;
    margin: 0 auto;
    padding: 30px 20px 0px;
}

.section-heading {
    font-size: 28px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin: 15px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    cursor: pointer;
}

.section-heading::after {
    content: "";
    width: 60%;
    height: 4px;
    background: #006CFF;
    position: absolute;
    bottom: 0;
    left: 20%;
    border-radius: 2px;
}

.health-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.2fr 1.2fr;
    gap: 25px;
    align-items: start;
    padding: 0 35px;
    margin-top: 20px;
}

.featured-job {
    position: relative;
    height: 625px;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    text-align: left;
}

.featured-job img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.job-info {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    height: 35%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.job-info .category {
    display: inline-block;
    color: #17F300;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.job-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.job-info p {
    font-size: 15px;
    line-height: 1.5;
    color: #ddd;
}

.small-job {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #dbdada;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    margin-bottom: 13px;
}

.small-job img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.job-text {
    padding: 15px;
    flex-grow: 1;
    text-align: left;
}

.job-text .category {
    display: block;
    color: #006CFF;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
}

.job-text h4 {
    color: #222;
    font-size: 17px;
    font-weight: 700;
    margin-top: 5px;
    text-align: left;
}

.job-text p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin-top: 10px;
}

.banner-job {
    position: relative;
    width: 100%;
}

.banner-job img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
}

.banner-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.banner-overlay .category {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    color: #18DF04;
}

.banner-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.col-3 .mini-job {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fafafa;
    padding: 10px;
    margin-bottom: 9px;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease;
}

.col-3 .mini-job img {
    width: 55px;
    height: 55px;
    object-fit: cover;
}

.mini-text .category {
    display: block;
    color: #006CFF;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
}

.mini-text h5 {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-top: 2px;
    text-align: left;
}

.view-more {
    padding: 13px;
    border: 1px solid #dbdada;
    width: 100%;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #989898;
}

.finance-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.7fr 1.2fr;
    gap: 25px;
    align-items: start;
    padding: 0 35px;
    margin-top: 20px;
}

.ad-banner {
    position: relative;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
}

.ad-banner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.entry-container {
    position: relative;
    height: 1048px;
    display: flex;
    flex-wrap: wrap;
}

.entry-item {
    position: absolute;
    flex: 0 0 auto;
    margin: 16px 0;
    width: 33.33%;
    max-width: 100%;
    padding: 0 12px;
}

.entry-item:nth-child(1) {
    top: 0px;
    left: -6px;
}

.entry-item:nth-child(2) {
    top: 0px;
    left: 619.925px;
}

.entry-item:nth-child(3) {
    top: 0px;
    left: 1242.85px;
}

.entry-item:nth-child(4) {
    top: 458.778px;
    left: -6px;
    margin-bottom: 0;
}

.entry-item:nth-child(5) {
    top: 603.463px;
    left: 619.925px;
    margin-bottom: 0;
}

.entry-item:nth-child(6) {
    top: 458.778px;
    left: 1242.85px;
    margin-bottom: 0;
}

.entry-item a {
    display: block;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.entry-item a img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}

.entry-item:nth-child(2) a img,
.entry-item:nth-child(4) a img,
.entry-item:nth-child(6) a img {
    height: 573px;
    object-fit: cover;
}

.job-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 67%;
    width: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 1;
    padding: 25px;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.job-category {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    color: #17F300;
    font-weight: 600;
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0;
}

.job-desc {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.85;
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 25px;
    align-items: start;
    padding: 0 40px;
    margin-top: 20px;
}

.latest-grid .small-job {
    margin-bottom: 0px;
}

.show-more-wrap {
    text-align: center;
    margin: 30px 0;
}

#showMoreBtn {
    background: #fff;
    color: #006CFF;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 28px;
    border: 1px solid #006CFF;
    cursor: pointer;
    transition: all 0.3s ease;
}

#showMoreBtn:hover {
    color: #fff;
    background: #006CFF;
}

.footer {
    background-color: #fafafa;
    color: #000;
    padding: 30px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 17px;
    border-bottom: 1px solid #ddd;
}

.footer-left {
    min-width: 250px;
}

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

.company-address {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin-top: 18px;
    gap: 30px;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #006CFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #444;
}

/* Categories Page */

.category-section {
    margin: 20px 55px;
}

.category-header {
    margin-bottom: 40px;
}

.category-header h1 {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    text-transform: capitalize;
}

.category-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.category-grid .col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category-grid .col-1 .category-card:last-child,
.category-grid .col-2 .category-card:last-child {
    border-bottom: none;
}

.category-card {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    cursor: pointer;
}

.category-card.small .category-image img {
    height: 295px;
}

.category-card.large .category-image img {
    height: 480px;
}

.category-image img {
    width: 100%;
    object-fit: cover;
}

.category-info {
    margin-top: 15px;
    text-align: center;
}

.category-name {
    display: block;
    color: #006CFF;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.category-title {
    font-size: 20px;
    margin: 10px 0;
    color: #222;
}

.category-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.category-right-side .mini-job {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    text-decoration: none;
    color: #111;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.category-right-side .mini-job img {
    width: 105px;
    height: 105px;
    object-fit: cover;
}

/* Single Category Page */

.category-banner {
    position: relative;
    margin: 0px 55px;
}

.banner-post {
    display: block;
    position: relative;
    width: 100%;
    height: 470px;
    overflow: hidden;
    border-radius: 0;
    text-decoration: none;
    color: #fff;
}

.banner-post .post-thumb {
    position: absolute;
    inset: 0;
    height: 470px;
}

.banner-post .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    transition: transform .3s ease-in-out;
}

.banner-post:hover .post-thumb img {
    transform: scale(1.05);
}

.banner-post .post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    max-width: 920px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-post .post-category {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    color: #17F300;
}

.banner-post .post-title {
    font-size: 52px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.banner-post .post-desc {
    font-size: 17px;
    margin: 0;
    line-height: 1.3;
    opacity: 0.9;
    color: #fff;
}

.category-list,
.privacy-policy {
    padding: 22px 55px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.post-item {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #222;
    gap: 25px;
    overflow: hidden;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-thumb {
    flex: 0 0 305px;
    height: 218px;
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-content {
    flex: 1;
}

.post-category {
    font-size: 14px;
    color: #006CFF;
    text-transform: uppercase;
    font-weight: 600;
}

.post-title {
    font-family: "Saira Condensed", sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 8px 0;
}

.post-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.clean-post {
    display: block;
    text-decoration: none;
    color: #333;
    height: auto;
    max-width: 1170px;
    overflow: hidden;
    position: relative;
}

.clean-post-thumb {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 640px;
}

.clean-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.clean-post-content {
    margin-top: 20px;
}

.clean-category {
    display: block;
    font-size: 13px;
    color: #006CFF;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.clean-title {
    font-size: 32px;
    font-family: "Saira Condensed", sans-serif;
    font-weight: 700;
    margin: 8px 0;
    line-height: 1.3;
}

.clean-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
}

/* Blog Details Page */

.blog-banner {
    margin: 0px 55px;
    overflow: hidden;
}

.blog-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.blog-description {
    padding: 22px 55px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    background-color: #fff;
    color: #222;
}

.blog-content {
    background: #fff;
    padding: 0px 40px;
    border-radius: 16px;
    line-height: 1.8;
}

.blog-content h2,
.policy-list h1 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
    position: relative;
    font-family: "Saira Condensed", sans-serif;
}

.blog-content h3,
.policy-list h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #111;
    margin-top: 35px;
    margin-bottom: 15px;
}

.blog-content h4.topic {
    font-size: 1.1rem;
}

.blog-content h4,
.policy-list h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-top: 20px;
    margin-bottom: 10px;
}

.blog-content p,
.policy-list p {
    margin-bottom: 18px;
    text-align: justify;
    color: #444;
    font-size: 15px;
}

.blog-content span,
.policy-list span {
    display: block;
    font-weight: 600;
    color: #111;
    margin-top: 18px;
    margin-bottom: 5px;
    font-size: 14px;
}

.blog-content ul,
.policy-list ul {
    padding-left: 0;
    margin-bottom: 20px;
}

.blog-content ul li,
.policy-list ul li {
    margin-bottom: 12px;
    list-style-type: disc;
    margin-left: 20px;
    color: #333;
    font-size: 15px;
}

.related-blogs h3 {
    font-size: 1.2rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 11px;
    padding-left: 10px;
}

.latest-grid .small-job.trending-job {
    margin-bottom: 20px;
}

/* Contact Page */

.contact-section {
    padding: 25px 0;
}

.contact-title {
    font-size: 25px;
    font-weight: 500;
    color: #111;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form textarea,
.contact-form input {
    width: 100%;
    border: 1px solid #e1e1e1;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.contact-form textarea:focus,
.contact-form input:focus {
    border-color: #006CFF;
}

.form-row {
    display: flex;
    gap: 20px;
}

.btn-send {
    align-self: flex-start;
    background: transparent;
    color: #006CFF;
    border: 1px solid #006CFF;
    padding: 12px 36px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-send:hover {
    background: #006CFF;
    color: #fff;
}

.contact-info .info-block {
    margin-bottom: 30px;
}

.contact-info h4 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    color: #2a2a2a;
}

.contact-info p {
    color: #8a8a8a;
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    margin-top: 0;
}

#searchTitle {
    text-align: center;
    margin: 30px 0;
    color: #000;
    font-family: "Saira Condensed", sans-serif;
    font-size: 34px;
}


/* Privacy Policy */

.policy-list h1 {
    margin-bottom: 5px;
}

.policy-list span {
    margin-top: 0px;
    margin-bottom: 25px;
}

.policy-list h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
}

.policy-list h3 {
    margin-top: 0px;
}

.policy-list ul li {
    margin-bottom: 5px;
}

.policy-list p {
    margin-bottom: 10px;
}

.policy-list a {
    font-weight: 500;
    text-decoration: none;
    color: #1a73e8;
    transition: color 0.3s ease;
}

.policy-list a:hover {
    color: #0b57d0;
    text-decoration: underline;
}

/* Responsive Media Query */

@media (max-width: 1888px) {
    .entry-container {
        height: 1041px;
    }

    .entry-item:nth-child(2) {
        left: 606.925px;
    }

    .entry-item:nth-child(3) {
        left: 1218.85px;
    }

    .entry-item:nth-child(4) {
        top: 451.778px;
    }

    .entry-item:nth-child(5) {
        left: 606.925px;
    }

    .entry-item:nth-child(6) {
        top: 451.778px;
        left: 1218.85px;
    }
}

@media (max-width: 1852px) {
    .entry-container {
        height: 1032px;
    }

    .entry-item:nth-child(2) {
        left: 592.925px;
    }

    .entry-item:nth-child(3) {
        left: 1193.85px;
    }

    .entry-item:nth-child(4) {
        top: 442.778px;
    }

    .entry-item:nth-child(5) {
        left: 592.925px;
    }

    .entry-item:nth-child(6) {
        top: 442.778px;
        left: 1193.85px;
    }
}

@media (max-width: 1814px) {
    .entry-container {
        height: 1023px;
    }

    .entry-item:nth-child(2) {
        left: 580.925px;
    }

    .entry-item:nth-child(3) {
        left: 1168.85px;
    }

    .entry-item:nth-child(4) {
        top: 433.778px;
    }

    .entry-item:nth-child(5) {
        left: 580.925px;
    }

    .entry-item:nth-child(6) {
        top: 433.778px;
        left: 1168.85px;
    }
}

@media (max-width: 1777px) {
    .entry-container {
        height: 1014px;
    }

    .entry-item:nth-child(2) {
        left: 569.925px;
    }

    .entry-item:nth-child(3) {
        left: 1146.85px;
    }

    .entry-item:nth-child(4) {
        top: 424.778px;
    }

    .entry-item:nth-child(5) {
        left: 569.925px;
    }

    .entry-item:nth-child(6) {
        top: 424.778px;
        left: 1146.85px;
    }
}

@media (max-width: 1744px) {
    .entry-container {
        height: 1006px;
    }

    .entry-item:nth-child(2) {
        left: 556.925px;
    }

    .entry-item:nth-child(3) {
        left: 1119.85px;
    }

    .entry-item:nth-child(4) {
        top: 416.778px;
    }

    .entry-item:nth-child(5) {
        left: 556.925px;
    }

    .entry-item:nth-child(6) {
        top: 416.778px;
        left: 1119.85px;
    }
}

@media (max-width: 1704px) {
    .entry-container {
        height: 997px;
    }

    .entry-item:nth-child(2) {
        left: 543.925px;
    }

    .entry-item:nth-child(3) {
        left: 1092.85px;
    }

    .entry-item:nth-child(4) {
        top: 407.778px;
    }

    .entry-item:nth-child(5) {
        left: 543.925px;
    }

    .entry-item:nth-child(6) {
        top: 407.778px;
        left: 1092.85px;
    }
}

@media (max-width: 1663px) {
    .entry-container {
        height: 987px;
    }

    .entry-item:nth-child(2) {
        left: 530.925px;
    }

    .entry-item:nth-child(3) {
        left: 1067.85px;
    }

    .entry-item:nth-child(4) {
        top: 397.778px;
    }

    .entry-item:nth-child(5) {
        left: 530.925px;
    }

    .entry-item:nth-child(6) {
        top: 397.778px;
        left: 1067.85px;
    }
}

@media (max-width: 1625px) {
    .entry-container {
        height: 978px;
    }

    .entry-item:nth-child(2) {
        left: 515.925px;
    }

    .entry-item:nth-child(3) {
        left: 1038.85px;
    }

    .entry-item:nth-child(4) {
        top: 388.778px;
    }

    .entry-item:nth-child(5) {
        left: 515.925px;
    }

    .entry-item:nth-child(6) {
        top: 388.778px;
        left: 1038.85px;
    }

    .job-text h4 {
        font-size: 16px;
    }
}

@media (max-width: 1582px) {
    .entry-container {
        height: 968px
    }

    .entry-item:nth-child(2) {
        left: 502.925px;
    }

    .entry-item:nth-child(3) {
        left: 1012.85px;
    }

    .entry-item:nth-child(4) {
        top: 378.778px;
    }

    .entry-item:nth-child(5) {
        left: 502.925px;
    }

    .entry-item:nth-child(6) {
        top: 378.778px;
        left: 1012.85px;
    }
}

@media (max-width: 1542px) {
    .entry-container {
        height: 957px;
    }

    .entry-item:nth-child(2) {
        left: 490.925px;
    }

    .entry-item:nth-child(3) {
        left: 988.85px;
    }

    .entry-item:nth-child(4) {
        top: 367.778px;
    }

    .entry-item:nth-child(5) {
        left: 490.925px;
    }

    .entry-item:nth-child(6) {
        top: 367.778px;
        left: 988.85px;
    }

    .job-text h4 {
        font-size: 17px;
    }
}

@media (max-width: 1507px) {
    .entry-container {
        height: 950px;
    }

    .entry-item:nth-child(2) {
        left: 477.925px;
    }

    .entry-item:nth-child(3) {
        left: 961.85px;
    }

    .entry-item:nth-child(4) {
        top: 360.778px;
    }

    .entry-item:nth-child(5) {
        left: 477.925px;
    }

    .entry-item:nth-child(6) {
        top: 360.778px;
        left: 961.85px;
    }

    .category-card.large .category-image img {
        height: 450px;
    }
}

@media (max-width: 1468px) {
    .entry-container {
        height: 940px;
    }

    .entry-item:nth-child(2) {
        left: 463.925px;
    }

    .entry-item:nth-child(3) {
        left: 933.85px;
    }

    .entry-item:nth-child(4) {
        top: 351.778px;
    }

    .entry-item:nth-child(5) {
        left: 463.925px;
    }

    .entry-item:nth-child(6) {
        top: 351.778px;
        left: 933.85px;
    }
}

@media (max-width: 1424px) {
    .entry-container {
        height: 931px;
    }

    .entry-item:nth-child(2) {
        left: 450.925px;
    }

    .entry-item:nth-child(3) {
        left: 908.85px;
    }

    .entry-item:nth-child(4) {
        top: 341.778px;
    }

    .entry-item:nth-child(5) {
        left: 450.925px;
    }

    .entry-item:nth-child(6) {
        top: 341.778px;
        left: 908.85px;
    }

    .category-card.small .category-image img {
        height: 260px;
    }
}

@media (max-width: 1405px) {
    .header-logo {
        max-width: 200px;
    }

    .list .list-item {
        font-size: 16px;
    }

    .container-fluid {
        padding: 0 40px;
    }

    .banner-list {
        gap: 12px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 42px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 26px;
    }

    .health-grid,
    .finance-grid {
        gap: 25px;
        padding: 0 30px;
    }

    .job-info h3 {
        font-size: 24px;
    }

    .job-text h4 {
        font-size: 16px;
    }

    .ad-banner img {
        height: 340px;
    }

    .entry-container {
        height: 926px;
    }

    .entry-item:nth-child(2) {
        left: 445.925px;
    }

    .entry-item:nth-child(3) {
        left: 893.85px;
    }

    .entry-item:nth-child(4) {
        top: 337.778px;
    }

    .entry-item:nth-child(5) {
        left: 445.925px;
    }

    .entry-item:nth-child(6) {
        top: 337.778px;
        left: 893.85px;
    }

    .latest-grid .job-text h4 {
        font-size: 16px;
    }

    .category-desc {
        font-size: 14px;
    }
}

@media (max-width: 1388px) {
    .job-text h4 {
        font-size: 15px;
    }
}

@media (max-width: 1364px) {
    .entry-container {
        height: 916px;
    }

    .entry-item:nth-child(2) {
        left: 429.925px;
    }

    .entry-item:nth-child(3) {
        left: 865.85px;
    }

    .entry-item:nth-child(4) {
        top: 327.778px;
    }

    .entry-item:nth-child(5) {
        left: 429.925px;
    }

    .entry-item:nth-child(6) {
        top: 327.778px;
        left: 865.85px;
    }
}

@media (max-width: 1338px) {
    .latest-grid .job-text h4 {
        font-size: 15px;
    }
}

@media (max-width: 1324px) {
    .featured-job {
        height: 616px;
    }

    .job-info h3 {
        font-size: 23px;
    }

    .job-info p {
        font-size: 14px;
    }

    .job-text h4 {
        font-size: 14px;
    }

    .entry-container {
        height: 906px;
    }

    .entry-item:nth-child(2) {
        left: 417.925px;
    }

    .entry-item:nth-child(3) {
        left: 840.85px;
    }

    .entry-item:nth-child(4) {
        top: 317.778px;
    }

    .entry-item:nth-child(5) {
        left: 417.925px;
    }

    .entry-item:nth-child(6) {
        top: 317.778px;
        left: 840.85px;
    }

    .job-title {
        font-size: 19px;
    }

    .job-desc {
        font-size: 12px;
    }

    .category-card.large .category-image img {
        height: 425px;
    }

    .category-title {
        font-size: 19px;
    }
}

@media (max-width: 1300px) {
    .header-logo {
        max-width: 180px;
        padding-left: 20px;
    }

    .list {
        margin-inline-start: 20px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 38px;
    }

    .banner-description {
        font-size: 14px;
    }

    .health-grid {
        grid-template-columns: 1.5fr 1.2fr 1.1fr;
        gap: 25px;
    }

    .finance-grid {
        grid-template-columns: 1.2fr 1.5fr 1.2fr;
    }

    .featured-job {
        height: 575px;
    }

    .job-info h3 {
        font-size: 22px;
    }

    .job-info p {
        font-size: 13px;
    }

    .small-job img {
        height: 190px;
    }

    .ad-banner img {
        height: 320px;
    }
}

@media (max-width: 1286px) {
    .featured-job {
        height: 583px;
    }

    .job-info .category {
        font-size: 13px;
    }

    .job-info p {
        font-size: 12px;
    }

    .job-text h4 {
        font-size: 15px;
    }

    .banner-job img {
        height: 255px;
    }

    .entry-container {
        height: 897px;
    }

    .entry-item:nth-child(2) {
        left: 402.925px;
    }

    .entry-item:nth-child(3) {
        left: 813.85px;
    }

    .entry-item:nth-child(4) {
        top: 307.778px;
    }

    .entry-item:nth-child(5) {
        left: 402.925px;
    }

    .entry-item:nth-child(6) {
        top: 307.778px;
        left: 813.85px;
    }

    .job-title {
        font-size: 17px;
    }

    .post-title {
        font-size: 24px;
    }

    .post-desc {
        font-size: 13px;
    }

    .clean-title {
        font-size: 30px;
    }
}

@media (max-width: 1276px) {
    .latest-grid .job-text .category {
        font-size: 12px;
    }

    .latest-grid .job-text h4 {
        font-size: 14px;
    }
}

@media (max-width: 1245px) {
    .list .list-item {
        font-size: 15px;
    }

    .featured-job {
        height: 576px;
    }

    .job-text h4 {
        font-size: 14px;
    }

    .entry-container {
        height: 888px;
    }

    .entry-item:nth-child(2) {
        left: 389.925px;
    }

    .entry-item:nth-child(3) {
        left: 786.85px;
    }

    .entry-item:nth-child(4) {
        top: 298.778px;
    }

    .entry-item:nth-child(5) {
        left: 389.925px;
    }

    .entry-item:nth-child(6) {
        top: 298.778px;
        left: 786.85px;
    }

    .category-name {
        font-size: 12px;
    }

    .category-title {
        font-size: 18px;
    }

    .category-desc {
        font-size: 13px;
    }
}

@media (max-width: 1212px) {
    .latest-grid {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
        padding: 0 30px;
        gap: 24px;
    }

    .latest-grid .job-text h4 {
        font-size: 15px;
    }

    .post-category {
        font-size: 13px;
    }

    .post-title {
        font-size: 22px;
    }
}

@media (max-width: 1204px) {
    .header-logo {
        padding-left: 15px;
    }

    .list .list-item {
        font-size: 15px;
    }

    .job-info h3 {
        font-size: 21px;
    }

    .entry-container {
        height: 829px;
    }

    .entry-item:nth-child(2) {
        left: 377.925px;
    }

    .entry-item:nth-child(3) {
        left: 761.85px;
    }

    .entry-item:nth-child(4) {
        top: 288.778px;
    }

    .entry-item:nth-child(5) {
        top: 557.463px;
        left: 377.925px;
    }

    .entry-item:nth-child(6) {
        top: 288.778px;
        left: 761.85px;
    }

    .entry-item:nth-child(2) a img,
    .entry-item:nth-child(4) a img,
    .entry-item:nth-child(6) a img {
        height: 525px;
    }
}

@media (max-width: 1180px) {
    .post-thumb {
        flex: 0 0 275px;
    }
}

@media (max-width: 1168px) {
    .list .list-item {
        font-size: 14px;
    }

    .featured-job {
        height: 571px;
    }

    .job-info h3 {
        font-size: 20px;
    }

    .job-text .category {
        font-size: 12px;
    }

    .job-text h4 {
        font-size: 13px;
    }

    .entry-container {
        height: 821px;
    }

    .entry-item:nth-child(2) {
        left: 364.925px;
    }

    .entry-item:nth-child(3) {
        left: 737.85px;
    }

    .entry-item:nth-child(4) {
        top: 280.778px;
    }

    .entry-item:nth-child(5) {
        left: 364.925px;
    }

    .entry-item:nth-child(6) {
        top: 280.778px;
        left: 737.85px;
    }

    .job-title {
        font-size: 15px;
    }
}

@media (max-width: 1150px) {
    .header-logo {
        max-width: 170px;
        padding-left: 8px;
    }

    .list .list-item {
        padding: 20px 0 12px;
    }

    .container-fluid {
        padding: 0 30px;
    }

    .banner-list {
        gap: 10px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 22px;
    }

    .banner-content {
        width: 85%;
    }

    .health-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 20px;
        padding: 0 25px;
    }

    .finance-grid {
        grid-template-columns: 1fr 1.3fr 1fr;
        gap: 20px;
        padding: 0 25px;
    }

    .ad-banner img {
        height: 300px;
    }

    .entry-container {
        height: 816px;
    }

    .entry-item:nth-child(2) {
        left: 358.925px;
    }

    .entry-item:nth-child(3) {
        left: 723.85px;
    }

    .entry-item:nth-child(4) {
        top: 275.778px;
    }

    .entry-item:nth-child(5) {
        left: 358.925px;
    }

    .entry-item:nth-child(6) {
        top: 275.778px;
        left: 723.85px;
    }

    .post-title {
        font-size: 21px;
    }

    .clean-title {
        font-size: 29px;
    }

    .clean-desc {
        font-size: 15px;
        line-height: 1.5;
    }

    .blog-banner img {
        height: 470px;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    .blog-content p {
        font-size: 14px;
    }

    .blog-content h3 {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .blog-content ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .blog-content span {
        font-size: 13px;
    }

    .related-blogs h3 {
        padding-left: 0px;
    }

    .category-card.large .category-image img {
        height: 400px;
    }

    .category-card.small .category-image img {
        height: 230px;
    }

    .category-title {
        font-size: 17px;
    }

    .category-desc {
        font-size: 12px;
    }
}

@media (max-width: 1120px) {
    .banner-post .post-title {
        font-size: 44px;
    }

    .banner-post .post-desc {
        font-size: 15px;
    }

    .post-title {
        font-size: 20px;
    }
}

@media (max-width: 1110px) {
    .job-info h3 {
        font-size: 19px;
    }

    .small-job img {
        height: 180px;
    }

    .entry-container {
        height: 807px;
    }

    .entry-item:nth-child(2) {
        left: 346.925px;
    }

    .entry-item:nth-child(3) {
        left: 701.85px;
    }

    .entry-item:nth-child(4) {
        top: 266.4px;
    }

    .entry-item:nth-child(5) {
        left: 346.925px;
    }

    .entry-item:nth-child(6) {
        top: 266.4px;
        left: 701.85px;
    }

    .job-category {
        font-size: 11px;
    }

    .job-desc {
        font-size: 11px;
    }
}

@media (max-width: 1076px) {
    .entry-container {
        height: 799px;
    }

    .entry-item:nth-child(2) {
        left: 333.925px;
    }

    .entry-item:nth-child(3) {
        left: 673.85px;
    }

    .entry-item:nth-child(4) {
        top: 258.4px;
    }

    .entry-item:nth-child(5) {
        left: 333.925px;
    }

    .entry-item:nth-child(6) {
        top: 258.4px;
        left: 673.85px;
    }

    .footer {
        padding: 45px 45px 25px;
    }

    .post-thumb {
        flex: 0 0 247px;
    }

    .post-desc {
        font-size: 12px;
    }

    .blog-content h2 {
        font-size: 1.4rem;
    }

    .category-title {
        font-size: 16px;
    }
}

@media (max-width: 1036px) {
    .list {
        margin-inline-start: 15px;
    }

    .list .list-item {
        font-size: 14px;
    }

    .job-info h3 {
        font-size: 18px;
    }

    .entry-container {
        height: 790px;
    }

    .entry-item:nth-child(2) {
        left: 320.925px;
    }

    .entry-item:nth-child(3) {
        left: 647.85px;
    }

    .entry-item:nth-child(4) {
        top: 248.4px;
    }

    .entry-item:nth-child(5) {
        left: 320.925px;
    }

    .entry-item:nth-child(6) {
        top: 248.4px;
        left: 647.85px;
    }

    .job-title {
        font-size: 14.2px;
    }
}

@media (max-width: 1024px) {
    .list {
        margin-inline-start: 12px;
    }

    .list .list-item {
        font-size: 16px;
    }

    .header-right img {
        position: relative;
        top: 3px;
    }

    .banner-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-banner {
        grid-column: 1 / span 2;
        grid-row: 1 / span 1;
    }

    .side-top-banner {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .side-bottom-banner {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 40px;
    }

    .banner-description {
        font-size: 18px;
    }

    .health-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 25px;
    }

    .finance-grid {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 25px;
    }

    .featured-job {
        height: 587px;
    }

    .job-info h3 {
        font-size: 19px;
    }

    .small-job img {
        height: 171px;
    }

    .job-text h4 {
        font-size: 15px;
    }

    .banner-job img {
        height: 240px;
    }

    .ad-banner img {
        height: 280px;
    }

    .post-thumb {
        flex: 0 0 234px;
    }

    .blog-banner img {
        height: 430px;
    }

    .blog-content h2 {
        font-size: 1.3rem;
    }

    .blog-content p {
        font-size: 12.5px;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content ul li {
        font-size: 13px;
    }

    .clean-post-thumb {
        height: 495px;
    }

    .clean-post-thumb img {
        height: 495px;
    }
}

@media (max-width: 1010px) {
    .list .list-item {
        font-size: 15px;
    }
}

@media (max-width: 996px) {
    .entry-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        position: relative;
        height: auto;
    }

    .entry-item {
        position: relative;
        width: 100%;
        left: 0 !important;
        top: 0 !important;
        margin: 0;
        padding: 0;
    }

    .entry-item a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .entry-item:nth-child(2) a img,
    .entry-item:nth-child(4) a img,
    .entry-item:nth-child(6) a img {
        height: auto;
    }

    .entry-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .entry-item:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }

    .job-overlay {
        padding: 20px;
    }

    .job-category {
        font-size: 13px;
    }

    .job-title {
        font-size: 20px;
    }

    .job-desc {
        font-size: 14px;
    }

    .banner-post .post-category {
        font-size: 15px;
    }

    .banner-post .post-title {
        font-size: 39px;
    }

    .category-list,
    .privacy-policy {
        grid-template-columns: 1fr;
    }

    .post-thumb {
        flex: 0 0 275px;
    }

    .post-category {
        font-size: 14px;
    }

    .post-title {
        font-size: 24px;
    }

    .post-desc {
        font-size: 14px;
    }

    .clean-title {
        font-size: 30px;
    }

    .category-right-side .banner-job img {
        height: 360px;
    }

    .category-right-side .mini-job img {
        width: 135px;
        height: 135px;
    }

    .category-right-side .mini-job .mini-text .category {
        font-size: 14px;
    }

    .category-right-side .mini-job .mini-text h5 {
        font-size: 16px;
    }

    .blog-description {
        grid-template-columns: 1fr;
    }

    .blog-content h2 {
        font-size: 1.6rem;
    }

    .blog-content p {
        font-size: 15px;
    }

    .blog-content h3 {
        font-size: 1.4rem;
    }

    .blog-content ul li {
        font-size: 15px;
    }

    .blog-content span {
        font-size: 14px;
    }

    .related-blogs h3 {
        padding-left: 10px;
    }

    .category-layout {
        grid-template-columns: 1fr;
    }

    .category-grid {
        border-bottom: 1px solid #eee;
    }

    .category-name {
        font-size: 13px;
    }

    .category-title {
        font-size: 20px;
    }

    .category-desc {
        font-size: 15px;
    }
}

@media (max-width: 980px) {
    .header-menu .menu-list {
        gap: 10px;
    }

    .list {
        margin-inline-start: 4px;
    }

    .list .list-item {
        font-size: 14px;
    }

    .container-fluid {
        padding: 0 25px;
    }

    .banner-list {
        gap: 10px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 34px;
    }

    .featured-job {
        height: 584px;
    }

    .job-info h3 {
        font-size: 18px;
    }

    .small-job img {
        height: 169px;
    }

    .ad-banner img {
        height: 260px;
    }
}

@media (max-width: 958px) {
    .job-info h3 {
        font-size: 17px;
    }

    .banner-job img {
        height: 219px;
    }

    .mini-text h5 {
        font-size: 12px;
    }

    .latest-grid .job-text h4 {
        font-size: 14px;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 943px) {
    .header-right {
        padding-right: 0;
    }

    .featured-job {
        height: 572px;
    }

    .job-text h4 {
        font-size: 14px;
    }
}

@media (max-width: 915px) {
    .header-logo {
        max-width: 150px;
    }

    .list .list-item {
        font-size: 14px;
    }

    .banner-list {
        grid-template-columns: 1fr 1fr;
    }

    .main-banner {
        grid-column: 1 / span 2;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 32px;
    }

    .section-heading {
        font-size: 26px;
    }

    .health-grid {
        padding: 0 20px;
    }

    .featured-job {
        height: 576px;
    }

    .job-info h3 {
        font-size: 17px;
    }

    .job-info p {
        font-size: 12px;
    }

    .job-text h4 {
        font-size: 14px;
    }

    .banner-job img {
        height: 200px;
    }

    .mini-text h5 {
        font-size: 12px;
    }

    .ad-banner img {
        height: 250px;
    }

    .latest-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
        gap: 22px;
        padding: 0 25px;
    }

    .latest-grid .job-text .category {
        font-size: 13px;
    }

    .latest-grid .job-text h4 {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .featured-job {
        height: 568px;
    }

    .job-info h3 {
        font-size: 16px;
    }

    .job-text h4 {
        font-size: 13px;
    }
}

@media (max-width: 891px) {
    .list .list-item {
        font-size: 13px;
    }

    .category-desc {
        font-size: 14px;
    }
}

@media (max-width: 883px) {
    .list {
        margin-inline-start: 6px;
    }

    .section-heading {
        font-size: 24px;
    }

    .job-info h3 {
        font-size: 16px;
    }

    .job-text h4 {
        font-size: 13px;
    }

    .mini-text h5 {
        font-size: 11px;
    }
}

@media (max-width: 868px) {
    .list {
        margin-inline-start: 2px;
    }

    .job-info .category {
        font-size: 12px;
    }

    .job-info h3 {
        font-size: 15px;
    }

    .job-text h4 {
        font-size: 12px;
    }

    .mini-text .category {
        font-size: 11px;
    }

    .mini-text h5 {
        font-size: 10px;
    }

    .job-category {
        font-size: 12px;
    }

    .job-title {
        font-size: 18px;
    }

    .job-desc {
        font-size: 13px;
    }

    .contact-grid {
        gap: 40px;
    }
}

@media (min-width: 851px) {
    .sidebar {
        display: none;
    }
}

@media (max-width: 850px) {
    .inner-header {
        justify-content: space-between;
    }

    .header-logo {
        max-width: 218px;
    }

    .header-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .sidebar .categories-header {
        justify-content: center;
        gap: 0px;
    }

    .sidebar .categories-header a {
        width: 220px;
    }

    .arrow-btn {
        padding: 9px 0 12px;
    }

    .banner-list {
        grid-template-columns: 1fr;
    }

    .side-top-banner {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .side-bottom-banner {
        grid-column: 1 / 3;
        grid-row: 3 / 3;
    }

    .banner-content {
        width: 90%;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 30px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 32px;
    }

    .banner-description {
        font-size: 20px;
    }

    .health-grid,
    .finance-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .health-grid .col-2,
    .finance-grid .col-2,
    .finance-grid .col-3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .job-info .category {
        font-size: 14px;
    }

    .job-info h3 {
        font-size: 20px;
    }

    .job-info p {
        font-size: 17px;
    }

    .small-job {
        margin-bottom: 0;
    }

    .small-job img {
        height: 170px;
    }

    .job-text h4 {
        font-size: 14px;
    }

    .banner-job img {
        height: 305px;
    }

    .ad-banner img {
        height: 240px;
    }

    .mini-text h5 {
        font-size: 14px;
    }

    .post-category {
        font-size: 13px;
    }

    .post-title {
        font-size: 22px;
    }

    .post-desc {
        font-size: 13px;
    }

    .blog-banner img {
        height: 400px;
    }

    .blog-content h2 {
        font-size: 1.5rem;
    }

    .blog-content p {
        font-size: 14px;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }

    .blog-content ul li {
        font-size: 14px;
    }

    .category-title {
        font-size: 19px;
    }
}

@media (max-width: 825px) {
    .header-logo {
        max-width: 230px;
    }

    .featured-job {
        height: 524px;
    }
}

@media (max-width: 820px) {
    .header-logo {
        max-width: 220px;
    }

    .hamburger {
        padding: 0;
    }

    .header-search {
        right: 20px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 46px;
    }

    .banner-description {
        font-size: 23px;
        display: none;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 38px;
    }

    .section-heading {
        font-size: 24px;
    }

    .featured-job {
        height: 515px;
    }

    .job-info h3 {
        font-size: 21px;
    }

    .ad-banner img {
        height: 230px;
    }

    .footer-column h4 {
        font-size: 15px;
    }
}

@media (max-width: 800px) {
    .hamburger {
        padding: 0px;
    }

    .health-grid .col-2,
    .finance-grid .col-2,
    .finance-grid .col-3 {
        grid-template-columns: 1fr;
    }

    .featured-job {
        height: 498px;
    }

    .small-job img {
        height: 310px;
    }

    .job-text .category {
        font-size: 18px;
    }

    .job-text h4 {
        font-size: 22px;
    }

    .ad-banner img {
        height: 220px;
    }

    .job-title {
        font-size: 17px;
    }

    .job-desc {
        font-size: 12px;
    }

    .latest-grid .small-job img {
        height: 170px;
    }

    .footer {
        padding: 40px 30px 20px;
    }

    .footer-column ul li {
        margin-bottom: 6px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .banner-post {
        height: 430px;
    }

    .banner-post .post-thumb {
        height: 430px;
    }

    .banner-post .post-category {
        font-size: 14px;
    }

    .banner-post .post-title {
        font-size: 35px;
    }

    .post-title {
        font-size: 21px;
        line-height: 1.1;
    }

    .post-desc {
        line-height: 1.5;
    }

    .clean-title {
        font-size: 26px;
        line-height: 1.1;
    }

    .category-right-side .banner-job img {
        height: 330px;
    }

    .category-right-side .mini-job img {
        width: 125px;
        height: 125px;
    }

    .category-right-side .mini-job .mini-text .category {
        font-size: 13px;
    }

    .category-right-side .mini-job .mini-text h5 {
        font-size: 15px;
    }

    .category-title {
        font-size: 18px;
    }

    .category-desc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .banner-list {
        gap: 12px;
    }

    .main-banner,
    .side-top-banner,
    .side-bottom-banner {
        grid-column: 1 / 2;
    }

    .main-banner {
        grid-row: 1 / 2;
    }

    .side-top-banner {
        grid-row: 2 / 3;
    }

    .side-bottom-banner {
        grid-row: 3 / 4;
    }

    .banner-content {
        width: 100%;
        padding: 25px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 45px;
    }

    .banner-description {
        font-size: 20px;
    }

    .featured-job {
        height: 470px;
    }

    .job-info {
        height: 40%;
    }

    .job-info p {
        font-size: 16px;
    }

    .job-text .category {
        font-size: 14px;
    }

    .job-text h4 {
        font-size: 17px;
    }

    .ad-banner img {
        height: 210px;
    }

    .job-category {
        font-size: 11px;
    }

    .job-title {
        font-size: 16px;
    }

    .latest-grid .job-text h4 {
        font-size: 16px;
    }

    .category-banner .banner-content {
        padding: 0;
    }

    .post-thumb {
        flex: 0 0 237px;
    }

    .blog-banner img {
        height: 370px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 753px) {
    .section-heading {
        font-size: 22px;
    }

    .ad-banner img {
        height: 200px;
    }

    .footer-columns-wrapper {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

@media (max-width: 734px) {
    .blog-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 712px) {
    .banner-description {
        font-size: 19px;
    }

    .featured-job {
        height: 525px;
    }

    .job-info h3 {
        font-size: 23px;
    }

    .job-info p {
        font-size: 16px;
    }

    .small-job img {
        height: 265px;
    }

    .ad-banner img {
        height: 190px;
    }

    .job-title {
        font-size: 15px;
    }

    .job-desc {
        font-size: 11px;
    }

    .latest-grid .small-job img {
        height: 170px;
    }

    .banner-post .post-category {
        font-size: 13px;
    }

    .banner-post .post-title {
        font-size: 29px;
    }

    .banner-post .post-desc {
        font-size: 14px;
    }

    .post-category {
        font-size: 12px;
    }

    .post-title {
        font-size: 20px;
    }

    .clean-desc {
        font-size: 14px;
    }

    .category-card.large .category-image img {
        height: 360px;
    }

    .category-name {
        font-size: 12px;
    }

    .category-title {
        font-size: 17px;
    }

    .category-desc {
        font-size: 12px;
    }
}

@media (max-width: 691px) {
    .header-logo {
        max-width: 180px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 40px;
    }

    .banner-description {
        font-size: 17px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 31px;
    }

    .job-text .category {
        font-size: 15px;
    }

    .job-text h4 {
        font-size: 19px;
    }

    .mini-text .category {
        font-size: 14px;
    }

    .mini-text h5 {
        font-size: 15px;
    }

    .view-more a {
        font-size: 19px;
    }

    .job-title {
        font-size: 14px;
    }

    .latest-grid .job-text .category {
        font-size: 12px;
    }

    .latest-grid .job-text h4 {
        font-size: 15px;
    }

    .blog-content h2 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 13px;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 660px) {
    .latest-grid .job-text h4 {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .header-logo {
        max-width: 170px;
    }

    .banner-content {
        padding: 20px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 37px;
    }

    .banner-description {
        font-size: 16px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 30px;
    }

    .health-grid,
    .finance-grid {
        padding: 0 10px;
    }

    .section-heading {
        font-size: 21px;
    }

    .small-job img {
        height: 260px;
    }

    .job-text .category {
        font-size: 13px;
    }

    .job-text h4 {
        font-size: 19px;
    }

    .ad-banner img {
        height: 180px;
    }

    .entry-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .entry-item {
        grid-column: auto;
        grid-row: auto;
    }

    .entry-item a img {
        height: auto;
    }

    .entry-item:nth-child(3),
    .entry-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .job-category {
        font-size: 13px;
    }

    .job-title {
        font-size: 20px;
    }

    .job-desc {
        font-size: 14px;
    }

    .latest-grid .job-text .category {
        font-size: 11px;
    }

    .latest-grid .job-text h4 {
        font-size: 13px;
    }

    .banner-post {
        height: 350px;
    }

    .banner-post .post-thumb {
        height: 350px;
    }

    .post-list {
        gap: 30px;
    }

    .post-thumb {
        flex: 0 0 204px;
        height: 145px;
    }

    .post-category {
        font-size: 14px;
    }

    .post-title {
        font-size: 19px;
    }

    .post-desc {
        display: none;
    }

    .clean-desc {
        display: none;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card.small .category-image img {
        height: 280px;
    }

    .category-name {
        font-size: 13px;
    }

    .category-title {
        font-size: 20px;
    }

    .category-desc {
        font-size: 14px;
    }
}

@media (max-width: 630px) {
    .latest-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .latest-grid .small-job img {
        height: 315px;
    }

    .latest-grid .job-text .category {
        font-size: 13px;
    }

    .latest-grid .job-text h4 {
        font-size: 17px;
    }

    .blog-content h2 {
        font-size: 1.1rem;
    }

    .clean-post-thumb {
        height: 467px;
    }

    .clean-post-thumb img {
        height: 467px;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 20px 0;
    }

    .header-logo {
        max-width: 200px;
    }

    .header-right img {
        width: 29px;
        height: 29px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 36px;
    }

    .banner-description {
        font-size: 16px;
    }

    .featured-job {
        height: 510px;
    }

    .job-info h3 {
        font-size: 20px;
    }

    .small-job img {
        height: 280px;
    }

    .ad-banner img {
        height: 170px;
    }
}

@media (max-width: 574px) {
    .header-right img {
        width: 25px;
        height: 25px;
    }

    .footer {
        padding: 45px 45px 25px;
    }

    .post-thumb {
        flex: 0 0 auto;
        height: 122px;
    }

    .post-title {
        font-size: 18px;
    }

    .clean-title {
        font-size: 23px;
    }

    .blog-banner img {
        height: 340px;
    }

    .blog-content h2 {
        font-size: 1rem;
    }

    .category-card.large .category-image img {
        height: 400px;
    }

    .category-title {
        font-size: 19px;
    }
}

@media (max-width: 540px) {
    .inner-header {
        flex-direction: row;
        justify-content: space-between;
    }

    .header-menu {
        display: none;
    }

    .header-right img {
        width: 23px;
        height: 23px;
    }

    .container-fluid {
        padding: 0 15px;
    }

    .banner-list {
        gap: 15px;
    }

    .banner-content {
        padding: 15px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 32px;
    }

    .banner-description {
        font-size: 17px;
    }

    .featured-job {
        height: 570px;
    }

    .job-info h3 {
        font-size: 24px;
    }

    .job-info p {
        font-size: 14px;
    }

    .job-text h4 {
        font-size: 18px;
    }

    .mini-text .category {
        font-size: 13px;
    }

    .mini-text h5 {
        font-size: 13px;
    }

    .view-more a {
        font-size: 16px;
    }

    .ad-banner img {
        height: 160px;
    }

    .post-category {
        font-size: 13px;
    }

    .post-title {
        font-size: 17px;
    }

    .post-desc {
        font-size: 13px;
    }

    .banner-overlay h4 {
        font-size: 19px;
    }

    .category-right-side .banner-job img {
        height: 278px;
    }

    .category-right-side .mini-job img {
        width: 115px;
        height: 115px;
    }

    .category-right-side .mini-job .mini-text h5 {
        font-size: 14px;
    }

    .blog-banner {
        margin: 0px 31px;
    }

    .blog-description {
        padding: 22px 31px;
    }

    .blog-content {
        padding: 30px;
    }
}

@media (max-width: 524px) {
    .clean-post-thumb {
        height: 390px;
    }

    .clean-post-thumb img {
        height: 390px;
    }
}

@media (max-width: 500px) {
    .job-info h3 {
        font-size: 22px;
    }

    .banner-post {
        height: 300px;
    }

    .banner-post .post-thumb {
        height: 300px;
    }

    .banner-post .post-title {
        font-size: 27px;
    }

    .post-thumb {
        height: 110px;
    }

    .clean-title {
        font-size: 21px;
    }

    .category-right-side .banner-job img {
        height: 250px;
    }

    .blog-content p {
        font-size: 12px;
    }
}

@media (max-width: 490px) {
    .footer-column ul {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 0;
    }

    .header-logo {
        max-width: 150px;
        padding-left: 0px;
    }

    .header-right {
        padding-right: 0px;
    }

    .header-right img {
        width: 27px;
        height: 27px;
    }

    .header-search {
        right: 17px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 29px;
    }

    .banner-description {
        font-size: 14.5px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 26px;
    }

    .section-heading {
        font-size: 20px;
    }

    .featured-job {
        height: 560px;
    }

    .job-info {
        padding: 15px;
    }

    .job-text h4 {
        font-size: 17px;
    }

    .ad-banner img {
        height: 150px;
    }

    .latest-grid .small-job img {
        height: 285px;
    }

    .latest-grid .job-text .category {
        font-size: 12px;
    }

    .latest-grid .job-text h4 {
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 15px;
    }

    .blog-banner img {
        height: 320px;
    }

    .blog-content h2 {
        font-size: 1.2rem;
    }

    .category-card.large .category-image img {
        height: 380px;
    }

    .category-info {
        margin-top: 10px;
    }

    .category-name {
        font-size: 12px;
    }

    .category-title {
        margin: 5px 0;
    }

    .btn-send {
        width: -webkit-fill-available;
    }

    .category-banner {
        margin: 0px 31px;
    }

    .category-list {
        padding: 22px 31px;
    }

    .clean-post-thumb {
        height: 377px;
    }

    .clean-post-thumb img {
        height: 377px;
    }
}

@media (max-width: 450px) {
    .job-category {
        font-size: 12px;
    }

    .job-title {
        font-size: 18px;
    }

    .job-desc {
        font-size: 13px;
    }

    .category-banner {
        margin: 0px 31px;
    }

    .category-list {
        padding: 22px 31px;
    }

    .post-category {
        font-size: 13px;
    }

    .post-title {
        font-size: 17px;
    }
}

@media (max-width: 436px) {
    .footer-left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-column ul {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 431px) {
    .job-info p {
        font-size: 15px;
    }

    .category-card.large .category-image img {
        height: 340px;
    }

    .category-card.small .category-image img {
        height: 240px;
    }

    .category-title {
        font-size: 17px;
    }

    .category-desc {
        font-size: 13px;
    }

    .blog-content {
        padding: 0;
    }
}

@media (max-width: 415px) {
    .header-logo {
        max-width: 162px;
    }

    .header-right {
        padding-right: 0;
    }

    .header-right img {
        width: 25px;
        height: 25px;
    }

    .header-search {
        right: 19px;
        width: 336px;
    }

    .banner-content {
        padding: 12px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 29px;
    }

    .banner-description {
        font-size: 12.5px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 22px;
    }

    .featured-job {
        height: 480px;
    }

    .job-info h3 {
        font-size: 17px;
    }

    .job-info p {
        font-size: 13px;
    }

    .ad-banner img {
        height: 140px;
    }

    .latest-grid .small-job img {
        height: 236px;
    }

    .footer {
        padding: 35px 45px 25px;
    }

    .clean-post-thumb {
        height: 350px;
    }

    .clean-post-thumb img {
        height: 350px;
    }
}

@media (max-width: 400px) {
    .header-logo {
        max-width: 170px;
        padding-left: 0px;
    }

    .job-title {
        font-size: 17px;
    }

    .job-desc {
        font-size: 12px;
    }

    .clean-post-thumb {
        height: 318px;
    }

    .clean-post-thumb img {
        height: 318px;
    }
}

@media (max-width: 393px) {
    .header-logo {
        max-width: 160px;
    }

    .job-info h3 {
        font-size: 17px;
    }

    .ad-banner img {
        height: 130px;
    }

    .banner-post .post-category {
        font-size: 12px;
    }

    .banner-post .post-title {
        font-size: 23px;
    }

    .post-thumb {
        height: 100px;
    }

    .post-title {
        font-size: 16px;
    }

    .post-desc {
        font-size: 12px;
    }

    .banner-overlay .category {
        font-size: 14px;
    }

    .banner-overlay h4 {
        font-size: 14px;
    }

    .blog-banner {
        margin: 0px 24px;
    }

    .blog-description {
        padding: 15px 24px;
    }
}

@media (max-width: 384px) {
    .header {
        padding: 14px 0;
    }

    .header-logo {
        max-width: 150px;
    }

    .header-right {
        padding-right: 0px;
    }

    .header-right img {
        width: 24px;
        height: 24px;
    }

    .header-search {
        top: 84%;
        right: 16px;
        width: 335px;
        padding: 15px;
    }

    .list .list-item {
        padding: 9px 0 12px;
    }

    .background-image {
        min-height: 225px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 27px;
    }

    .banner-description {
        font-size: 12px;
    }

    .side-top-banner .banner-item-content,
    .side-bottom-banner .banner-item-content {
        padding: 24px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 22px;
    }

    .section-heading {
        font-size: 19px;
    }

    .featured-job {
        height: 490px;
    }

    .job-info .category {
        font-size: 13px;
    }

    .job-info h3 {
        font-size: 17px;
    }

    .job-info p {
        font-size: 13px;
    }

    .small-job img {
        height: 222px;
    }

    .job-text .category {
        font-size: 13px;
    }

    .ad-banner img {
        height: 125px;
    }

    .latest-grid .small-job img {
        height: 218px;
    }

    .blog-content {
        padding: 20px;
    }

    .banner-post .post-title {
        font-size: 22px;
    }

    .category-section {
        margin: 20px 24px;
    }

    .category-header {
        margin-bottom: 20px;
    }

    .category-grid .col {
        gap: 25px;
    }
}

@media (max-width: 376px) {
    .job-info h3 {
        font-size: 16px;
    }

    .job-info p {
        font-size: 12px;
    }

    .job-text h4 {
        font-size: 15px;
    }

    .ad-banner img {
        height: 120px;
    }

    .job-title {
        font-size: 16px;
    }

    .post-item {
        gap: 15px;
    }

    .clean-post-thumb {
        height: 308px;
    }

    .clean-post-thumb img {
        height: 308px;
    }
}

@media (max-width: 360px) {
    .header-right img {
        width: 23px;
        height: 23px;
    }

    .header-search {
        right: 15px;
        width: 281px;
    }

    .banner-description {
        font-size: 11px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        line-height: 36px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 22px;
    }

    .featured-job {
        height: 468px;
    }

    .job-info {
        height: 46%;
    }

    .job-info .category {
        font-size: 12px;
    }

    .job-info h3 {
        font-size: 16px;
    }

    .job-info p {
        font-size: 12px;
    }

    .small-job img {
        height: 170px;
    }

    .ad-banner img {
        height: 115px;
    }

    .job-title {
        font-size: 15px;
    }

    .job-desc {
        display: none;
    }

    .latest-grid .job-text h4 {
        font-size: 15px;
    }

    .category-banner img {
        height: 300px;
    }

    .banner-post .post-content {
        padding: 20px;
    }

    .banner-post .post-title {
        font-size: 23px;
    }

    .post-thumb {
        height: 75px;
    }

    .post-category {
        font-size: 12px;
    }

    .post-title {
        font-size: 14px;
        margin-bottom: 0;
        margin-top: 3px;
    }

    .clean-post-content {
        margin-top: 8px;
    }

    .clean-category {
        font-size: 12px;
        margin-bottom: 0;
    }

    .category-right-side .banner-job img {
        height: 200px;
    }

    .category-right-side .mini-job img {
        width: 90px;
        height: 90px;
    }

    .category-right-side .mini-job .mini-text .category {
        font-size: 11px;
    }

    .category-right-side .mini-job .mini-text h5 {
        font-size: 13px;
    }

    .blog-banner img {
        height: 270px;
    }

    .blog-content {
        padding: 10px 15px 0;
    }

    .blog-content h2 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .job-desc {
        font-size: 12px;
    }

    .clean-post-thumb {
        height: 300px;
    }

    .clean-post-thumb img {
        height: 300px;
    }
}

@media (max-width: 354px) {
    .job-info h3 {
        font-size: 15px;
    }

    .job-info p {
        font-size: 11px;
    }
}

@media (max-width: 344px) {
    .job-text h4 {
        font-size: 14px;
    }

    .ad-banner img {
        height: 110px;
    }

    .job-category {
        font-size: 11px;
    }

    .job-title {
        font-size: 14px;
    }

    .latest-grid .job-text h4 {
        font-size: 14px;
    }

    .footer {
        padding: 30px 30px 25px;
    }

    .post-list {
        gap: 20px;
    }
}

@media (max-width: 331px) {
    .latest-grid .small-job img {
        height: 178px;
    }

    .latest-grid .job-text .category {
        font-size: 11px;
    }

    .latest-grid .job-text h4 {
        font-size: 13px;
    }

    .footer {
        padding: 60px 34px 30px;
    }

    .blog-content h2 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 320px) {
    .header-logo {
        max-width: 130px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 19px;
    }

    .section-heading {
        font-size: 18px;
    }

    .featured-job {
        height: 410px;
    }

    .job-info .category {
        font-size: 11px;
    }

    .job-info h3 {
        font-size: 13px;
    }

    .job-info p {
        font-size: 10px;
    }

    .job-text h4 {
        font-size: 13px;
    }

    .mini-text .category {
        font-size: 11px;
    }

    .mini-text h5 {
        font-size: 12px;
    }

    .view-more a {
        font-size: 15px;
    }

    .ad-banner img {
        height: 100px;
    }

    .job-title {
        font-size: 13px;
    }

    .footer {
        padding: 37px 34px 30px;
    }

    .post-thumb {
        height: 70px;
    }

    .post-category,
    .post-title {
        position: relative;
        bottom: 7px;
    }

    .category-card.large .category-image img {
        height: 300px;
    }

    .category-card.small .category-image img {
        height: 200px;
    }
}

@media (max-width: 290px) {
    .header {
        padding: 17px 0;
    }

    .header-logo {
        max-width: 148px;
    }

    .hamburger {
        padding: 0px 0px;
    }

    .header-search {
        right: 8px;
        width: 265px;
    }

    .ad-banner img {
        height: 130px;
    }

    .footer-logo {
        width: 148px;
    }

    .footer {
        padding: 30px 20px 20px;
    }

    .company-address {
        font-size: 13px;
    }

    .blog-content h2 {
        font-size: 0.9rem;
    }

    .category-card.large .category-image img {
        height: 280px;
    }

    .category-title {
        font-size: 16px;
    }

    .category-desc {
        font-size: 12px;
    }

    .category-right-side .mini-job .mini-text .category {
        font-size: 10px;
    }

    .category-right-side .mini-job .mini-text h5 {
        font-size: 11px;
    }

    .container-fluid {
        padding: 0 9px;
    }
}

@media (max-width: 240px) {
    body {
        width: 111.5%;
    }

    .header {
        padding: 5px 0;
    }

    .header-logo {
        max-width: 122px;
    }

    .header-search {
        width: 270px;
    }

    .main-banner .banner-item-content .banner-content h2 {
        font-size: 19px;
    }

    .side-top-banner .banner-item-content .banner-content h2,
    .side-bottom-banner .banner-item-content .banner-content h2 {
        font-size: 14px;
    }

    .banner-description {
        font-size: 10px;
    }

    .section-heading {
        font-size: 16px;
    }

    .featured-job {
        height: 260px;
    }

    .job-info .category {
        font-size: 9px;
    }

    .job-info h3 {
        font-size: 10.5px;
    }

    .job-info p {
        display: none;
    }

    .ad-banner img {
        height: 80px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-height: 412px) {
    .sidebar {
        overflow: auto;
    }
}