/* Xenolve Technologies — brand overrides from logo (red / black / white) */
:root,
.theme-consulting {
  --tp-theme-primary: #D2232A;
  --tp-theme-secondary: #0A0A0A;
  --tp-theme-gray: #6B6B6B;
  --tp-theme-white: #F7F5F5;
  --tp-consulting-primary: #D2232A;
  --tp-consulting-secondary: #0A0A0A;
  --xenolve-red: #D2232A;
  --xenolve-red-dark: #B01C22;
  --xenolve-black: #0A0A0A;
  --xenolve-charcoal: #1A1A1A;
  --xenolve-muted: #6B6B6B;
}

/* Buttons: white text on brand red */
.theme-consulting .tp-btn.theme-bg-color {
  color: #fff !important;
  background-color: var(--xenolve-red) !important;
}
.theme-consulting .tp-btn.theme-bg-color i::after {
  background-color: #fff !important;
}
.theme-consulting .tp-btn.theme-bg-color:hover {
  color: #fff !important;
  background-color: var(--xenolve-red-dark) !important;
}

/* Accent fills that were lime green */
.theme-consulting .tp-cn-hero-star path,
.theme-consulting .tp-cn-philoshopy-item-icon path[fill="#C1F43D"],
.theme-consulting svg path[fill="#C1F43D"] {
  fill: var(--xenolve-red) !important;
}
.theme-consulting svg path[fill="#01373D"] {
  fill: var(--xenolve-black) !important;
}

/* Dark sections use charcoal / black instead of teal */
.theme-consulting .tp-cn-philoshopy-ptb,
.theme-consulting .tp-cn-contact-ptb,
.theme-consulting .tp-footer-2-area {
  background-color: var(--xenolve-black) !important;
}
.theme-consulting .tp-cn-philoshopy-ptb[data-bg-color],
.theme-consulting .tp-cn-contact-ptb[data-bg-color],
.theme-consulting .tp-footer-2-area[data-bg-color] {
  background-color: var(--xenolve-black) !important;
}

/* Soft section backgrounds */
.theme-consulting [data-bg-color="#F6F5F2"],
.theme-consulting [data-bg-color="#F7F7F5"] {
  background-color: #F7F5F5 !important;
}

/* Header */
.theme-consulting .tp-header-logo img,
.theme-consulting .tp-offcanvas-logo img,
.theme-consulting .tp-footer-logo img {
  max-height: 42px;
  width: auto;
}
.theme-consulting .tp-header-menu nav ul li a:hover,
.theme-consulting .tp-header-menu nav ul li a.active {
  color: var(--xenolve-red);
}

/* Hero polish */
.theme-consulting .tp-cn-hero-sub {
  color: var(--xenolve-red);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}
.theme-consulting .tp-cn-hero-title {
  color: #fff;
}
.theme-consulting .tp-cn-hero-btn-box span {
  background: var(--xenolve-red);
  color: #fff;
}

/* Section eyebrows */
.theme-consulting .tp-section-cn-sub {
  color: var(--xenolve-red) !important;
}

/* Feature cards */
.theme-consulting .tp-cn-feature-item {
  border-top: 3px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.theme-consulting .tp-cn-feature-item:hover {
  border-top-color: var(--xenolve-red);
  transform: translateY(-4px);
}

/* Industries tags */
.theme-consulting .tp-cn-industries-btns a:hover {
  background: var(--xenolve-red) !important;
  border-color: var(--xenolve-red) !important;
  color: #fff !important;
}

/* CTA / footer accents */
.theme-consulting .tp-cn-cta-ptb,
.theme-consulting .back-to-top-btn {
  background-color: var(--xenolve-red) !important;
}
.theme-consulting .back-to-top-btn {
  color: #fff !important;
}
.theme-consulting .tp-cn-cta-content .tp-section-title,
.theme-consulting .tp-cn-cta-content p,
.theme-consulting .tp-cn-cta-content .tp-fi-hero-contact a,
.theme-consulting .tp-cn-cta-content .tp-fi-hero-contact a span {
  color: #fff !important;
}
.theme-consulting .tp-cn-cta-content .tp-fi-hero-contact a span {
  border-color: rgba(255, 255, 255, 0.35) !important;
}
.theme-consulting .tp-cn-cta-content .tp-fi-hero-contact a:hover span {
  color: var(--xenolve-red) !important;
  background-color: #fff !important;
  border-color: #fff !important;
}

/* Loader */
.theme-consulting .loading-title {
  color: var(--xenolve-red);
}

/* Critical overlays — keep fixed/hidden even if main.css is stale-cached */
#loading {
  position: fixed !important;
  inset: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
}
.theme-consulting .loader-mask {
  position: fixed !important;
  inset: 0;
  z-index: 99999;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--xenolve-black) !important;
}
.theme-consulting .loader-mask .tp-fading-circle,
.theme-consulting .loader-mask .loading-title {
  display: none !important;
}
.theme-consulting .xenolve-preloader-logo {
  display: block;
  width: min(220px, 55vw);
  height: auto;
  animation: xenolve-preloader-pulse 1.4s ease-in-out infinite;
}
@keyframes xenolve-preloader-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}
.theme-consulting .body-overlay {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(24, 24, 24, 0.4);
  transition: 0.45s ease-in-out;
}
.theme-consulting .body-overlay.opened {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.theme-consulting .tp-offcanvas-wrapper {
  position: fixed !important;
  top: 0;
  right: 0;
  width: min(450px, 100%);
  height: 100vh;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transform: translateX(calc(100% + 80px)) !important;
  transition: transform 0.3s ease;
}
.theme-consulting .tp-offcanvas-area.opened .tp-offcanvas-wrapper {
  transform: translateX(0) !important;
}
.theme-consulting .back-to-top-wrapper {
  position: fixed !important;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
.theme-consulting .back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}
.theme-consulting .tp-circle {
  background: var(--xenolve-red) !important;
}

/* Logo on dark: ensure visibility */
.xenolve-logo-dark {
  filter: none;
}

.theme-consulting .tp-header-logo img {
  max-height: 42px;
  width: auto;
}

.theme-consulting .tp-footer-logo img {
  max-height: 40px;
  width: auto;
}

/* Breadcrumb pages */
.theme-consulting .breadcrumb__area {
  background: var(--xenolve-black) !important;
}

/* Form focus */
.theme-consulting input:focus,
.theme-consulting textarea:focus {
  border-color: var(--xenolve-red) !important;
  outline: none;
}

/* Pixel motif accent (from logo) */
.xenolve-pixels {
  display: inline-flex;
  gap: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.xenolve-pixels i {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--xenolve-red);
}

/* Nav dropdown: keep Services submenu usable */
.theme-consulting .tp-header-menu .has-dropdown > a {
  position: relative;
}
.theme-consulting .xenolve-work-tag {
  display: inline-block;
  color: #D2232A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.theme-consulting .xenolve-process-item {
  padding: 28px 24px;
  border-top: 3px solid #D2232A;
  background: #fff;
  border: 1px solid rgba(10,10,10,0.08);
  border-top: 3px solid #D2232A;
  height: 100%;
}
.theme-consulting .xenolve-process-num {
  display: block;
  color: #D2232A;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.theme-consulting .xenolve-process-title {
  font-size: 24px;
  margin-bottom: 12px;
  color: #0A0A0A;
}


/* ===== Service cards & detail pages ===== */
.xenolve-service-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.xenolve-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210, 35, 42, 0.35);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.08);
}
.xenolve-service-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}
.xenolve-service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.xenolve-service-card:hover .xenolve-service-card-media img {
  transform: scale(1.06);
}
.xenolve-service-card-body {
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.xenolve-service-card-title {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.xenolve-service-card-title a {
  color: #0A0A0A;
}
.xenolve-service-card-title a:hover {
  color: #D2232A;
}
.xenolve-service-card-body p {
  color: #6B6B6B;
  margin-bottom: 20px;
  flex: 1;
}
.xenolve-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D2232A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.xenolve-service-card-link:hover {
  color: #B01C22;
}
.xenolve-detail-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 480px;
}
.radius-6 { border-radius: 6px; }
.overflow-hidden { overflow: hidden; }


/* ===== Image & layout bug fixes ===== */
.theme-consulting .tp-header-logo a,
.theme-consulting .tp-offcanvas-logo a,
.theme-consulting .tp-footer-logo a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.theme-consulting .tp-header-logo img {
  max-height: 42px !important;
  max-width: 150px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
  box-shadow: none !important;
}

.theme-consulting .tp-offcanvas-logo img,
.theme-consulting .tp-footer-logo img {
  max-height: 40px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  filter: none !important;
}

/* Keep primary nav on one line with clearer spacing */
.theme-consulting .tp-header-menu > nav > ul {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 6px;
  margin: 0;
}
.theme-consulting .tp-header-menu > nav > ul > li {
  margin: 0 !important;
  flex: 0 0 auto;
}
.theme-consulting .tp-header-menu > nav > ul > li > a {
  font-size: 14px !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
  white-space: nowrap !important;
  letter-spacing: 0;
}
@media (min-width: 1400px) {
  .theme-consulting .tp-header-menu > nav > ul {
    gap: 10px;
  }
  .theme-consulting .tp-header-menu > nav > ul > li > a {
    font-size: 15px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .theme-consulting .tp-header-menu > nav > ul {
    gap: 4px;
  }
  .theme-consulting .tp-header-menu > nav > ul > li > a {
    font-size: 13px !important;
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
  .theme-consulting .tp-header-area .row > .col-xxl-3.col-xl-3 {
    flex: 0 0 17%;
    max-width: 17%;
  }
  .theme-consulting .tp-header-area .row > .col-xxl-5.col-xl-6 {
    flex: 0 0 55%;
    max-width: 55%;
  }
  .theme-consulting .tp-header-area .row > .col-xxl-4.col-xl-3 {
    flex: 0 0 28%;
    max-width: 28%;
  }
  .theme-consulting .tp-btn-event .button-text {
    font-size: 13px;
  }
}

/* Compact homepage hero slider */
.theme-consulting .tp-cn-hero-item.pt-120 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.theme-consulting .tp-cn-hero-content.pb-200 {
  padding-bottom: 24px !important;
}
.theme-consulting .tp-cn-hero-top.mb-20 {
  margin-bottom: 12px !important;
}
.theme-consulting .tp-cn-hero-title {
  overflow-wrap: anywhere;
  word-break: normal;
  max-width: 100%;
  font-size: clamp(28px, 3.6vw, 48px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.6px !important;
}
.theme-consulting .tp-cn-hero-title.mb-35 {
  margin-bottom: 16px !important;
}
.theme-consulting .tp-cn-hero-btn-box {
  bottom: 48px !important;
  right: 80px !important;
}
@media (max-width: 1199px) {
  .theme-consulting .tp-cn-hero-item.pt-120 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .theme-consulting .tp-cn-hero-btn-box {
    bottom: 40px !important;
    right: 24px !important;
  }
}
@media (max-width: 767px) {
  .theme-consulting .tp-cn-hero-item.pt-120 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .theme-consulting .tp-cn-hero-content.pb-200 {
    padding-bottom: 16px !important;
  }
}

/* Hero images fill slide cleanly */
.theme-consulting .tp-cn-hero-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service/work card images */
.theme-consulting .xenolve-service-card-media img,
.theme-consulting .xenolve-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.theme-consulting .xenolve-detail-media {
  min-height: 280px;
  background: #111;
}
.theme-consulting .xenolve-detail-media img {
  max-height: 480px;
}

/* Header bottom bar contrast on brand red */
.theme-consulting .tp-header-bottom {
  background-color: var(--xenolve-red) !important;
}
.theme-consulting .tp-header-bottom .tp-header-info a,
.theme-consulting .tp-header-bottom .tp-header-social,
.theme-consulting .tp-header-bottom .tp-header-social span,
.theme-consulting .tp-header-bottom .tp-header-social a {
  color: #fff !important;
}
.theme-consulting .tp-header-bottom .tp-header-info a svg path,
.theme-consulting .tp-header-bottom .tp-header-social a svg path {
  stroke: #fff !important;
  fill: #fff !important;
}

/* Breadcrumb: quieter separators */
.theme-consulting .tp-breadcrumb-list li:nth-child(2) {
  opacity: 0.55;
  pointer-events: none;
}

/* Newsletter forms */
.theme-consulting .xenolve-newsletter-form {
  position: relative;
}
.theme-consulting .xenolve-newsletter-msg {
  display: block;
  width: 100%;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 10px;
  min-height: 1.2em;
}
.theme-consulting .xenolve-newsletter-msg.is-ok {
  color: #7dcea0;
}
.theme-consulting .xenolve-newsletter-msg.is-err {
  color: #ff8a8a;
}
.theme-consulting .tp-footer-2-newsletter-input.xenolve-newsletter-form {
  flex-wrap: wrap;
}
.theme-consulting .tp-footer-2-newsletter-input .xenolve-newsletter-msg {
  flex: 0 0 100%;
}

/* Legal / policy pages */
.theme-consulting .xenolve-legal {
  color: #333;
  font-size: 16px;
  line-height: 1.75;
}
.theme-consulting .xenolve-legal h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  margin: 36px 0 14px;
}
.theme-consulting .xenolve-legal h3:first-of-type {
  margin-top: 0;
}
.theme-consulting .xenolve-legal p,
.theme-consulting .xenolve-legal li {
  color: #555;
  margin-bottom: 14px;
}
.theme-consulting .xenolve-legal ul {
  padding-left: 1.25rem;
  margin-bottom: 20px;
}
.theme-consulting .xenolve-legal a {
  color: #d2232a;
}
.theme-consulting .xenolve-legal-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
}
.theme-consulting .xenolve-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
.theme-consulting .xenolve-legal-nav a {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: none;
}
.theme-consulting .xenolve-legal-nav a:hover {
  color: #d2232a;
}

/* Professional 404 */
.theme-consulting .xenolve-404-area {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  padding: 100px 0 110px;
  background:
    radial-gradient(ellipse at top, rgba(210, 35, 42, 0.08), transparent 50%),
    linear-gradient(180deg, #faf9f9 0%, #ffffff 60%);
}
.theme-consulting .xenolve-404-code {
  margin: 0 0 8px;
  font-size: clamp(72px, 14vw, 140px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #d2232a;
}
.theme-consulting .xenolve-404-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #0a0a0a;
}
.theme-consulting .xenolve-404-copy {
  max-width: 34em;
  margin: 0 auto 32px;
  color: #555;
  font-size: 17px;
  line-height: 1.6;
}
.theme-consulting .xenolve-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.theme-consulting .xenolve-404-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
.theme-consulting .xenolve-404-links a {
  color: #0a0a0a;
  font-weight: 500;
  text-decoration: none;
}
.theme-consulting .xenolve-404-links a:hover {
  color: #d2232a;
}

/* Careers empty state */
.theme-consulting .xenolve-careers-empty {
  padding: 48px 28px;
  border: 1px solid #e8e8e8;
  background:
    linear-gradient(180deg, #faf9f9 0%, #ffffff 55%),
    radial-gradient(ellipse at top, rgba(210, 35, 42, 0.06), transparent 55%);
}
.theme-consulting .xenolve-careers-empty .tp-section-title {
  margin-bottom: 12px;
}
.theme-consulting .xenolve-careers-empty p {
  color: #555;
  max-width: 34em;
  margin-left: auto;
  margin-right: auto;
}

/* About focus items — text titles (not counter digits) */
.theme-consulting .tp-about-fact-wrap {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  justify-content: center;
}
.theme-consulting .tp-about-fact-item {
  margin-bottom: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}
.theme-consulting .tp-about-fact-item:last-child,
.theme-consulting .tp-about-fact-item.m-0 {
  margin: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}
.theme-consulting .tp-about-fact-item-title {
  font-size: 22px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 6px !important;
  color: var(--xenolve-black) !important;
}
.theme-consulting .tp-about-fact-item p {
  font-size: 15px;
  line-height: 1.55;
  color: #555 !important;
  max-width: 28em;
}
.theme-consulting .tp-about-wrapper .row.align-items-center {
  align-items: stretch !important;
}
.theme-consulting .tp-about-thumb {
  height: 100%;
}
.theme-consulting .tp-about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* Breadcrumb hero image */
.theme-consulting .tp-cc-chose-bg img,
.theme-consulting .tp-breadcrumb-ptb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ensure about / content photos always show */
.theme-consulting .tp-about-thumb-wrap img,
.theme-consulting .tp-about-thumb img,
.theme-consulting .tp-fi-value-thumb-main img,
.theme-consulting .xenolve-detail-media img,
.theme-consulting .xenolve-service-card-media img {
  opacity: 1 !important;
  visibility: visible !important;
  max-width: 100%;
  height: auto;
  display: block;
}
.theme-consulting .tp-about-thumb-wrap,
.theme-consulting .tp-about-thumb,
.theme-consulting .tp-fi-value-thumb-main {
  overflow: hidden;
}
.theme-consulting .tp-cn-success-item,
.theme-consulting .tp-cn-success-item-2 {
  background-size: cover !important;
  background-position: center !important;
}

.theme-consulting .xenolve-career-title a {
  color: inherit;
  text-decoration: none;
}
.theme-consulting .xenolve-career-title a:hover {
  color: #d2232a;
}
.theme-consulting .xenolve-career-detail .xenolve-career-lead {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 28px;
}
.theme-consulting .xenolve-career-rich {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}
.theme-consulting .xenolve-career-rich h2,
.theme-consulting .xenolve-career-rich h3,
.theme-consulting .xenolve-career-rich h4 {
  margin: 28px 0 12px;
  color: #0a0a0a;
}
.theme-consulting .xenolve-career-rich p {
  margin-bottom: 14px;
}
.theme-consulting .xenolve-career-rich ul,
.theme-consulting .xenolve-career-rich ol {
  margin: 0 0 16px 1.2em;
}
.theme-consulting .xenolve-career-rich li {
  margin-bottom: 6px;
}
.theme-consulting .xenolve-career-req {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e8;
}
.theme-consulting .xenolve-career-req h3 {
  margin-bottom: 14px;
}
.theme-consulting .xenolve-career-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Careers listing (CMS-driven) */
.theme-consulting .xenolve-career-card {
  border-top: 1px solid rgba(10, 10, 10, 0.12);
  padding: 28px 0 8px;
}
.theme-consulting .xenolve-career-title {
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.theme-consulting .xenolve-career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}
.theme-consulting .xenolve-career-body p {
  margin-bottom: 14px;
}
.theme-consulting .xenolve-career-body h5 {
  margin: 18px 0 8px;
  font-size: 16px;
}
.theme-consulting .xenolve-career-actions {
  margin: 18px 0 10px;
}

/* Footer: compact intro text (template default is 32px) */
.theme-consulting .tp-footer-3-text {
  max-width: 280px;
}
.theme-consulting .tp-footer-3-text.mb-60 {
  margin-bottom: 24px !important;
}
.theme-consulting .tp-footer-3-text p,
.theme-consulting .tp-footer-3-text P {
  font-size: 15px !important;
  line-height: 1.6 !important;
  letter-spacing: 0 !important;
  font-weight: 400;
}
.theme-consulting .tp-footer-3-text p br,
.theme-consulting .tp-footer-3-text P br {
  display: none;
}

/* Footer: Location + Contact Us side by side on wide screens */
.theme-consulting .xenolve-footer-loc-contact {
  display: block;
}
.theme-consulting .xenolve-footer-loc .tp-footer-widget-title,
.theme-consulting .xenolve-footer-contact .tp-footer-widget-title {
  margin-bottom: 14px;
}
.theme-consulting .xenolve-footer-loc .tp-footer-contact-location {
  margin-bottom: 0;
  display: block;
}
.theme-consulting .xenolve-footer-loc .tp-footer-contact-location,
.theme-consulting .xenolve-footer-loc .tp-footer-contact-location a {
  display: block;
  line-height: 1.6;
  white-space: nowrap;
}
.theme-consulting .xenolve-footer-contact .tp-footer-contact-tel {
  margin-bottom: 0;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .theme-consulting .xenolve-footer-loc-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
  }
  /* Wider footer columns (About-style): Location | Contact side by side */
  .theme-consulting .col-xl-5 .xenolve-footer-loc-contact {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 28px 40px;
  }
  .theme-consulting .col-xl-5 .xenolve-footer-loc,
  .theme-consulting .col-xl-5 .xenolve-footer-contact {
    flex: 0 0 auto;
    min-width: max-content;
  }
}
@media (max-width: 1199.98px) {
  .theme-consulting .xenolve-footer-loc .tp-footer-contact-location,
  .theme-consulting .xenolve-footer-loc .tp-footer-contact-location a,
  .theme-consulting .xenolve-footer-contact .tp-footer-contact-tel {
    white-space: normal;
  }
}

/* Prevent broken empty image boxes */
.theme-consulting img[src=""],
.theme-consulting img:not([src]) {
  display: none;
}
