

:root {
  --color1: #0C7771;
  --color2: #DB6C19;
  --theme-radius:8px;
  --color-primary: #0b2339;
  --color-surface-dark: #122e45;
  --color-accent-dark: #d96e05;
  --color-white: #ffffff;
  --color-background: #f4f6f8;
  --color-surface: #ffffff;
  --color-text: #444;
  --color-text-muted: #5e6b76;
  --color-border: #dce3e8;
  --color-success: #18794e;
  --color-error: #b42318;
  --font-heading: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --container: 82.5rem;
  --reading: 51.25rem;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-featured: 0 1.5rem 3.75rem rgba(8, 31, 49, 0.16);
  --transition-fast: 180ms ease;
  --transition: 240ms ease;
  --z-header: 50;
  --z-drawer: 80;
  --z-skip: 120;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:#fff;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 800;
}

h2 {
font-size: 40px;
    font-weight: 800;
    line-height: 50px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 700;
}

::selection {
  background: var(--color1);
  color: #fff;
}

:focus-visible {
  outline: 0.1875rem solid var(--color1);
  outline-offset: 0.1875rem;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--theme-radius);
  background: var(--color1);
  color: var(--color2);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
     margin-bottom: 0.75rem;
    color: var(--color2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}
section.hero.home-bnr .hero__stage .hero__content p.eyebrow {
    color: #fff;
}

.eyebrow--light {
  color: var(--color1);
}

.section {
  padding: 70px 0;
}

.section--steel {
  background: var(--color-background);
}

.section--navy {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading--split {
  display: grid;
  gap: 1.25rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 37rem;
  margin-bottom: 0;
  color: #000;
  font-size: 1.0625rem;
}

.section-heading--light h2,
.section-heading--light > div h2 {
  color:#fff;
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.7);
}

.section-lead {
 color: var(--color-text);
    font-size: 16px;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.1rem;
  border: 0.125rem solid transparent;
  border-radius: var(--theme-radius);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.button svg,
.text-link svg {
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: transform var(--transition-fast);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(0.2rem);
}

.button--primary {
  background: var(--color2);
  color: #fff;
  border: 1px solid var(--color2);
}

.button--primary:hover {
  background: var(--color1);
  /*box-shadow: 0 0.6rem 1.6rem rgba(6, 24, 39, 0.18);*/
  border: 1px solid #ffffff61;
}

a.button.button--primary.hero__primary:hover{
    background: var(--color2);
    border-color: var(--color2);
}

.button--primary:active {
  background: var(--color1);
  box-shadow: none;
}

.button--secondary {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.button--secondary:hover {
  background: var(--color-primary);
  color:#fff;
}

.button[disabled],
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link--light {
  color:#fff;
}

.icon-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: var(--theme-radius);
  background: transparent;
  color: inherit;
  place-items: center;
}

.icon-button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 1.9;
    align-items: center;
}

/* Header */
.utility-bar {
  min-height: 2.75rem;
  background: var(--color1);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 600;
}

.utility-bar__inner {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar p {
  display: flex;
  align-items: center;
  color:#fff;
  gap: 0.5rem;
  margin-bottom: 0;
}

.utility-bar__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color2);
  box-shadow: 0 0 0 0.2rem rgba(242, 138, 26, 0.16);
}

.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.utility-bar a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color:#fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  border-bottom: 0.0625rem solid rgba(11, 35, 57, 0.09);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(0.75rem);
}

.site-header__inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  color: var(--color-primary);
  text-decoration: none;
}

.brand__logo-crop {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand__logo-crop--color {
  width: clamp(13rem, 18vw, 14rem);
  /*aspect-ratio: 1599 / 322;*/
}

.brand__logo-crop--white {
  width: auto;
  /*aspect-ratio: 1942 / 389;*/
}

.brand__logo-image {

  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.brand__logo-crop--color .brand__logo-image {
  mix-blend-mode: multiply;
}

.brand__logo-crop--white .brand__logo-image {
  mix-blend-mode: lighten;
}

.menu-toggle,
.primary-nav__top,
.nav-scrim {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.25rem;
  padding: 0.6rem 0.62rem;
  border: 0;
  border-radius: var(--theme-radius);
  background: transparent;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}



.primary-nav__link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--transition-fast);
}

.primary-nav__link[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.primary-nav__services {
  position: relative;
}

.primary-nav__cta {
  min-width: 8.5rem;
}

.services-menu {
  position: absolute;
  z-index: calc(var(--z-header) + 1);
  top: calc(100% + 0.5rem);
  left: 0;
  display: grid;
  width: min(21rem, calc(100vw - 2rem));
  gap: 0.125rem;
  padding: 0.5rem;
  border: 0.0625rem solid var(--color-border);
   grid-template-columns: repeat(2, 1fr); /* 2 Columns */
       width: 600px; /* Zarurat ke mutabiq */
  border-radius: var(--theme-radius);
  background:#fff;
  box-shadow: var(--shadow-featured);
}



.services-menu a {
  display: flex;
  min-height: 2.875rem;
  align-items: center;
  padding: 0.625rem 0.85rem;
  border-radius: var(--theme-radius);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.services-menu a:hover,
.services-menu a:focus-visible {
  background: var(--color-background);
  color: var(--color-primary);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  color:#fff;
}

section.hero.contct_bnr {
    min-height: 300px;
}

section.hero.contct_bnr .container.hero__stage {
    min-height: 300px;
}
.hero__overlay{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;      /* or contain depending on the artwork */
    object-position:left center;
    pointer-events:none;
    z-index:1;
}
section.hero.home-bnr {
    overflow: visible;
}
.sidebar-search-box button.button.button--primary.quote-starter__submit {
    margin-top: 0;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
section.hero.home-bnr img.hero__media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 200% center;
}

.hero__media {
  z-index: -3;
  display: block;
  margin: 0;
}

.hero__media img {
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero__scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.hero__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding-block: clamp(3.25rem, 8vw, 5rem) clamp(2rem, 6vw, 3.5rem);
  justify-content: space-between;
  align-items:center;
}

.hero__content {
  max-width: 43rem;
}

.hero h1 {
  max-width: 42rem;
  margin-bottom: 1.35rem;
  color:#fff;
  text-wrap: balance;
  line-height: 75px;

}

.hero__lead {
  max-width: 37rem;
  margin-bottom: 1.65rem;
  color: #fff;
  font-size: clamp(1.0625rem, 2vw, 1.2rem);
  line-height: 1.55;
        text-shadow: 0.02em 0.02em 0.02em rgba(35, 35, 35, 0.95);
}

p.mbl_p {
    display: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.35rem;
}

.hero__primary {
  /*min-height: 3.625rem;*/
  padding-inline: 1.5rem;
  /*box-shadow: 0 1rem 2.25rem rgba(6, 24, 39, 0.34);*/
}

.hero__secondary {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.48);
  color:#fff;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.hero__secondary:hover {
  border-color: #fff;
  color:  #fff;
  text-decoration:underline;
}

.hero__secondary svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: transform var(--transition-fast);
}

.hero__secondary:hover svg {
  transform: translateX(0.2rem);
}

.hero__proof {
  display: grid;
  max-width: 41rem;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
}

.hero__proof-icon {
  display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid var(--color1);
    border-radius: 50%;
    background: var(--color1);
    color: #fff;

}

.hero__proof-icon svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero__proof strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  line-height: 1.35;
}

.quote-starter {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: clamp(1.15rem, 4vw, 1.6rem);
  border-top: 0.1875rem solid var(--color1);
  border-radius: var(--theme-radius);
  background:#fff;
  box-shadow: 0 1.75rem 4.75rem rgba(0, 0, 0, 0.3), 0 0 0 0.0625rem rgba(255, 255, 255, 0.18);
  color: var(--color-text);
}
.sidebar-search-box .quote-starter {
    border: none;
    background: none;
    box-shadow: none;
    padding: inherit;
}
.zip-code-lookup {
    margin-bottom: 15px;
}
.quote-starter__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.field {
  min-width: 0;
}

.field--category,
.quote-starter__submit {
  grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

select#shipment-category {
    color: #888; /* Placeholder color */
}

select#shipment-category:valid {
    color: #000; /* Selected option color */
}

select#shipment-category option {
    color: #555;
}
#shipment-category:focus {
    background-color: transparent;
    outline: none; /* Optional: removes the default focus outline */
    box-shadow: none; /* Optional: removes Bootstrap focus shadow */
    border-color: #86b7fe; /* Optional: keep or change the border color */
  color:#000;
}

select#shipment-category option[value=""] {
    color: #999;
}

.field__control {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  border: 0.0625rem solid var(--color2);
  border-radius: 0.625rem;
  background:#fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field__control > svg:first-child {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.85rem;
  flex: 0 0 auto;
  fill: none;
  stroke: #000;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.field__control > i {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: 0.95rem;
    color: #000;
}
.container.contact-main__grid .contact-form-panel .sidebar__single.contact-us {
    width: 100%;
    padding: 0;
    border: none!important;
    border-radius: 0;
    /* margin: 10px; */
}
.container.contact-main__grid .contact-form-panel .sidebar__single.contact-us .title {
    display: none;
}

.field input,
.field select {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0.65rem 0.8rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 1rem;
}

.field input::placeholder {
  color: #77848e;
  opacity: 1;
}

.field select {
  padding-right: 2.5rem;
  appearance: none;
}

.field__chevron {
  position: absolute;
  right: 0.8rem;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  pointer-events: none;
}

.field.is-invalid .field__control {
  border-color: var(--color-error);
}

.field__error {
  display: block;
  min-height: 1.2rem;
  margin-top: 0.3rem;
  color: var(--color-error);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.35;
  display:none;
}

.quote-starter__submit {

  align-self: start;
  border-radius: 0.625rem;
}

.quote-starter__submit.is-loading svg {
  animation: loading-arrow 700ms ease-in-out infinite alternate;
}

.form-status {
  margin: 0.5rem 0 0;
  color: var(--color1);
  font-size: 0.8125rem;
  font-weight: 700;
}

@keyframes loading-arrow {
  to { transform: translateX(0.35rem); }
}

/* Customer paths */
.path-section {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.path-grid {
  display: grid;
  gap: 1.25rem;
}

.path-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 0;
  border-radius: var(--theme-radius);
  background:#fff;
  box-shadow: 0 1.2rem 3rem rgba(8, 31, 49, 0.1);
}

.path-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface-dark);
}

.path-card__media::after {
  display: none;
}

.path-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease-out;
}

.path-card:hover .path-card__media img {
  transform: scale(1.025);
}

.path-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 60px 20px 20px 20px;
}

.path-card--commercial .path-card__body {
  background: var(--color1);
  color: #fff;
}

.path-card--recreational .path-card__body {
  background: var(--color2);
  color: #fff;
}

.path-card__index {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.path-card__icon {
  position: absolute;
  z-index: 2;
  top: -2rem;
  left: auto;
  display: grid;
  width: 4rem;
  height: 4rem;
  border: 0.25rem solid#fff;
  border-radius: 1rem;
  place-items: center;
      font-size: 20px;
}


.services-slider.owl-carousel.owl-theme.owl-loaded.owl-drag .path-card {
    padding: 0;
}

.services-slider.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-nav, .services-slider.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-dots {
    display: none;
}

.path-card--commercial .path-card__icon {
  background: var(--color2);
  color:#fff;
}

.path-card--recreational .path-card__icon {
  background: var(--color1);
  color:#fff;
  box-shadow: none;
}

.path-card__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.path-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.path-card h3 a{
    text-decoration: none;
}
.path-card h3 a:hover{
    text-decoration: underline;
}
.services-slider.owl-carousel.owl-theme.owl-loaded.owl-drag .path-card .path-card__body p {
    margin:0;
}
.path-card--commercial h3,
.path-card--recreational h3 {
  color:#fff;
}

.path-card--recreational .eyebrow {
  color: var(--color2);
}

.path-card--recreational .path-card__index {
  color: var(--color2);
}

.path-card p:not(.eyebrow) {
  max-width: 36rem;
  margin-bottom: 1.35rem;
}

.path-card ul {
  margin-bottom: 1.4rem;
  padding-left: 1.15rem;
    color: #fff;
}

.path-card li {
  margin-bottom: 0.35rem;
}

.path-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

/* Services */
.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: auto;
  flex-direction: column;
  padding: 1.4rem;
  overflow: hidden;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
  background:#fff;
  color: #000;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}


.service-card__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 0.85rem;
  background: var(--color-background);
  color: var(--color-primary);
  place-items: center;
}

.service-card__icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-card__number {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: #8b98a1;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.service-card.service-card--feature.service-card--navy h2.service-card__content {
    color: #fff;
}
section.section.section--steel.services-section.inr_pge_sec .service-card h3.service-card__content {
    margin-bottom: 15px;
    display: block !important;
    flex: none;
    font-size: 20px;
    line-height: 28px;
}
.service-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card__content strong {
  margin-bottom: 0.6rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.25;
}

.service-card__content > span {
  font-size: 0.875rem;
  line-height: 1.55;
}

.service-card__link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card__link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card__link svg {
  transform: translateX(0.25rem);
}

.service-card--feature {
  min-height: auto;
}

.service-card--feature .service-card__content strong {
  max-width: 29rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.inr_pge_sec .service-card--feature .service-card__content strong {
  max-width: 100%;
}
.inr_pge_sec .service-card--feature .service-card__content h2 {
  max-width: 100%;
  color:#fff;
}

.service-card--feature .service-card__content > span {
  max-width: 33rem;
  font-size: 0.95rem;
    color: #fff;
}
.service-card--orange span.service-card__content span {
    color: #000;
}
.inr_pge_sec .service-card--feature .service-card__content > span {
  max-width: 100%;
}

.service-card--navy {
  border-color: var(--color2);
  background: var(--color2);
  color: #fff;
}

.service-card--navy .service-card__icon {
  background:#fff;
  color: var(--color2);
}

.service-card--navy .service-card__number,
.service-card--navy .service-card__content strong,
.service-card--navy .service-card__link {
  color:#fff;
}

.service-card--orange {
  border-color: var(--color1);
  background: var(--color1);
  color: rgba(6, 24, 39, 0.76);
}

.service-card--orange .service-card__icon {
  background: var(--color-primary);
  color:#fff;
}

.service-card--orange .service-card__number,
.service-card--orange .service-card__content strong,
.service-card--orange .service-card__link {
  color: var(--color2);
}

/* Transport video */
.video-story {
  overflow: hidden;
}

.video-story__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.video-story__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-radius: var(--theme-radius);
  background: var(--color2);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.24);
    height: max-content;
}

.video-story__player {
position: relative;
    display: block;
    /* aspect-ratio: 16 / 9; */
    overflow: hidden;
    /* background: #020b12; */
    height: 450px;
}

.video-story__player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-story__player video:focus-visible {
  outline: 0.1875rem solid var(--color1);
  outline-offset: -0.1875rem;
}

.video-story__play {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 1.25rem;
  border: 0;
  background: transparent;
  color:#fff;
  cursor: pointer;
}

/*.video-story__play-content {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 0.85rem;*/
/*  padding: 0.65rem 1rem 0.65rem 0.65rem;*/
/*  border: 0.0625rem solid rgba(255, 255, 255, 0.28);*/
/*  border-radius: var(--radius-pill);*/
/*  background: rgba(6, 24, 39, 0.9);*/
/*  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.3);*/
/*}*/

.video-story__play-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    color: var(--color2);
    font-size: 22px;
    z-index: 2;
    transition: .3s ease;
}

.video-story__play-icon:hover {
    transform: scale(1.08);
}

.video-story__play-icon::before,
.video-story__play-icon::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    background:rgba(255,255,255,.35);
    animation:pulse 2s infinite;
    z-index:-1;
}

.video-story__play-icon::after{
    animation-delay:1s;
}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:.7;
    }
    100%{
        transform:scale(2.2);
        opacity:0;
    }
}

.video-story__play-icon svg {
  width: 30px;
  height: 40px;
  fill: currentColor;
}

.video-story__play-content > span:last-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
      display: flex;
    justify-content: center;
    align-items: center;
}

.video-story__play strong {
  font-size: 0.9rem;
}

.video-story__play small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.video-story__play:hover .video-story__play-icon {
  background: #fff;
}

.video-story__play:focus-visible {
  outline: 0.1875rem solid var(--color1);
  outline-offset: -0.375rem;
}

.video-story__media figcaption {
    padding: 20px 25px;
    color: #fff;
    /* font-size: 0.75rem; */
    line-height: 1.5;
}

.video-story__media figcaption strong {
  color: rgba(255, 255, 255, 0.84);
}

.video-story__content {
  align-self: center;
}

.video-story__content h3 {
  max-width: 30rem;
  margin-bottom: 1rem;
  color:#fff;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.video-story__content > p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.7);
}

.video-beats {
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.video-beats li {
  display: grid;
  grid-template-columns: 3.2rem 5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
  padding-block: 0.8rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.video-beats span {
  color: var(--color1);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.video-beats strong {
  color:#fff;
  font-size: 0.875rem;
}

.video-beats small {
  color: #fff;
  font-size: 0.75rem;
}

.video-story__content > .text-link {
  margin-top: 1.25rem;
}

/* Load helper */
.load-helper__shell {
  overflow: hidden;
  border-radius: var(--theme-radius);
  box-shadow: var(--shadow-featured);
}

.load-helper__intro {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  overflow: hidden;
  background: var(--color2);
  color: rgba(255, 255, 255, 0.7);
  isolation: isolate;
}

.load-helper__intro::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #0000006b;
  content: "";
  pointer-events: none;
}

.load-helper__media img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}
.load-helper__media {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
        object-fit: cover;

}

.load-helper__media img {
  object-fit: cover;
  object-position: 53% center;
}

.load-helper__intro-content {
  position: relative;
  z-index: 1;
}

.load-helper__intro h2 {
  max-width: 38rem;
  margin-bottom: 1rem;
  color:#fff;
}

.load-helper__intro p:last-child {
  max-width: 36rem;
  margin-bottom: 0;
      color: #fff;
}


.load-helper__body {
  padding: clamp(1rem, 3vw, 2rem);
}

.load-helper__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.load-option {
  display: inline-flex;
     min-width: 15%;
    text-align: center;
    display: flex;
    justify-content: center;
  align-items: center;
    padding: 0.55rem 0.8rem;
    border: 1px solid #fff;
    border-radius: 999px;
    color: #fff;
    font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.load-option:hover,
.load-option.is-active {
  border-color: var(--color1)!important;
  background: var(--color1)!important;
  color: #fff!important;
}

.load-result {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: var(--theme-radius);
  background:#fff;
}

.load-result__icon {
  display: grid;
  width: 60px;
  height: 60px;
  border-radius: var(--theme-radius);
  background: var(--color1);
  color:#fff;
  place-items: center;
}

.load-result__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.load-result h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.load-result p {
  max-width: 45rem;
  color: #000;
}

.load-result ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.load-result ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}
 
.load-result ul li::before {
    content: "\f058"; /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--color1);
    font-size: 16px;
}

/* Equipment */
.equipment-section {
  background: #edf1f4;
}

.equipment-field-guide {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 0.0625rem solid rgba(11, 35, 57, 0.12);
  border-radius: var(--theme-radius);
  background: var(--color2);
  box-shadow: var(--shadow-featured);
}

.equipment-field-guide__visual {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(36rem, 148vw, 43rem);
  align-items: flex-start;
  isolation: isolate;
  overflow: hidden;
  background: var(--color2);
}

.equipment-field-guide__media,
.equipment-field-guide__media img,
.equipment-field-guide__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.equipment-field-guide__media {
  z-index: -2;
  display: block;
}

.equipment-field-guide__media img {
  object-fit: cover;
  object-position: 54% center;
}

.equipment-field-guide__scrim {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 24, 39, 0.97) 0%, rgba(6, 24, 39, 0.83) 43%, rgba(6, 24, 39, 0.48) 70%, rgba(6, 24, 39, 0.84) 100%),
    linear-gradient(90deg, rgba(6, 24, 39, 0.84), transparent 92%);
  pointer-events: none;
}

.equipment-field-guide__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 36rem;
  padding: clamp(2rem, 7vw, 3rem) clamp(1.25rem, 6vw, 2.5rem);
}

.equipment-field-guide__copy h2 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  color:#fff;
  font-size: clamp(2.25rem, 9vw, 4rem);
}

.equipment-field-guide__copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.65;
}

.equipment-field-guide__copy .button {
  min-height: 3.25rem;
}

.equipment-field-guide__detail {
  display: none;
}

.equipment-field-guide__dossier {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.25rem, 5vw, 2.5rem);
  background: #fffdfa;
}

.equipment-field-guide__dossier > .eyebrow {
  margin-bottom: 0;
}

.equipment-timeline {
  position: relative;
  display: grid;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.equipment-timeline::before {
  position: absolute;
  z-index: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 0.0625rem;
  background: rgba(242, 138, 26, 0.72);
  content: "";
}

.equipment-timeline > li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.55rem 1rem;
  align-items: start;
  padding-block: 1.1rem;
  border-bottom: 0.0625rem solid var(--color-border);
}

.equipment-timeline > li:first-child {
  padding-top: 0;
}

.equipment-timeline > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.equipment-timeline__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  grid-row: 1 / 3;
  border: 0.1rem solid var(--color1);
  border-radius: 50%;
  background: #fffdfa;
  color: var(--color1);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.equipment-timeline__icon {
  display: flex;
  width: min(100%, 7.5rem);
  min-height: 3rem;
  align-items: center;
  grid-column: 2;
  color: var(--color-primary);
}

.equipment-timeline__icon svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
  vector-effect: non-scaling-stroke;
}

.equipment-timeline__copy {
  grid-column: 2;
}

.equipment-timeline__copy h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.equipment-timeline__copy p {
  margin-bottom: 0;
  color: #000;
  font-size: 0.875rem;
  line-height: 1.5;
}

.load-result{
    display:none;
}

.load-result.active{
    display:flex;
}

.load-option.is-active{
    background:#111;
    color:#fff;
}

@media (min-width: 40rem) {
  .equipment-field-guide__visual {
    min-height: 36rem;
    align-items: center;
  }

  .equipment-field-guide__copy {
    max-width: 54%;
    padding: 3rem;
  }

  .equipment-field-guide__copy h2 {
    font-size: clamp(2.75rem, 6vw, 4.25rem);
  }

  .equipment-field-guide__scrim {
    background:
      linear-gradient(90deg, rgba(6, 24, 39, 0.98) 0%, rgba(6, 24, 39, 0.9) 33%, rgba(6, 24, 39, 0.36) 70%, rgba(6, 24, 39, 0.3) 100%),
      linear-gradient(0deg, rgba(6, 24, 39, 0.82), transparent 50%);
  }

  .equipment-field-guide__detail {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
    display: block;
    width: min(36%, 18rem);
    margin: 0;
    overflow: hidden;
    border: 0.1875rem solid rgba(255, 255, 255, 0.88);
    border-radius: var(--theme-radius);
    background: var(--color-primary);
    box-shadow: 0 1rem 2.75rem rgba(6, 24, 39, 0.32);
  }

  .equipment-field-guide__detail picture {
    display: block;
    aspect-ratio: 4 / 3;
  }

  .equipment-field-guide__detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .equipment-field-guide__detail figcaption {
    position: absolute;
    right: 0.75rem;
    bottom: 0.65rem;
    padding: 0.25rem 0.45rem;
    border-radius: var(--theme-radius);
    background: rgba(6, 24, 39, 0.86);
    color:#fff;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .equipment-timeline::before {
    left: 1.5rem;
  }

  .equipment-timeline > li {
    grid-template-columns: 3rem minmax(7rem, 0.75fr) minmax(0, 1.25fr);
    gap: 1.25rem;
    align-items: center;
    padding-block: 1.25rem;
  }

  .equipment-timeline__number {
    width: 3rem;
    height: 3rem;
    grid-row: 1;
  }

  .equipment-timeline__icon {
    grid-column: 2;
    min-height: 3.5rem;
  }

  .equipment-timeline__copy {
    grid-column: 3;
  }
}

@media (min-width: 72rem) {
  .equipment-field-guide {
    min-height: 46rem;
    grid-template-columns: minmax(0, 1.42fr) minmax(24.5rem, 0.78fr);
  }

  .equipment-field-guide__visual {
    min-height: 46rem;
  }

  .equipment-field-guide__media img {
    object-position: 58% center;
  }

  .equipment-field-guide__copy {
    max-width: min(62%, 36rem);
    padding: clamp(3rem, 4vw, 4.25rem);
  }

  .equipment-field-guide__copy h2 {
    font-size: clamp(3.1rem, 4vw, 4.35rem);
  }

  .equipment-field-guide__detail {
    right: -1.25rem;
    bottom: 1.5rem;
    width: clamp(15rem, 19vw, 19rem);
  }

  .equipment-field-guide__dossier {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(2.5rem, 3vw, 3.25rem) clamp(2rem, 2.6vw, 2.75rem) 2.25rem;
    border-left: 0.0625rem solid rgba(11, 35, 57, 0.09);
  }

  .equipment-timeline {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-top: 1.5rem;
  }

  .equipment-timeline > li {
    min-height: 0;
    flex: 1;
    grid-template-columns: 3rem minmax(6.75rem, 0.72fr) minmax(9rem, 1.28fr);
    gap: clamp(0.8rem, 1.15vw, 1.15rem);
    padding-block: 1.15rem;
  }

  .equipment-timeline__icon {
    min-height: 3.25rem;
  }
}

@media (max-width: 22.5rem) {
  .equipment-field-guide__copy {
    padding-inline: 1rem;
  }

  .equipment-field-guide__copy h2 {
    font-size: 2.1rem;
  }

  .equipment-field-guide__dossier {
    padding-inline: 1rem;
  }

  .equipment-field-guide__copy .button {
    width: 100%;
    padding-inline: 0.75rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}

/* Approved field guide composition */
.equipment-section {
  padding-block: clamp(1rem, 3vw, 2rem);
  background: var(--color2);
}

.equipment-field-guide.equipment-field-guide--approved {
  width: min(calc(100% - 2rem), 100rem);
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  margin-inline: auto;
  overflow: hidden;
  border: 0;
  border-radius: var(--theme-radius);
  background: var(--color2);
  box-shadow: none;
  isolation: isolate;
}

.equipment-field-guide--approved .equipment-field-guide__visual {
  grid-column: 1;
  grid-row: 1;
  min-height: clamp(36rem, 150vw, 42rem);
  align-items: flex-start;
  overflow: hidden;
}

.equipment-field-guide--approved .equipment-field-guide__media img {
  object-position: 57% center;
}

.equipment-field-guide--approved .equipment-field-guide__scrim {
  background:
    linear-gradient(180deg, rgba(6, 24, 39, 0.97) 0%, rgba(6, 24, 39, 0.86) 42%, rgba(6, 24, 39, 0.5) 72%, rgba(6, 24, 39, 0.88) 100%),
    linear-gradient(90deg, rgba(6, 24, 39, 0.92), rgba(6, 24, 39, 0.22) 92%);
}

.equipment-field-guide--approved .equipment-field-guide__copy {
  max-width: 36rem;
  padding: clamp(2rem, 7vw, 3rem) clamp(1.25rem, 6vw, 2.5rem);
}

.equipment-field-guide--approved .equipment-field-guide__copy h2 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 9vw, 4rem);
  line-height: 1.08;
}

.equipment-field-guide--approved .equipment-field-guide__copy > p:not(.eyebrow) {
  max-width: 33rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.equipment-field-guide--approved .equipment-field-guide__detail {
  display: none;
}

.equipment-field-guide--approved .equipment-field-guide__dossier {
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
  margin: 0 1rem 1rem;
  padding: 1.75rem 1.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.7);
  border-radius: var(--theme-radius);
  background: #fffdfa;
  box-shadow: 0 1.5rem 3.5rem rgba(6, 24, 39, 0.25);
}

.equipment-field-guide--approved .equipment-timeline {
  display: grid;
  margin-top: 1.5rem;
}

.equipment-field-guide--approved .equipment-timeline > li {
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.65rem 1rem;
  padding-block: 1.25rem;
}

.equipment-field-guide--approved .equipment-timeline__icon {
  width: min(100%, 9rem);
  min-height: 3.75rem;
}

.equipment-field-guide--approved .equipment-timeline__icon img {
  width: 100%;
  height: auto;
}

.equipment-field-guide--approved .equipment-timeline__copy h3 {
  font-size: clamp(1rem, 2vw, 1.125rem);
}

@media (min-width: 40rem) {
  .equipment-field-guide--approved .equipment-field-guide__visual {
    min-height: 39rem;
    align-items: center;
  }

  .equipment-field-guide--approved .equipment-field-guide__copy {
    max-width: 56%;
    padding: 3rem;
  }

  .equipment-field-guide--approved .equipment-field-guide__copy h2 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
  }

  .equipment-field-guide--approved .equipment-field-guide__scrim {
    background:
      linear-gradient(90deg, rgba(6, 24, 39, 0.99) 0%, rgba(6, 24, 39, 0.91) 33%, rgba(6, 24, 39, 0.38) 69%, rgba(6, 24, 39, 0.18) 100%),
      linear-gradient(0deg, rgba(6, 24, 39, 0.84), transparent 58%);
  }

  .equipment-field-guide--approved .equipment-field-guide__detail {
    position: absolute;
    z-index: 3;
    top: 23.5rem;
    right: 2rem;
    bottom: auto;
    display: block;
    width: min(35%, 18rem);
    margin: 0;
  }

  .equipment-field-guide--approved .equipment-field-guide__dossier {
    margin: 0 1.25rem 1.25rem;
    padding: 2.25rem;
  }

  .equipment-field-guide--approved .equipment-timeline > li {
    grid-template-columns: 3rem minmax(8rem, 0.82fr) minmax(0, 1.18fr);
    gap: 1.5rem;
    padding-block: 1.4rem;
  }

  .equipment-field-guide--approved .equipment-timeline__icon {
    width: min(100%, 10rem);
    min-height: 4rem;
  }
}

@media (min-width: 72rem) {
  .equipment-section {
    padding-block: 2rem;
  }

  .equipment-field-guide.equipment-field-guide--approved {
    min-height: 56rem;
    grid-template-columns: minmax(0, 61.5fr) minmax(25rem, 38.5fr);
    grid-template-rows: minmax(0, 1fr);
    border-radius: 0.75rem;
  }

  .equipment-field-guide--approved .equipment-field-guide__visual {
    min-height: 56rem;
    grid-column: 1 / -1;
    grid-row: 1;
    align-items: flex-start;
  }

  .equipment-field-guide--approved .equipment-field-guide__media img {
    object-position: center center;
  }

  .equipment-field-guide--approved .equipment-field-guide__scrim {
    background:
      linear-gradient(90deg, rgba(6, 24, 39, 0.97) 0%, rgba(6, 24, 39, 0.86) 24%, rgba(6, 24, 39, 0.42) 43%, rgba(6, 24, 39, 0.16) 59%, rgba(6, 24, 39, 0.08) 78%),
      linear-gradient(0deg, rgba(6, 24, 39, 0.78), transparent 54%);
  }

  .equipment-field-guide--approved .equipment-field-guide__copy {
    width: 61.5%;
    max-width: 38rem;
    padding: clamp(8.5rem, 10vw, 10.5rem) clamp(3rem, 4vw, 4rem) 4rem;
  }

  .equipment-field-guide--approved .equipment-field-guide__copy h2 {
    max-width: 13ch;
    font-size: clamp(3.35rem, 3.8vw, 4rem);
  }

  .equipment-field-guide--approved .equipment-field-guide__detail {
    top: auto;
    right: calc(38.5% - 2.6rem);
    bottom: 2.5rem;
    width: clamp(16rem, 19vw, 19rem);
    border-width: 0.2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1.25rem 3rem rgba(6, 24, 39, 0.38);
  }

  .equipment-field-guide--approved .equipment-field-guide__detail picture {
    aspect-ratio: 1.1;
  }

  .equipment-field-guide--approved .equipment-field-guide__dossier {
    display: flex;
    min-width: 100%;
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    margin: 2rem 2rem 2rem 0;
    padding: clamp(3.5rem, 4vw, 4.25rem) clamp(2.25rem, 3vw, 3rem) 2.5rem;
    border: 0;
    border-radius: var(--theme-radius);
    box-shadow: 0 1.5rem 4rem rgba(6, 24, 39, 0.28);
  }

  .equipment-field-guide--approved .equipment-timeline {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-top: 0.75rem;
  }

  .equipment-field-guide--approved .equipment-timeline::before {
    top: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .equipment-field-guide--approved .equipment-timeline > li {
    min-height: 0;
    flex: 1;
    grid-template-columns: 3rem minmax(8.25rem, 0.88fr) minmax(9.5rem, 1.12fr);
    gap: clamp(1rem, 1.4vw, 1.5rem);
    align-items: start;
    padding-block: 1.25rem;
  }

  .equipment-field-guide--approved .equipment-timeline__number {
    width: 3rem;
    height: 3rem;
  }

  .equipment-field-guide--approved .equipment-timeline__icon {
    width: 100%;
    min-height: 4.25rem;
  }

  .equipment-field-guide--approved .equipment-timeline__copy h3 {
    font-size: clamp(1rem, 1.25vw, 1.18rem);
  }
}

@media (min-width: 90rem) {
  .equipment-field-guide.equipment-field-guide--approved {
    min-height: 56rem;
  }

  .equipment-field-guide--approved .equipment-timeline > li {
    grid-template-columns: 3rem minmax(9rem, 0.9fr) minmax(10.5rem, 1.1fr);
  }
}

@media (max-width: 22.5rem) {
  .equipment-field-guide.equipment-field-guide--approved {
    width: calc(100% - 1.25rem);
  }

  .equipment-field-guide--approved .equipment-field-guide__copy {
    padding-inline: 1rem;
  }

  .equipment-field-guide--approved .equipment-field-guide__copy h2 {
    font-size: 2.15rem;
  }

  .equipment-field-guide--approved .equipment-field-guide__dossier {
    margin-inline: 0.625rem;
    padding-inline: 1rem;
  }
}

/* Process */
.process-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  color:#fff;
}

.process-section__media,
.process-section__scrim {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto;
  height: 34rem;
}

.process-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.process-section__scrim {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 24, 39, 0.5) 0%, rgba(6, 24, 39, 0.72) 48%, var(--color2) 100%),
    linear-gradient(90deg, rgba(6, 24, 39, 0.98) 0%, rgba(6, 24, 39, 0.82) 46%, rgba(6, 24, 39, 0.24) 100%);
}

.process-section__inner {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.process-section__heading {
  max-width: 42rem;
}

.process-section__heading h2 {
  margin-bottom: 0;
  color:#fff;
  font-size: clamp(2.4rem, 6.6vw, 4.6rem);
  letter-spacing: -0.045em;
}

.process-list {
  position: relative;
  display: grid;
  max-width: 45rem;
  gap: 1.25rem;
  margin: clamp(4rem, 8vw, 6.5rem) auto 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 10rem;
  padding: 1.5rem 1.25rem 1.5rem 6rem;
}

.process-step::before {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 2.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-radius: var(--theme-radius);
  background: var(--color2);
  content: "";
}

.process-step--light::before {
  border-color: rgba(255, 255, 255, 0.5);
  background: #f7f5f1;
}

.process-step__content {
  position: relative;
  z-index: 1;
}

.process-list__number {
  display: block;
  margin-bottom: 0.8rem;
  color: #ff9f3b;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-step--light .process-list__number {
  color: #bd5700;
}
ol.process-list.fr_hom .process-list__icon i {
    color: #fff;
}
.process-list__icon {
     position: absolute;
    z-index: 2;
    top: 1.25rem;
    left: 0;
    display: grid;
    width: 4.5rem;
    height: 4.5rem;
    border: 3px solid #d4d4d4;
    border-radius: 50%;
    background: var(--color1);
    /* box-shadow: 0 0 0 0.375rem rgba(6, 24, 39, 0.9); */
    color:#fff;
    place-items: center;
    box-shadow: 0 0 6px 0 #0002;
}
.process-list__icon i {
    font-size: 22px;
    color: #fff;
}

.process-list__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  vector-effect: non-scaling-stroke;
}

.process-step h3 {
  margin-bottom: 0.55rem;
  color:#fff;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.process-step p {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.process-step--light h3 {
  color: var(--color-primary);
}

.process-step--light p {
  color: #000;
}

.process-section__action {
  max-width: 45rem;
  margin: 1.5rem auto 0;
  text-align: left;
}

.process-section__action .text-link {
  min-height: 2.75rem;
}

/* Outcomes */
.outcomes-grid {
  display: grid;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-left: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.outcomes-grid article {
  min-height: 15rem;
  padding: 1.5rem;
  border-right: 0.0625rem solid rgba(255, 255, 255, 0.16);
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.outcomes-grid span {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--color2);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--theme-radius);
}

.outcomes-grid h3 {
  margin-bottom: 0.7rem;
  color:#fff;
  font-size: 1.15rem;
}

.outcomes-grid p {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.875rem;
}

/* Industries */
.section-heading__link {
  align-self: end;
  justify-self: start;
}

.industries-grid {
  display: grid;
  gap: 1rem;
}

.industries-grid a {
 position: relative;
    isolation: isolate;
    display: grid;
    /* min-height: 14rem; */
    align-content: start;
    padding: 26px;
    overflow: hidden;
    border: 0.0625rem solid var(--color-border);
    border-radius: var(--theme-radius);
    background: #fff;
    color: #000;
    text-decoration: none;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition);
    text-align: center;
}

section.error-404.our_new_sec.bg-white {
    text-align: center;
}
.error-404__image span {
       font-size: 54px;
    font-weight: 800;

}

/*.industries-grid a::after {*/
/*  position: absolute;*/
/*  z-index: 1;*/
/*  top: -2rem;*/
/*  right: -2rem;*/
/*  width: 8rem;*/
/*  height: 8rem;*/
/*  border: 0.0625rem solid currentColor;*/
/*  border-radius: 50%;*/
/*  content: "";*/
/*  opacity: 0.1;*/
/*}*/


.industry-card__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 260ms ease, transform 360ms ease;
}

.industry-card__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 24, 39, 0.35) 0%, rgba(6, 24, 39, 0.5) 38%, rgba(6, 24, 39, 0.96) 100%),
    linear-gradient(90deg, rgba(6, 24, 39, 0.22), transparent 70%);
  content: "";
}
section.section.industries-section {
    background: var(--color-background);
}
.industry-card--agriculture .industry-card__media {
  background-image: url("../images/industry-agriculture-640.webp");
  background-image: image-set(
    url("../images/industry-agriculture-640.avif") type("image/avif"),
    url("../images/industry-agriculture-640.webp") type("image/webp")
  );
  background-position: 5% center;
}

.industry-card--dealers .industry-card__media {
  background-image: url("../images/media-trailer-selection-v4-640.webp");
  background-image: image-set(
    url("../images/media-trailer-selection-v4-640.avif") type("image/avif"),
    url("../images/media-trailer-selection-v4-640.webp") type("image/webp")
  );
  background-position: 46% center;
}

.industry-card--fleet .industry-card__media {
  background-image: url("../images/media-heavy-commercial-v3-640.webp");
  background-image: image-set(
    url("../images/media-heavy-commercial-v3-640.avif") type("image/avif"),
    url("../images/media-heavy-commercial-v3-640.webp") type("image/webp")
  );
  background-position: center;
}



.industries-grid a > .industry-card__number {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1.2rem;
  font-size: 0.6875rem;
  font-weight: 800;
}

.industries-grid svg {
 /*position: absolute; */*/
    z-index: 2;
    /* top: 1rem; */
    /* right: 1.2rem; */
    width: 50px;
    height: 50px;
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    transition: stroke var(--transition-fast);
    background: var(--color2);
    padding: 11px;
    border-radius: var(--theme-radius);
    margin: 0 auto 13px;
}

.industries-grid strong {
  position: relative;
  z-index: 2;
  margin-bottom: 0.3rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}


.industries-grid small {
    position: relative;
    z-index: 2;
    font-size: 15px;
    color: var(--color-text);
    line-height: 22px;
}

.industries-grid a:focus-visible {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.industries-grid a:focus-visible strong {
  color:#fff;
}

.industries-grid a:focus-visible svg {
  stroke: #ff9f3b;
}

.industries-grid a:focus-visible::after {
  opacity: 0.22;
}

/* Coverage */
.coverage-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.coverage-visual {
       position: relative;
    overflow: hidden;
    border-radius: var(--theme-radius);
    background: #f7f7f7;
    /*aspect-ratio: 211 / 132;*/
}
.coverage-visual img {
    width: 100%;
}
.coverage-visual::after {
  position: absolute;
  inset: 0;
  border: 0.0625rem solid rgba(11, 35, 57, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.coverage-visual__media {
  display: block;
  width: 100%;
  height: 100%;
}

.coverage-visual__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.coverage-copy h2 {
  max-width: 39rem;
    margin-bottom: 20px;
}

ul.check-list {
    list-style: none;
    padding: 0;
   margin: 0 0 20px 0px;
}

ul.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

ul.check-list li::before {
     content: "\f058"; /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--color2);
    font-size: 16px;
}



.coverage-copy__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

/* Resources */
.resources-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.resource-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
  background:#fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.resource-card:hover {
  border-color: rgba(11, 35, 57, 0.42);
  box-shadow: 0 1.125rem 2.5rem rgba(8, 31, 49, 0.11);
}

.resource-card:focus-within {
  border-color: var(--color-primary);
}

.resource-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

.resource-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 39, 0.12), transparent 46%, rgba(6, 24, 39, 0.32));
  content: "";
  pointer-events: none;
}

.resource-card__media picture,
.resource-card__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.resource-card__media img {
  object-fit: cover;
  transition: transform 320ms ease;
}

.resource-card:first-child .resource-card__media img {
  object-position: 48% center;
}

.resource-card:nth-child(2) .resource-card__media img {
  object-position: 58% center;
}

.resource-card:last-child .resource-card__media img {
  object-position: center 58%;
}

.resource-card:hover .resource-card__media img,
.resource-card:focus-within .resource-card__media img {
  transform: scale(1.035);
}

.resource-card__category,
.resource-card__guide {
  position: absolute;
  z-index: 1;
  top: 1rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--theme-radius);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.resource-card__category {
  left: 1rem;
  border: 0.0625rem solid #fff;
  background: rgba(255, 255, 255, 0.94);
}

.resource-card__guide {
  right: 1rem;
     background: var(--color1);
    color: #fff;
}

.resource-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.25rem, 2.4vw, 1.6rem);
}

.resource-card h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.resource-card p {
  margin-bottom: 1.5rem;
  color: #000;
  font-size: 0.9375rem;
}

.resource-card .text-link {
  margin-top: auto;
  min-height: 2.75rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 7rem;
}


.faq-intro p:not(.eyebrow) {

  color: #000;
}

.faq-list {
     display: grid;
    gap: 10px;
}

.faq-list details {
  background: #fff;
    border-radius: var(--theme-radius);
    box-shadow: 0 0 6px 0 #0002;
}

.faq-list summary {
  display: flex;
  grid-template-columns: 35rem 1fr 1.5rem;
  gap: 0.7rem;
  align-items: center;
  padding: 20px 20px;
  color: var(--color2);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--color1);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 800;
}

.faq-list summary svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform var(--transition-fast);
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details > div {
  padding: 0px 15px 15px 18px;
}

.faq-list details p {
  max-width: 45rem;
  margin-bottom: 0;
  color: #000;
}

/* Final CTA and footer */
.final-cta {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: var(--color2);
    color: #fff;
}

.final-cta__inner {
  position: relative;
  display: grid;
  gap: 10px;
  align-items: center;
}

.final-cta h2 {
    color:#fff;
    font-size: 36px;
    margin-bottom: 10px;
}
.final-cta__inner p {
    margin-bottom: 0;
    color: #fff;
}
.final-cta__actions a.button.button--primary {
    color: #fff;
}
.final-cta__inner p.eyebrow.eyebrow--light {
    margin-bottom: 10px;
}
.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.75rem;
}

.site-footer {
  padding-top: 4rem;
  background: var(--color2);
  color: rgba(255, 255, 255, 0.6);

}

.site-footer__top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.brand--footer {
  width: min(100%, 18rem);
  min-height: 0;
  color:#fff;
}

.site-footer__brand p {
  max-width: auto;
  margin: 1rem 0;
  font-size: 16px;
color: #fff;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.site-footer__column h2 {
margin: 0;
  color:#fff;
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__column a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
    margin-bottom: 3px;
}

.site-footer__column a:hover,
.site-footer__bottom a:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-block: 1.4rem 6rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.site-footer__bottom p {
  margin-bottom: 0;
    color: #fff;
    font-size:16px;
}

.site-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}

.site-footer__bottom a {
  display: inline-flex;
  align-items: center;
color: #fff;
}
.container.site-footer__bottom {
    padding: 20px 0;
}
.mobile-actions {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  padding: 0.55rem max(0.75rem, env(safe-area-inset-right)) calc(0.55rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  border-top: 0.0625rem solid var(--color-border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -0.65rem 1.5rem rgba(8, 31, 49, 0.1);
  transform: translateY(0);
  transition: transform var(--transition);
}

/*.mobile-actions.is-hidden,*/
/*.mobile-actions.is-keyboard-hidden,*/
/*.mobile-actions.is-context-hidden {*/
/*  transform: translateY(110%);*/
/*}*/

.mobile-actions a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--theme-radius);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-actions a:last-child {
  background: var(--color1);
  color: #fff;
}

.mobile-actions svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

/* Quote handoff */
.quote-handoff-page {
  min-height: 100vh;
  background: var(--color-background);
}

.handoff-header {
  border-bottom: 0.0625rem solid var(--color-border);
  background:#fff;
}

.handoff-header__inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.handoff-main {
  padding-block: clamp(3rem, 8vw, 7rem);
}

.handoff-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.handoff-grid h1 {
  max-width: 46rem;
  margin-bottom: 1.25rem;
}

.handoff-summary {
  display: grid;
  gap: 0.75rem;
  margin-block: 2rem;
}

.handoff-summary > div {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
  background:#fff;
}

.handoff-summary span {
  color: #000;
  font-size: 0.8rem;
}

.handoff-summary strong {
  color: var(--color-primary);
}

.handoff-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.handoff-status {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: #fff0df;
  color: #914f08;
  font-size: 0.75rem;
  font-weight: 700;
}

.handoff-note {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--theme-radius);
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.72);
}

.handoff-note h2 {
  color:#fff;
}

.handoff-note ol {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
}


    section.our_new_sec {
        padding: 70px 0;
    }
   
.sidebar__single.contact-us {
    width: 400px;
    min-width: 400px;
    border: 1px solid #f2f2f2;
}
.inner_content h2 {
    
    margin: 0;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 35px;
    }
.inner_content h3 {
    margin: 0;
    font-weight: 700;
    margin-bottom: 8px;
        font-size: 26px;
    }
    .service-sidebar {
    position: relative;
}
.sidebar__title {
    margin: 0;
    margin-top: -4px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    position: relative;
    display: inline-block;
}
.sidebar__single + .sidebar__single {
    margin-top: 30px;
}
.sidebar__single iframe, .sidebar__single img {
    border-radius: 10px;
}
section#clients-section2 {
    padding: 70px 0;
}
section#clients-section2 h2 {
    text-align: center;
    padding-bottom: 20px;
        font-size: 40px;
        line-height: 46px;
    }
    ul.ul3 {
        column-count: 4;
    }
ul.ul3 li {
    position: relative;
    margin-bottom: 10px;
    list-style: none;
}
ul.ul3 li::before {
    content: "\e921";
    font-family: 'icomoon' !important;
    font-size: 17px;
    font-weight: 600;
    color: red;
    display: inline-block;
    margin-right: 8px;
}
ul.ul3 li a {
    color: #000;
    font-weight: 600;
}

.site__brd {
    padding: 5px 0;
    margin-bottom: 10px;
}
.rofiex-breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding-left: 0;
    list-style: none;
}
li.bread-crum {
    color: #fff !important;
}
.rofiex-breadcrumb li {
    color: var(--color2);
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
.rofiex-breadcrumb li a {
    color:var(--color2);
    text-decoration: none;
}
.rofiex-breadcrumb li:not(:last-of-type)::after {
    content: "\00BB";
    /* position: relative; */
    font-weight: normal;
    /* top: 1px; */
    margin-left: 8px;
    margin-right: 8px;
    color: #000;
}
.site__brd .container {
    width: 100%;
    padding-left: 0;
}

.service-details__content.inner_content img {
    width: 100%;
    border-radius: var(--theme-radius);
}
.hero__media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mobile-img{
    display:none;
}
.final-cta.fr_bg_whte {
    background: #fff;
}
.final-cta.fr_bg_whte h2 {
    color: #000;
}
.final-cta.fr_bg_whte p {
    color: #000;
}

.page-header.mx-height {
    min-height: 350px;
}
.page-header {
    background-color: var(--color2);
    position: relative;
    display: flex;
    align-items: center;
    min-height: 500px;
    padding-top: 70px;
    padding-bottom: 70px;
}
.page-header__title {
    margin: 0 0 16px;
    /* font-size: 28px; */
    color: #fff;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 50px;
    text-align: center;
}
section.th-blog-wrapper.blog-details.space-top.space-extra-bottom {
    padding: 70px 0;
    background: #fff;
}
.blog-img {
    margin-bottom: 25px;
}
section.th-blog-wrapper.blog-details.space-top.space-extra-bottom img {
    width: 100%;
}
.blog-details .blog-single .blog-content {
    background-color: transparent;
    overflow: hidden;
}
.share-links {
    padding: 20px 0;
    border-top: 1px solid var(--color1);
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.blog-content .col-sm-auto {
    display: flex;
    align-items: center;
        justify-content: end;
}

th-blog.blog-single .service-details__content.inner_content .blog-content h2 {
    margin: 0;
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 35px;
    line-height: 36px;
}

.th-blog.blog-single .service-details__content.inner_content .blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    overflow: hidden;
    border-radius: 8px;
}

.th-blog.blog-single .service-details__content.inner_content .blog-content table th {
    background: var(--color2); /* Replace with your color */
    color: #ffffff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    
}

.th-blog.blog-single .service-details__content.inner_content .blog-content table td {
    padding: 14px 18px;
    border: 1px solid #e5e5e5;
    color: #333;
    background: #ffffff;
}

.th-blog.blog-single .service-details__content.inner_content .blog-content table tr:nth-child(even) td {
    background: #f8f8f8;
}

.th-blog.blog-single .service-details__content.inner_content .blog-content table tr:hover td {
    background: #f2f2f2;
}
.blog-meta i {
    color: var(--color1);
    margin-right: 5px;
    font-size: 15px;
}
.blog-meta span:not(:last-child), .blog-meta a:not(:last-child) {
    padding-right: 15px;
}
blog-meta span, .blog-meta a {
    display: inline-block;
    font-size: 12px;
    color: var(--color1);
    position: relative;
    margin-right: 10px;
}
.share-links-title {
    font-size: 18px;
    color: var(--color1);
    font-weight: 600;
    margin: 0 15px 0 0;
    display: inline-block;
    text-transform: capitalize;
}.th-social.upated {
    display: flex;
}
.th-social.upated a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
}
.share-links .th-social a {
    --icon-size: 40px;
    font-size: 14px;
    border-radius: 99px;
    text-decoration: none;
}
.th-social a {
    display: inline-block;
    width: var(--icon-size, 46px);
    height: var(--icon-size, 46px);
    line-height: var(--icon-size, 45px);
    background-color: #bbcad924;
    color: #000;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 99px;
}
.th-social svg {
    width: 14px;
}
.share-links .th-social a i {
    font-family: 'FontAwesome';
}
aside.sidebar-area .widget {
    border: 2px solid #f2f2f2;
    padding: 20px;
    border-radius: var(--theme-radius);
    margin-bottom: 15px;
}
.widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--color1);
}
.recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}
.recent-post .media-img {
    margin-right: 15px;
    width: 80px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}
.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.recent-post .post-title {
        font-weight: 600;
    font-size: 15px;
    line-height: 23px;
    margin: 0 0 6px 0;
    text-transform: capitalize;
}

.recent-post .post-title a {
    text-decoration: none;
}


.recent-post .post-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 6px 0;
    text-transform: capitalize;
}
.widget.widget_banner.widget_tag_cloud.background-image {

    background: var(--color1);
    color: #ffff;
        border-bottom: 5px solid var(--color2);
}
.widget.widget_banner.widget_tag_cloud.background-image .widget-banner p.box-title, .widget.widget_banner.widget_tag_cloud.background-image .widget-banner .box-text {
    color: #fff;
    font-size: 18px;
}
.widget-banner .box-title {
    margin-bottom: 15px;
    color: #000;
}
.widget-banner .logo {
    display: inline-block;
    padding: 17px 40px;
    border-radius: 99px;
    text-align: center;
    background-color: #fff;
    max-width: 100%;
}
.widget-banner .box-text {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #000;
}
.widget-banner .box-link {
    font-size: 24px;
    font-weight: 600;
}
.widget.widget_banner.widget_tag_cloud.background-image {
    text-align: center;
}
.new-bottm-bar {
    margin: 40px 0 0;
}
.new-bottm-bar h2 {
        margin-bottom: 25px;
    font-size: 35px;
    font-weight: 700;
    text-align: center;
}
.new-bottm-bar .container {
    padding: 0;
    margin: 0;
}
section.page-header.mx-height .rofiex-breadcrumb {
    justify-content: center;
}
.author-section {
    position: relative;
}
.author-card {
  background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--theme-radius);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000, #ec1a20, #000000, #ec1a20);
    background-size: 300% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}
.author-image-wrapper {
    position: relative;
    display: inline-block;
}
.author-image {
   min-width: 200px;
    min-height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.author-content {
    padding-left: 3rem;
}
.author-name {
font-size: 2.5rem;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 0.5rem;
}
.author-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.author-bio {
   font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-prep li i {
    color: var(--color1);
    text-align: center;
}
























/* Industries page */
.primary-nav__link[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 800;
}

.primary-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.industries-page main {
  background:#fff;
}

.industries-page [id] {
  scroll-margin-top: 7rem;
}

.industries-hero {
  position: relative;
  overflow: hidden;
  border-top: 0.25rem solid var(--color1);
  background: var(--color2);
  color:#fff;
}

.industries-hero__grid {
  display: grid;
  gap: 2rem;
  padding-block: 3.5rem 2rem;
}

.industries-hero__content {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.industries-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  color:#fff;
  font-size: clamp(2.6rem, 8.8vw, 5.25rem);
}

.industries-hero__lead {
  max-width: 42rem;
  margin-bottom: 1.75rem;
  color: #d7e2ea;
  font-size: clamp(1.0625rem, 2.4vw, 1.25rem);
  line-height: 1.65;
}

.industries-hero__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.industries-hero__actions .button,
.industries-hero__actions .text-link {
  min-height: 3rem;
}

.industries-hero__proof {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 0 0;
  margin: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.industries-hero__proof li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #edf4f8;
  font-size: 0.9375rem;
  font-weight: 600;
}

.industries-hero__proof svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  color: var(--color1);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.industries-hero__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 18rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: var(--theme-radius);
  background: var(--color-surface-dark);
}

.industries-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 24, 39, 0.35));
  content: "";
  pointer-events: none;
}

.industries-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.industry-directory {
  border-bottom: 0.0625rem solid var(--color-border);
  background:#fff;
}

.industry-directory .container {
  padding-block: 1.5rem 1.75rem;
}

.industry-directory__label {
  margin-bottom: 0.8rem;
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-directory__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.industry-directory__links a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.65rem 0.7rem;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.industry-directory__links a:hover {
  border-color: var(--color1);
  background: #fff8ef;
}

.industry-directory__links svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  color: var(--color1);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.industry-solutions {
  background: var(--color-background);
}

.industry-group + .industry-group {
  margin-top: 70px;
}

.industry-group__heading {
  position: relative;
  display: block;
  padding-bottom: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 0.0625rem solid var(--color-border);
}

.industry-group__heading > span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 0.0625rem solid var(--color1);
  border-radius: 50%;
  color: var(--color1);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  place-items: center;
}

.industry-group__heading h2 {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3.8vw, 2.85rem);
}

.industry-group__heading .eyebrow {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding-left: 4rem;
  margin-bottom: 0.75rem;
}

.industry-solution-grid {
  display: grid;
  gap: 1.25rem;
}

.industry-solution-card {
  position: relative;
  overflow: hidden;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
  background:#fff;
  scroll-margin-top: 7rem;
}

.industry-solution-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dfe5e9;
}

.industry-solution-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.industry-solution-card:hover .industry-solution-card__media img {
  transform: scale(1.018);
}

.industry-solution-card__body {
  position: relative;
  padding: 1.5rem;
}

.industry-solution-card__icon {
  position: absolute;
  top: -2rem;
  left: 1.5rem;
  display: grid;
  width: 4rem;
  height: 4rem;
  border: 0.1875rem solid#fff;
  border-radius: 1rem;
  background: var(--color1);
  color: var(--color2);
  box-shadow: 0 0.75rem 1.75rem rgba(8, 31, 49, 0.15);
  place-items: center;
}

.industry-solution-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.industry-solution-card__number {
  margin: 0 0 1.15rem auto;
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
}

.industry-solution-card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
}

.industry-solution-card__body > p:not(.industry-solution-card__number) {
  margin-bottom: 1.15rem;
  color: #000;
}

.industry-solution-card ul {
  display: grid;
  gap: 0.4rem;
  padding-left: 1.15rem;
  margin-bottom: 1.35rem;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.industry-solution-card li::marker {
  color: var(--color1);
}

.industry-solution-card__links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid var(--color-border);
}

.industry-solution-card__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
}

.industry-solution-card__links a:first-child {
  gap: 0.45rem;
}

.industry-solution-card__links svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: transform var(--transition-fast);
}

.industry-solution-card__links a:hover svg {
  transform: translateX(0.2rem);
}

.industry-review {
  overflow: hidden;
  background: var(--color2);
  color: #d8e3ea;
}

.industry-review__grid {
  display: grid;
  gap: 3rem;
}

.industry-review__intro {
  max-width: 42rem;
}

.industry-review h2,
.industry-review h3 {
  color:#fff;
}

.industry-review__intro h2 {
  max-width: 15ch;
}

.industry-review__intro > p:not(.eyebrow) {
  margin-bottom: 1.75rem;
  color: #c7d5df;
  font-size: 1.0625rem;
}

.industry-review__items {
  display: grid;
  gap: 0.0625rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: var(--theme-radius);
  background: rgba(255, 255, 255, 0.14);
}

.industry-review__items article {
  padding: 1.5rem;
  background: var(--color-surface-dark);
}

.industry-review__items span {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border: 0.0625rem solid rgba(242, 138, 26, 0.65);
  border-radius: 50%;
  color: var(--color1);
  place-items: center;
}

.industry-review__items svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.industry-review__items h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.industry-review__items p {
  margin-bottom: 0;
  color: #c2d1dc;
  font-size: 0.9375rem;
}

.industry-operations__grid {
  display: grid;
  gap: 2.5rem;
}

.industry-operations__media {
  display: block;
  overflow: hidden;
  min-height: 21rem;
  border-radius: var(--theme-radius);
  background: var(--color-background);
}

.industry-operations__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-operations__content {
  align-self: center;
}

.industry-operations__content h2 {
  max-width: 17ch;
}

.industry-operations__content > p:not(.eyebrow) {
  max-width: 42rem;
  color: #000;
  font-size: 1.0625rem;
}

.industry-operations__options {
  display: grid;
  gap: 0;
  margin-block: 1.75rem 1rem;
  border-block: 0.0625rem solid var(--color-border);
}

.industry-operations__options article {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.25rem;
}

.industry-operations__options article + article {
  border-top: 0.0625rem solid var(--color-border);
}

.industry-operations__options span {
  color: var(--color1);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
}

.industry-operations__options h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.industry-operations__options p {
  margin-bottom: 0;
  color: #000;
  font-size: 0.9375rem;
}

.industry-services {
  background: var(--color-background);
}

.industry-services__grid {
  display: grid;
  gap: 0.75rem;
}

.industry-services__grid > a {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 1.5rem;
  gap: 0 1rem;
  align-items: center;
  min-height: 7.5rem;
  padding: 1.25rem;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
  background:#fff;
  color: var(--color-primary);
  text-decoration: none;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.industry-services__grid > a:hover {
  border-color: var(--color1);
  transform: translateY(-0.15rem);
}

.industry-services__grid > a > svg:first-child {
  grid-row: 1 / 3;
  width: 2rem;
  height: 2rem;
  color: var(--color1);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.industry-services__grid span {
  align-self: end;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.industry-services__grid small {
  align-self: start;
  color: #000;
  font-size: 0.8125rem;
}

.industry-services__arrow {
  grid-column: 3;
  grid-row: 1 / 3;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.industry-faq__grid {
  display: grid;
  gap: 2.5rem;
}

.industry-faq header {
  max-width: 38rem;
}

.industry-faq header h2 {
  max-width: 15ch;
}

.industry-faq header > p:not(.eyebrow) {
  color: #000;
}

.industry-final-cta .final-cta__inner > div {
  max-width: 50rem;
}

.industry-final-cta .final-cta__inner > div > p:last-child {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: #c9d8e2;
}

@media (min-width: 36rem) {
  .industries-hero__actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .industries-hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .industry-directory__links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .industry-directory__links a {
    padding-inline: 0.85rem;
  }

  .industry-review__items,
  .industry-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 48rem) {
  .industries-hero__grid {
    padding-block: 4.5rem 2.5rem;
  }

  .industries-hero__media {
    min-height: 27rem;
  }

  .industry-solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .industry-solution-card__body {
    padding: 1.75rem;
  }

  .industry-solution-card__icon {
    left: 1.75rem;
  }

  .industry-review__items article {
    min-height: 14rem;
    padding: 1.75rem;
  }
}

@media (min-width: 64rem) {
  .industries-hero__grid {
    grid-template-columns: minmax(25rem, 0.82fr) minmax(0, 1.18fr);
    gap: 3rem;
    align-items: stretch;
    min-height: 39rem;
    padding-block: 4.75rem;
  }

  .industries-hero__content {
    align-self: center;
  }

  .industries-hero h1 {
    max-width: 14ch;
    font-size: 60px;
  }

  .industries-hero__media {
    min-height: 31rem;
  }

  .industries-hero__media img {
    position: absolute;
    inset: 0;
  }

  .industry-directory .container {
    display: grid;
    grid-template-columns: 10rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
  }

  .industry-directory__label {
    margin-bottom: 0;
  }

  .industry-directory__links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .industry-directory__links a {
    min-height: 3.4rem;
  }

  .industry-group__heading {
    position: static;
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1.5rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .industry-group__heading > span {
    position: static;
    width: 4rem;
    height: 4rem;
  }

  .industry-group__heading .eyebrow {
    display: block;
    min-height: 0;
    padding-left: 0;
    margin-bottom: 0;
  }

  .industry-solution-grid {
    gap: 2rem;
  }

  .industry-solution-card__body {
    padding: 2rem;
  }

  .industry-solution-card__icon {
    left: 2rem;
  }

  .industry-review__grid {
    grid-template-columns: minmax(20rem, 0.7fr) minmax(0, 1.3fr);
    gap: 4.5rem;
    align-items: center;
  }

  .industry-review__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-operations__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    gap: 5rem;
    align-items: stretch;
  }

  .industry-operations__media {
    min-height: 38rem;
  }

  .industry-faq__grid {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    gap: 5rem;
    align-items: start;
  }

  .industry-faq header {
    position: sticky;
    top: 8rem;
  }
}

@media (min-width: 80rem) {
  .industries-hero__grid {
    grid-template-columns: minmax(31rem, 0.88fr) minmax(0, 1.12fr);
    gap: 3.5rem;
  }

  .industry-directory__links {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .industry-directory__links a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 5.5rem;
  }

  .industry-services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 25rem) {
  .industry-directory__links {
    grid-template-columns: 1fr;
  }

  .industries-hero h1 {
    font-size: 2.45rem;
  }

  .industry-solution-card__body,
  .industry-review__items article {
    padding-inline: 1.2rem;
  }

  .industry-solution-card__icon {
    left: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-solution-card__media img,
  .industry-services__grid > a,
  .industry-solution-card__links svg {
    transition: none;
  }

  .industry-solution-card:hover .industry-solution-card__media img,
  .industry-services__grid > a:hover,
  .industry-solution-card__links a:hover svg {
    transform: none;
  }
}

@media (forced-colors: active) {
  .industry-directory__links a,
  .industry-solution-card,
  .industry-review__items article,
  .industry-services__grid > a {
    border: 0.125rem solid CanvasText;
  }
}



/* How It Works page */
.how-it-works-page main {
  background:#fff;
}

.how-it-works-page main [id] {
  scroll-margin-top: 7rem;
}

.how-hero {
  position: relative;
  overflow: hidden;
  border-top: 0.25rem solid var(--color1);
  background: var(--color2);
  color:#fff;
}

.how-hero::before {
  position: absolute;
  top: -12rem;
  left: -15rem;
  width: 31rem;
  height: 31rem;
  border: 0.0625rem solid rgba(242, 138, 26, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.how-hero__grid {
  display: grid;
  gap: 2rem;
  padding-block: 3.5rem 2rem;
}

.how-hero__content {
  position: relative;
  z-index: 1;
  max-width: 47rem;
}

.how-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  color:#fff;
  font-size: clamp(2.55rem, 8.4vw, 5rem);
}

.how-hero__lead {
  max-width: 44rem;
  margin-bottom: 1.75rem;
  color: #d6e1e9;
  font-size: clamp(1.0625rem, 2.2vw, 1.2rem);
  line-height: 1.65;
}

.how-hero__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.how-hero__actions .button,
.how-hero__actions .text-link {
  min-height: 3rem;
}

.how-hero__proof {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 0 0;
  margin: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.how-hero__proof li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #edf4f8;
  font-size: 0.9rem;
  font-weight: 600;
}

.how-hero__proof svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  color: var(--color1);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.how-hero__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 20rem;
  margin: 0;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: var(--theme-radius);
  background: var(--color-surface-dark);
}

.how-hero__media picture,
.how-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.how-hero__media img {
  object-fit: cover;
  object-position: 63% center;
}

.how-hero__media::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(6, 24, 39, 0.82));
  content: "";
  pointer-events: none;
}

.how-hero__media figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  color:#fff;
}

.how-hero__media figcaption span {
  color: #ffb35f;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how-hero__media figcaption strong {
  max-width: 12rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: right;
}

.process-nav {
  position: relative;
  z-index: 2;
  border-bottom: 0.0625rem solid var(--color-border);
  background:#fff;
}

.process-nav .container {
  padding-block: 1.5rem 2rem;
}

.process-nav__label {
  margin-bottom: 1rem;
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-nav__list {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-nav__list::before {
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 0.0625rem;
  background: var(--color1);
  content: "";
}

.process-nav__list li {
  position: relative;
  min-width: 0;
}

.process-nav__list a {
  position: relative;
  display: grid;
  min-height: 5.75rem;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-block: 0.65rem;
  color: var(--color-primary);
  text-decoration: none;
}

.process-nav__number {
  position: relative;
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 0.0625rem solid var(--color1);
  border-radius: 50%;
  background:#fff;
  color: var(--color1);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  place-items: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.process-nav__list a:hover .process-nav__number,
.process-nav__list a:focus-visible .process-nav__number {
  background: var(--color1);
  color:#fff;
}

.process-nav__list a > span:last-child {
  display: grid;
  gap: 0.2rem;
}

.process-nav__list strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.2;
}

.process-nav__list small {
  max-width: 19rem;
  color: #000;
  font-size: 0.8rem;
  line-height: 1.45;
}

.how-stage {
  position: relative;
}

.how-stage__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.how-stage__grid--media-first .how-stage__content {
  order: -1;
}

.how-stage__content {
  min-width: 0;
}

.how-stage__heading {
  margin-bottom: 1.25rem;
}

.how-stage__heading .eyebrow {
  margin-bottom: 0.7rem;
}

.how-stage__heading h2 {

  margin-bottom: 0;

}

.how-stage__lead {

  margin-bottom: 1.75rem;
  color: #000;

}

.how-stage__media {
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
  background: var(--color-background);
}

.how-stage__media picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.how-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-stage__media figcaption {
  padding: 1rem 1.15rem;
  border-top: 0.0625rem solid var(--color-border);
  background:#fff;
  color: #000;
  font-size: 0.8rem;
  line-height: 1.5;
}

.stage-checklist {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 1.75rem;
  border-top: 0.0625rem solid var(--color-border);
  list-style: none;
}

.stage-checklist li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  min-height: 5.25rem;
  padding-block: 0.9rem;
  border-bottom: 0.0625rem solid var(--color-border);
}

.stage-checklist svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color1);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}
.stage-checklist i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color1);
    text-align: center;
    font-size: 18px;
}

.stage-checklist span {
  color: #000;
  font-size: 0.86rem;
  line-height: 1.45;
}

.stage-checklist strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--color-primary);
  font-size: 0.92rem;
}

.stage-outcome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.15rem;

  border-left: 0.1875rem solid var(--color1);
  background: var(--color-background);
}

.stage-outcome span {
  color: var(--color1);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-outcome p {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.how-stage--plan {
  overflow: hidden;
}



.how-stage--plan .how-stage__grid {
  position: relative;
  z-index: 1;
}


.how-stage--plan h3 {
  color:#fff;
}


.how-stage__media--technical {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--color-surface-dark);
}

.how-stage__media--technical picture {
  aspect-ratio: 4 / 3;
}

.how-stage__media--technical figcaption {
  display: grid;
  gap: 0.25rem;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--color-surface-dark);
  color: #c4d2dc;
}

.how-stage__media--technical figcaption span {
  color: var(--color1);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.how-stage__media--technical figcaption strong {
  color:#fff;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.plan-review-list {
  display: grid;
  gap: 0.0625rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: var(--theme-radius);
  background: rgba(255, 255, 255, 0.14);
}

.plan-review-list article {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1.1rem;
  background: var(--color2);
}

.plan-review-list article > span {
 display: grid;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--color1);
    border-radius: var(--theme-radius);
    background: var(--color1);
    place-items: center;
    color: #fff;
}

.plan-review-list svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.plan-review-list h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.plan-review-list p {
  margin: 0;
  color: #b9c9d4;
  font-size: 0.83rem;
  line-height: 1.5;
}

.stage-outcome--dark {
  background: #fff;
}

.stage-outcome--dark span {
  color: var(--color1);
}

.stage-outcome--dark p {
  color: #000;
}

.how-stage--pickup {
  background:#fff;
}

.pickup-responsibilities {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.pickup-responsibilities article {
  padding: 1.25rem;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
  background: var(--color-background);
}

.pickup-responsibilities article {
  border-top: 0.1875rem solid var(--color1);
}

.pickup-responsibilities__label {
  margin-bottom: 0.85rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.pickup-responsibilities ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pickup-responsibilities li {
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  gap: 0.55rem;
  color: #000;
  font-size: 0.84rem;
  line-height: 1.45;
}

.pickup-responsibilities svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  color: var(--color1);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.delivery-stage {
  position: relative;
  overflow: hidden;
}

.delivery-stage__media,
.delivery-stage__scrim {
  position: absolute;
  inset: 0;
}

.delivery-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.delivery-stage__scrim {
  background: linear-gradient(180deg, rgba(6, 24, 39, 0.92), rgba(6, 24, 39, 0.8)), linear-gradient(90deg, rgba(6, 24, 39, 0.85), rgba(6, 24, 39, 0.35));
}

.delivery-stage__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
    padding: 70px 0;
}



.delivery-stage__content > p {
  margin-bottom: 0;


}

.delivery-milestones {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.25);
  list-style: none;
}

.delivery-milestones li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-block: 1.1rem;
  border-bottom: 0.0625rem solid #d4d4d485;
}

section.error-404.our_new_sec .error-404__image i {
    font-size: 130px;
    color: var(--color1);
}

.delivery-milestones li > span {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.3rem;
  border: 0.125rem solid var(--color1);
  border-radius: 50%;
}

.delivery-milestones li > div {
  display: grid;
  gap: 0.2rem;
}

.delivery-milestones strong {

  line-height: 1.3;
}

.delivery-milestones small {
  font-size: 14px;
  line-height: 1.45;
}

.how-factors__heading {
  align-items: end;
}

.how-factors__heading > p {
  max-width: 35rem;
  margin-bottom: 0;
  color: #000;
}

.how-factors__grid {
  display: grid;
  gap: 0;
  border-top: 0.0625rem solid var(--color-border);
}

.how-factors__grid article {
  position: relative;
  display: grid;
  min-height: 13rem;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 0.8rem;
  padding: 1.5rem 0;
  border-bottom: 0.0625rem solid var(--color-border);
}

.how-factors__grid article > span {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  border: 0.0625rem solid var(--color1);
  border-radius: 1rem;
  color: var(--color1);
  place-items: center;
}

.how-factors__grid svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.how-factors__grid h3 {
  grid-column: 1 / -1;
  align-self: end;
  margin-bottom: 0;
  font-size: 1.25rem;
}

.how-factors__grid small {
  grid-column: 1 / -1;
  color: #000;
  font-size: 0.84rem;
  line-height: 1.5;
}

.how-expectations__heading {
  max-width: 50rem;
  margin-bottom: 2.25rem;
}

.how-expectations__heading h2 {
  max-width: 15ch;
}

.how-expectations__heading > p:last-child {
  max-width: 44rem;
  color: #000;
  font-size: 1.05rem;
}

.how-expectations__grid {
  display: grid;
  overflow: hidden;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
}

.how-expectations__panel {
  position: relative;
  padding: 1.5rem;
}

.how-expectations__panel--confirmed {
  background:#fff;
}

.how-expectations__panel--variable {
  background: var(--color-primary);
  color: #d0dde5;
}

.how-expectations__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  border: 0.0625rem solid var(--color1);
  border-radius: 50%;
  color: var(--color1);
  place-items: center;
}

.how-expectations__panel--variable .how-expectations__icon {
  color: var(--color1);
}

.how-expectations__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.how-expectations__panel h3 {
  max-width: 16ch;
  margin-bottom: 1.25rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.how-expectations__panel--variable h3 {
  color:#fff;
}

.how-expectations__panel ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.how-expectations__panel li {
  padding-block: 0.8rem;
  border-top: 0.0625rem solid var(--color-border);
  color: #000;
  font-size: 0.88rem;
}

.how-expectations__panel--variable li {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.how-service-paths__grid {
  display: grid;
  gap: 1rem;
}

.how-service-path {
  overflow: hidden;
  border-radius: var(--theme-radius);
  background:#fff;
}

.how-service-path picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.how-service-paths__grid .how-service-path img {
  height: auto;
}

.how-service-path img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.how-service-path:hover img {
  transform: scale(1.018);
}

.how-service-path__body {
  padding: 1.5rem;
}

.how-service-path--commercial .how-service-path__body {
  background: var(--color-primary);
  color: #d2dee6;
    height: 100%;
}

.how-service-path--vehicle .how-service-path__body {
  background: var(--color1);
  color: var(--color2);
}

.how-service-path h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.how-service-path--commercial h3 {
  color:#fff;
}

.how-service-path--vehicle h3 {
  color: var(--color2);
}

.how-service-path--vehicle .eyebrow {
  color: var(--color2);
}

.how-service-path__links {
  display: grid;
  border-top: 0.0625rem solid currentColor;
}

.how-service-path__links a {
  display: grid;
  min-height: 3.25rem;
  grid-template-columns: minmax(0, 1fr) 1.2rem;
  gap: 0.75rem;
  align-items: center;
  border-bottom: 0.0625rem solid currentColor;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.how-service-path--commercial .how-service-path__links {
  border-color: rgba(255, 255, 255, 0.22);
}

.how-service-path--commercial .how-service-path__links a {
  border-color: rgba(255, 255, 255, 0.22);
  color:#fff;
}

.how-service-path--vehicle .how-service-path__links,
.how-service-path--vehicle .how-service-path__links a {
  border-color: rgba(6, 24, 39, 0.22);
}

.how-service-path__links svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--transition-fast);
}

.how-service-path__links a:hover svg {
  transform: translateX(0.2rem);
}

.how-faq__grid {
  display: grid;
  gap: 2.5rem;
}

.how-faq header {
  max-width: 38rem;
}

.how-faq header h2 {
  max-width: 15ch;
}

.how-faq header > p:not(.eyebrow) {
  color: #000;
}

.how-faq .faq-list summary {
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  gap: 1rem;
}



.how-final-cta .final-cta__inner > div:first-child {
  max-width: 52rem;
}

.how-final-cta .final-cta__inner > div:first-child > p:last-child {
  max-width: 45rem;
  margin: 1rem 0 0;
  color: #c9d8e2;
}

@media (min-width: 36rem) {
  .how-hero__actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .how-hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stage-checklist,
  .pickup-responsibilities,
  .plan-review-list,
  .how-factors__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-checklist li:nth-child(odd),
  .how-factors__grid article:nth-child(odd) {
    padding-right: 1rem;
  }

  .stage-checklist li:nth-child(even),
  .how-factors__grid article:nth-child(even) {
    padding-left: 1rem;
    border-left: 0.0625rem solid var(--color-border);
  }
}

@media (min-width: 48rem) {
  .how-hero__grid {
    padding-block: 4.5rem 2.5rem;
  }

  .how-hero__media {
    min-height: 31rem;
  }

  .how-expectations__grid,
  .how-service-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-expectations__panel,
  .how-service-path__body {
    padding: 2rem;
  }

  .how-factors__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .how-factors__grid article {
    padding: 1.75rem;
    border-left: 0.0625rem solid var(--color-border);
  }

  .how-factors__grid article:nth-child(3n + 1) {
    border-left: 0;
  }
}

@media (min-width: 64rem) {
  .how-hero__grid {
    grid-template-columns: minmax(25rem, 0.78fr) minmax(0, 1.22fr);
    gap: 3.5rem;
    align-items: stretch;
    min-height: 42rem;
    padding-block: 4.75rem;
  }

  .how-hero__content {
    align-self: center;
  }

  .how-hero h1 {
    max-width: 14ch;
    font-size: 60px;
  }

  .how-hero__media {
    min-height: 32rem;
  }

  .how-hero__media img {
    position: absolute;
    inset: 0;
  }

  .how-hero__media figcaption {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .process-nav .container {
    display: grid;
    grid-template-columns: 10rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    padding-block: 1.5rem;
  }

  .process-nav__label {
           margin-bottom: 0;
        font-size: 18px;
        color: #000;
        line-height: 25px;
    }

  .process-nav__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-nav__list::before {
    top: 25%;
    right: calc(12.5% - 1.5rem);
    bottom: auto;
    left: calc(12.5% - 1.5rem);
    width: auto;
    height: 0.0625rem;
  }

  .process-nav__list a {
    min-height: 7.75rem;
    grid-template-columns: 1fr;
    grid-template-rows: 3rem auto;
    gap: 0.8rem;
    justify-items: center;
    padding: 0.75rem;
    text-align: center;
  }

  .process-nav__list small {
    max-width: 15rem;
  }

  .how-stage__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
    gap: clamp(3rem, 6vw, 2rem);
  }

  .how-stage__grid--media-first {
    grid-template-columns: minmax(24rem, 0.95fr) minmax(0, 1.05fr);
  }

  .how-stage__grid--media-first .how-stage__content {
    order: initial;
  }

  .how-stage__media picture,
  .how-stage__media--technical picture {
    min-height: 38rem;
    aspect-ratio: auto;
  }

  .how-stage--pickup .how-stage__media picture {
    min-height: 45rem;
  }

  .delivery-stage__inner {
    grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(4rem, 8vw, 4rem);
    align-items: center;
  }

  .delivery-stage__scrim {
    background: linear-gradient(90deg, rgba(6, 24, 39, 0.95) 0%, rgba(6, 24, 39, 0.78) 52%, rgba(6, 24, 39, 0.63) 100%);
  }

  .how-factors__heading {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.7fr);
  }

  .how-expectations__panel {
    min-height: 35rem;
    padding: 3rem;
  }

  .how-service-path picture {
    aspect-ratio: 16 / 9;
  }

  .how-faq__grid {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    gap: 5rem;
    align-items: start;
  }

  .how-faq header {
    position: sticky;
    top: 8rem;
  }
}

@media (min-width: 80rem) {
  .how-hero__grid {
    grid-template-columns: minmax(31rem, 0.84fr) minmax(0, 1.16fr);
    gap: 4rem;
  }

  .how-factors__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .how-factors__grid article,
  .how-factors__grid article:nth-child(3n + 1) {
    border-left: 0.0625rem solid var(--color-border);
  }

  .how-factors__grid article:first-child {
    border-left: 0;
  }
}

@media (max-width: 25rem) {
  .how-hero h1 {
    font-size: 2.35rem;
  }

  .stage-outcome {
    grid-template-columns: 1fr;
  }

  .how-hero__media figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .how-hero__media figcaption strong {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-service-path img,
  .how-service-path__links svg,
  .process-nav__number {
    transition: none;
  }

  .how-service-path:hover img,
  .how-service-path__links a:hover svg {
    transform: none;
  }
}

@media (forced-colors: active) {
  .process-nav__number,
  .how-stage__media,
  .plan-review-list article,
  .pickup-responsibilities article,
  .how-expectations__panel,
  .how-service-path {
    border: 0.125rem solid CanvasText;
  }
}


/* About page */
.about-hero {
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  background:
    radial-gradient(circle at 88% 14%, rgba(242, 138, 26, 0.14), transparent 28rem),
    var(--color2);
  color: rgba(255, 255, 255, 0.78);
}

.about-hero__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about-hero__content {
  max-width: 43rem;
}

.about-hero h1 {
  max-width: 43rem;
  margin-bottom: 1.5rem;
  color:#fff;
  font-size: 60px;
  letter-spacing: -0.057em;
  line-height: 0.99;
  text-wrap: balance;
}

.about-hero__lead {
  max-width: 39rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.about-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  border-radius: var(--theme-radius);
  background: var(--color-primary);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.about-hero__media picture,
.about-hero__media img {
  display: block;
  width: 100%;
}

.about-hero__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-hero__media::after {
  position: absolute;
  inset: 0 0 4.6rem;
  background: linear-gradient(180deg, transparent 58%, rgba(6, 24, 39, 0.54));
  content: "";
  pointer-events: none;
}

.about-hero__media figcaption {
  position: relative;
  z-index: 1;
  min-height: 4.6rem;
  margin: 0;
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
}

.about-scope__grid {
  display: grid;
  gap: 1rem;
}

.about-scope-card {
  padding: 15px;
  border: 0.0625rem solid var(--color-border);
  border-radius: var(--theme-radius);
  background: var(--color-background);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.about-scope-card:hover {
  border-color: #b8c6cf;
  background:#fff;
}

section.about-scope.section .about-scope__grid article.about-scope-card i {
    background: var(--color1);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: var(--theme-radius);
}
article.about-service-path.about-service-path--orange img {
    width: 100%;
}
article.about-service-path.about-service-path--navy img {
    width: 100%;
}
.about-scope-card > i {
    width: 2rem;
    height: 2rem;
    margin-bottom: 20px;
    color: var(--color1);
    font-family: 'FontAwesome';
}

.about-scope-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.about-scope-card p {
  margin-bottom: 0;
  color: #000;
  font-size: 0.9375rem;
}

.about-approach {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 55%),
    var(--color-primary);
  color: rgba(255, 255, 255, 0.74);
}

.about-approach__grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: start;
}

.about-approach__intro h2 {
  max-width: 39rem;
  margin-bottom: 1.25rem;
  color:#fff;
}

.about-approach__intro > p:not(.eyebrow) {
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

.about-principles {
  display: grid;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.about-principles article {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.16);
}

.about-principles__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  border: 0.0625rem solid rgba(242, 138, 26, 0.65);
  border-radius: 50%;
  color: var(--color1);
  place-items: center;
}

.about-principles__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.about-principles h3 {
  margin-bottom: 0.35rem;
  color:#fff;
  font-size: 1.125rem;
}

.about-principles p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9375rem;
}

.about-services__grid {
  display: grid;
  gap: 1.25rem;
}

.about-service-path {
  overflow: hidden;
  border-radius: var(--theme-radius);
}

.about-service-path picture,
.about-service-path picture img {
  display: block;
  width: 100%;
}

.about-service-path picture img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 360ms ease;
}

.about-service-path:hover picture img {
  transform: scale(1.018);
}

.about-service-path__body {
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.about-service-path h3 {
  margin-bottom: 1.25rem;
  color: inherit;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
color: #fff;
}

.about-service-path nav {
  display: grid;
  border-top: 0.0625rem solid currentColor;
}

.about-service-path nav a {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 0.0625rem solid currentColor;
  font-size: 0.9375rem;
  font-weight: 750;
  text-decoration: none;
}

.about-service-path nav a svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--transition-fast);
}

.about-service-path nav a:hover svg {
  transform: translateX(0.2rem);
}

.about-service-path--navy {
  background: var(--color-primary);
  color:#fff;
}

.about-service-path--navy nav {
  border-color: rgba(255, 255, 255, 0.22);
}

.about-service-path--navy nav a {
  border-color: rgba(255, 255, 255, 0.22);
}

.about-service-path--orange {
  background: var(--color1);
  color: var(--color2);
}

.about-service-path--orange .eyebrow {
  color: #fff;
}

.about-service-path--orange nav {
  border-color: rgba(6, 24, 39, 0.24);
}

.about-service-path--orange nav a {
  border-color: rgba(6, 24, 39, 0.24);
    color: #fff;
}

.about-audiences__layout {
  display: grid;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.about-audiences__layout header h2 {
  max-width: 37rem;
  margin-bottom: 1.25rem;
}

.about-audiences__list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 0.0625rem solid #b9c5cd;
  list-style: none;
}

.about-audiences__list li {
  display: grid;
  gap: 0.2rem;
  padding-block: 1.1rem;
  border-bottom: 0.0625rem solid #b9c5cd;
}

.about-audiences__list span {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 750;
}

.about-audiences__list small {
  color: #000;
  font-size: 0.875rem;
}

/* Contact page */
.contact-hero {
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  background: var(--color2);
  color: #fff;
}

.contact-hero__grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.contact-hero__content {
  max-width: 46rem;
}

.contact-hero h1 {
  margin-bottom: 1.25rem;
  color:#fff;
  font-size: 60px;
  line-height: 1;
  text-wrap: balance;
}

.contact-hero__content > p:last-child {
  max-width: 39rem;
  margin-bottom: 0;
  font-size: 16px;
}

.contact-hero__media,
.error-hero__media {
  margin: 0;
  overflow: hidden;
  border: 0.0625rem solid rgba(255, 255, 255, 0.14);
  border-radius: var(--theme-radius);
  background: var(--color-primary);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.28);
}

.contact-hero__media picture,
.contact-hero__media img,
.error-hero__media picture,
.error-hero__media img {
  display: block;
  width: 100%;
}

.contact-hero__media img,
.error-hero__media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.contact-routes {
  padding-block: clamp(2rem, 5vw, 4rem);
  background:#fff;
}

.contact-routes__grid {
  display: grid;
  gap: 1rem;
}

.contact-route {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--theme-radius);
}

.contact-route--quote {
  background: var(--color-primary);
  color: #fff;
}

.contact-route--general {
  border: 0.0625rem solid var(--color-border);
  background: var(--color-background);
  color: #000;
}

.contact-route__icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--color1);
  color: var(--color2);
  place-items: center;
}

.contact-route__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-route h2 {
  max-width: 32rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.contact-route--quote h2 {
  color:#fff;
}

.contact-route p:not(.eyebrow) {
  max-width: 35rem;
  margin-bottom: 1.25rem;
}

.contact-main__grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.contact-form-panel {
  min-width: 0;
  padding: 25px;
  border: 0.0625rem solid var(--color-border);
  border-top: 0.25rem solid var(--color1);
  border-radius: var(--theme-radius);
  background:#fff;
}

.contact-form-panel__header {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.contact-form-panel__header h2 {
  margin-bottom: 0.8rem;
}

.contact-form-panel__header > p:last-child {
  margin-bottom: 0;
  color: #000;
}

.contact-form__grid {
  display: grid;
  gap: 0 1rem;
}

.contact-form .field {
  margin-bottom: 0.9rem;
}

.contact-form .field label {
  display: flex;
  min-height: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
  font-size: 0.8125rem;
}

.field__optional {
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
  border: 0.0625rem solid #aebbc5;
  border-radius: 0.625rem;
  outline: 0;
  background:#fff;
  color: var(--color-text);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form .field textarea {
  min-height: 10rem;
  resize: vertical;
  line-height: 1.55;
}

.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.1875rem rgba(242, 138, 26, 0.28);
}

.contact-form .field.is-invalid input,
.contact-form .field.is-invalid select,
.contact-form .field.is-invalid textarea {
  border-color: var(--color-error);
  box-shadow: 0 0 0 0.125rem rgba(180, 35, 24, 0.11);
}

.contact-form .field__error {
  min-height: 1.25rem;
  margin-bottom: 0;
}

.field__help,
.field__meta p {
  margin: 0;
  color: #000;
  font-size: 0.75rem;
}

.field__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
}

.contact-form__privacy {
  max-width: 43rem;
  margin-bottom: 1.25rem;
  color: #000;
  font-size: 0.8125rem;
}

.contact-form__privacy a {
  color: var(--color-primary);
  font-weight: 700;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
}

.contact-form__status {
  margin: 0;
  color: var(--color-error);
  font-size: 0.8125rem;
  font-weight: 650;
}

.contact-form__error-summary {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border: 0.125rem solid var(--color-error);
  border-radius: var(--theme-radius);
  background: #fff4f2;
}

.contact-form__error-summary h3 {
  margin-bottom: 0.5rem;
  color: #8a1c15;
  font-size: 1rem;
}

.contact-form__error-summary ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.2rem;
}

.contact-form__error-summary a {
  color: #8a1c15;
  font-size: 0.8125rem;
  font-weight: 700;
}

.contact-success {
  padding-block: clamp(2rem, 6vw, 4rem);
  text-align: center;
}

.contact-success__icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #e9f7f0;
  color: var(--color1);
  place-items: center;
}

.contact-success__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-success p {
  max-width: 38rem;
  margin-inline: auto;
  color: #000;
}

.contact-success > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.contact-prep {
      padding: 25px;
    border-radius: var(--theme-radius);
    background: #fff;
    border-top: 4px solid var(--color1);

}
.contact-prep h3{
     line-height: 35px;

}

.contact-prep__icon {
 display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 17px;
    border-radius: var(--theme-radius);
    background: var(--color1);
    color: #fff;
    place-items: center;
}

.contact-prep__icon svg,
.contact-prep li svg {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-prep h2 {
  margin-bottom: 1.25rem;
  color:#fff;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.contact-prep ul {
  display: grid;
  gap: 0;
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.17);
  list-style: none;
}

.contact-prep li {
      display: flex;
    min-height: 3.75rem;
    grid-template-columns: 1.5rem minmax(0, 1fr);

    align-items: center;
    border-bottom: 1px solid #d4d4d47d;
}

.contact-prep li i {
    width: 35px;
    height: 35px;
    background: var(--color1);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 14px;
    border-radius: var(--theme-radius);
}

.contact-faq__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-faq__grid > header h2 {
  max-width: 32rem;
}

.contact-faq .faq-list summary {
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  gap: 1rem;
  cursor: pointer;
}


.resource-card h3 a {
    text-decoration: none;
}

.utility-bar p img {
    width: 30px;
    border-radius: 2px;
}
.rating_banner {
    display: flex;
    align-items: center;
    gap: 5px;
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    margin-bottom: 1.65rem;
}
.sidebar-search-box .field {
    margin-bottom: 15px;
}
.sidebar_rating p.rating_num {
    font-size: 50px;
    font-weight: 800;
    font-family: 'Manrope';
    margin: 0;
}
.rating_right p {
    margin: 0;
}

.sidebar_rating {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sidebar_rating p img {
    margin: auto;
}
section.how-factors.section.section--muted {
    padding-bottom: 0;
}
section.how-expectations.section {
    padding-bottom: 0;
}
section.how-service-paths.section.section--muted {
    padding-bottom: 0;
}
.equipment-field-guide--approved .equipment-timeline__icon img {
    width: 100%;
    height: auto;
}


/*form css*/


.field-label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.sidebar-search-box .quote-starter .field-label {
    margin-bottom: 0;
}
.field-label .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.origin-icon {
  background: #4CAF50;
}

.destination-icon {
  background: #f44336;
}

.field-label label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.autocomplete-wrapper {
  position: relative;
}

.zip-input {
    border: none;
margin-left: 10px;
}

.zip-input:focus {
  outline: none;
  box-shadow: none;
}

.suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 6px 6px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
}

.suggestion-item:hover {
  background-color: #f0f7ff;
}

.suggestion-item.highlighted {
  background-color: #e3f0ff;
  border-left: 3px solid #4a90e2;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item .location-text {
  font-weight: 500;
  color: #333;
  font-size: 14px;
  flex: 1;
}

.suggestion-item .city {
  font-weight: 600;
  color: #333;
}

.suggestion-item .separator {
  color: #999;
  margin: 0 6px;
}

.suggestion-item .state {
  color: #666;
  font-weight: 500;
}

.suggestion-item .zip-code {
  background: var(--color1);
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  min-width: 50px;
  text-align: center;
  margin-left: 10px;
}

/*.error {*/
/*  color: #e74c3c;*/
/*  font-size: 12px;*/
/*  margin-top: 5px;*/
/*  display: block;*/
/*  min-height: 18px;*/
/*}*/
.field__control label {
    display: none !important;
}
.autocomplete-wrapper.field__control:has(input.error) {
    border: 1px solid red;
    border-radius: 6px;
}
/* Input Wrapper */
.autocomplete-wrapper.field__control:has(input.error) {
    border: 1px solid red;
    border-radius: 8px;
}

/* Select Wrapper */
.field__control:has(select.error) {
    border: 1px solid red;
    border-radius: 8px;
}

/* Input ka border remove */
.autocomplete-wrapper.field__control input.error {
    border: none !important;
    box-shadow: none !important;
}

/* Select ka border remove */
.field__control select.error {
    border: none !important;
    box-shadow: none !important;
}
.no-results {
  padding: 15px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.suggestions-header {
  padding: 8px 15px;
  background: #f8f9fa;
  font-size: 12px;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.suggestions-header .count {
  font-weight: 600;
  color: #051c2f;
}
.home_form form#ewebcontact_id {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}
.zip-code-lookup .form-control {
    border: none;
    margin-left: 0;
}
.form-control:focus{
    box-shadow: none !important;
}

/*form css*/


    .service-details__content.inner_content ul li::before {
    font-family: 'FontAwesome';
    content: "\f105";
    font-weight: 400;
    display: inline-block;
    margin-right: 0;
    color: #fff;
    position: absolute;
    left: 0;
    background: var(--color1);
    height: 19px;
    width: 19px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 14px;
    top: 6px;
}

.service-details__content.inner_content ul {
    padding-left: 7px;
}

    .service-details__content.inner_content ul li {
        list-style: none;
        color: #000;
        margin-bottom: 10px;
        position: relative;
        padding-left: 30px;
    }











@media (max-width:1023px){
footer.site-footer{
margin-bottom: 66px;}

}
@media (max-width:991px){
    .desktop-img{
        display:none;
    }
    .our-service-one-ul {
    column-count: 2 !important;
}
    .mobile-img{
        display:block;
    }
    .hero__media_mbl img {
    border-radius: var(--theme-radius);
    margin-top: 20px;
}
}

.container.hero__stage .hero__content .mbil-btn {
    display: none;
}


@media (max-width:767px){
    
    .page-header.mx-height {
    min-height: 150px;
}
span.error {
    color: #fff;
}
.sidebar__single.contact-us .title h3.sidebar__title {
    color: #fff !important;
}
.resource-card p {
    margin-bottom: 2px;
    color: #000;
    font-size: 16px;
}
.final-cta__inner {
  gap: 10px;
}
.container.hero__stage .hero__content .mbil-btn {
    display:block;
    margin-top:15px;
}
.container.hero__stage .hero__content .mbil-btn a {
    width: 100%;
}

.author-card{
    padding:20px!important;
        text-align: center;
}
.author-image {
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
}
.author-content {
    padding-left: 0;
}

.author-name {
    font-size: 26px;
}
.author-bio{
    margin-bottom:1rem!important;
}

.cta-buttons {
    justify-content: center;
}

.author-subtitle {
    font-size: 16px;
}

section.th-blog-wrapper.blog-details.space-top.space-extra-bottom {
    padding: 40px 0;
}

.hero__proof {
    margin-top:15px!important;
}
.hero__media_mbl {
    aspect-ratio: 385 / 257;
    background: #fff;
    border-radius: var(--theme-radius);
}

.rofiex-breadcrumb li{
        font-size: 12px;
}
    .sidebar__single.contact-us .title h3.sidebar__title, .sidebar__single.contact-us .title p {
        color: #fff !important;
    }
    .our-service-one-ul {
    column-count: 1 !important;
}
.contact-hero {
    padding: 20px 0;
}
section.contact-hero .container {
    padding: 0;
}
.contact-hero__grid {
    gap: 20px;
}
section.about-hero .container.about-hero__grid {
    padding: 0;
    gap: 20px;
}
section.about-hero .about-hero__actions {
    display: none;
}
section.about-hero .about-hero__lead {
    margin: 0;
}
section.how-hero .container.how-hero__grid {
    padding: 20px 0;
}
section.how-hero .how-hero__actions {
    display: none;
}
section.how-hero ul.how-hero__proof {
    display: none;
}
section.how-hero .how-hero__lead {
    margin: 0;
}
section.how-hero h1#how-hero-title {
    margin-bottom: 15px;
}
.industries-hero__content ul.industries-hero__proof {
    display: none;
}
.contact-hero h1 {
    margin-bottom: 1rem;
    font-size: 40px;
}
section.about-hero {
    padding: 20px 0;
}
.container.site-footer__bottom {
    padding: 10px 0 !important;
}
.industry-directory .container {
    padding: 20px 0;
}
section#industry-solutions .container {
    padding: 0;
}
section.industry-group.industry-group--vehicle {
    margin-top: 40px;
}
section.industry-review.section.section--dark .container.industry-review__grid {
    padding: 0;
}
.final-cta h2 {
    font-size: 28px;
}
section.industry-operations.section .container.industry-operations__grid {
    padding: 0;
}
.section .container {
    padding: 0;
}
.industries-hero__actions {
    display: none;
}
p.industries-hero__lead {
    display: none;
}
.industries-hero h1 {
    max-width: max-content;
    margin-bottom: 1rem;
    color:#fff;
    font-size: 2.5rem;
}
.industries-hero__grid {
    gap: 10px;
    padding: 20px 0;
}
section.service-details.our_new_sec.bg-white .container {
    padding: 0;
}
.sidebar__single {
    padding: 15px;
}
.rofiex-breadcrumb li a {
    font-size: 12px;
}
.site__brd {
    margin-bottom: 0;
}
section.hero.inr_bnr .hero__actions {
    display: none;
}
section.our_new_sec {
    padding: 40px 0;
}
.page-header__title {
    font-size: 36px;
}
    .inner_content h2 {
    font-size: 28px;
        margin-bottom: 10px;
}
.home_form form#ewebcontact_id {
    display: block;
}
.field.field--category {
    margin-bottom: 10px;
}
.inner_content h3 {
    font-size: 24px;
        margin-bottom: 10px;
}
    .service-sidebar {
    padding-top: 30px;
}
p.mbl_p {
    display: block;
        margin-bottom: 10px;
                color: #000;
    }
    
    .hero::before {
    background: var(--color-background)!important;
}

.service-sidebar.sidebar .sidebar__single.contact-us {
    background: none !important;
}
section.section.path-section h2#video-story-title {
    text-align: left;
}
    .sidebar__single.contact-us {
        background: var(--color2) !important;
        border-radius: var(--theme-radius) !important;
    }
    .sidebar__single.contact-us .title p.sidebar__title span {
    color: #fff!important;
}

    section.contact-main.section.section--steel .sidebar__single.contact-us {
    background: #fff!important;
}

    section.contact-main.section.section--steel .contact-form-panel .quote-starter {
    box-shadow: none;
    border: none;
}

.score {
    font-size: 22px!important;
}
        .hero h1 {
        font-size: 30px !important;
        margin-bottom: 5px !important;
        line-height: 35px;
    }
    section.hero.home-bnr img.hero__media {
    object-fit: cover;
    display: none;
}
.review-badge{
                    gap: 7px!important;
        margin: auto!important;
        padding: 3px 6px!important;
}
.rating-brand img{
    width: 25px!important;
}
.rating {
    gap:7px!important;
    margin-left: 20px!important;
}
.stars {
    font-size: 16px!important;
    letter-spacing: 1px!important;
}
.count {
    font-size: 16px!important;
}
.zip-code-lookup {
    margin-bottom: 10px;
}
.sidebar__single.contact-us .sidebar-search-box button.button.button--primary.quote-starter__submit.w-100 {
    background: var(--color1)!important;
}
        .site-header__inner {
        padding: 0;
    }
    section.section.path-section .container {
    padding: 0;
}
section.section.section--steel.services-section .container {
    padding: 0;
}

section.section.section--navy.video-story .container {
    padding: 0;
}
section.section.load-helper .container {
    padding: 0;
}
.process-section__inner {
    padding: 40px 0;
}
section.section.section--navy.outcomes-section .container {
    padding: 0;
}
section.section.industries-section .container {
    padding: 0;
}
section.section.section--steel.coverage-section .container {
    padding: 0;
}
section.section.resources-section .container {
    padding: 0;
}
section.section.section--steel.faq-section .container {
    padding: 0;
}
footer.site-footer {
           padding-top: 40px;
        padding-bottom: 20px;
    }
footer.site-footer .container {
    padding: 0px;
    gap: 15px;
            margin-top: 22px;
}
.load-helper__body {
    padding: 15px;
    background: var(--color2);
}
.final-cta {
    padding: 40px 0;
}
.final-cta .container {
    padding: 0;
}
    .utility-bar a {
    display: none;
}
.equipment-field-guide__visual {
    min-height: 0 !important;
}
.equipment-field-guide--approved .equipment-field-guide__copy {
        padding-bottom: 30px !important;
        padding: 0;
    }
    .equipment-field-guide--approved .equipment-field-guide__dossier {
    margin: 0;
}
.equipment-field-guide--approved .equipment-field-guide__copy > p:not(.eyebrow) {
    margin-bottom: 15px;
}
.outcomes-grid article {
    min-height: 10rem;
}
.outcomes-grid span {
    margin-bottom: 15px;
}
.industries-grid a {
    min-height: 12rem;
}
.equipment-field-guide--approved .equipment-field-guide__copy h2 {
    margin-bottom: 15px;
}
section.section.equipment-section picture.equipment-field-guide__media {
    display: none;
}
    .hero h1 {
        font-size: 33px!important;
        margin-bottom: 10px !important;
        line-height: 45px!important;
    }
.rating_banner {
    font-size: 12px;
        margin-bottom: 12px;
    }
section.hero.home-bnr .hero__content ul.hero__proof {
    display: none;
}
section.hero.home-bnr .hero__content .hero__actions a.hero__secondary {
    display: none;
}
p.hero__lead {
    display: none;
}
.coverage-grid {
    display: flex;
    flex-direction: column-reverse;
}
.section {
    padding: 40px 0;
}
.hero__stage {
    padding: 50px 0;
        gap: 20px;
            flex-direction: column;
                    text-align: center;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 35px;
}
    .rating_banner {
        justify-content: center;
    }
    .sidebar__single.contact-us{
        width:100%!important;
        min-width:100%!important;
    }
}

@media (max-width:576px){
    .eyebrow {
    margin-bottom: 5px;
    }
    .video-story__media figcaption {
    padding: 15px 15px;
    
    }
    
    .delivery-stage__inner {
    gap: 0.5rem!important;
}
    .feature-bar > .feature-item:nth-of-type(2), .rating-badge {
    display: none !important;
}
.blog-meta.col-lg-6 {
    font-size: 13px;
}

.blog-content .col-sm-auto {
    justify-content: start;
    margin-top: 15px;
}

section.th-blog-wrapper.blog-details.space-top.service_single_area.space-extra-bottom .col-lg-8 {
    padding: 0px;
}
.load-result__icon{
        width: 3.25rem;
    height: 3.25rem;
}
.load-result__icon svg {
    width: 2rem;
    height: 2rem;
}
.video-story__player {
height: 250px!important;
}
    .container.utility-bar__inner p.left-top-bar {
    display: none;
}
.utility-bar p {
  
    letter-spacing: 1.5px;
    font-weight: 500;
    font-size: 13px;
}
.utility-bar__inner{
        justify-content: center;
}
        .hero h1 {
        font-size: 30px!important;
        margin-bottom: 5px !important;
        line-height: 35px!important;
    }
    section.hero.home-bnr img.hero__media {
    object-fit: cover;
    display: none;
}
.hero__scrim {
    background: #fff;
    opacity: inherit;
}
    .sidebar__single.contact-us{
                border-radius: var(--theme-radius)!important;
    }
    .sidebar__single.contact-us .title h3.sidebar__title, .sidebar__single.contact-us .title p {
    color: #fff!important;
    }
    .menu-toggle{
        background:var(--color1)!important;
    }
        .hero__stage {
        padding: 25px 0 35px;
}
    .brand__logo-crop--color {
        width: 165px!important;
    }
}

.contact-form-panel .quote-starter {
    box-shadow: none;
    border-left: 1px solid #f7f7f7;
    border-right: 1px solid #f7f7f7;
    border-bottom: 1px solid #f7f7f7;
}

@media (max-width:460px){
section.hero.inr_bnr a.hero__secondary {
    display: none;
}
.rating_banner img {
    width: 80px;
}

.load-helper__intro .eyebrow--light {
        text-transform: capitalize;
        margin-bottom: 10px;
        color: #fff;
        background: #000;
        padding: 5px;
        width: max-content;
        border-radius: 5px;
    }

.eyebrow--light {
        text-transform: capitalize;
        margin-bottom: 10px;
        color: var(--color1);
    }
    .brand__logo-crop--color {
    width: 190px;
}

.video-story__play-content {
    border: none;
    background: none;
    box-shadow: none;
}
section.hero.home-bnr .hero__actions {
    display: none;
}




}























.sidebar__single.contact-us .title h3.sidebar__title {
      color: var(--color2);
    text-align: center;
    margin: 0 auto 3px;
    display: flex;
    justify-content: center;
    padding: 0;
    font-size: 25px;
}
.sidebar__single.contact-us .title p {
    color: #000;
}
.sidebar__single.contact-us {
    width: 400px;
    min-width: 400px;
    border: 1px solid #ffffffe6;
    background: #ffffffe6;
    text-align: center;
        padding: 20px;
}
.quote-starter .field__control {
    background: transparent !important;
}
.quote-starter input{
    background: transparent !important;
}
    .hero__scrim {
        background: #000;
        opacity: 0.45;
    }
    
    .services-slider .item,
.services-slider article {
    padding: 12px;
}

.services-slider .owl-stage {
    display: flex;
}

.services-slider .owl-item {
    display: flex;
}

.services-slider .path-card {
    height: 100%;
}

.services-slider .owl-nav {
    margin-top: 25px;
    text-align: center;
}

.services-slider .owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: #f5f5f5 !important;
    margin: 0 6px;
    font-size: 18px !important;
    transition: .3s;
}

.services-slider .owl-nav button:hover {
    background: var(--color1) !important;
    color: #fff !important;
}

.services-slider .owl-dots {
    margin-top: 20px;
}

.services-slider .owl-dot span {
    width: 10px;
    height: 10px;
}

.services-slider .owl-dot.active span {
    background: var(--color1) !important;
}



.shipping-content .shipping-card {
    display: flex;
    align-items: center;
            border: 1px solid #00000024;
    padding:10px;
    margin-bottom:10px;
    border-radius:var(--theme-radius)
}
.shipping-content .shipping-card i {
   width:40px;
    height:40px;
    background:var(--color2);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:var(--theme-radius);
    margin-right:14px;
     min-width:40px;
    min-height:40px;
}

.shipping-content .shipping-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 4px;
}

.shipping-content .shipping-card p {
    margin:0px;
}

.feature-bar {display: flex;align-items: center;justify-content: space-between;background: var(--color2);margin: auto;gap: 10px;flex-wrap: wrap;}

.feature-bar .feature-item {display: flex;align-items: center;gap: 8px;/*flex: 1;*/}

.feature-bar .feature-item .icon {width: 40px;height: 40px;background: var(--color1);color: #fff;display: flex;align-items: center;justify-content: center;border-radius: 50%;font-size: 16px;flex-shrink: 0;}

.feature-bar .feature-item .text {
font-size: 14px;
line-height: 1.4;
font-weight:600;
color:#fff;
}



/* Divider (desktop) */
.divider {
width: 1px;
height: 40px;
background: #ccc;
}

.rating-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    background: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--theme-radius);
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.08);
    z-index: 10;
}

.rating-icon{
    width: 40px;
    height: 40px;
    border-radius:50%;
    background: var(--color1);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.rating-icon i{
    color:#fff;
    font-size: 15px;
}

.rating-content .title{
    margin:0;
    font-size: 16px;
    font-weight: 700;
    /* line-height:1; */
}

.rating-content p{
    margin: 0 0 0;
    font-size: 12px;
    color: #000;
    font-weight:500;
}

.owl-theme .owl-dots, .owl-theme .owl-nav{
    display:none;
}

@media(max-width:450px){

.hero__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.hero__proof strong {
    text-align: left;
}
    }

@media(max-width:767px){

    .rating-badge{
        top:15px;
        left:15px;
        padding:12px 16px;
        gap:12px;
    }
    .final-cta__actions{
        align-items: flex-start;
}
section.testi-wrap1.arrow-wrap {
    padding: 40px 0 !important;
}
.rofiex-breadcrumb {
    width: 100%;
    text-align: center;
    margin: auto;
    justify-content: center;
}
section.section.section--steel.faq-section .faq-grid .faq-intro h2#faq-title {
    margin-bottom: 15px;
}
.testi-body {
    margin: 6px!important;
}
    .quote-starter .field__control {
    background: #fff !important;
}
.shipping-content {
    margin-top: 15px;
}
.load-result.active {
    display: grid;
}
.process-list{
        margin: clamp(2rem, 8vw, 6.5rem) auto 0!important;
}
    .rating-icon{
        width:48px;
        height:48px;
    }

    .rating-icon i{
        font-size:20px;
    }

    .rating-content h4{
        font-size:20px;
    }

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

}

section#contact a.button.button--primary {
    background: #fff;
    color: var(--color2);
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap: 15px 15px;
}
.service-item{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius: var(--theme-radius);
    overflow:hidden;
    min-height: 60px;
    /* box-shadow:0 5px 18px rgba(0,0,0,.08); */
    box-shadow: 0 0 6px 0 #0002;
}

.service-icon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: var(--color1);
}

.service-title{
    padding: 0 13px;
    color: var(--color1);
    font-size: 16px;
    font-weight:500;
    text-decoration:none;
    transition:.3s;
    margin-bottom:0px;
}

a.service-item:hover p.service-title {
    color: var(--color2);
    text-decoration: underline;
}

section.process-section.section--steel {
    background: var(--color-background);
}

.service-grid .service-item .service-icon img{
    width: 38px;
    height: 38px;
    object-fit: contain;
    
}

.mbl_btns {
    display: none;
}

.sidebar__single.mt-0 .route-card
 {
    padding: 0;
    border: 0;
    background: transparent;
}

@media(max-width:991px){

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

}

@media(max-width:767px){

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

.mbl_btns_nav {
        display: flex;
        align-items: center;
    }
.site-footer__bottom div {
    width: 100%;
    justify-content: center;
}

section.our_new_sec {
    padding: 40px 0 20px !important;
}
section.hero.home-bnr .hero__actions {
        display: none;
    }
    
    .mbl_btns {
    display: block;
}
.mbl_btns a {
        padding: 13px 7px !important;
        font-size: 12px !important;
        min-height: 0;
        margin-right: 10px;
        min-width: 0;
    }
section.section.path-section .shipping-content {
    height: auto !important;
    padding-right: 0 !important;
}

section.section.path-section .row.align-items-start {
    flex-direction: column-reverse;
}
section#allservices .container {
    padding: 0;
}
section.testi-wrap1.arrow-wrap .container {
    padding: 0;
}
.eyebrow {
    text-transform: capitalize;
}
.process-nav__label {
    margin-bottom: 0;
}
.process-nav .container {
    padding-block: 20px 0;
}
.delivery-stage__inner {
    padding: 40px 0;
}
.how-factors__grid article {
    min-height: 10rem;
}
}


@media(max-width:400px){

.mbl_btns a {
        font-size: 10px !important;
        margin-right: 5px;
    }
        .site-header__inner {
        gap: 0.2rem;
    }

}



	a.button.button--primary.hero__primary {
		background: var(--color1);
		border-radius: var(--theme-radius);
		border: 1px solid var(--color1);
	}

	.hero__secondary {
		display: inline-flex;
		min-height: 3rem;
		align-items: center;
		padding: 10px 15px;
		border-radius: var(--theme-radius);
		gap: 0.55rem;
		border: none;
		color: var(--color2);
		font-size: 0.875rem;
		font-weight: 800;
		text-decoration: none;
		transition: border-color var(--transition-fast), color var(--transition-fast);
	}

	.hero__secondary:hover {
		color: var(--color2);
	}

	section.hero.home-bnr .hero__stage .hero__content p.eyebrow i {
		color: var(--color1);
	}

	.hero h1 span {
		color: var(--color1);
	}

	section.hero.home-bnr .hero__stage .hero__content p.eyebrow {
		color: var(--color2);
		margin-bottom: 5px;
	}

	.hero__lead {
		max-width: 37rem;
		margin-bottom: 18px;
		color: var(--color-text);
		font-size: 18px;
		line-height: 26px;
		text-shadow: none;
	}

	.hero__proof strong {
		color: var(--color-text);
		font-size: 13px;
		font-weight: 700;
		line-height: 1.35;
	}

	.hero__proof {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.9rem;
		padding-top: 1rem;
		border-top: 0.0625rem solid var(--color2);
	}

	.hero h1 {
		font-size: 55px;
		text-shadow: none;
	}

	.hero h1 {
		max-width: 42rem;
		margin-bottom: 15px;
		color: var(--color2);
		text-wrap: balance;
		line-height: 65px;
	}

	.review-badge {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 22px;
		width: fit-content;
		background: var(--color2);
		padding: 8px 10px;
		border-radius: var(--theme-radius);
		box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
	}

	.rating-brand img {
		height: auto;
		width: 28px;
		display: block;
	}

	.rating-brand {
		background: white;
		border-radius: 50%;
		padding: 3px;
		margin-right: -20px;
	}

	.divider {
		width: 1px;
		height: 36px;
		background: #e5e7eb;
	}

	.divider.divider-1 {
		margin-left: 20px;
	}

	.rating {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.score {
		font-size: 28px;
		font-weight: 700;
		color: #fff;
	}

	.stars {
		color: #FDBA12;
		font-size: 20px;
		letter-spacing: 2px;
	}

	.reviews {
		display: flex;
		flex-direction: column;
	}

	.count {
		font-size: 18px;
		font-weight: 700;
		color: #fff;
		line-height: 1;
	}

	.text {
		font-size: 10px;
		color: #fff;
		margin-top: 1px;
	}



	.sidebar__single.contact-us .title p.sidebar__title span {
		color: var(--color1);
	}

.sidebar__single.contact-us .title p.sidebar__title {
    margin-bottom: 0;
    font-size: 24px;
}
	.sidebar__single.contact-us .title h3.sidebar__title {
		font-weight: 900;
	}

	.sidebar__single.contact-us {
		border-radius: var(--theme-radius);
	}

	.field__control>svg:first-child {
		stroke: #000;
	}
	input::placeholder {
    color: #000 !important;
}

	.field__control>i {
		color: #000;
	}

	.sidebar__single.contact-us .title p {
		color: var(--color2);
		font-weight: 600;
	}
	section.our_brands {
    padding: 50px 0;
    background: var(--color2);
}
.brand-body {
    background: #fff;
    border-radius: var(--theme-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    transition: 0.3s;
    box-shadow: 0 0 6px 0 #0002;
}
section.our_brands h2#services-title {
    color: #fff;
}
.brand-body img {
    padding: 10px 30px;
    object-fit: contain;
}
	.brands-slider .owl-stage-outer {
    padding: 10px 0;
}
.testi-body {
		    margin: 10px;
    min-height: 380px;
    border-radius: var(--theme-radius);
    padding: 20px;
    position: relative;
    margin-bottom: 16px;
    box-shadow: 0 0 6px 0 #0002;

	}

	section.testi-wrap1.arrow-wrap {
		padding: 70px 0;
	}

	p.fr_gogle_review {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	p.fr_gogle_review :nth-child(1) {
		height: 20px;
		max-width: max-content;
	}

.testi-body p.fr_gogle_review img.gogle_icn {
    width: 50px;
    background: #f7f7f7;
    height: 50px;
    padding: 6px;
    border-radius: 50px;
    border: 1px solid #d4d4d44d;
}

	.testi-style1 .testi-text {
		color: #000;
		font-size: 15px;
		font-weight: 400;
		margin-bottom: 10px;
		text-align: left;
		font-style: italic;
	}

	.testi-body .testi-name {
		color: #000;
		font-size: 20px;
		font-weight: 500;
		margin: 0;
		text-align: left;
		display: flex;
		align-items: center;
		    position: absolute;
    bottom: 17px;
	}

	.author.testi-name span.yel {
		background: #ffab00;
	}

.author.testi-name span.blu {
    background: #2d2dd3;
}

.author.testi-name span.grn {
    background: green;
}

	.author.testi-name span {
		background: red;
		border-radius: 50px;
		padding: 10px;
		width: 50px;
		height: 50px;
		margin-right: 10px;
		color: #fff;
		display: flex;
		justify-content: center;
	}
	
	


.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 12px;
}

.site-footer__column a {
    position: relative;
    padding-left: 18px;
}

.contact-info-box .contact-info-item .contact-content a:before{
    content:unset !important;
}

.contact-info-box .contact-info-item .contact-content a{
    padding-left:0px;
}

.site-footer__column a::before {
    content: "\f054"; /* Font Awesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    font-size: 11px;
    color: #ffffff;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}
.contact-address {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
}
.contact-icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--color1);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 17px;
}

.contact-content {
  flex: 1;
  min-width: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

.contact-label {
  display: block;
  margin-bottom: 1px;
  color: #ffffff;
  font-weight: 600;
}

.contact-content a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: #d7e2ff;
}


section.section.path-section .shipping-content {
    height: 530px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right:20px;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--color2) transparent;
}

/* Chrome, Edge and Safari */
section.section.path-section .shipping-content::-webkit-scrollbar {
    width: 5px;
}

section.section.path-section .shipping-content::-webkit-scrollbar-track {
    background: transparent;
}

section.section.path-section .shipping-content::-webkit-scrollbar-thumb {
    background-color: var(--color2);
    border-radius: 10px;
}

section.section.path-section .shipping-content::-webkit-scrollbar-corner {
    background: transparent;
}
section.service-details.our_new_sec .service-sidebar.sidebar .sidebar__single {
    background: #f7f7f7;
    padding: 17px;
    border-radius: var(--theme-radius);
    border: 1px solid #d4d4d459;
}


section.service-details.our_new_sec .service-sidebar.sidebar .sidebar__single .sidebar-search-box .sidebar__single.contact-us {
    border: 0;
    padding: 0;
    width: 100%;
    min-width: 100%;
}


section.our_new_sec .service-sidebar.sidebar .sidebar-search-box .sidebar__single.contact-us h3, section.our_new_sec .service-sidebar.sidebar .sidebar-search-box .sidebar__single.contact-us p {
  display:none;
}


section.section.section--steel.faq-section .faq-grid .faq-intro h2#faq-title {
    margin-bottom: 30px;
}


ul.check-list.shipping {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:0px 24px;
}

.vehicle-types {
    padding: 70px 0;
    background: var(--color2);
}

section.vehicle-types .section-heading h2, section.vehicle-types .section-heading p {
    color: #ffff;
    margin:auto;
    max-width:100%;
}


section.vehicle-types .section-heading h2 {
    margin-bottom:15px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.vehicle-item {
    overflow: hidden;
    border: 1px solid #e1e5ea;
    border-radius: var(--theme-radius);
    background: #ffffff;
    text-align: center;
}

.vehicle-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    padding: 20px;
    background: #ffffff;
}

.vehicle-image img {
    width: 100%;
    max-width: 110px;
    height: 110px;
    object-fit: contain;
         /*filter: brightness(0) saturate(100%) invert(8%) sepia(30%) saturate(1765%) hue-rotate(175deg) brightness(94%) contrast(104%); */
    /*filter: brightness(0) saturate(100%) invert(61%) sepia(94%) saturate(1652%) hue-rotate(350deg) brightness(98%) contrast(90%);*/
    filter: brightness(0) saturate(100%);
}

.vehicle-item h3 {
    margin: 0;
    padding: 15px 10px;
    background: #eaf2fa;
    color: #111111;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
}
section.section.path-section.Statewide .section-heading p{
    max-width
}

section.section.path-section.Statewide .shipping-content .shipping-card {
  display: grid;
    gap: 12px;
    padding: 15px;
    min-height: 380px;
}

section.section.path-section.Statewide .shipping-content {
    width:100%;
    max-width:100%;
    padding-right: 0px!important;
    height: auto!important;

}
.shipping-content-map {
    border:1px solid #d4d4d4;
    border-radius: var(--theme-radius);
    padding:15px
}

section.section.path-section.Statewide .section-heading p {
    margin:auto;
    max-width:100%;
}

.shipping-content-map iframe {
    width: 100%;
    height: 343px;
    border-radius: var(--theme-radius);
}

section.section.path-section.Statewide .shipping-content .shipping-card h3 {
   font-size:23px;
       font-weight: 700;
           display: flex;
    align-items: center;
}

.location-cloud {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 6px;
    /* max-width: 900px; */
    margin: 0 auto;
}

section.section.path-section.Statewide .shipping-content .shipping-card ul.check-list {
    background: var(--color2);
    padding: 10px;
    color: #fff;
    border-radius: var(--theme-radius);
    font-size: 14px;
}

section.section.path-section.Statewide .shipping-content .shipping-card ul.check-list li:before{
    color:#fff;
}

.location-cloud span {
        display: inline-flex;
        align-items: center;
        /* gap: 7px; */
        padding: 5px 10px;
        border: 1px solid #d4d4d42e;
        border-radius: var(--theme-radius);
        background-color: #f4f4f4;
        font-size: 11px;
        font-weight: 500;
        transition: all 0.3s
}


.location-cloud span:hover {
    border-color: var(--color1);
    background: var(--color1);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(22, 119, 199, 0.25);
}

.mb-30{
    margin-bottom:30px;
}




section.our_new_sec {
    background: #f5f1efcc;
    padding: 70px 0;
}
.our-service-one-ul {
    list-style: none;
    padding-left: 0;
    column-count: 3 ;
}
.our-service-one-ul li {
    background-color: #fff;
    box-shadow: 0 0 10px 0 #0001;
    display: flex;
    align-items: center;
    border-radius: var(--theme-radius);
    overflow: hidden;
    margin-bottom: 20px;
}
.our-service-one-ul li span {
    background-color: var(--color1);
    display: inline-block;
    padding: 6px;
    margin-right: 8px;
    height: 100%;
}
.our-service-one-ul li span img {
    width: 50px;
}
.our-service-one-ul li span img {
    transition: all 500ms ease;
    transform: scale(1);
}
.our-service-one-ul li a {
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    padding: 8px;
    padding-left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.route-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
 
.route-card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #dbe5ef;
    border-radius: var(--theme-radius);
}
 
.route-card h3 {
    margin: 0 0 20px;
    color: var(--color2);
    font-size: 25px;
}
 
.route-row {
   min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        color: var(--color2);
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid #dce5ee;
        transition: 0.3s;
}
 
.route-row:last-child {
    border-bottom: 0;
}
 
.route-row b {
           padding: 3px 10px;
        color: #fff;
        background: var(--color1);
        border-radius: var(--theme-radius);
        font-weight: 500;
        margin: 0 5px;
}
 
.route-row:hover {
    color: var(--color1);
text-decoration:underline
}
 
.route-row > span:last-child {
    font-size: 16px;
}
 
.route-card ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}
 
.route-card ul li {
   position: relative;
        margin-bottom: 1px;
        border-bottom: 1px solid #d4d4d4;
}
 
.route-card ul li a {
            position: relative;
        display: block;
        padding: 10px 34px 10px 0;
        color: var(--color2);
        text-decoration: none;
}
 
.route-card ul li a:hover {
        color: var(--color1);
        text-decoration: underline;
}
 
.route-card ul li a::after {
    content: "\f061";
font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #003b71;
    font-weight: 700;
}




section.process-section.section--steel.car-shipping-services ol.process-list.fr_hom {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}




section.our-service-one.our_new_sec.our-resources .route-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-details__content.inner_content p a {
    text-decoration: none;
}
.service-details__content.inner_content p a:hover {
    text-decoration: underline;
}
.g-recaptcha {
    display: none;
}
/* Remove old borders */
section.our-service-one.our_new_sec.our-resources .route-card ul li {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Individual route card */
section.our-service-one.our_new_sec.our-resources .route-card ul li a {
      position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 60px;
    padding: 14px 60px 14px 14px;
    color: var(--color2);
    background-color: #ffffff;
    border: 1px solid #e1e9ef;
    border-radius: var(--theme-radius);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(7, 47, 79, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Arrow circle */
section.our-service-one.our_new_sec.our-resources .route-card ul li a::after {
  content: "→";
  flex: 0 0 38px;
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background-color: var(--color2);
  border-radius: 50%;

  font-size: 16px;
  line-height: 1;
      right: 11px!important;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

/* Hover effect */
section.our-service-one.our_new_sec.our-resources .route-card ul li a:hover {
  color: #ffffff;
  background-color: var(--color2);
  border-color: var(--color2);
}

/* Arrow hover */
section.our-service-one.our_new_sec.our-resources .route-card ul li a:hover::after {
  color: var(--color2);
  background-color: #ffffff;
}
.heavy-hauling {
    display: none;
}

section.testi-wrap1.arrow-wrap.mass {
    background: var(--color-background);
}

section.testi-wrap1.arrow-wrap.mass .testi-body {
    background: #fff;
}

section.our-service-one.our_new_sec.bg-white.mass ul.our-service-one-ul li {
    border: 1px solid #d4d4d485;
}

/* Responsive */
@media (max-width: 1700px) {
    section.hero.home-bnr img.hero__media, .hero__overlay{
            object-fit: inherit!important;
    }
    
    
}
@media (min-width: 40rem) {
  .hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 0.0625rem solid var(--color2);
  }

  .services-grid,
  .industries-grid,
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--feature {
    grid-column: 1 / -1;
  }

  .load-result {
    grid-template-columns: auto 1fr;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .handoff-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  .handoff-summary > div {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (min-width: 48rem) {
  .quote-starter__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field--category,
  .quote-starter__submit {
    grid-column: 1 / -1;
  }

  .section-heading--split {
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
    align-items: end;
  }

  .path-grid,
  .coverage-grid,
  .faq-grid,
  .handoff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step {
    min-height: 15rem;
    padding: 6rem 1.5rem 1.75rem;
  }

  .process-step::before {
    inset: 2.25rem 0 0;
  }

  .process-list__icon {
    top: 0;
    left: 1.5rem;
  }

  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta__inner {
    grid-template-columns: minmax(0, 1.8fr) minmax(17rem, 0.6fr);
  }

  .site-footer__top {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }
}
@media (min-width: 48rem) and (max-width: 63.9375rem) {
  .resource-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .resource-card:first-child .resource-card__media {
    min-height: 20rem;
    aspect-ratio: auto;
  }
}
@media (min-width: 64rem) {
  .resources-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__media img {
    object-position: center center;
  }

  .hero__scrim {
            background: #000;
        opacity: 0.45;
  }

  .hero__stage {
    gap: clamp(2rem, 2.6vw, 2.5rem);
          padding: 70px 0;
    }

  .hero__content {
    max-width: min(48vw, 44rem);
  }

  .hero h1 {
    font-size: 55px;
                    text-shadow: 0.02em 0.02em 0.02em rgba(35, 35, 35, 0.95);
  }

  .quote-starter {
    margin-top: 0;
    padding: 1.35rem 1.6rem 1rem;
  }

  .quote-starter__fields {
    grid-template-columns: minmax(8.5rem, 1fr) minmax(8.5rem, 1fr) minmax(12rem, 1.32fr) minmax(11.5rem, 0.92fr);
    gap: clamp(0.75rem, 1.15vw, 1rem);
  }

  .field--category,
  .quote-starter__submit {
    grid-column: auto;
  }

  .quote-starter__submit {
    margin-top: 1.72rem;
    white-space: nowrap;
  }

  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-story__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  }

  .services-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .service-card { grid-column: span 3; }
  .service-card.fr-one-box { grid-column: span 4; }
  .service-card--feature { grid-column: span 6; }
  .inr_pge_sec .service-card--feature { grid-column: span 8; }
  .service-card:nth-child(8) { grid-column: span 6; }

  .load-helper__shell {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
  }

  .load-helper__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .equipment-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }

  .load-helper__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
          padding: 20px;
          background: var(--color2);
    }

  .outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__bottom {
    padding-bottom: 1.4rem;
  }

  .mobile-actions {
    display: none;
  }
}
@media (min-width: 80rem) {
    .about-hero__grid {
          grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.95fr);
    }
}
@media (min-width: 64rem) {
    .about-scope__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
        .about-approach__grid, .about-audiences__layout {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    }
        .contact-hero__grid, .error-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.95fr);
    }
    .contact-main__grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
    }
}
@media (min-width: 48rem) {
    .about-services__grid, .contact-routes__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
        .contact-faq__grid {
        grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
    }
}
@media (min-width: 70rem) {
  .process-section {
    min-height: max-content;
  }

  .process-section__media,
  .process-section__scrim {
    height: 100%;
         width: 100%;
    }

  .process-section__media img {
    object-position: center center;
  }

  .process-section__scrim {
    background:
      linear-gradient(180deg, rgba(6, 24, 39, 0.22) 0%, rgba(6, 24, 39, 0.34) 40%, rgba(6, 24, 39, 0.96) 70%, var(--color2) 100%),
      linear-gradient(90deg, rgba(6, 24, 39, 0.99) 0%, rgba(6, 24, 39, 0.88) 29%, rgba(6, 24, 39, 0.34) 56%, rgba(6, 24, 39, 0.16) 100%);
  }

  .process-section__inner {
            padding: 70px 0;
    }

  .process-section__heading {
    max-width: 100%;
  }

  .process-section__heading h2 {
          font-size: 40px;
    }
  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.25vw, 1.25rem);
    margin-top: 20px;
  }

  .process-step {
    min-height: 18rem;
  }

  .process-section__action {
    max-width: none;
    text-align: right;
  }
}
@media (min-width: 73.75rem) {
  .section-heading__link {
    justify-self: end;
  }
}
@media (max-width: 73.6875rem) {
  .site-header {
    background:#fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-toggle,
  .primary-nav__top,
  .nav-scrim {
    display: block;
  }

  .menu-toggle {
           margin-left: 0;
        background: var(--color1);
        color: var(--color-primary);
        align-items: center;
        justify-content: center;
        display: flex;
    }

  .primary-nav {
    position: fixed;
    z-index: var(--z-drawer);
    top: 0;
    right: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background:#fff;
    box-shadow: -1rem 0 3rem rgba(6, 24, 39, 0.22);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform var(--transition), visibility 0s linear var(--transition-fast);
  }
.primary-nav__title img {
    width: 200px;
}
  .primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .primary-nav__top {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    min-height: calc(5rem + env(safe-area-inset-top));
    align-items: center;
    justify-content: space-between;
    margin-inline: -1.25rem;
    padding: env(safe-area-inset-top) 1.25rem 0;
    border-bottom: 0.0625rem solid var(--color-border);
    background:#fff;
  }

  .primary-nav__title {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
  }

  .nav-close {
    background: var(--color1);
  }

  .primary-nav__list {
    align-items: stretch;
    flex-direction: column;
    margin-block: 0.75rem 1rem;
  }

  .primary-nav__list li {
    width: 100%;
    border-bottom: 0.0625rem solid var(--color-border);
  }

  .primary-nav__link {
    width: 100%;
    min-height: 3.5rem;
    justify-content: space-between;
    padding-inline: 0;
    font-size: 0.9375rem;
  }

  .primary-nav__cta {
    margin-top: auto;
  }

  .services-menu {
    position: static;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.35rem;
    border: 0;
    border-radius: 0!important;
    box-shadow: none;
        padding-top: 0;
                border-top: 0.0625rem solid var(--color-border);
                        height: 250px;
        overflow: auto;
        display:block;
    }
    

  .services-menu a {
            min-height: 0;
        padding-inline: 0.75rem;
                border-bottom: 0.0625rem solid var(--color-border);
        border-radius: 0;
    }

  .nav-scrim {
    position: fixed;
    z-index: calc(var(--z-drawer) - 1);
    inset: 0;
    background: rgba(6, 24, 39, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-scrim.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .mobile-actions {
    transform: translateY(110%);
  }
}
@media (max-width: 63.9375rem) {
  /*body:not(.quote-handoff-page) {*/
  /*  padding-bottom: calc(4.15rem + env(safe-area-inset-bottom));*/
  /*}*/

  .hero__media {
    bottom: 0;
    height: 100%;
  }

  .hero__media img {
    object-position: center 62%;
  }

  .hero__scrim {
    bottom: 0;
    height: 100%;
  }

  .faq-intro {
    position: static;
  }

}
@media (max-width: 47.9375rem) {
  html {
    scroll-padding-top: 5rem;
  }

  .utility-bar__links span {
    display: none;
  }

  .utility-bar__links {
    gap: 0;
  }

  .site-header__inner {
    min-height: 4.5rem;
  }

  .quote-starter__fields {
    grid-template-columns: 1fr;
  }

  .field--category,
  .quote-starter__submit {
    grid-column: auto;
  }

  .path-card__body {
    min-height: 0;
  }

  .video-beats li {
        grid-template-columns: 2rem 1fr;
            gap: 0.1rem;
    }

  .video-beats small {
    grid-column: 2;
  }

  .load-helper__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .load-option {
    justify-content: center;
    text-align: center;
  }

  .process-section__action {
    text-align: left;
  }

  .faq-list summary {
    grid-template-columns: 1.6rem 1fr 1.3rem;
    font-size: 0.9375rem;
  }



  .handoff-header__inner .text-link {
    font-size: 0.75rem;
  }

  .handoff-summary > div {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 25rem) {
  .utility-bar__inner {
    justify-content: center;
  }


  .brand__logo-crop--color {
    width: 9.25rem;
  }



  .load-helper__options {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (forced-colors: active) {
  .button,
  .field__control,
  .service-card,
  .path-card,
  .resource-card,
  .process-list li {
    border: 0.125rem solid CanvasText;
  }
}
@media (max-width: 991px) {
  section.our-service-one.our_new_sec.our-resources .route-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
    .route-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {

section.section.path-section.Statewide .shipping-content .shipping-card {
    min-height: auto;
}
section.route-section.path-section.section--steel .container {
    width: 100%;
}
  section.section.path-section.Statewide .row {
    flex-direction: column;
  }
.container.site-footer__bottom {
    text-align: center;
}
section.hero.home-bnr img.hero__media, .hero__overlay {
        object-fit: cover !important;
    }
  ul.check-list.shipping {
    grid-template-columns: repeat(1, 1fr);
  }

  .vehicle-types {
    padding: 40px 0;

  }

  .vehicle-types .container {
    padding: 0;
  }
.route-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.heavy-hauling {
    display: block;
}


.heavy-hauling {width: 100%;box-sizing: border-box;position: fixed;bottom: 0; z-index: 9;border-top: 1px solid #ffffff2b;}

.heavy-hauling__inner {/* max-width: 1170px; */min-height: 190px;/* margin: 0 auto; */padding: 28px 45px;display: flex;align-items: center;justify-content: space-between;gap: 40px;background-color: var(--color2);box-sizing: border-box;}

.heavy-hauling__support {display: flex;align-items: center;gap: 10px;}

.heavy-hauling__support-icon {width: 135px;height: 135px;flex: 0 0 135px;display: flex;align-items: center;justify-content: center;background-color: var(--color1);border-radius: var(--theme-radius);color: #fff;font-size: 16px;}



.heavy-hauling__content .title {
        margin: 0 0 2px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.15;
}

.heavy-hauling__content p {
margin: 0;
color: #ffffff;
font-size: 14px!important;
font-weight: 400;
line-height: 1.3;
}

.heavy-hauling__call {
display: flex;
align-items: center;
gap: 25px;

color: #ffffff;
text-decoration: none;
transition: transform 0.25s ease;
}
.heavy-hauling__inner .button--primary {
    background: var(--color1);
    font-size: 13px;
    padding: 7px 10px;
}




.heavy-hauling__number {
display: flex;
flex-direction: column;
gap: 7px;
}

.heavy-hauling__number strong {
color: #ffffff;
font-size: 39px;
font-weight: 700;
line-height: 1.15;
white-space: nowrap;
}

.heavy-hauling__number span {
color: #ffffff;
font-size: 29px;
font-weight: 600;
line-height: 1.2;
}

@media (max-width: 991px) {
.heavy-hauling__inner {min-height: auto;padding: 15px;gap: 15px;}

.heavy-hauling__support-icon,
.heavy-hauling__phone-icon {width: 40px;height: 40px;flex-basis: 40px;}

.heavy-hauling__support-icon svg,
.heavy-hauling__phone-icon svg {
width: 50px;
height: 50px;
}

.heavy-hauling__content h3,
.heavy-hauling__number strong {
font-size: 28px;
}

.heavy-hauling__content p,
.heavy-hauling__number span {font-size: 17px;}
}
    .route-card {
        padding: 15px 15px!important;
    }
        .route-row {
        font-size: 14px!important;
    }
    .faq-list summary{
        padding:15px!important;
    }
    section.process-section.section--steel.car-shipping-services ol.process-list.fr_hom{
        grid-template-columns: repeat(2, minmax(0, 1fr))!important;
    }
}
@media (max-width: 567px) {
    
     section.process-section.section--steel.car-shipping-services ol.process-list.fr_hom{
        grid-template-columns: repeat(1, minmax(0, 1fr))!important;
    }
    section.our-service-one.our_new_sec.our-resources .route-card {
    padding: 15px;
      border-radius: var(--theme-radius);
  }

  section.our-service-one.our_new_sec.our-resources .route-card ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

section.our-service-one.our_new_sec.our-resources .container {
    padding: 0;
}

  section.our-service-one.our_new_sec.our-resources .route-card ul li a::after {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 991px) {
    .vehicle-grid {
        grid-template-columns: repeat(3, 1fr);
    }


}
@media (max-width: 600px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vehicle-image {
        height: 90px;
            padding: 10px;
    }

    .vehicle-image img {
        max-width: 90px;
        height: 60px;
    }
    .vehicle-item h3{
            padding: 10px 10px;
            font-size:14px;
    }
}
	@media (max-width:768px) {

		.review-badge {
			flex-wrap: wrap;
			justify-content: center;
			gap: 14px;
		}

		.divider {
			display: none;
		}
	}
@media (max-width: 480px) {


  .contact-info-item {
    gap: 11px;
  }

  .contact-icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .contact-content {
    font-size: 15px;
  }
}
@media (max-width: 400px) {
        .heavy-hauling__content p{
            font-size: 12px !important;
        }
            .heavy-hauling__inner .button--primary {
        background: var(--color1);
        font-size: 12px;
        padding: 13px 7px !important;
        gap: 6px;
        min-height: auto;
    }
}

