/****** FREIGHTPOINT BRAND SYSTEM ******/
:root {
  --fp-navy: #0f2d52;
  --fp-navy-dark: #091c33;
  --fp-navy-black: #061321;
  --fp-navy-light: #294a6f;
  --fp-red: #a61d2d;
  --fp-red-dark: #7d1522;
  --fp-red-light: #c52a3d;
  --fp-black: #000000;
  --fp-carbon: #111418;
  --fp-charcoal: #252a30;
  --fp-dark-gray: #444b53;
  --fp-gray: #69717a;
  --fp-light-gray: #d8dce1;
  --fp-cloud: #eef0f2;
  --fp-off-white: #f7f8f9;
  --fp-white: #ffffff;
}

html {
  color-scheme: light;
  scrollbar-color: var(--fp-red) var(--fp-navy-black);
  scrollbar-width: thin;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--fp-navy-black);
}

html::-webkit-scrollbar-thumb {
  border: 3px solid var(--fp-navy-black);
  border-radius: 10px;
  background: var(--fp-red);
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--fp-red-light);
}

#about,
#freedom,
#equipment,
#next-point,
#contact {
  scroll-margin-top: 55px;
}

body {
  background: var(--fp-white);
  color: var(--fp-dark-gray);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(166, 29, 45, 0.2);
}

a,
button {
  touch-action: manipulation;
}

@supports (height: 100svh) {
  .fullscreen {
    height: 100svh;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--fp-carbon);
}

p {
  color: var(--fp-dark-gray);
}

.sub,
.muted,
small {
  color: var(--fp-gray);
}

a,
a:visited,
a:focus,
a:active {
  color: var(--fp-red);
}

a:hover {
  color: var(--fp-red-dark);
}

hr {
  border-color: var(--fp-light-gray);
}

/* Branded surfaces */
.bg-secondary {
  background: var(--fp-off-white);
}

.bg-white {
  background: var(--fp-white);
}

.bg-primary {
  background: var(--fp-navy) !important;
}

.bg-dark,
nav.bg-dark {
  background: var(--fp-navy-dark);
}

footer.bg-dark,
footer.bg-primary {
  background: linear-gradient(135deg, var(--fp-navy-black), var(--fp-navy-dark)) !important;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
  color: var(--fp-white);
}

.bg-dark p,
.bg-dark span,
.bg-dark li,
.bg-primary p,
.bg-primary span,
.bg-primary li {
  color: var(--fp-light-gray);
}

nav.bg-dark .nav-utility,
nav.bg-dark .nav-bar {
  border-bottom-color: rgba(216, 220, 225, 0.2);
}

nav.bg-dark .menu > li > a,
nav.bg-dark .module.widget-handle i,
nav.bg-dark .nav-utility {
  color: var(--fp-white);
}

nav.bg-dark .menu > li > a:hover {
  color: var(--fp-white);
  opacity: 1;
}

.menu > li ul,
.widget-handle .function {
  background: var(--fp-navy-black);
}

/* Corporate overlays over trucking photography and video */
.image-bg.overlay:before {
  background: linear-gradient(110deg, rgba(6, 19, 33, 0.9), rgba(15, 45, 82, 0.58));
  opacity: 1;
}

.overlay .fs-vid-background:before {
  background: linear-gradient(110deg, rgba(6, 19, 33, 0.9), rgba(15, 45, 82, 0.58));
  opacity: 1;
}

.background-multiply .background-image-holder {
  background-color: var(--fp-navy) !important;
}

.image-bg h1,
.image-bg h2,
.image-bg h3,
.image-bg h4,
.image-bg h5,
.image-bg h6 {
  color: var(--fp-white);
}

.hero-slide-title {
  font-size: 72px;
  line-height: 80px;
}

@media all and (max-width: 990px) {
  .hero-slide-title {
    font-size: 56px;
    line-height: 64px;
  }
}

@media all and (max-width: 767px) {
  .hero-slide-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.image-bg p,
.image-bg span,
.image-bg li {
  color: var(--fp-light-gray);
}

/* Buttons: outline secondary, filled primary action */
.btn,
.btn:visited {
  background: transparent;
  border-color: var(--fp-navy);
  color: var(--fp-navy);
}

.btn:hover,
.btn:focus,
.btn:active {
  background: var(--fp-navy);
  border-color: var(--fp-navy);
  color: var(--fp-white);
}

.btn-filled,
.btn-filled:visited,
.image-bg .btn.btn-filled,
.image-bg .btn-filled:visited {
  background: var(--fp-red);
  border-color: var(--fp-red);
  color: var(--fp-white);
}

.btn-filled:hover,
.btn-filled:focus,
.btn-filled:active,
.image-bg .btn.btn-filled:hover,
.image-bg .btn-filled:focus,
.image-bg .btn.btn-filled:active {
  background: var(--fp-red-dark);
  border-color: var(--fp-red-dark);
  color: var(--fp-white);
}

.image-bg .btn:not(.btn-filled),
.image-bg .btn:not(.btn-filled):visited,
.bg-dark .btn:not(.btn-filled),
.bg-primary .btn:not(.btn-filled) {
  background: transparent;
  border-color: var(--fp-white);
  color: var(--fp-white);
}

.image-bg .btn:not(.btn-filled):hover,
.bg-dark .btn:not(.btn-filled):hover,
.bg-primary .btn:not(.btn-filled):hover {
  background: var(--fp-white);
  border-color: var(--fp-white);
  color: var(--fp-navy);
}

/* Components and restrained accents */
.color-primary,
.color-red {
  color: var(--fp-red) !important;
}

.label,
.widget-handle .cart .label {
  background: var(--fp-red);
}

.icon {
  color: var(--fp-navy);
}

.feature-1 i,
.feature-3 i {
  color: var(--fp-navy);
}

.feature.boxed {
  background: var(--fp-off-white);
  border: 1px solid var(--fp-light-gray);
}

section.image-square:nth-of-type(even) {
  background: var(--fp-off-white);
}

/* About FreightPoint */
.about-section {
  height: 760px;
  max-height: none;
  background: var(--fp-white);
}

.about-section > .content {
  padding-left: 7%;
  padding-right: 7%;
}

.about-section .background-image-holder {
  background-position: 46% center !important;
}

.about-eyebrow {
  position: relative;
  margin-bottom: 12px;
  padding-left: 34px;
  color: var(--fp-red);
  letter-spacing: 1.6px;
}

.about-eyebrow:before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--fp-red);
  content: "";
}

.about-title {
  margin-bottom: 28px;
  color: var(--fp-carbon);
}

.about-copy p {
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.65;
}

.about-copy strong {
  color: var(--fp-navy);
}

.about-manifesto {
  margin: 28px 0 24px;
  padding-left: 22px;
  border-left: 4px solid var(--fp-red);
}

.about-manifesto span {
  display: block;
  color: var(--fp-navy);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.about-link,
.about-link:visited {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--fp-red);
  color: var(--fp-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--fp-red);
  transition: transform 0.25s ease;
}

.about-link:hover {
  color: var(--fp-red-dark);
}

.about-link:hover span {
  transform: translateX(4px);
}

@media all and (max-width: 990px) {
  .about-section {
    height: auto;
  }

  .about-section > .content {
    padding: 0 10%;
  }

  .about-section .background-image-holder {
    background-position: 45% center !important;
  }
}

@media all and (max-width: 767px) {
  .about-section > .content {
    padding: 0 24px;
  }

  .about-title {
    margin-bottom: 22px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .about-manifesto span {
    font-size: 22px;
  }
}

/* Freedom and flexibility */
.freedom-section {
  padding: 112px 0 104px;
}

.freedom-intro {
  margin-bottom: 52px;
}

.freedom-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--fp-red);
  letter-spacing: 1.6px;
}

.freedom-eyebrow:before,
.freedom-eyebrow:after {
  width: 24px;
  height: 2px;
  background: var(--fp-red);
  content: "";
}

.freedom-intro h2 {
  margin-bottom: 20px;
  color: var(--fp-carbon);
}

.freedom-intro .lead {
  margin: 0 auto;
  max-width: 720px;
  color: var(--fp-dark-gray);
  font-size: 19px;
  line-height: 1.7;
}

.freedom-choices {
  display: flex;
  flex-wrap: wrap;
}

.freedom-choices > div {
  display: flex;
}

.freedom-choice {
  position: relative;
  width: 100%;
  min-height: 310px;
  padding: 48px 44px 42px;
  overflow: hidden;
  border: 1px solid var(--fp-light-gray);
  background: var(--fp-white);
}

.freedom-choice:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--fp-navy);
  content: "";
}

.freedom-choice-assisted:before {
  background: var(--fp-red);
}

.freedom-choice-number {
  position: absolute;
  top: 24px;
  right: 30px;
  color: var(--fp-cloud);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.freedom-choice h6 {
  position: relative;
  margin-bottom: 18px;
  color: var(--fp-red);
  letter-spacing: 1.5px;
}

.freedom-choice-self h6 {
  color: var(--fp-navy);
}

.freedom-choice h3 {
  position: relative;
  margin-bottom: 18px;
  color: var(--fp-carbon);
}

.freedom-choice p {
  position: relative;
  max-width: 430px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.7;
}

.freedom-promise {
  margin-top: 54px;
  color: var(--fp-navy);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.freedom-promise span {
  color: inherit;
  font-weight: 700;
}

.freedom-promise span:not(:last-child):after {
  margin: 0 10px;
  color: var(--fp-red);
  content: "/";
}

@media all and (max-width: 767px) {
  .freedom-section {
    padding: 80px 0 72px;
  }

  .freedom-intro {
    margin-bottom: 36px;
  }

  .freedom-intro .lead {
    font-size: 17px;
  }

  .freedom-choices,
  .freedom-choices > div {
    display: block;
  }

  .freedom-choices > div + div {
    margin-top: 20px;
  }

  .freedom-choice {
    min-height: 0;
    padding: 38px 28px 34px;
  }

  .freedom-choice-number {
    top: 20px;
    right: 22px;
    font-size: 58px;
  }

  .freedom-promise {
    margin-top: 40px;
    font-size: 27px;
  }

  .freedom-promise span {
    display: block;
  }

  .freedom-promise span:not(:last-child):after {
    content: "";
  }
}

/* Equipment and driver comfort */
.equipment-section {
  padding: 0;
  background: var(--fp-white);
}

.equipment-intro {
  padding-top: 112px;
  padding-bottom: 72px;
}

.equipment-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--fp-red);
  letter-spacing: 1.6px;
}

.equipment-eyebrow:before,
.equipment-eyebrow:after {
  width: 24px;
  height: 2px;
  background: var(--fp-red);
  content: "";
}

.equipment-intro h2 {
  margin-bottom: 22px;
  color: var(--fp-carbon);
  font-size: 48px;
  line-height: 1.08;
}

.equipment-intro .lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--fp-dark-gray);
  font-size: 19px;
  line-height: 1.7;
}

.equipment-showcase {
  position: relative;
  height: 78vh;
  min-height: 620px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(6, 19, 33, 0.66) 0%, rgba(6, 19, 33, 0.12) 52%, rgba(6, 19, 33, 0) 72%), linear-gradient(180deg, rgba(6, 19, 33, 0.16) 0%, rgba(6, 19, 33, 0) 48%, rgba(6, 19, 33, 0.9) 100%), url("../img/peterbilt.png");
  background-position: center 54%;
  background-size: cover;
}

.equipment-showcase-copy {
  position: absolute;
  top: 78px;
  left: 7%;
  color: var(--fp-white);
}

.equipment-showcase-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--fp-white);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.equipment-showcase-copy h3 {
  margin: 0;
  color: var(--fp-white);
  font-size: 46px;
  line-height: 1.08;
}

.equipment-spec-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 25px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(6, 19, 33, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.equipment-spec-strip span {
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--fp-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.equipment-spec-strip span:last-child {
  border-right: 0;
}

.equipment-highlights {
  padding: 88px 0 64px;
  background: linear-gradient(135deg, var(--fp-navy-black), var(--fp-navy-dark));
}

.equipment-highlights-title {
  margin-bottom: 36px;
  color: var(--fp-light-gray);
  letter-spacing: 1.8px;
}

.equipment-feature-grid {
  display: flex;
  flex-wrap: wrap;
}

.equipment-feature {
  min-height: 210px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(216, 220, 225, 0.18);
}

.equipment-feature i {
  display: block;
  margin-bottom: 20px;
  color: var(--fp-red-light);
  font-size: 25px;
}

.equipment-feature h5 {
  margin-bottom: 10px;
  color: var(--fp-white);
}

.equipment-feature p {
  max-width: 235px;
  margin-bottom: 0;
  color: var(--fp-light-gray);
  font-size: 15px;
  line-height: 1.65;
}

.equipment-manifesto {
  padding: 92px 0 98px;
  background: var(--fp-off-white);
  text-align: center;
}

.equipment-manifesto p {
  max-width: 990px;
  margin: 0 auto;
  color: var(--fp-navy);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 38px;
  font-weight: 700 !important;
  line-height: 1.25;
}

.equipment-manifesto strong {
  color: var(--fp-red);
}

@media all and (max-width: 990px) {
  .equipment-showcase {
    height: 68vh;
    min-height: 560px;
  }

  .equipment-spec-strip span {
    padding: 0 18px;
  }
}

@media all and (max-width: 767px) {
  .equipment-intro {
    padding: 80px 24px 54px;
  }

  .equipment-intro h2 {
    font-size: 36px;
  }

  .equipment-intro .lead {
    font-size: 17px;
  }

  .equipment-showcase {
    height: 650px;
    min-height: 0;
    background-position: 48% center;
  }

  .equipment-showcase-copy {
    top: 48px;
    right: 24px;
    left: 24px;
  }

  .equipment-showcase-copy h3 {
    font-size: 36px;
  }

  .equipment-spec-strip {
    flex-wrap: wrap;
    padding: 16px 12px 10px;
  }

  .equipment-spec-strip span {
    width: 50%;
    margin-bottom: 8px;
    padding: 0 8px;
    border-right: 0;
  }

  .equipment-highlights {
    padding: 68px 0 44px;
  }

  .equipment-highlights-title {
    margin-bottom: 24px;
  }

  .equipment-feature-grid {
    display: block;
  }

  .equipment-feature {
    display: grid;
    width: 100%;
    min-height: 0;
    padding: 26px 18px;
    float: none;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
  }

  .equipment-feature i {
    margin: 3px 0 0;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .equipment-feature h5 {
    margin-bottom: 6px;
    grid-column: 2;
    grid-row: 1;
  }

  .equipment-feature p {
    max-width: none;
    grid-column: 2;
    grid-row: 2;
  }

  .equipment-manifesto {
    padding: 72px 24px 78px;
  }

  .equipment-manifesto p {
    font-size: 29px;
  }
}

/* Why FreightPoint */
.why-section {
  padding: 112px 0 104px;
  background: var(--fp-navy-black);
}

.why-intro {
  margin-bottom: 54px;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--fp-red-light) !important;
  letter-spacing: 1.6px;
}

.why-eyebrow:before,
.why-eyebrow:after {
  width: 24px;
  height: 2px;
  background: var(--fp-red);
  content: "";
}

.why-intro h2 {
  margin-bottom: 20px;
  color: var(--fp-white);
}

.why-intro .lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--fp-light-gray);
  font-size: 19px;
  line-height: 1.7;
}

.why-card-grid {
  display: flex;
  flex-wrap: wrap;
}

.why-card-grid > div {
  display: flex;
  margin-bottom: 30px;
}

.why-card {
  position: relative;
  width: 100%;
  min-height: 292px;
  padding: 36px 34px 34px;
  border: 1px solid rgba(216, 220, 225, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.why-card:after {
  position: absolute;
  right: 34px;
  bottom: 0;
  left: 34px;
  height: 3px;
  background: var(--fp-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.why-card:hover {
  border-color: rgba(216, 220, 225, 0.38);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-5px);
}

.why-card:hover:after {
  transform: scaleX(1);
}

.why-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.why-card-topline span {
  color: var(--fp-gray);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.why-card-topline i {
  color: var(--fp-red-light);
  font-size: 25px;
}

.why-card h4 {
  margin-bottom: 14px;
  color: var(--fp-white);
}

.why-card p {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--fp-light-gray);
  font-size: 16px;
  line-height: 1.7;
}

.why-closing {
  margin-top: 38px;
}

.why-closing p {
  margin: 0;
  color: var(--fp-white);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700 !important;
  line-height: 1.25;
}

.why-closing strong {
  color: var(--fp-red-light);
}

@media all and (max-width: 990px) {
  .why-card {
    min-height: 270px;
  }
}

@media all and (max-width: 767px) {
  .why-section {
    padding: 80px 0 72px;
  }

  .why-intro {
    margin-bottom: 38px;
  }

  .why-intro .lead {
    font-size: 17px;
  }

  .why-card-grid,
  .why-card-grid > div {
    display: block;
  }

  .why-card-grid > div {
    margin-bottom: 18px;
  }

  .why-card {
    min-height: 0;
    padding: 30px 28px;
  }

  .why-card-topline {
    margin-bottom: 28px;
  }

  .why-closing {
    margin-top: 30px;
  }

  .why-closing p {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-card,
  .why-card:after {
    transition: none;
  }

  .why-card:hover {
    transform: none;
  }
}

/* Built to Deliver */
.deliver-section {
  padding: 0;
  background: var(--fp-white);
}

.deliver-story {
  display: flex;
  min-height: 650px;
}

.deliver-visual,
.deliver-copy {
  width: 50%;
}

.deliver-visual {
  position: relative;
  overflow: hidden;
  background: var(--fp-navy-black);
}

.deliver-visual:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 33, 0.08), rgba(6, 19, 33, 0));
  content: "";
  pointer-events: none;
}

.deliver-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.deliver-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 8%;
  background: var(--fp-off-white);
}

.deliver-eyebrow {
  position: relative;
  margin-bottom: 14px;
  padding-left: 34px;
  color: var(--fp-red);
  letter-spacing: 1.6px;
}

.deliver-eyebrow:before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--fp-red);
  content: "";
}

.deliver-copy h2 {
  margin-bottom: 28px;
  color: var(--fp-carbon);
  font-size: 48px;
  line-height: 1.08;
}

.deliver-copy .deliver-lead {
  margin-bottom: 18px;
  color: var(--fp-navy);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 23px;
  font-weight: 700 !important;
  line-height: 1.35;
}

.deliver-copy > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.75;
}

.deliver-pillars {
  padding: 82px 0 60px;
  border-top: 1px solid var(--fp-light-gray);
  background: var(--fp-white);
}

.deliver-pillar-grid {
  display: flex;
  flex-wrap: wrap;
}

.deliver-pillar-grid > div {
  display: flex;
}

.deliver-pillar {
  width: 100%;
  min-height: 255px;
  padding: 10px 30px 30px;
  border-right: 1px solid var(--fp-light-gray);
}

.deliver-pillar-grid > div:last-child .deliver-pillar {
  border-right: 0;
}

.deliver-pillar i {
  display: block;
  margin-bottom: 24px;
  color: var(--fp-red);
  font-size: 28px;
}

.deliver-pillar h4 {
  margin-bottom: 14px;
  color: var(--fp-navy);
  font-size: 21px;
  line-height: 1.25;
}

.deliver-pillar p {
  margin-bottom: 0;
  color: var(--fp-dark-gray);
  font-size: 16px;
  line-height: 1.7;
}

.deliver-closing {
  padding: 54px 24px;
  background: var(--fp-navy);
}

.deliver-closing p {
  margin: 0;
  color: var(--fp-white);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700 !important;
  line-height: 1.25;
}

.deliver-closing strong {
  color: var(--fp-red-light);
}

@media all and (max-width: 990px) {
  .deliver-story {
    min-height: 580px;
  }

  .deliver-copy {
    padding: 64px 6%;
  }

  .deliver-pillar-grid > div:nth-child(2) .deliver-pillar {
    border-right: 0;
  }

  .deliver-pillar {
    min-height: 230px;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 767px) {
  .deliver-story {
    display: block;
    min-height: 0;
  }

  .deliver-visual,
  .deliver-copy {
    width: 100%;
  }

  .deliver-visual {
    height: 360px;
  }

  .deliver-visual img {
    object-position: 54% center;
  }

  .deliver-copy {
    padding: 68px 24px 72px;
  }

  .deliver-copy h2 {
    font-size: 38px;
  }

  .deliver-copy > p:last-child {
    font-size: 16px;
  }

  .deliver-pillars {
    padding: 62px 0 38px;
  }

  .deliver-pillar-grid,
  .deliver-pillar-grid > div {
    display: block;
  }

  .deliver-pillar,
  .deliver-pillar-grid > div:nth-child(2) .deliver-pillar,
  .deliver-pillar-grid > div:last-child .deliver-pillar {
    min-height: 0;
    margin-bottom: 22px;
    padding: 12px 12px 34px;
    border-right: 0;
    border-bottom: 1px solid var(--fp-light-gray);
  }

  .deliver-pillar-grid > div:last-child .deliver-pillar {
    border-bottom: 0;
  }

  .deliver-closing p {
    font-size: 27px;
  }
}

/* Safety and reliability */
.safety-section {
  padding: 0;
  background: var(--fp-navy-black);
}

.safety-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.safety-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
}

.safety-media:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 33, 0.08) 0%, rgba(6, 19, 33, 0.28) 45%, rgba(6, 19, 33, 0.96) 76%, var(--fp-navy-black) 100%);
  content: "";
}

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

.safety-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 7%;
  width: 39%;
  transform: translateY(-50%);
}

.safety-eyebrow {
  position: relative;
  margin-bottom: 14px;
  padding-left: 34px;
  color: var(--fp-red-light);
  letter-spacing: 1.6px;
}

.safety-eyebrow:before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--fp-red);
  content: "";
}

.safety-copy h2 {
  margin-bottom: 28px;
  color: var(--fp-white);
  font-size: 48px;
  line-height: 1.08;
}

.safety-copy p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--fp-light-gray);
  font-size: 17px;
  line-height: 1.8;
}

.safety-pillars {
  padding: 82px 0 62px;
  border-top: 1px solid rgba(216, 220, 225, 0.16);
  background: linear-gradient(135deg, var(--fp-navy-black), var(--fp-navy-dark));
}

.safety-pillar-grid {
  display: flex;
  flex-wrap: wrap;
}

.safety-pillar-grid > div {
  display: flex;
}

.safety-pillar {
  width: 100%;
  min-height: 275px;
  padding: 10px 30px 30px;
  border-right: 1px solid rgba(216, 220, 225, 0.18);
}

.safety-pillar-grid > div:last-child .safety-pillar {
  border-right: 0;
}

.safety-pillar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.safety-pillar-meta span {
  color: var(--fp-gray);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.safety-pillar-meta i {
  color: var(--fp-red-light);
  font-size: 24px;
}

.safety-pillar h4 {
  margin-bottom: 14px;
  color: var(--fp-white);
  font-size: 21px;
  line-height: 1.25;
}

.safety-pillar p {
  margin-bottom: 0;
  color: var(--fp-light-gray);
  font-size: 15px;
  line-height: 1.7;
}

.safety-closing {
  padding: 88px 24px 94px;
  background: var(--fp-carbon);
}

.safety-closing p {
  margin: 0;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700 !important;
  line-height: 1.18;
}

.safety-closing span,
.safety-closing strong {
  display: block;
  color: var(--fp-white);
  font-weight: 700;
}

.safety-closing strong {
  color: var(--fp-red-light);
}

@media all and (max-width: 990px) {
  .safety-hero {
    min-height: 650px;
  }

  .safety-copy {
    right: 6%;
    width: 44%;
  }

  .safety-pillar-grid > div:nth-child(2) .safety-pillar {
    border-right: 0;
  }

  .safety-pillar {
    min-height: 250px;
    margin-bottom: 28px;
  }
}

@media all and (max-width: 767px) {
  .safety-hero {
    min-height: 0;
  }

  .safety-media {
    position: relative;
    height: 370px;
  }

  .safety-media:after {
    background: linear-gradient(180deg, rgba(6, 19, 33, 0) 55%, var(--fp-navy-black) 100%);
  }

  .safety-media img {
    object-position: 43% center;
  }

  .safety-copy {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 42px 24px 72px;
    transform: none;
  }

  .safety-copy h2 {
    font-size: 38px;
  }

  .safety-copy p {
    font-size: 16px;
  }

  .safety-pillars {
    padding: 62px 0 38px;
  }

  .safety-pillar-grid,
  .safety-pillar-grid > div {
    display: block;
  }

  .safety-pillar,
  .safety-pillar-grid > div:nth-child(2) .safety-pillar,
  .safety-pillar-grid > div:last-child .safety-pillar {
    min-height: 0;
    margin-bottom: 22px;
    padding: 12px 12px 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 220, 225, 0.18);
  }

  .safety-pillar-grid > div:last-child .safety-pillar {
    border-bottom: 0;
  }

  .safety-closing {
    padding: 72px 24px 78px;
  }

  .safety-closing p {
    font-size: 30px;
  }
}

.image-bg .feature.boxed h1,
.image-bg .feature.boxed h2,
.image-bg .feature.boxed h3,
.image-bg .feature.boxed h4,
.image-bg .feature.boxed h5,
.image-bg .feature.boxed h6 {
  color: var(--fp-navy);
}

.image-bg .feature.boxed p,
.image-bg .feature.boxed span,
.image-bg .feature.boxed li {
  color: var(--fp-dark-gray);
}

.image-bg .feature.boxed .icon {
  color: var(--fp-navy);
}

blockquote {
  background: var(--fp-off-white);
  border-color: var(--fp-light-gray);
  color: var(--fp-dark-gray);
}

input[type="text"],
input[type="password"],
textarea,
select {
  background: var(--fp-off-white);
  color: var(--fp-dark-gray);
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline-color: var(--fp-navy-light);
}

::selection {
  background: var(--fp-red);
  color: var(--fp-white);
}

/* Final conversion section */
.final-cta {
  position: relative;
  display: flex;
  min-height: 92vh;
  padding: 0;
  overflow: hidden;
  align-items: center;
  background: var(--fp-navy);
}

.final-cta-media,
.final-cta-shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
}

.final-cta-media {
  background-position: center center !important;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.final-cta-shade {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 14, 24, 0.58) 0%, rgba(5, 14, 24, 0.42) 42%, rgba(5, 14, 24, 0.82) 100%),
    linear-gradient(90deg, rgba(5, 14, 24, 0.46) 0%, rgba(5, 14, 24, 0.18) 60%, rgba(5, 14, 24, 0.42) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 80px;
}

.final-cta-eyebrow {
  margin-bottom: 20px;
  color: #f1f3f5;
  letter-spacing: 0.24em;
}

.final-cta-eyebrow::before,
.final-cta-eyebrow::after {
  display: inline-block;
  width: 38px;
  height: 1px;
  margin: 0 14px 4px;
  background: var(--fp-red);
  content: "";
}

.final-cta-title {
  margin: 0;
  color: var(--fp-white);
  font-size: 72px;
  font-weight: 800 !important;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: none;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.35);
}

.final-cta-title span {
  display: block;
}

.final-cta-intro {
  max-width: 760px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.65;
}

.final-cta-paths {
  max-width: 960px;
  margin: 50px auto 0;
}

.final-cta-path {
  display: block;
  min-height: 164px;
  padding: 32px 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(5, 14, 24, 0.48);
  color: var(--fp-white);
  text-align: left;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.final-cta-path:hover,
.final-cta-path:focus {
  border-color: var(--fp-red);
  background: rgba(5, 14, 24, 0.72);
  color: var(--fp-white);
  transform: translateY(-4px);
}

.final-cta-path-label {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.final-cta-path-label span {
  margin-left: 8px;
  color: var(--fp-red);
}

.final-cta-path-copy {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.final-cta-standard {
  margin-top: 52px;
  color: var(--fp-white);
}

.final-cta-standard::before {
  display: block;
  width: 46px;
  height: 2px;
  margin: 0 auto 22px;
  background: var(--fp-red);
  content: "";
}

.final-cta-standard p {
  margin-bottom: 5px;
  color: var(--fp-white);
  font-size: 19px;
  letter-spacing: 0.025em;
}

.final-cta-standard span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-style: italic;
}

/* Footer */
.site-footer {
  padding: 82px 0 0;
  background: #07111d;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer-main {
  padding-bottom: 64px;
}

.site-footer-brand {
  display: inline-block;
  width: 220px;
  max-width: 100%;
  margin-bottom: 22px;
  transition: opacity 180ms ease;
}

.site-footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer-brand:hover,
.site-footer-brand:focus {
  opacity: 0.78;
}

.site-footer-intro p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 16px;
  line-height: 1.75;
}

.site-footer-column h6 {
  margin-bottom: 21px;
  color: var(--fp-white);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-column li {
  margin-bottom: 11px;
  line-height: 1.45;
}

.site-footer-column a,
.site-footer-column span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
}

.site-footer-column a:hover,
.site-footer-column a:focus {
  color: var(--fp-white);
}

.site-footer-bottom {
  display: flex;
  padding: 25px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
}

.site-footer-bottom p,
.site-footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.035em;
}

.site-footer-bottom a:hover,
.site-footer-bottom a:focus {
  color: var(--fp-white);
}

@media (max-width: 991px) {
  .final-cta-title {
    font-size: 60px;
  }

  .site-footer-intro {
    margin-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .final-cta {
    min-height: 0;
  }

  .final-cta-media {
    background-position: 62% center !important;
  }

  .final-cta-content {
    padding-top: 88px;
    padding-bottom: 68px;
  }

  .final-cta-eyebrow::before,
  .final-cta-eyebrow::after {
    width: 24px;
    margin-right: 9px;
    margin-left: 9px;
  }

  .final-cta-title {
    font-size: 45px;
  }

  .final-cta-intro {
    font-size: 18px;
  }

  .final-cta-paths {
    margin-top: 36px;
  }

  .final-cta-path {
    min-height: 0;
    margin-bottom: 16px;
    padding: 26px;
  }

  .final-cta-standard {
    margin-top: 36px;
  }

  .final-cta-standard p {
    font-size: 17px;
  }

  .site-footer {
    padding-top: 62px;
  }

  .site-footer-column {
    min-height: 0;
    margin-bottom: 36px;
  }

  .site-footer-bottom {
    display: block;
    text-align: center;
  }

  .site-footer-bottom p {
    margin-bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta-path {
    transition: none;
  }

  .final-cta-path:hover,
  .final-cta-path:focus {
    transform: none;
  }
}

/* Touch-device and modern mobile viewport safeguards */
@supports (height: 100svh) {
  .final-cta {
    min-height: 92svh;
  }
}

@media (hover: none) and (pointer: coarse) {
  .parallax > .background-image-holder,
  .parallax ul.slides > li > .background-image-holder {
    top: 0 !important;
    height: 100% !important;
    -webkit-transform: none !important;
    transform: none !important;
  }

  .about-link:hover,
  .why-card:hover,
  .final-cta-path:hover {
    -webkit-transform: none;
    transform: none;
  }
}

/* Modern iPad, iPhone and Android browsers support muted inline video. */
@media all and (max-width: 1024px) {
  .fs-vid-background {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fs-vid-background {
    display: none !important;
  }

  .vid-bg .background-image-holder {
    display: block !important;
  }
}

/* Compact landscape layout for iPhone and similarly short touch viewports. */
@media screen and (orientation: landscape) and (max-width: 1200px) and (max-height: 600px) and (hover: none) {
  nav .nav-utility {
    display: none;
  }

  #standard.cover.fullscreen,
  #standard.cover.fullscreen .slides > li {
    height: calc(100vh - 55px);
    min-height: 380px;
  }

  #standard.cover.fullscreen .slides > li {
    padding-top: 0;
    padding-bottom: 0;
  }

  @supports (height: 100dvh) {
    #standard.cover.fullscreen,
    #standard.cover.fullscreen .slides > li {
      height: calc(100dvh - 55px);
    }
  }

  #standard .v-align-transform {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }

  #standard h1.large,
  #standard .hero-slide-title {
    margin-bottom: 16px !important;
    font-size: 44px;
    line-height: 48px;
  }

  #standard h6 {
    margin-bottom: 8px !important;
  }

  #standard p.lead {
    max-width: 620px;
    margin-bottom: 18px !important;
    font-size: 16px;
    line-height: 1.4;
  }

  #standard .btn {
    min-width: 170px;
    height: 44px;
    line-height: 40px;
  }

  #standard.controls-inside .flex-control-nav {
    bottom: 14px;
  }
}
