@import url("./fonts/font.css");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
  /* Base */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #f5f5f5;

  /* Text */
  --color-text-logo: #070110;
  --color-text-nav: #0f172a;
  --color-text-heading: #111827;
  --color-text-body: #374151;
  --color-text-muted: #3a3a3a;
  --light-text-sub: #6b7280;
  --color-text-input: #666666;
  --color-text-icon: #9ca3af;
  --color-text-secondary: #4b5563;
  --light-text-main: #111827;

  /* Borders */
  --light-border: #e5e7eb;
  --color-border-input: #dddddd;
  --color-border-muted: #d1d5db;

  /* Surfaces */
  --color-surface-input: #fafafa;
  --color-surface-card: #f8f8f8;
  --color-surface-hover: #f9fafb;
  --color-surface-soft: #f3f4f6;

  /* Brand / primary */
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-strong: #1e40af;
  --color-primary-soft: #e8f0ff;
  --color-primary-bg: #dbeafe;
  --color-primary-bg-subtle: #eff6ff;
  --color-primary-border-soft: #bfdbfe;

  /* Featured job card */
  --color-featured-stop-1: #fff7ed;
  --color-featured-stop-2: #ffedd5;
  --color-featured-stop-3: #ecfeff;
  --color-featured-accent: #fb923c;

  /* Badges */
  --color-badge-new-bg: #fde68a;
  --color-badge-new-text: #92400e;

  /* Shadows */
  --shadow-card-hover: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-pill-active: 0 8px 16px rgba(37, 99, 235, 0.2);
  --shadow-apply-btn:
    0 4px 6px -1px rgba(29, 78, 216, 0.1),
    0 2px 4px -1px rgba(29, 78, 216, 0.06);
  --shadow-company-card: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

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

body {
  font-family: "Outfit", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  /* background-color: var(--color-gray); */
}

a img,
img {
  border: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a,
*:hover,
*:focus,
*:active:focus {
  text-decoration: none;
  outline: none !important;
  outline-offset: 0 !important;
}

a,
i,
input {
  transition: all 0.3s ease-in-out;
}

ul,
ol,
dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  line-height: normal;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

button {
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  box-shadow: none;
}

h1 {
  font-size: 40px;
  line-height: 52px;
  font-weight: 600;
}

h2 {
  font-size: 35px;
  line-height: normal;
  font-weight: 600;
}

p {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}

.flex-1 {
  flex: 1;
}

/* Header */
.main_header .header_wrapper {
  padding: 10px 0;
}
.main_header .header_wrapper .navbar_wrap {
  display: flex;
  justify-content: space-between;
  flex: 1;
}
.header_wrapper .navbar_wrap .navbar-brand img {
  max-width: 71px;
}
.header_wrapper .navbar_wrap .navbar-brand .logo-text {
  color: var(--color-text-logo);
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
}
.navbar_wrap .navbar-nav {
  gap: 10px;
}
.navbar_wrap .navbar-nav .nav-link {
  padding: 30px 16px;
  color: var(--color-text-nav);
  letter-spacing: 0.6px;
  font-size: 16px;
  font-weight: 400;
}
.navbar_wrap .dropdown-toggle {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
}
.navbar_wrap .dropdown-toggle::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  border: 0;
  font-size: 14px;
}
.navbar_wrap .dropdown .dropdown-menu {
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
  border-color: #eaeaea;
  min-width: 240px;
  margin: 0;
}
.navbar_wrap .dropdown .dropdown-menu .dropdown-item {
  padding: 10px 16px;
  color: var(--color-text-nav);
  font-size: 16px;
  font-weight: 400;
}
.navbar_wrap .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile nav toggler: menu icon when collapsed, close icon when open (Bootstrap toggles .collapsed) */
.main_header .navbar-toggler {
  color: var(--color-white);
  box-shadow: none;
  outline: none;
  border: 0;
  border-radius: 0;
  background-color: #0274be;
  padding: 0;
  width: 40px;
  height: 40px;
}
.main_header .navbar-toggler .navbar-toggler-icon {
  background-image: none;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.main_header .navbar-toggler.collapsed .navbar-toggler-close-icon {
  display: none;
}
.main_header .navbar-toggler:not(.collapsed) .navbar-toggler-menu-icon {
  display: none;
}

/* Services Section */
.services_section {
  padding: 60px 0;
}

.services_section .services_wrapper {
  padding: 80px 40px;
  background-color: var(--color-white);
}

.services_section .services_wrap {
  width: 100%;
  max-width: 1010px;
  margin: 0 auto;
}

.services_section .services_hero {
  text-align: center;
  margin-bottom: 20px;
}
.services_section .services_hero h1 img {
  width: 40px;
  height: 40px;
  margin: 0 3px;
  vertical-align: -0.1em;
}
.services_section .services_hero h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
  line-height: 1.15;
  color: var(--color-text-heading);
}
.services_section .services_hero p {
  color: var(--color-text-body);
  margin: 0 0 18px 0;
  font-size: 18px;
  line-height: 1.4;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.6em;
}

.services_jobs_categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 22px;
  max-width: 900px;
}
.jobs-category-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.jobs-category-pill:hover {
  background: var(--color-primary-bg);
  border-color: var(--color-primary-border-soft);
}
.jobs-category-pill.is-active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-pill-active);
}
.jobs-search-form {
  display: flex;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 0 auto 30px;
  max-width: 900px;
}
input[type="email"],
input[type="number"],
input[type="password"],
input[type="reset"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
select,
textarea {
  color: var(--color-text-input);
  padding: 0.75em;
  height: auto;
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-border-input);
  border-radius: 2px;
  background: var(--color-surface-input);
  box-shadow: none;
  box-sizing: border-box;
  transition: all 0.2s linear;
  width: 100%;
}
.jobs-search-button {
  padding: 14px 22px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.jobs-search-button:hover {
  background-color: var(--color-primary-hover);
}
.jobs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px auto 22px;
  max-width: 900px;
  color: var(--light-text-sub);
  font-size: 14px;
}
.jobs-count {
  font-weight: 500;
  color: var(--color-text-heading);
}
.pagination-info {
  color: var(--light-text-sub);
  font-size: 14px;
}
.jobs-toolbar-form {
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}
.sort-select {
  padding: 10px 12px;
  border: 1px solid var(--light-border);
  border-radius: 6px;
  background: var(--color-white);
  color: var(--color-text-heading);
}
.pagination-link {
  padding: 8px 16px;
  background-color: var(--color-white);
  border: 1px solid var(--light-border);
  border-radius: 6px;
  color: var(--color-text-heading);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
}
.pagination-link:hover {
  background-color: var(--color-surface-hover);
  border-color: var(--color-border-muted);
}
.supabase-jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.supabase-job-card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 22px 22px;
  min-height: 150px;
  display: flex;
  align-items: stretch;
  gap: 16px;
  transition: all 0.2s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
  gap: 16px;
  width: 100%;
}
.supabase-job-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-border-muted);
}
.supabase-job-card.is-featured {
  background: linear-gradient(
    135deg,
    var(--color-featured-stop-1) 0%,
    var(--color-featured-stop-2) 45%,
    var(--color-featured-stop-3) 100%
  );
  border-color: var(--color-featured-accent);
}
.job-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--color-white);
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.job-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--color-white);
}
.job-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.job-title {
  color: var(--color-text-muted);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 20px;
}
.job-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--light-text-sub);
}
.job-meta-row .job-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.job-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}
.job-meta-text {
  font-weight: 500;
}
.job-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  margin-left: auto;
  min-width: 150px;
}
.job-badges {
  display: flex;
  gap: 8px;
}
.badge {
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
}
.badge-new {
  background: var(--color-badge-new-bg);
  color: var(--color-badge-new-text);
}
.badge-age {
  background: var(--color-surface-soft);
  color: var(--color-text-body);
}
.jobs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 16px;
}
.pagination-info {
  color: var(--light-text-sub);
  font-size: 14px;
}
.details_section {
  padding: 50px 0;
}
.back_btn {
  margin-bottom: 20px;
}

.back_btn a {
  text-decoration: none;
  color: var(--light-text-sub);
  font-size: 14px;
  font-weight: 500;
}
.jd-details-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.jd-details-content h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-text-heading);
  margin: 0 0 24px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.jd-posted-meta {
  margin: -16px 0 22px 0;
  font-size: 14px;
  color: var(--light-text-sub);
  font-weight: 500;
}
.jd-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.jd-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--color-white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  font-size: 15px;
  color: var(--color-text-body);
  font-weight: 500;
}
.jd-chip-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-icon);
  flex-shrink: 0;
}
.jd-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-top: 8px;
}
.jd-description h2 {
  color: var(--color-text-muted);
  font-size: 2.625rem;
  line-height: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
}
.jd-description h3 {
  color: var(--color-text-muted);
  font-size: 1.75rem;
  line-height: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
}
.jd-description p {
  margin: 0 0 12px 0;
  color: var(--color-text-body);
  font-weight: 400;
}
.jd-description ul {
  list-style-type: disc;
  margin: 0 0 1.5em 3em;
}
.jd-description ul li {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--color-text-body);
  margin-bottom: 4px;
}
.jd-description a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.jd-description a:hover,
.jd-description a:focus {
  color: var(--color-primary-hover);
}
.jd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.jd-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.jd-apply-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px;
  background-color: var(--color-primary-hover);
  color: var(--color-white);
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: var(--shadow-apply-btn);
  box-sizing: border-box;
}
.jd-apply-btn:hover {
  background-color: var(--color-primary-strong);
  color: var(--color-white);
}
.jd-company-card {
  background: var(--color-white);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-company-card);
}
.jd-company-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.jd-company-header .job-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--color-surface-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-white);
}
.job-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--color-white);
}
.jd-company-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.jd-company-name-side {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-heading);
}
.jd-company-loc-side {
  color: var(--light-text-sub);
  font-size: 14px;
}
.jd-company-profile-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background-color: var(--color-primary-bg-subtle);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.jd-company-profile-btn:hover {
  background-color: var(--color-primary-bg);
  text-decoration: none;
  color: var(--color-primary-hover);
}
.jd-company-footer {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-secondary);
}
.jd-share-box {
  background: var(--color-white);
  color: var(--color-text-heading);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.jd-share-title {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 12px 0;
}
.jd-share-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.jd-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--color-border-muted);
  background: var(--color-white);
  color: var(--color-text-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
}
.jd-share-btn:hover {
  background: var(--color-surface-soft);
}
.jd-share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.jd-share-status {
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-text-body);
  transition: opacity 0.2s ease;
}
.jd-similar-jobs-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.jd-similar-title {
  color: var(--color-text-muted);
  font-size: 2.625rem;
  line-height: 1.3em;
  font-weight: 600;
}
.company-jobs-count {
  color: var(--light-text-sub);
  font-size: 15px;
  white-space: nowrap;
}

/* Footer */
.main_footer .footer_wrapper {
  padding: 80px 0px;
  background-color: var(--color-white);
}
.main_footer .footer_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer_col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer_item .footer_item_title {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  margin-bottom: 18px;
  display: block;
}
.footer_list li {
  margin-bottom: 10px;
}
.footer_list li a {
  color: #1f2ddfcc;
  font-size: 20px;
  font-weight: 400;
}
.copyright_wrapper {
  border-top: 1px solid #515681b8;
  padding: 20px 0;
}
.copyright_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.copyright_text {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.copyright_list {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.copyright_list li a {
  color: #1f2ddfcc;
  font-size: 20px;
  font-weight: 400;
}
/* Companies Section */
.companies_section .companies_wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 0px 40px;
  color: var(--light-text-main);
}

.companies_section .companies_hero {
  text-align: center;
  margin: 18px 0 28px;
}
.companies_section .companies_hero h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px 0;
  color: #111827;
}
.companies_section .companies_hero p {
  color: #4b5563;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  max-width: 720px;
  font-weight: 400;
}
.companies-count {
  font-weight: 500;
  color: var(--light-text-main);
  margin: 0 0 16px 0;
}
.companies-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.company-list-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 18px 20px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.company-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #d1d5db;
}
.company-card-header-wrap {
  display: flex;
  gap: 10px;
  flex: 1;
  width: 100%;
}
.company-card-main {
  flex: 1;
}
.companies-list .job-logo {
  width: 56px;
  height: 56px;
}
.company-card-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.company-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.company-card-meta {
  font-size: 13px;
  color: #6b7280;
}
.company-card-desc {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}
.company-card-jobs {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  background: #eef2ff;
  border-radius: 999px;
  padding: 6px 10px;
  white-space: nowrap;
}
.companies-details-section {
  padding: 60px 0;
}
.companies-details-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb {
  margin-bottom: 32px;
}
.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #111827;
}
.breadcrumb .breadcrumb-item.active {
  color: #374151;
  font-weight: 500;
}
.company-hero-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.company-hero-left {
  display: flex;
  gap: 20px;
  flex: 1;
}
.company-hero-logo .job-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #111827;
  overflow: hidden;
}
.company-hero-text {
  flex: 1;
}
.company-title {
  font-size: 28px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.company-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
  font-weight: 400;
}
.company-socials {
  display: flex;
  gap: 8px;
}
.company-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #eff6ff;
  color: #2563eb;
  border-radius: 8px;
  transition: all 0.2s;
}
.company-social-icon:hover {
  background-color: #dbeafe;
  color: #1d4ed8;
}
.company-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 60px;
  padding-bottom: 0;
  border-bottom: none;
}
.company-meta-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #374151;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.meta-icon {
  max-width: 18px;
  width: 100%;
  height: 18px;
  color: #9ca3af;
}
.company-meta-chip .label {
  display: inline;
  color: #6b7280;
  font-weight: 400;
}
.company-meta-chip .val {
  font-weight: 400;
  color: #111827;
}
.main_header .header_wrapper {
  border-bottom: 1px solid #f5f5f5;
}
.container {
  max-width: 1240px !important;
  padding: 0 20px !important;
}
.services_section .services_wrapper {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.services_wrap .jobs-toolbar {
  max-width: 804px;
}
.services_wrap #job-results {
  width: 100%;
  margin: 0 auto;
  max-width: 804px;
}
.details_wrapper {
    padding: 0 20px;
    max-width: 1100px;
    margin: 0 auto;
}
/* .job-results-single{
  width: 100%;
  margin: 0 auto;
  max-width: 804px;

} */
 .jd-similar-jobs{
  width: 100%;
  margin: 0 auto;
  max-width: 804px;
}