:root {
  --ink: #3d3d3d;
  --muted: #655e76;
  --blue: #00247c;
  --blue-deep: #001849;
  --lavender: #b6b0c7;
  --surface: #e2e3e9;
  --white: #fff;
  --font-display: "aktiv-grotesk-extended", "Aktiv Grotesk Ex", Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --container: 1360px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

strong {
  font-weight: 700;
}

.show-on-mobile {
  display: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: #000;
  transform: translateY(-160%);
}

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

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

.section-shell {
  width: min(calc(100% - 80px), var(--container));
}

.section-copy h2,
.why h2,
.process h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.section-copy p,
.contact__text p {
  font-size: 22px;
  line-height: 26px;
}

.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms cubic-bezier(.22, 1, .36, 1),
    transform 720ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-reveal .section-copy p[data-reveal],
.has-reveal .contact__text p[data-reveal] {
  --reveal-delay: 120ms;
}

.has-reveal .offer-card:nth-child(2),
.has-reveal .benefit-card:nth-child(2),
.has-reveal .audience__item:nth-child(2),
.has-reveal .realization-card:nth-child(2),
.has-reveal .blog-post-card:nth-child(2) {
  --reveal-delay: 90ms;
}

.has-reveal .offer-card:nth-child(3),
.has-reveal .benefit-card:nth-child(3),
.has-reveal .audience__item:nth-child(3),
.has-reveal .realization-card:nth-child(3),
.has-reveal .blog-post-card:nth-child(3) {
  --reveal-delay: 180ms;
}

.has-reveal .offer-card:nth-child(4),
.has-reveal .benefit-card:nth-child(4),
.has-reveal .audience__item:nth-child(4),
.has-reveal .realization-card:nth-child(4),
.has-reveal .blog-post-card:nth-child(4) {
  --reveal-delay: 270ms;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 60px;
  padding: 17px 40px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 75px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.button img {
  width: 13px;
  height: 14px;
  flex: 0 0 auto;
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: #0b3697;
  border-color: #0b3697;
}

.button--light {
  color: var(--blue);
  background: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
  background: #eef2ff;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.grid-overlay::before,
.grid-overlay::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.grid-overlay::before {
  top: 50%;
  left: calc(50% + 96px);
  width: 583px;
  height: 763px;
  background-image: url("../assets/grid-vertical.svg");
  transform: translateY(-50%);
}

.grid-overlay::after {
  top: calc(50% - 6px);
  left: calc(50% + 315px);
  width: 1290px;
  height: 388px;
  background-image: url("../assets/grid-horizontal.svg");
  transform: translate(-50%, -50%);
}

.hero {
  position: relative;
  height: min(100svh, 950px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02);
}

.hero::after,
.why__media::after,
.team__media::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::after {
  background: linear-gradient(90deg, rgb(0 12 40 / 65%) 0%, rgb(0 8 24 / 38%) 43%, rgb(0 3 10 / 0%) 100%);
}

.hero__grid,
.site-header,
.hero__content,
.scroll-cue {
  z-index: 1;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  width: min(calc(100% - 80px), var(--container));
  height: 120px;
  transform: translateX(-50%);
  transition:
    width 220ms var(--ease),
    height 220ms var(--ease),
    padding 220ms var(--ease),
    background-color 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.site-logo {
  display: block;
  width: 193px;
  height: 52px;
}

.site-logo img,
.site-footer__brand > a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-logo img {
  transition: filter 220ms var(--ease);
}

.site-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
  color: var(--white);
  font-size: 16px;
  line-height: 21px;
  transition: color 220ms var(--ease);
}

.site-nav a {
  text-decoration: none;
}

.site-nav__mobile-only {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.site-header__cta {
  margin-left: 35px;
}

.site-header--light {
  position: relative;
  left: auto;
  z-index: 5;
  width: 100%;
  padding-inline: max(calc((100% - var(--container)) / 2), 40px);
  border-bottom: 1px solid var(--lavender);
  transform: none;
}

.site-header--light .site-logo img {
  filter: none;
}

.site-header--light .site-nav {
  color: var(--ink);
}

.site-header--light .site-nav [aria-current="page"],
.site-footer [aria-current="page"] {
  color: var(--blue);
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100vw;
  height: 92px;
  padding-inline: max(calc((100% - var(--container)) / 2), 40px);
  background: var(--white);
  border-bottom: 1px solid rgb(182 176 199 / 55%);
  box-shadow: 0 16px 42px rgb(0 18 60 / 10%);
  transform: none;
}

.site-header.is-scrolled .site-logo img {
  filter: none;
}

.site-header.is-scrolled .site-nav {
  color: var(--ink);
}

.site-header.is-scrolled .site-nav [aria-current="page"] {
  color: var(--blue);
}

.nav-toggle {
  display: none;
}

.hero__content {
  position: absolute;
  top: 391px;
  left: max(calc((100% - var(--container)) / 2), 40px);
  display: grid;
  gap: 40px;
  width: 776px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.95px;
}

.hero__content p {
  margin-top: -20px;
  font-size: 22px;
  line-height: 26px;
}

.hero__content .button {
  justify-self: start;
}

.scroll-cue {
  position: absolute;
  bottom: 44px;
  left: calc(50% - 39px);
  display: grid;
  justify-items: center;
  gap: 10px;
  width: 79px;
  color: var(--white);
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  text-decoration: none;
  animation: scroll-cue-float 1.9s var(--ease) infinite;
}

.scroll-cue img {
  width: 16px;
  height: 27px;
}

@keyframes scroll-cue-float {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(9px);
  }
}

.home-sections {
  position: relative;
  padding-top: 240px;
  overflow: hidden;
  background: var(--surface);
}

.experience,
.offer,
.audience,
.why,
.coverage,
.process,
.team {
  isolation: isolate;
}

.experience::before,
.offer::before,
.audience::before,
.why::before,
.coverage::before,
.process::before,
.team::before {
  display: none;
  position: absolute;
  left: 50%;
  z-index: 2;
  width: 1px;
  height: 80px;
  content: "";
  pointer-events: none;
  background: var(--lavender);
  transform: translateX(-50%);
}

.experience::after,
.offer::after,
.audience::after,
.why::after,
.coverage::after,
.home-sections .process::after,
.team::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.experience::after {
  top: -190px;
  left: calc(50% + 97px);
  width: 1px;
  height: 160px;
  background: var(--lavender);
}

.offer::after {
  top: -178px;
  left: 194px;
  width: 583px;
  height: 240px;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 0 80px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 100% 0 / 1px 80px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 80px / 1px 80px no-repeat;
}

.audience::after {
  top: -483px;
  left: 194px;
  width: 1px;
  height: 405px;
  background: var(--lavender);
}

.why::after {
  top: -250px;
  left: calc(50% - 487px);
  width: 974px;
  height: 180px;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 0 0 / 1px 80px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 80px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 100% 80px / 1px 80px no-repeat;
}

.coverage::after {
  top: -68px;
  left: 1277px;
  width: 1px;
  height: 160px;
  background: var(--lavender);
}

.home-sections .process::after {
  top: -585px;
  left: 194px;
  width: 974px;
  height: 505px;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 100% 0 / 1px 425px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 425px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 425px / 1px 80px no-repeat;
}

.team::after {
  top: -240px;
  left: calc((100vw - 1640px) + 194px);
  width: 1px;
  height: 160px;
  background: var(--lavender);
}

.home-sections > section,
.home-sections > footer {
  position: relative;
  z-index: 1;
}

.home-sections > .team {
  z-index: 3;
}

.experience {
  display: flex;
  gap: 273px;
  align-items: flex-start;
  min-height: 323px;
  margin: 0 auto 200px;
}

.experience__numbers {
  display: grid;
  gap: 40px;
  width: 427px;
}

.stat {
  display: grid;
  gap: 5px;
}

.stat strong {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.stat p {
  font-size: 22px;
  line-height: 26px;
}

.experience__copy {
  display: grid;
  gap: 40px;
  width: 660px;
}

.offer {
  display: grid;
  grid-template-columns: repeat(4, 310px);
  grid-template-rows: 305px 305px 60px;
  gap: 40px;
  height: 750px;
  margin: 0 auto 80px;
}

.offer__intro {
  grid-column: 1 / span 2;
  grid-row: 1;
  display: grid;
  gap: 40px;
  width: 660px;
  margin-top: 40px;
}

.offer__intro h2 {
  max-width: 620px;
}

.offer-grid {
  grid-column: 2 / span 3;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(3, 310px);
  grid-template-rows: repeat(2, 305px);
  gap: 40px;
  justify-self: end;
  width: 1010px;
}

.service-card,
.benefit-card {
  display: grid;
  align-content: start;
  background: var(--white);
}

.service-card {
  min-height: 305px;
  gap: 40px;
  padding: 40px 20px;
}

.service-card img {
  width: 40px;
  height: 40px;
}

.service-card h3,
.benefit-card h3 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: -.78px;
}

.service-card p,
.benefit-card p {
  font-size: 16px;
  line-height: 21px;
}

.service-card:nth-child(1) { grid-column: 2; grid-row: 1; }
.service-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.service-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.service-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.service-card:nth-child(5) { grid-column: 3; grid-row: 2; }

.offer__button {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
}

.audience {
  display: grid;
  place-items: center;
  height: 750px;
  margin: 0 auto 320px;
  overflow: visible;
  color: var(--white);
  background: var(--blue);
}

.audience__grid {
  mix-blend-mode: normal;
  opacity: .45;
  background:
    url("../assets/grid-vertical.svg") left top / 583px 763px no-repeat,
    url("../assets/grid-vertical.svg") 776px top / 583px 763px no-repeat;
}

.audience__grid::before,
.contact__grid::before,
.contact__grid::after {
  display: none;
}

.audience__grid::after {
  top: 181px;
  left: 50%;
  display: block;
  width: 1360px;
  height: 388px;
  background-image: url("../assets/grid-horizontal.svg");
  background-size: 100% 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  transform: translateX(-50%);
}

.audience__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 40px;
  width: 970px;
  text-align: center;
}

.audience h2 {
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.audience p {
  width: 970px;
  font-size: 22px;
  line-height: 26px;
}

.audience__tags {
  display: grid;
  grid-template-columns: repeat(2, 310px);
  gap: 20px 40px;
}

.audience__tags span {
  display: grid;
  place-items: center;
  min-height: 60px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}

.why {
  width: 100%;
  height: 927px;
  margin-bottom: 140px;
}

.why__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 750px;
  overflow: hidden;
  background: var(--blue-deep);
}

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

.why__media::after {
  background: linear-gradient(90deg, rgb(0 12 40 / 49%) 0%, rgb(0 3 10 / 9%) 100%);
}

.why__grid {
  z-index: 1;
  transform: none;
}

.why__grid::before {
  top: 90px;
  left: 0;
  width: 972px;
  background-image:
    url("../assets/grid-vertical.svg"),
    url("../assets/grid-vertical.svg");
  background-position: left top, 389px top;
  background-size: 583px 763px, 583px 763px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  transform: none;
}

.why__grid::after {
  top: 271px;
  left: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  transform: none;
}

.why__content {
  position: absolute;
  top: 470px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.why h2 {
  width: 660px;
  min-height: 101px;
  margin-bottom: 40px;
  color: var(--white);
}

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

.benefit-card {
  min-height: 315px;
  gap: 40px;
  padding: 40px 20px;
}

.benefit-card img {
  width: 40px;
  height: 40px;
}

.benefit-card h3 + p {
  margin-top: -20px;
}

.coverage {
  display: grid;
  grid-template-columns: 880px 550px;
  gap: 40px;
  width: 1580px;
  height: 897px;
  margin: 0 auto 240px;
}

.coverage__map {
  width: 880px;
  height: 900px;
  margin: 0;
}

.coverage__map img {
  width: 100%;
  height: 100%;
}

.coverage__copy {
  display: grid;
  align-content: start;
  gap: 40px;
  padding-top: 180px;
}

.coverage__copy .button {
  justify-self: start;
}

.process {
  margin: 0 auto 320px;
  content-visibility: visible !important;
}

.process h2 {
  margin-bottom: 40px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 310px);
  gap: 40px;
  align-items: center;
  height: 120px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
  background: var(--white);
}

.process-track li {
  position: relative;
  display: grid;
  justify-items: center;
}

.process-track li:not(:last-child)::after {
  position: absolute;
  top: 20px;
  left: calc(50% + 38px);
  width: calc(100% - 36px);
  height: 3px;
  content: "";
  background: url("../assets/process-line.svg") center / 100% 100% no-repeat;
  transition: background-image 600ms var(--ease);
}

.process-track li.is-active::after {
  background-image: url("../assets/process-line-active.svg");
}

.process-track span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--lavender);
  font-size: 22px;
  line-height: 26px;
  transition: background-color 600ms var(--ease), color 600ms var(--ease);
}

.process-track .is-active span {
  background: var(--blue);
}

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

.process-step {
  display: grid;
  gap: 20px;
  color: var(--lavender);
  transition: color 600ms var(--ease);
}

.process-step p {
  font-size: 22px;
  line-height: 26px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -.66px;
}

.process-step.is-active {
  color: var(--blue);
}

.process-step.is-active p {
  color: var(--muted);
}

.process__button {
  margin-top: 40px;
}

.team {
  display: grid;
  grid-template-columns: 823px 660px;
  gap: 157px;
  width: 1640px;
  height: 800px;
}

.team__media {
  position: relative;
  height: 800px;
  overflow: hidden;
  background: var(--lavender);
}

.team__media img,
.team__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.85) hue-rotate(3deg);
}

.team__copy {
  display: grid;
  align-content: start;
  gap: 40px;
  padding-top: 80px;
}

.team__copy .button {
  justify-self: start;
}

.contact {
  width: 100%;
  min-height: 1420px;
  padding: 320px 0 160px;
  margin-top: -160px;
  overflow: hidden;
  color: var(--blue);
  background: var(--white);
}

.contact__grid {
  opacity: .5;
  filter: brightness(.92);
  mix-blend-mode: normal;
  background:
    url("../assets/grid-vertical.svg") calc(50% - 680px) -528px / 583px 2522px no-repeat,
    url("../assets/grid-vertical.svg") calc(50% + 96px) -528px / 583px 2522px no-repeat;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.contact__grid::after {
  top: 0;
  left: 50%;
  display: block;
  width: 2904px;
  height: 1098px;
  background:
    url("../assets/grid-horizontal.svg") center 322px / 2904px 388px no-repeat,
    url("../assets/grid-horizontal.svg") center 710px / 2904px 388px no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  transform: translateX(-50%);
}

.contact__intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 41px;
  width: 740px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: 660px;
  margin: 80px auto 0;
}

.contact-form label {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-form label > span:first-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 21px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 0;
  outline: 0;
}

.contact-form input {
  height: 61px;
  padding: 16px 20px;
  font-size: 22px;
  line-height: 26px;
}

.contact-form textarea {
  height: 160px;
  padding: 16px 20px;
  resize: vertical;
  min-height: 160px;
  font-size: 22px;
  line-height: 26px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(0 36 124 / 14%);
}

.contact-form [aria-invalid="true"] {
  border-color: #b12845;
}

.field-error {
  min-height: 19px;
  color: #b12845;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.field-error:empty {
  display: none;
}

.privacy {
  display: block !important;
  color: var(--ink);
  font-size: 16px;
  line-height: 21px;
}

.contact-form .privacy > span:first-child,
.privacy .wpcf7-form-control-wrap,
.privacy .wpcf7-form-control,
.privacy .wpcf7-list-item {
  display: block;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.privacy .wpcf7-list-item {
  margin: 0;
}

.privacy .wpcf7-list-item label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.privacy input {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.privacy .wpcf7-list-item-label {
  display: block;
  min-width: 0;
}

.privacy a {
  color: var(--blue);
  font-weight: 700;
}

.privacy .field-error {
  grid-column: 2;
}

.contact-form .button {
  justify-self: start;
  margin-top: 20px;
}

.form-status {
  min-height: 21px;
  color: var(--blue);
  font-size: 16px;
  line-height: 21px;
}

.form-status.is-error {
  color: #b12845;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 310px 157px 310px 40px 310px 40px minmax(170px, 1fr);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "brand . addresses . links . socials"
    "copyright copyright . . . credit credit";
  column-gap: 0;
  align-items: start;
  width: 100%;
  height: 666px;
  padding: 79px max(calc((100% - var(--container)) / 2), 40px) 41px;
  color: var(--white);
  background: var(--blue);
}

.site-footer__brand {
  grid-area: brand;
  width: 310px;
}

.site-footer__brand > a {
  display: block;
  width: 193px;
  height: 52px;
  margin-bottom: 55px;
}

.site-footer__phones {
  display: grid;
  gap: 0;
  font-size: 16px;
  line-height: 21px;
}

.site-footer__phones .label {
  display: block;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.site-footer__phones a,
.site-footer__links a {
  text-decoration: none;
}

.socials {
  grid-area: socials;
  display: flex;
  gap: 10px;
  justify-self: end;
  margin-top: 20px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background: transparent;
  text-decoration: none;
}

.socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__addresses {
  grid-area: addresses;
  display: grid;
  gap: 0;
  width: 310px;
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  line-height: 21px;
  padding-top: 22px;
}

.site-footer__addresses strong + span {
  margin-top: 21px;
}
.site-footer__addresses span + strong {
  margin-top: 40px;
}

.site-footer__links {
  grid-area: links;
  display: grid;
  gap: 0;
  width: 310px;
  padding-top: 25px;
  font-size: 16px;
  line-height: 21px;
}

.site-footer__menu {
  display: contents;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__menu li {
  display: contents;
}

.site-footer__menu li:last-child a {
  margin-top: 21px;
}

.site-footer [aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
}

.site-footer__copyright {
  grid-area: copyright;
  align-self: end;
  font-size: 16px;
  line-height: 21px;
}

.site-footer__credit {
  grid-area: credit;
  align-self: end;
  justify-self: start;
  margin-left: 0;
  margin-right: 0;
  width: 164px;
  height: 32px;
}

.site-footer__credit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-page {
  overflow-x: hidden;
}

.breadcrumb {
  display: flex;
  gap: 5px;
  align-items: center;
  margin: 20px auto 0;
  color: var(--lavender);
  font-size: 16px;
  line-height: 21px;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb img {
  width: 13px;
  height: 14px;
}

.breadcrumb span {
  color: var(--blue);
}

.shared-split-hero {
  display: grid;
  grid-template-columns: 777px 427px;
  grid-template-rows: auto 800px;
  column-gap: 156px;
}

.shared-split-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--lavender);
}

.shared-split-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shared-split-hero__copy {
  display: grid;
  align-content: start;
}

.shared-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 310px);
  gap: 40px;
}

.shared-feature-card {
  display: grid;
  align-content: start;
  gap: 40px;
  padding: 40px 20px;
  color: var(--white);
  background: var(--blue);
}

.shared-feature-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.about-hero {
  grid-template-rows: 142px 800px;
  gap: 106px 156px;
  margin: 76px auto 199px;
}

.about-hero h1 {
  grid-column: 1;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.95px;
}

.about-hero__media,
.about-fleet__media {
  margin: 0;
  overflow: hidden;
  background: var(--lavender);
}

.about-hero__media {
  grid-column: 1;
  grid-row: 2;
  width: 777px;
  height: 800px;
}

.about-hero__media img,
.about-fleet__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__media img {
  object-position: center;
}

.about-hero__copy {
  grid-column: 2;
  grid-row: 2;
  align-content: start;
  gap: 20px;
  padding-top: 0;
}

.about-hero__copy .button,
.about-fleet__copy .button {
  justify-self: start;
  margin-top: 20px;
}

.about-hero__cta--mobile {
  display: none;
}

.about-sections {
  position: relative;
}

.about-sections > section,
.about-sections > footer {
  position: relative;
  z-index: 1;
}

.about-strengths::before,
.about-fleet::before,
.about-notes::before {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.about-strengths::before {
  top: -575px;
  left: 194px;
  width: 787px;
  height: 545px;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 100% 0 / 1px 465px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 465px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 465px / 1px 80px no-repeat;
}

.about-fleet::before {
  top: -160px;
  left: calc(50% - 487px);
  width: 1px;
  height: 160px;
  background: var(--lavender);
}

.about-notes::before {
  top: -335px;
  left: calc(50% - 487px);
  width: 1px;
  height: 247px;
  background: var(--lavender);
}

.about-strengths {
  min-height: 556px;
  margin: 0 auto 200px;
}

.about-strengths__intro {
  display: grid;
  grid-template-columns: repeat(2, 660px);
  gap: 40px;
  margin-bottom: 80px;
}

.about-strengths h2,
.about-fleet h2,
.about-note h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 400;
}

.about-strengths h2,
.about-fleet h2 {
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.about-strengths__copy,
.about-fleet__copy {
  display: grid;
  align-content: start;
  gap: 26px;
  font-size: 22px;
  line-height: 26px;
}

.about-tile {
  min-height: 253px;
}

.about-tile h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: -.78px;
}

.about-fleet {
  display: grid;
  grid-template-columns: 660px 543px;
  gap: 157px;
  min-height: 800px;
  margin: 0 auto 160px;
}

.about-fleet__copy {
  gap: 20px;
  padding-top: 80px;
}

.about-fleet__media {
  width: 543px;
  height: 800px;
}

.about-fleet__media img {
  object-position: center;
}

.about-notes {
  display: grid;
  grid-template-columns: repeat(2, 660px);
  gap: 40px;
  margin: 0 auto 161px;
}

.about-note {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 325px;
  padding: 40px;
  background: var(--white);
}

.about-note h2 {
  font-size: 34px;
  line-height: 39px;
  letter-spacing: -1.02px;
}

.about-note p {
  font-size: 16px;
  line-height: 21px;
}

.contact--about {
  min-height: 1260px;
  padding-top: 160px;
  margin-top: 0;
}

.carriers-page {
  overflow-x: hidden;
}

.carriers-hero {
  display: grid;
  grid-template-columns: 777px 427px;
  grid-template-rows: auto 800px;
  gap: 100px 156px;
  margin: 51px auto 200px;
}

.carriers-hero h1 {
  grid-column: 1 / -1;
  width: 660px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.95px;
}

.carriers-hero__media,
.carrier-team__media {
  margin: 0;
  overflow: hidden;
  background: var(--lavender);
}

.carriers-hero__media {
  width: 777px;
  height: 800px;
}

.carriers-hero__media picture,
.carrier-team__media picture {
  display: block;
}

.carrier-team__media video {
  display: block;
}

.carriers-hero__media picture,
.carriers-hero__media img,
.carrier-team__media picture,
.carrier-team__media img,
.carrier-team__media video,
.carrier-stability__media img {
  width: 100%;
  height: 100%;
}

.carriers-hero__media img,
.carrier-team__media img,
.carrier-team__media video,
.carrier-stability__media img {
  object-fit: cover;
}

.carriers-hero__media img {
  object-position: 51% 50%;
}

.carriers-hero__copy {
  display: grid;
  align-content: start;
  gap: 20px;
  padding-top: 98px;
}

.carriers-hero__copy h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -.66px;
}

.carriers-hero__copy p {
  font-size: 22px;
  line-height: 26px;
}

.carriers-hero__copy .button {
  justify-self: start;
  margin-top: 20px;
}

.carriers-sections {
  position: relative;
}

.carriers-sections > section,
.carriers-sections > footer {
  position: relative;
  z-index: 1;
}

.carrier-benefits,
.carrier-stability,
.process--carriers,
.carrier-team,
.contact--carriers {
  isolation: isolate;
}

.carrier-benefits::before,
.carrier-stability::before,
.process--carriers::before,
.carrier-team::before,
.contact--carriers::before {
  position: absolute;
  display: block;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: var(--lavender);
}

.carrier-benefits::before {
  top: -540px;
  left: 60px;
  width: 817px;
  height: 517px;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 100% 0 / 1px 457px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 457px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 457px / 1px 80px no-repeat;
}

.process--carriers::before,
.contact--carriers::before {
  left: 50%;
  width: 1px;
  height: 160px;
}

.carrier-benefits {
  margin: 0 auto 359px;
}

.carrier-benefits h2,
.carrier-stability__box h2,
.carrier-team h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 400;
}

.carrier-benefits h2 {
  width: 660px;
  margin-bottom: 40px;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.carrier-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 310px);
  gap: 40px;
}

.carrier-benefit-card {
  display: grid;
  align-content: start;
  gap: 40px;
  min-height: 253px;
  padding: 40px 20px;
  background: var(--white);
}

.carrier-benefit-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.carrier-benefit-card h3 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: -.78px;
}

.carrier-stability {
  min-height: 910px;
  margin-bottom: 210px;
}

.carrier-stability::before {
  top: -260px;
  left: calc(50% - 487px);
  width: 1px;
  height: 160px;
}

.carrier-stability__media {
  position: relative;
  z-index: 0;
  height: 750px;
  overflow: hidden;
  background: var(--blue-deep);
}

.carrier-stability__media::after {
  display: none;
}

.carrier-stability__media img {
  object-position: center 50%;
}

.carrier-stability__grid {
  display: none;
}

.carrier-stability__box {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  width: 660px;
  min-height: 345px;
  padding: 40px;
  margin: -265px max(calc((100% - var(--container)) / 2), 40px) 0 auto;
  background: var(--white);
}

.carrier-stability__box h2 {
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.carrier-stability__box p {
  font-size: 16px;
  line-height: 21px;
}

.carrier-stability__box .button {
  justify-self: start;
  margin-top: 20px;
}

.process--carriers {
  margin-bottom: 200px;
}

.process--carriers > * {
  position: relative;
  z-index: 1;
}

.process--carriers::before {
  top: -90px;
  transform: translateX(370px);
}

.process--carriers .process-track {
  grid-template-columns: 40px 40px 40px;
  justify-content: space-between;
  padding-inline: 135px;
}

.process--carriers .process-track li:not(:last-child)::after {
  left: calc(50% + 38px);
  width: 445px;
}

.process--carriers .process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process--carriers .process-step {
  gap: 20px;
}

.process--carriers .process-step p:last-child {
  color: currentColor;
  font-size: 16px;
  line-height: 21px;
}

.process--carriers .process-step.is-active p:last-child {
  color: var(--ink);
}

.carrier-team {
  z-index: 3 !important;
  display: grid;
  grid-template-columns: 660px 543px;
  gap: 157px;
  margin: 0 auto 0;
}

.carrier-team::before {
  top: -240px;
  left: 20px;
  width: 827px;
  height: 210px;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 100% 80px / 1px 80px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 160px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 160px / 1px 80px no-repeat;
}

.carrier-team__copy {
  display: grid;
  align-content: start;
  gap: 40px;
  padding-top: 80px;
}

.carrier-team h2 {
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.carrier-team__copy p,
.carrier-list {
  font-size: 22px;
  line-height: 26px;
}

.carrier-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.carrier-list li {
  display: grid;
  grid-template-columns: 13px 1fr;
  gap: 10px;
  align-items: start;
}

.carrier-list li::before {
  width: 13px;
  height: 14px;
  margin-top: 6px;
  content: "";
  background: url("../assets/arrow-blue.svg") center / 100% 100% no-repeat;
}

.carrier-team__media {
  width: 543px;
  height: 800px;
}

.carrier-team__media img,
.carrier-team__media video {
  object-position: 56% 50%;
}

.contact--carriers {
  z-index: 1 !important;
  min-height: 1420px;
  padding-top: 320px;
  margin-top: -160px;
}

.contact--carriers::before {
  top: -220px;
  transform: translateX(-487px);
}

.contact--carriers .contact__intro a {
  color: inherit;
  text-decoration: none;
}

.contact--carriers .contact__intro a:hover,
.contact--carriers .contact__intro a:focus-visible {
  text-decoration: underline;
}

.contact-page {
  overflow-x: hidden;
}

.contact-hero {
  position: relative;
  grid-template-rows: auto 800px;
  gap: 40px 156px;
  margin: 80px auto 300px;
}
.contact-hero::after {
  position: absolute;
  top: 1165px;
  left: 153px;
  z-index: -1;
  width: 857px;
  height: 230px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 100% 0 / 1px 80px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 80px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 80px / 1px 80px no-repeat;
}

.contact-hero h1 {
  width: 777px;
}

.contact-hero__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-hero__copy {
  gap: 40px;
  padding-top: 0;
}

.contact-hero__copy > p {
  font-size: 22px;
  line-height: 26px;
}

.contact-address {
  display: grid;
  gap: 0;
  color: var(--blue);
  font-size: 22px;
  font-style: normal;
  line-height: 26px;
}

.contact-address strong + span,
.contact-address span + span {
  margin-top: 0;
}
.contact-address strong + span {
  margin-top: 10px;
}

.contact-address span:nth-of-type(3) {
  margin-top: 26px;
}

.contact-details {
  display: grid;
  gap: 0;
  margin: 0;
  color: var(--blue);
  font-size: 22px;
  line-height: 26px;
}

.contact-details div {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 10px;
}

.contact-details div + div {
  margin-top: 26px;
}

.contact-details dt {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-weight: 400;
}

.contact-details dt img {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.contact-details dd {
  grid-column: 2;
  margin: 0;
}

.contact-details a {
  text-decoration: none;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  text-decoration: underline;
}

.contact--page {
  position: relative;
  min-height: 1297px;
  padding: 70px 0 160px;
  margin-top: 0;
}

.contact--page .contact__intro {
  gap: 41px;
}

.contact--page .contact__intro h2 {
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.contact--page .contact-form {
  margin-top: 80px;
}

.order-page {
  overflow-x: hidden;
  background: var(--white);
}

.order-hero {
  position: relative;
  min-height: 641px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.order-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgb(0 12 40 / 65%) 0%, rgb(0 8 24 / 36%) 45%, rgb(0 3 10 / 0%) 100%);
}

.order-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.order-hero__breadcrumb,
.order-hero__content {
  z-index: 1;
}

.order-hero__breadcrumb {
  position: relative;
  margin-top: 140px;
  color: var(--lavender);
}

.order-hero__breadcrumb span {
  color: var(--white);
}

.order-hero__content {
  position: relative;
  width: min(calc(100% - 80px), var(--container));
  margin-top: 258px;
  margin-left: auto;
  margin-right: auto;
}

.order-hero h1 {
  width: 1243px;
  max-width: 100%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.95px;
}

.order-form-section {
  position: relative;
  min-height: 2661px;
  padding: 160px 0;
  margin-top: 0;
}

.order-form-section .contact__grid {
  opacity: .38;
  background:
    url("../assets/grid-vertical.svg") calc(50% - 680px) 0 / 583px 2522px repeat-y,
    url("../assets/grid-vertical.svg") calc(50% + 96px) 0 / 583px 2522px repeat-y;
  -webkit-mask-image: none;
  mask-image: none;
}

.order-form-section .contact__grid::after {
  top: 0;
  left: 50%;
  display: block;
  width: 2904px;
  height: 100%;
  background:
    url("../assets/grid-horizontal.svg") center 322px / 2904px 388px repeat-y;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  transform: translateX(-50%);
}

.order-form {
  margin-top: 0;
}

.order-form fieldset {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  border: 0;
}

.order-form fieldset + fieldset {
  margin-top: 90px;
}

.order-form legend {
  width: 100%;
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.35px;
  text-align: center;
}

.order-form .privacy {
  margin-top: 20px;
}

.order-form .button {
  justify-self: start;
}

.offer-page {
  overflow-x: hidden;
  background: var(--surface);
}

.offer-page main > section {
  position: relative;
}

.offer-page main > section::before,
.offer-page main > section::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
}
.offer-page main > section.offer-hero::after {
  background: linear-gradient(var(--lavender), var(--lavender)) 100% 180px / 1px 390px no-repeat, linear-gradient(var(--lavender), var(--lavender)) 0 569px / 100% 1px no-repeat, linear-gradient(var(--lavender), var(--lavender)) 0 569px / 1px 80px no-repeat;
  top: 548px;
  left: 194px;
  width: 857px;
  height: 629px;
}
.offer-page main > section.coverage--offer::after {
  background: linear-gradient(var(--lavender), var(--lavender)) 100% 0 / 1px 325px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 325px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 325px / 1px 80px no-repeat;
  /*background: linear-gradient(var(--lavender), var(--lavender)) 100% 180px / 1px 390px no-repeat, linear-gradient(var(--lavender), var(--lavender)) 0 569px / 100% 1px no-repeat, linear-gradient(var(--lavender), var(--lavender)) 0 569px / 1px 80px no-repeat;*/
    top: 630px;
  left: 353px;
  width: 857px;
  height: 629px;
}

.offer-page main > section.coverage--offer::before {
  content: '';
  position: absolute;
  display: block;
  background: var(--lavender);
  top: -60px;
  right: 370px;
  width: 1px;
  height: 50px;
  left: auto;
}

.offer-hero,
.offer-benefits,
.coverage--offer,
.process--offer,
.contact--offer {
  z-index: 1;
}

.offer-hero {
  display: grid;
  grid-template-columns: 777px 427px;
  column-gap: 156px;
  min-height: 800px;
  margin: 80px auto 0;
}

.offer-hero::after {
  top: 558px;
  left: 193px;
  width: 857px;
  height: 649px;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 100% 180px / 1px 390px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 569px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 569px / 1px 80px no-repeat;
}

.offer-hero h1 {
  grid-column: 1 / 2;
  width: 777px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.95px;
}

.offer-hero__media {
  position: relative;
  z-index: 1;
  grid-column: 1 / 2;
  width: 777px;
  height: 800px;
  margin: 40px 0 0;
  overflow: hidden;
  background: var(--lavender);
}

.offer-hero__media picture,
.offer-hero__media img {
  width: 100%;
  height: 100%;
}

.offer-hero__media img {
  object-fit: cover;
  object-position: center;
}

.offer-hero__copy {
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 40px;
  padding-top: 40px;
}

.offer-hero__copy p {
  font-size: 22px;
  line-height: 26px;
}

.offer-benefits {
  margin: 199px auto 240px;
}

.offer-benefits::before {
  top: 434px;
  left: 193px;
  width: 1px;
  height: 160px;
  background: var(--lavender);
}

.offer-benefits h2 {
  width: 661px;
  margin-bottom: 40px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.offer-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.offer-benefit-card {
  display: grid;
  align-content: start;
  gap: 40px;
  min-height: 180px;
  padding: 40px 20px;
  color: var(--white);
  background: var(--blue);
}

.offer-benefit-card img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.offer-benefit-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: -.78px;
}

.offer-services {
  padding: 161px 0 160px;
  background: var(--white);
}

.offer-services::before {
  display: none;
}

.offer-services__inner {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
}

.offer-services h2 {
  margin-bottom: 80px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.35px;
  text-align: center;
}

.offer-service-list {
  display: grid;
  gap: 40px;
}

.offer-service {
  display: grid;
  grid-template-columns: 600px 543px;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--surface);
}

.offer-service__summary,
.offer-service__details {
  display: grid;
  align-content: start;
  gap: 40px;
}

.offer-service__summary h3 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: -1.02px;
}

.offer-service__summary p {
  font-size: 22px;
  line-height: 26px;
}

.offer-service__details > p {
  font-size: 26px;
  line-height: 31px;
  color: var(--blue);
}

.offer-service__summary a {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 15px;
  padding-bottom: 10px;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
}

.offer-service__summary a img {
  width: 13px;
  height: 14px;
}

.offer-service__details div {
  display: grid;
  gap: 20px;
}

.offer-service__details h4 {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: -.78px;
}

.offer-service__details ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 16px;
  line-height: 21px;
}

.offer-service__details li {
  position: relative;
  padding-left: 23px;
}

.offer-service__details li::before {
  position: absolute;
  top: 5px;
  left: 1px;
  width: 11px;
  height: 11px;
  content: "";
  background: url("../assets/policy-bullet.svg") center / 100% 100% no-repeat;
}

.coverage--offer {
  grid-template-columns: 880px 660px;
  width: min(1580px, calc(100% - 80px));
  max-width: none;
  margin-left: auto;
  margin-right: max(calc((100% - var(--container)) / 2), 40px);
  margin-top: 140px;
  margin-bottom: 200px;
  content-visibility: visible !important;
}

.coverage--offer::before {
  top: -60px;
  right: 193px;
  width: 1px;
  height: 160px;
  background: var(--lavender);
}

.coverage--offer .coverage__copy {
  min-width: 0;
  width: 660px;
  max-width: 660px;
  padding-top: 180px;
  overflow-wrap: break-word;
}

.coverage--offer .coverage__copy p + p {
  margin-top: -20px;
}

.process--offer {
  margin-bottom: 160px;
}

.process--offer::before {
  display: none;
}

.process--offer .process-track {
  grid-template-columns: repeat(var(--process-count, 6), minmax(40px, 1fr));
  gap: 0;
}

.process--offer .process-track li:not(:last-child)::after {
  width: calc(100% - 36px);
}

.process--offer .process-grid {
  grid-template-columns: repeat(var(--process-count, 6), minmax(0, 1fr));
}

.process--offer .process-step p:last-child {
  color: var(--lavender);
  font-size: 16px;
  line-height: 21px;
}

.process--offer .process-step.is-active p:last-child {
  color: var(--ink);
}

.contact--offer {
  position: relative;
  min-height: 1260px;
  padding: 160px 0;
  margin-top: 0;
}

.contact--offer::before {
  display: none;
}

.contact--offer .contact__intro {
  gap: 41px;
}

.contact--offer .contact-form {
  margin-top: 60px;
}

.contact--offer .contact__grid::after {
  left: 50%;
  width: 2904px;
  background:
    url("../assets/grid-horizontal.svg") center 322px / 2904px 388px no-repeat,
    url("../assets/grid-horizontal.svg") center 710px / 2904px 388px no-repeat;
  transform: translateX(-50%);
}

.career-page {
  overflow-x: hidden;
  background: var(--surface);
}

.career-hero {
  position: relative;
  min-height: 641px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.career-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgb(0 12 40 / 65%) 0%, rgb(0 8 24 / 34%) 44%, rgb(0 3 10 / 0%) 100%);
}

.career-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.career-hero__breadcrumb,
.career-hero__content {
  z-index: 1;
}

.career-hero__breadcrumb {
  position: relative;
  margin-top: 140px;
  color: var(--lavender);
}

.career-hero__breadcrumb span {
  color: var(--white);
}

.career-hero__content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  width: min(calc(100% - 80px), var(--container));
  margin: 0;
  transform: translateX(-50%);
}

.career-hero h1 {
  width: 776px;
  max-width: 100%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.95px;
}

.career-hero h1 strong {
  display: block;
}

.career-intro {
  margin: 80px auto;
}

.career-intro p {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -.78px;
}

.career-benefits {
  position: relative;
  margin: 0 auto 240px;
}

.career-benefits::after {
  position: absolute;
  left: 193px;
  bottom: -200px;
  width: 1px;
  height: 160px;
  pointer-events: none;
  content: "";
  background: var(--lavender);
}

.career-benefits h2 {
  width: 660px;
  margin-bottom: 40px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.career-benefit-card {
  min-height: 253px;
  color: var(--blue);
  background: var(--white);
}

.career-benefit-card img {
  filter: none;
}

.career-benefit-card h3 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: -.78px;
}

.career-jobs {
  color: var(--white);
  background: var(--blue);
}

.career-jobs__inner {
  width: min(calc(100% - 80px), var(--container));
  padding: 161px 0;
  margin: 0 auto;
}

.career-jobs h2 {
  margin-bottom: 80px;
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.35px;
  text-align: center;
}

.career-job-list {
  display: grid;
  gap: 40px;
}

.career-job {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lavender);
}

.career-job summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: -1.02px;
  list-style: none;
  cursor: pointer;
}

.career-job summary::-webkit-details-marker {
  display: none;
}

.career-job summary::after {
  width: 29px;
  height: 30px;
  content: "";
  background:
    linear-gradient(var(--white), var(--white)) center / 29px 1px no-repeat,
    linear-gradient(var(--white), var(--white)) center / 1px 29px no-repeat;
  transition: transform 200ms var(--ease);
}

.career-job[open] summary::after {
  background: linear-gradient(var(--white), var(--white)) center / 29px 1px no-repeat;
  transform: none;
}

.career-job > p {
  margin-top: 20px;
  font-size: 22px;
  line-height: 26px;
}

.career-job__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 660px));
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}

.career-job h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: -.78px;
}

.career-job ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 16px;
  line-height: 21px;
}

.career-job li {
  position: relative;
  padding-left: 23px;
}

.career-job li::before {
  position: absolute;
  top: 5px;
  left: 1px;
  width: 11px;
  height: 11px;
  content: "";
  background: url("../assets/policy-bullet.svg") center / 100% 100% no-repeat;
  filter: brightness(0) invert(1);
}

.career-job__apply {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  margin-top: 40px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
}

.career-job__apply img {
  width: 13px;
  height: 14px;
}

.contact--career {
  position: relative;
  min-height: 1260px;
  padding: 160px 0;
  margin-top: 0;
}

.contact--career .contact__intro {
  gap: 41px;
}

.contact--career .contact__intro h2 {
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.contact--career .contact__intro a {
  text-decoration: none;
}

.contact--career .contact__intro a:hover,
.contact--career .contact__intro a:focus-visible {
  text-decoration: underline;
}

.contact--career .contact-form {
  margin-top: 60px;
}

.contact--career .contact__grid::after {
  left: 50%;
  width: 2904px;
  background:
    url("../assets/grid-horizontal.svg") center 322px / 2904px 388px no-repeat,
    url("../assets/grid-horizontal.svg") center 710px / 2904px 388px no-repeat;
  transform: translateX(-50%);
}

.realizations-page {
  overflow-x: hidden;
  background: var(--surface);
}

.realizations-hero {
  position: relative;
  min-height: 641px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.realizations-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgb(0 12 40 / 65%) 0%, rgb(0 8 24 / 34%) 44%, rgb(0 3 10 / 0%) 100%);
}

.realizations-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.realizations-hero__breadcrumb,
.realizations-hero__content {
  z-index: 1;
}

.realizations-hero__breadcrumb {
  position: relative;
  margin-top: 140px;
  color: var(--lavender);
}

.realizations-hero__breadcrumb span {
  color: var(--white);
}

.realizations-hero__content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  width: min(calc(100% - 80px), var(--container));
  margin: 0;
  transform: translateX(-50%);
}

.realizations-hero h1 {
  width: 776px;
  max-width: 100%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.95px;
}

.realizations-list {
  margin: 80px auto 160px;
}

.realizations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: 40px;
}

.realizations-grid + .realizations-grid {
  margin-top: 40px;
}

.realization-card {
  min-height: 0;
}

.realization-card:nth-child(6n + 1),
.realization-card:nth-child(6n + 6) {
  grid-column: span 2 / span 2;
}

.realization-card:nth-child(6n + 2) {
  grid-column-start: 3;
}

.realization-card:nth-child(6n + 3) {
  grid-column-start: 3;
  grid-row-start: calc((var(--gallery-row-group, 0) * 3) + 2);
}

.realization-card:nth-child(6n + 4) {
  grid-column-start: 2;
  grid-row-start: calc((var(--gallery-row-group, 0) * 3) + 2);
}

.realization-card:nth-child(6n + 5) {
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: calc((var(--gallery-row-group, 0) * 3) + 2);
}

.realization-card:nth-child(6n + 6) {
  grid-column-start: 2;
  grid-row-start: calc((var(--gallery-row-group, 0) * 3) + 3);
}

.realization-card:nth-child(n + 7):nth-child(-n + 12) {
  --gallery-row-group: 1;
}

.realization-card:nth-child(n + 13):nth-child(-n + 18) {
  --gallery-row-group: 2;
}

.realization-card:nth-child(n + 19):nth-child(-n + 24) {
  --gallery-row-group: 3;
}

.realization-card a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: var(--ink);
}

.realization-card a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgb(0 12 40 / 70%) 0%, rgb(0 12 40 / 42%) 33%, rgb(0 3 10 / 0%) 72%);
  transition: opacity 180ms var(--ease);
}

.realization-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease);
}

.realization-card h2 {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: -.78px;
}

.realization-card a:hover img,
.realization-card a:focus-visible img {
  transform: scale(1.035);
}

.realization-card a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -6px;
}

body.is-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 96px 48px;
  color: var(--white);
  background: rgb(0 12 40 / 92%);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__figure {
  width: min(100%, 1280px);
  margin: 0;
  text-align: center;
}

.gallery-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
}

.gallery-lightbox__caption {
  min-height: 28px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.gallery-lightbox__button {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  background: rgb(255 255 255 / 12%);
  cursor: pointer;
  transition:
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

.gallery-lightbox__button:hover,
.gallery-lightbox__button:focus-visible {
  border-color: var(--white);
  background: rgb(255 255 255 / 22%);
}

.gallery-lightbox__button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.gallery-lightbox__close {
  top: 28px;
  right: 28px;
  padding-bottom: 18px;
}

.gallery-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__nav--prev {
  left: 28px;
  padding-right: 4px;
  padding-bottom: 14px;
}

.gallery-lightbox__nav--next {
  right: 28px;
  padding-left: 4px;
  padding-bottom: 14px;
}

@media (max-width: 767px) {
  .gallery-lightbox {
    padding: 72px 20px 40px;
  }

  .gallery-lightbox__image {
    max-height: 70vh;
  }

  .gallery-lightbox__caption {
    font-size: 16px;
    line-height: 22px;
  }

  .gallery-lightbox__button {
    width: 44px;
    height: 44px;
    font-size: 34px;
  }

  .gallery-lightbox__close {
    top: 16px;
    right: 16px;
  }

  .gallery-lightbox__nav {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .gallery-lightbox__nav--prev {
    left: 20px;
  }

  .gallery-lightbox__nav--next {
    right: 20px;
  }
  .offer-page main > section.coverage--offer::before, .offer-page main > section.offer-hero::after {
    display: none;
  }
}

.contact--realizations {
  position: relative;
  min-height: 1260px;
  padding: 160px 0;
  margin-top: 0;
}

.contact--realizations .contact__intro {
  gap: 41px;
}

.contact--realizations .contact__intro h2 {
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.contact--realizations .contact-form {
  margin-top: 60px;
}

.contact--realizations .contact__grid::after {
  left: 50%;
  width: 2904px;
  background:
    url("../assets/grid-horizontal.svg") center 322px / 2904px 388px no-repeat,
    url("../assets/grid-horizontal.svg") center 710px / 2904px 388px no-repeat;
  transform: translateX(-50%);
}

.blog-page {
  overflow-x: hidden;
  background: var(--surface);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blog-breadcrumb {
  margin: 20px auto 0;
}

.blog-featured {
  position: relative;
  margin: 16px auto 200px;
}

.blog-featured::after {
  position: absolute;
  bottom: -140px;
  left: 50%;
  width: min(974px, 100%);
  height: 160px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 100% 100% / 1px 80px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 80px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 0 / 1px 80px no-repeat;
  transform: translateX(-50%);
}

.blog-featured__header {
  margin-bottom: 40px;
}

.blog-featured h1 {
  width: min(776px, 100%);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.95px;
}

.blog-featured h1 strong {
  font-weight: 700;
}

.blog-featured__controls {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
  width: 40%;
  margin-left: 60%;
  margin-top: 40px;
}

.blog-featured__controls button {
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: 0;
}

.blog-featured__controls img {
  width: 30px;
  height: 30px;
}

.blog-featured__controls button:first-child img {
  transform: rotate(180deg);
}

.blog-featured__viewport {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
}

.blog-featured-card {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease), visibility 280ms var(--ease);
}

.blog-featured-card.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.blog-featured-card a {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(0, 543px);
  justify-content: space-between;
  gap: 40px;
  color: var(--ink);
  text-decoration: none;
}

.blog-featured-card figure,
.blog-post-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--lavender);
}

.blog-featured-card figure {
  height: 520px;
}

.blog-featured-card img,
.blog-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--ease);
}

.blog-featured-card__content {
  display: grid;
  align-content: center;
  gap: 30px;
  padding-bottom: 8px;
}

.blog-featured-card time,
.blog-post-card time {
  display: inline-flex;
  width: max-content;
  padding: 5px 10px;
  color: var(--ink);
  background: var(--white);
  border-radius: 100px;
  font-size: 14px;
  line-height: 19px;
}

.blog-featured-card h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.blog-featured-card p {
  font-size: 16px;
  line-height: 21px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  padding-bottom: 10px;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
}

.blog-read-more img {
  width: 13px;
  height: 14px;
}

.blog-featured-card a:hover img,
.blog-featured-card a:focus-visible img,
.blog-post-card a:hover img,
.blog-post-card a:focus-visible img {
  transform: scale(1.035);
}

.blog-list {
  margin: 0 auto 80px;
}

.blog-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: stretch;
}

.blog-post-card {
  display: grid;
  min-width: 0;
}

.blog-post-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  height: 100%;
  color: var(--ink);
  text-decoration: none;
}

.blog-post-card figure {
  height: 290px;
}

.blog-post-card time {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.blog-post-card div {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 197px;
  padding: 20px;
  background: var(--white);
}

.blog-post-card h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: -.78px;
}

.pagination {
  margin-top: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.page-numbers {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--lavender);
  text-decoration: none;
  font-size: 18px;
  line-height: 23px;
}

.page-numbers.current {
  color: var(--white);
  background: var(--blue);
}

.page-numbers.prev,
.page-numbers.next {
  padding: 0;
  background: transparent;
  border: 0;
}

.page-numbers.prev {
  margin-right: 40px;
}

.page-numbers.next {
  margin-left: 40px;
}

.page-numbers.prev img {
  width: 30px;
  height: 30px;
  transform: rotate(180deg);
}

.page-numbers.next img {
  width: 30px;
  height: 30px;
}

.blog-single-page {
  overflow-x: hidden;
  background: var(--surface);
}

.blog-single {
  position: relative;
}

.blog-single-heading {
  display: none;
  width: min(776px, calc(100% - 80px));
  margin: 16px auto 40px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 400;
  line-height: 70px;
  letter-spacing: -1.95px;
}

.blog-single-heading strong {
  font-weight: 700;
}

.blog-single-hero {
  position: relative;
  margin: 80px auto 0;
}

.blog-single-hero figure {
  position: relative;
  height: 750px;
  margin: 0;
  overflow: hidden;
  background: var(--lavender);
}

.blog-single-hero figure::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 12, 40, .65) 0%, rgba(0, 12, 40, .42) 36%, rgba(0, 3, 10, 0) 72%);
  opacity: .76;
}

.blog-single-hero figure img,
.blog-single-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-single-hero__meta {
  position: absolute;
  top: 459px;
  left: 117px;
  right: 117px;
  z-index: 1;
  display: grid;
  width: auto;
  max-width: 1125px;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
  color: var(--white);
}

.blog-single-hero__meta h2 {
  grid-column: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.35px;
  margin: 0;
}

.blog-single-hero__meta p {
  grid-column: 1;
  display: flex;
  gap: 20px;
  color: var(--white);
  font-size: 16px;
  line-height: 21px;
  margin: 0;
}

.blog-single-hero__meta p span::after {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 20px;
  vertical-align: middle;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.blog-single-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-single-hero__meta .blog-single-share {
  grid-column: 1;
  grid-row: auto;
}

.blog-single-share a,
.blog-single-share button {
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  background: transparent;
  border: 0;
}

.blog-single-share img {
  width: 50px;
  height: 50px;
}

.blog-share-status {
  color: var(--blue);
  font-size: 14px;
  line-height: 19px;
}

.blog-single-content-shell {
  width: min(calc(100% - 80px), var(--container));
  padding: 80px 117px;
  margin: 0 0 40px;
  background: var(--white);
  margin-inline: auto;
}

.blog-single-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin: 0;
}

.blog-single-lead,
.blog-copy-section p {
  font-size: 22px;
  line-height: 26px;
}

.blog-single-lead {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lavender);
}

.blog-toc {
  border-bottom: 1px solid var(--lavender);
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 0 0 40px;
  background: transparent;
}

.blog-toc h2,
.blog-author h2,
.blog-related h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.blog-toc h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: -.78px;
}

.blog-copy-section h2 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: -1.02px;
}

.blog-toc ol,
.blog-copy-section ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-toc li {
  display: grid;
  grid-template-columns: 40px minmax(0, 677px);
  align-items: start;
  gap: 20px;
  font-size: 22px;
  line-height: 26px;
  counter-increment: toc;
}

.blog-toc ol {
  counter-reset: toc;
}

.blog-toc li::before {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  content: counter(toc);
  background: var(--blue);
}

.blog-toc a {
  color: var(--ink);
  text-decoration: none;
}

.blog-copy-section {
  display: grid;
  gap: 20px;
}

.blog-copy-section ul {
  font-size: 16px;
  line-height: 21px;
}

.blog-copy-section li {
  position: relative;
  padding-left: 23px;
}

.blog-copy-section li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  background: url("../assets/policy-bullet.svg") center / 100% 100% no-repeat;
}

.blog-single blockquote {
  padding: 40px;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

.blog-single blockquote p {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0;
}

.blog-single blockquote cite {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}

.blog-single-photo {
  margin: 0;
}

.blog-single-photo img {
  height: 520px;
  background: var(--lavender);
}

.blog-single-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 19px;
}

.blog-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: min(1127px, calc(100% - 80px));
  margin: 56px auto 240px;
}

.blog-post-nav a {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.blog-post-nav img {
  width: 30px;
  height: 30px;
}

.blog-post-nav a:first-child img {
  transform: rotate(180deg);
}

.blog-author {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: min(1009px, calc(100% - 80px));
  gap: 40px;
  margin: 0 auto 80px;
}

.blog-author::before {
  position: absolute;
  top: -290px;
  left: calc(50% - 487px);
  width: 857px;
  height: 240px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(var(--lavender), var(--lavender)) 100% 80px / 1px 80px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 160px / 100% 1px no-repeat,
    linear-gradient(var(--lavender), var(--lavender)) 0 160px / 1px 80px no-repeat;
}

.blog-author h2 {
  grid-column: 1 / -1;
}

.blog-author__bio {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 110px minmax(0, 859px);
  gap: 40px;
  align-items: start;
}

.blog-author__bio > img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
}

.blog-author__bio div {
  display: grid;
  gap: 20px;
}

.blog-author__bio .blog-single-share {
  display: flex;
  gap: 20px;
}

.blog-author h3 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 31px;
  letter-spacing: -.78px;
}

.blog-author p {
  font-size: 16px;
  line-height: 21px;
}

.blog-related {
  margin: 0 auto 80px;
}

.blog-related h2 {
  margin-bottom: 40px;
}

.blog-post-card h3 {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: -.78px;
  margin: 0;
}

.blog-related__button {
  display: flex;
  width: fit-content;
  margin: 40px auto 0;
}

.policy-page {
  overflow-x: hidden;
}

.policy-entry {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 1082px;
  min-height: 1082px;
  padding: 80px 117px;
  margin: 80px auto 40px;
  overflow: hidden;
  background: var(--white);
}

.policy-entry h1,
.policy-copy h2 {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
}

.policy-entry h1 {
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -1.35px;
}

.policy-entry__lead {
  font-size: 22px;
  line-height: 26px;
}

.policy-entry__divider {
  width: 100%;
  height: 1px;
  margin: 0;
  background: var(--lavender);
  border: 0;
}

.policy-copy {
  display: grid;
  gap: 20px;
}

.policy-copy h2 {
  font-size: 34px;
  line-height: 39px;
  letter-spacing: -1.02px;
}

.policy-copy p,
.policy-list {
  font-size: 16px;
  line-height: 21px;
}

.policy-copy p {
  margin: 0;
}

.policy-copy--body,
.policy-copy--tail {
  gap: 20px;
}

.policy-copy--body p + p,
.policy-copy--tail p + p {
  margin-top: 1px;
}

.policy-copy--mobile {
  display: none;
}

.policy-list {
  display: grid;
  gap: 0;
  width: 753px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  min-height: 14px;
  padding-left: 23px;
}

.policy-list li::before {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 11px;
  height: 11px;
  content: "";
  background: url("../assets/policy-bullet.svg") center / 100% 100% no-repeat;
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .offer-page main > section.offer-hero::after {
    top: auto;
    left: 194px;
    width: 757px;
    height: 809px;
    bottom: -280px;
  }
  .offer-page main > section.coverage--offer::after {
    top: 590px;
    left: 194px;
    width: 857px;
    height: 449px;
  }
  .offer-page main > section.offer-services::after, .offer-page main > section.offer-benefits::after, .offer-page main > section.contact::after {
    display: none;
  }
  .offer-page main > section.coverage--offer::before {
    display: none;
  }
  .about-strengths::before {
    top: -585px;
    left: 194px;
    width: 850px;
  }
  .carrier-benefits::before{
    top: -540px;
    left: 194px;
    width: 917px;
  }
}

@media (max-width: 1439px) {
  .site-footer {
    grid-template-columns:
      minmax(210px, 1.05fr)
      minmax(48px, .35fr)
      minmax(240px, 1fr)
      minmax(24px, .18fr)
      minmax(220px, .9fr)
      minmax(32px, .24fr)
      minmax(150px, .6fr);
    grid-template-areas:
      "brand . addresses . links . socials"
      "copyright copyright . . . credit credit";
    column-gap: 0;
  }

  .site-footer__brand,
  .site-footer__addresses,
  .site-footer__links {
    width: auto;
  }

  .site-footer__credit {
    margin-left: 0;
    margin-right: 0;
  }

  .about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap-inline: 40px;
  }

  .about-hero__media {
    width: 100%;
  }

  .about-strengths__intro,
  .about-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-fleet {
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 543px);
    gap: 40px;
  }

  .about-fleet__media {
    width: 100%;
  }

  .policy-entry {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-inline: clamp(40px, 8vw, 117px);
  }

  .offer-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 80px;
  }

  .offer-hero h1,
  .offer-hero__media {
    width: 100%;
  }

  .offer-service {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 543px);
    gap: 60px;
  }

  .process--offer .process-grid {
    gap: 24px;
  }
}

@media (max-width: 1659px) {
  .coverage--offer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 660px);
  }

  .coverage--offer .coverage__copy {
    width: 100%;
    max-width: 660px;
    padding-top: 0;
  }
}

@media (max-width: 1199px) {
  .site-logo {
    max-width: 150px;
  }
  .site-header {
    width: calc(100% - 40px);
  }

  .site-header--light {
    width: 100%;
    padding-inline: 20px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-header__cta {
    margin-left: 18px;
    padding-inline: 24px;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .home-sections {
    padding-top: 0;
    overflow: visible;
  }

  .experience::after,
  .offer::after,
  .audience::after,
  .why::after,
  .coverage::after,
  .home-sections .process::after,
  .team::after {
    display: none;
  }

  .experience,
  .offer,
  .audience,
  .coverage,
  .process,
  .why,
  .team,
  .contact,
  .site-footer {
    position: relative;
    inset: auto;
    left: auto;
    transform: none;
  }

  .experience,
  .offer,
  .coverage,
  .process {
    margin-inline: auto;
  }

  .home .why {
    padding-top: 650px;
  }
  .home .audience {
    overflow: hidden;
  }
  .experience {
    gap: 64px;
    height: auto;
    padding: 110px 0;
    margin-bottom: 0;
  }

  .offer {
    display: block;
    height: auto;
    padding-bottom: 110px;
    margin-bottom: 0;
  }

  .offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    width: auto;
    margin-top: 48px;
  }

  .service-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .offer__button {
    margin-top: 40px;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .offer-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 60px;
  }

  .offer-hero::after,
  .offer-benefits::before,
  .offer-services::before,
  .coverage--offer::before,
  .process--offer::before,
  .contact--offer::before {
    display: none;
  }

  .offer-hero__media {
    height: 550px;
    margin-top: 30px;
  }

  .offer-hero__copy {
    padding-top: 0;
  }

  .offer-benefits {
    margin: 90px auto 110px;
  }

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

  .offer-services {
    padding: 100px 0;
  }

  .offer-service {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .coverage--offer {
    margin-top: 100px;
    margin-bottom: 110px;
  }

  .process--offer .process-track {
    grid-template-columns: repeat(var(--process-count, 6), minmax(40px, 1fr));
  }

  .audience {
    width: calc(100% - 40px);
    margin: 0 auto 110px;
  }

  .why {
    height: auto;
    margin-bottom: 110px;
  }

  .why__content {
    position: relative;
    top: auto;
    left: auto;
    margin: -300px auto 0;
    transform: none;
  }

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

  .coverage {
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    width: calc(100% - 40px);
    height: auto;
    margin-bottom: 110px;
  }

  .coverage__map {
    width: 100%;
    height: auto;
  }

  .coverage__copy {
    padding-top: 64px;
  }

  .process {
    height: auto;
    margin-bottom: 110px;
  }

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

  .process-track li:not(:last-child)::after {
    left: calc(50% + 26px);
    width: calc(100% - 52px);
  }

  .team {
    grid-template-columns: minmax(320px, .95fr) minmax(320px, 1fr);
    gap: 48px;
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .team__copy {
    width: calc(100% - 40px);
    padding-top: 40px;
  }

  .contact {
    min-height: 1200px;
    height: auto;
    padding: 180px 0 120px;
    margin-top: 0;
  }

  .contact__intro {
    top: auto;
  }

  .contact-form {
    top: auto;
    margin-top: 70px;
  }

  .site-footer {
    top: auto;
  }

  .about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 64px 40px;
    margin-bottom: 110px;
  }

  .about-hero__media {
    width: 100%;
  }

  .about-strengths,
  .about-fleet,
  .about-notes {
    margin-bottom: 110px;
  }

  .about-strengths {
    min-height: 0;
  }

  .about-strengths__intro,
  .about-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-fleet {
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 543px);
    gap: 40px;
    min-height: 0;
  }

  .about-fleet__media {
    width: 100%;
    height: min(800px, 70vw);
  }

  .contact--about {
    min-height: 1200px;
    padding-top: 120px;
  }

  .carriers-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 64px 40px;
    margin-bottom: 110px;
  }

  .carriers-hero__media {
    width: 100%;
  }

  .carriers-hero__copy {
    padding-top: 40px;
  }

  .carrier-benefits,
  .carrier-stability,
  .process--carriers {
    margin-bottom: 110px;
  }

  .process--carriers {
    margin-bottom: 200px;
  }

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

  .carrier-stability {
    min-height: 0;
  }

  .carrier-stability__box {
    margin-right: 40px;
  }

  .process--carriers .process-track {
    padding-inline: 60px;
  }

  .process--carriers .process-track li:not(:last-child)::after {
    width: min(445px, calc((100vw - 240px) / 2));
  }

  .carrier-team {
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 543px);
    gap: 40px;
  }

  .carrier-team__media {
    width: 100%;
    height: min(800px, 70vw);
  }

  .contact--carriers {
    min-height: 1200px;
    padding-top: 120px;
    margin-top: 0;
  }

  .career-hero {
    min-height: 520px;
  }

  .career-hero__breadcrumb {
    width: calc(100% - 40px);
    margin-top: 90px;
  }

  .career-hero__content {
    bottom: 20px;
    width: calc(100% - 40px);
  }

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

  .career-benefits::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .career-jobs__inner {
    width: calc(100% - 40px);
  }

  .career-job__columns {
    grid-template-columns: 1fr;
  }

  .contact--career {
    min-height: 1200px;
    padding-top: 120px;
  }

  .realizations-hero {
    min-height: 520px;
  }

  .realizations-hero__breadcrumb {
    width: calc(100% - 40px);
    margin-top: 90px;
  }

  .realizations-hero__content {
    bottom: 20px;
    width: calc(100% - 40px);
  }

  .realizations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 320px;
  }

  .realization-card:nth-child(6n + 1),
  .realization-card:nth-child(6n + 2),
  .realization-card:nth-child(6n + 3),
  .realization-card:nth-child(6n + 4),
  .realization-card:nth-child(6n + 5),
  .realization-card:nth-child(6n + 6) {
    grid-column: auto;
    grid-row: auto;
  }

  .contact--realizations {
    min-height: 1200px;
    padding-top: 120px;
  }

  .blog-featured {
    margin-bottom: 100px;
  }

  .blog-featured-card a {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  }

  .blog-featured-card__content {
    align-content: center;
  }

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

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

  .blog-single-hero__meta .blog-single-share {
    grid-column: auto;
    grid-row: auto;
  }

  .blog-single-content {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .blog-toc {
    grid-column: 1;
    grid-row: auto;
  }

  .blog-author__bio {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .policy-entry {
    height: auto;
    min-height: 0;
    margin-bottom: 40px;
  }

  .policy-list {
    width: 100%;
  }
}

@media (max-width: 1600px) {
  main > section,
  main > .home-sections > section,
  .about-sections > section,
  .carriers-sections > section {
    max-width: 100%;
    box-sizing: border-box;
  }

  .section-shell,
  .hero__content,
  .audience,
  .audience__content,
  .audience p,
  .coverage,
  .team,
  .contact__intro,
  .contact-form,
  .shared-split-hero,
  .about-strengths,
  .about-fleet,
  .about-notes,
  .carrier-benefits,
  .carrier-stability,
  .process--carriers,
  .carrier-team,
  .offer-services__inner,
  .blog-single-hero__meta,
  .privacy-content,
  .policy-list {
    max-width: calc(100vw - 40px);
  }

  .hero__content,
  .audience__content,
  .audience p,
  .contact__intro,
  .contact-form,
  .carrier-stability__box,
  .blog-single-hero__meta,
  .privacy-content,
  .policy-list {
    width: 100%;
  }

  .offer-grid,
  .process-grid {
    width: 100%;
  }

  .audience,
  .coverage,
  .about-strengths,
  .about-fleet,
  .about-notes,
  .carrier-benefits,
  .carrier-stability,
  .process--carriers,
  .carrier-team,
  .blog-single-hero__meta {
    width: calc(100% - 40px);
    margin-inline: auto;
  }

  .coverage {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
    height: auto;
  }

  .coverage__map {
    width: 100%;
    height: auto;
  }

  .team {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
    gap: 48px;
    width: calc(100% - 40px);
    height: auto;
    margin-inline: auto;
  }

  .team__copy {
    width: 100%;
  }

  .shared-feature-grid,
  .offer-benefit-grid,
  .carrier-benefit-grid,
  .career-benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .about-strengths__intro,
  .about-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-fleet,
  .carrier-team {
    grid-template-columns: minmax(0, 650px) minmax(320px, 543px);
    justify-content: space-between;
  }

  .about-fleet__media,
  .carrier-team__media {
    width: 100%;
  }

  .carrier-stability__box {
    max-width: calc(100% - 40px);
    margin-left: auto;
  }

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

  .process--carriers .process-track {
    width: 100%;
    padding-inline: clamp(20px, 5vw, 60px);
  }

  .coverage > *,
  .team > *,
  .shared-split-hero > *,
  .about-strengths__intro > *,
  .about-fleet > *,
  .about-notes > *,
  .carrier-team > *,
  .offer-service > *,
  .blog-featured-card a > *,
  .blog-single-content > * {
    min-width: 0;
  }

  .about-hero,
  .carriers-hero,
  .contact-hero,
  .offer-hero {
    grid-template-columns: minmax(0, 700px) minmax(320px, 500px);
    grid-template-rows: auto auto;
    gap: auto;
  }

  .about-hero h1,
  .carriers-hero h1,
  .contact-hero h1,
  .offer-hero h1 {
    grid-column: 1 / 2;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .about-hero__media,
  .carriers-hero__media,
  .contact-hero .carriers-hero__media,
  .offer-hero__media {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    margin-top: 0;
  }

  .about-hero__copy,
  .carriers-hero__copy,
  .contact-hero__copy,
  .offer-hero__copy {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0;
  }

  .career-hero__content,
  .realizations-hero__content,
  .order-hero__content {
    width: min(calc(100% - 80px), var(--container));
  }

  .career-hero h1,
  .realizations-hero h1,
  .order-hero h1 {
    width: 100%;
    max-width: 100%;
  }
  .offer-hero__media {
    max-height: 550px;
  }
}

@media (min-width: 1024px) and (max-width: 1600px) {
  .home .hero h1 {
    font-size: 55px;
    line-height: 60px;
  }

  .home .hero__content {
    top: auto;
    bottom: clamp(120px, 15vh, 190px);
  }

  .home .audience::after {
    right: 194px;
    left: auto;
  }

  .home .offer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 32px;
    width: calc(100% - 40px);
    max-width: var(--container);
    height: auto;
    margin-inline: auto;
    margin-bottom: 100px;
  }

  .home .offer__intro {
    grid-column: 1 / span 2;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .home .offer-grid {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 32px;
    justify-self: stretch;
    width: 100%;
  }

  .home .service-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .home .offer__button {
    grid-column: 1;
    grid-row: 3;
    margin-top: 8px;
  }

  .home .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
  }

  .home .benefit-card {
    min-width: 0;
  }

  .home .benefit-card h3 {
    font-size: 22px;
    line-height: 27px;
  }

  .career-page .career-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .career-page .career-hero__content {
    bottom: clamp(120px, 15vh, 190px);
  }

  .career-page .career-hero h1 {
    font-size: 55px;
    line-height: 60px;
  }

  .realizations-page .realizations-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .realizations-page .realizations-hero__content {
    bottom: clamp(120px, 15vh, 190px);
  }

  .realizations-page .realizations-hero h1 {
    font-size: 55px;
    line-height: 60px;
  }

  .order-page .order-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .order-page .order-hero__content {
    position: absolute;
    bottom: clamp(120px, 15vh, 190px);
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }

  .order-page .order-hero h1 {
    font-size: 55px;
    line-height: 60px;
  }

  .order-page .order-form-section {
    padding: 0 0 160px;
  }

  .carriers-page .carriers-hero h1 {
    font-size: 55px;
    line-height: 60px;
  }

  .carriers-page .carrier-stability__box {
    max-width: 50%;
  }

  .contact-page .contact-hero h1 {
    font-size: 55px;
    line-height: 60px;
  }

  .contact-page .contact-hero::after {
    top: 1025px;
  }

  #about-title,
  #offer-hero-title {
    font-size: 55px;
    line-height: 60px;
  }

  #contact .contact-form, #contact-form .contact-form, .contact .contact-form {
    max-width: 700px;
    margin: 0 auto;
  }

  #blog-title {
    font-size: 55px;
    line-height: 60px;
  }

}

@media (min-width: 1024px) {
  .blog-page .blog-featured {
    margin: 16px auto 260px;
  }

  .blog-page .blog-featured::after {
    bottom: -210px;
  }

  .blog-page .blog-featured__controls {
    margin-left: 54%;
    margin-top: -30px;
  }
}

@media (max-width: 899px) {
  .site-footer {
    position: relative;
    display: block;
    height: 550px;
    padding: 0;
  }

  .site-footer__brand {
    display: contents;
  }

  .site-footer__brand > a {
    position: absolute;
    top: 20px;
    left: calc(50% - 160px);
    width: 155px;
    height: 42px;
    margin-bottom: 0;
  }

  .site-footer__phones {
    position: absolute;
    top: 82px;
    left: calc(50% - 160px);
    display: grid;
    grid-template-columns: repeat(2, 155px);
    grid-template-rows: auto auto;
    gap: 10px 10px;
    width: 320px;
    font-size: 14px;
    line-height: 19px;
  }

  .site-footer__phones p:nth-child(n) {
    margin: 0;
  }

  .site-footer__phones .label {
    margin-top: 0;
    margin-bottom: 0;
  }

  .site-footer__phones p:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .site-footer__phones p:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .site-footer__phones p:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer__phones p:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .site-footer__phones p:nth-child(3) br,
  .site-footer__phones p:nth-child(4) br {
    display: none;
  }

  .socials {
    position: absolute;
    top: 169px;
    left: calc(50% - 160px);
    justify-self: auto;
    gap: 10px;
    width: 140px;
    margin-top: 0;
  }

  .socials a {
    width: 40px;
    height: 40px;
  }

  .site-footer__addresses {
    position: absolute;
    top: 249px;
    left: calc(50% - 160px);
    display: grid;
    grid-template-columns: repeat(2, 155px);
    width: 320px;
    margin-top: 0;
    column-gap: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .site-footer__addresses strong:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer__addresses span:nth-of-type(4),
  .site-footer__addresses span:nth-of-type(5),
  .site-footer__addresses span:nth-of-type(6) {
    grid-column: 2;
  }

  .site-footer__addresses strong + span,
  .site-footer__addresses span + strong {
    margin-top: 0;
  }

  .site-footer__links {
    display: none;
  }

  .site-footer__copyright {
    position: absolute;
    top: 422px;
    left: calc(50% - 160px);
    width: 320px;
    margin-top: 0;
    font-size: 14px;
    line-height: 19px;
  }

  .site-footer__credit {
    position: absolute;
    top: 480px;
    left: calc(50% - 160px);
    justify-self: auto;
    margin-top: 0;
    margin-right: 0;
    width: 155px;
    height: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .site-header__cta img {
    display: none;
  }


  .site-header__cta,
  .site-nav {
    font-size: 13px;
  }

  .home .hero__content {
    top: auto;
    bottom: clamp(90px, 13vh, 140px);
  }

  .home .hero h1,
  .about-hero h1,
  .offer-hero h1,
  .carriers-hero h1,
  .contact-hero h1,
  .career-hero h1,
  .realizations-hero h1,
  .order-hero h1 {
    font-size: 45px;
    line-height: 50px;
  }

  .home .why {
    padding-top: 500px;
  }

  .coverage__map img {
    height: auto;
  }

  .site-footer {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 40px 32px;
    width: 100%;
    height: auto;
    padding: 40px;
  }

  .site-footer__brand {
    position: static;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 30px;
    flex: 1 1 180px;
    width: auto;
  }

  .site-footer__brand > a {
    position: static;
    width: 155px;
    height: auto;
    margin-bottom: 30px;
  }

  .site-footer__phones {
    position: static;
    display: flex;
    flex-flow: column;
    flex: 1 1 260px;
    gap: 10px 20px;
    width: auto;
  }

  .site-footer__phones p:nth-child(n),
  .site-footer__phones p:nth-child(3),
  .site-footer__phones p:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }

  .site-footer__phones p:nth-child(3) br,
  .site-footer__phones p:nth-child(4) br {
    display: initial;
  }

  .site-footer__addresses {
    position: static;
    display: flex;
    flex-flow: column;
    flex: 1 1 200px;
    width: auto;
    margin-top: 0;
    gap: 0;
  }

  .site-footer__addresses strong:nth-of-type(2),
  .site-footer__addresses span:nth-of-type(4),
  .site-footer__addresses span:nth-of-type(5),
  .site-footer__addresses span:nth-of-type(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__addresses strong + span,
  .site-footer__addresses span + strong {
    margin-top: 20px;
  }

  .site-footer__links {
    display: flex;
    flex-flow: column;
    flex: 1 1 180px;
    padding-top: 20px;
  }

  .site-footer__menu {
    display: flex;
    flex-flow: column;
  }

  .site-footer .socials {
    position: static;
    flex: 0 0 auto;
    justify-self: auto;
    width: 100%;
    margin-top: 0;
  }

  .site-footer__copyright,
  .site-footer__credit {
    position: static;
    flex: 0 0 calc(50% - 16px);
    width: auto;
    margin-top: 0;
  }

  .site-footer__credit {
    justify-self: auto;
    margin-right: 0;
  }

  .about-hero,
  .offer-hero,
  .carriers-hero,
  .contact-hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .about-hero h1,
  .offer-hero h1,
  .carriers-hero h1,
  .contact-hero h1 {
    grid-column: 1 / -1;
  }

  .about-hero__media,
  .offer-hero__media,
  .carriers-hero__media,
  .contact-hero .carriers-hero__media,
  .about-fleet__media,
  .carrier-team__media {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
  }

  .about-hero__copy,
  .offer-hero__copy,
  .carriers-hero__copy,
  .contact-hero__copy,
  .about-fleet__copy,
  .carrier-team__copy {
    grid-column: 2;
    width: 100%;
    max-width: 100%;
  }

  .about-fleet,
  .carrier-team {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    width: calc(100% - 40px);
    margin-inline: auto;
  }

  .about-fleet__media,
  .about-fleet__copy,
  .carrier-team__media,
  .carrier-team__copy {
    flex: none;
    grid-row: 1;
  }

  .process-step h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .order-page .order-form-section {
    padding-top: 0;
  }

  .blog-featured {
    margin-bottom: 160px;
  }

  .blog-featured h1 {
    font-size: 45px;
    line-height: 50px;
  }

  .blog-single-hero__meta {
    width: calc(100% - 240px);
  }
}

@media (max-width: 767px) {
  .hero,
  .audience,
  .why__media,
  .contact {
    --mobile-grid-vertical-width: min(319px, calc(100vw - 42px));
    --mobile-grid-horizontal-width: min(360px, 100vw);
  }

  .button {
    gap: 10px;
    min-height: 40px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 19px;
  }

  .section-copy h2,
  .why h2,
  .process h2 {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .section-copy p,
  .contact__text p {
    font-size: 18px;
    line-height: 23px;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .hero {
    height: min(100svh, 650px);
  }

  .hero__photo {
    width: 1902px;
    max-width: none;
    left: calc(50% - 951px);
    object-fit: cover;
    object-position: center;
  }

  .hero::after {
    left: 0;
    right: auto;
    width: 580px;
    transform: initial;
  }

  .grid-overlay::before {
    top: 55px;
    left: 50%;
    width: var(--mobile-grid-vertical-width);
    height: 530px;
    background-image: url("../assets/grid-mobile-vertical.svg");
    transform: translateX(-50%);
  }

  .grid-overlay::after {
    top: 106px;
    left: 50%;
    width: var(--mobile-grid-horizontal-width);
    height: 318px;
    background-image: url("../assets/grid-mobile-horizontal.svg");
    transform: translateX(-50%);
  }

  .hero__grid {
    opacity: .5;
  }

  .site-header {
    width: calc(100% - 40px);
    height: 55px;
  }

  .site-header.is-scrolled {
    height: 55px;
    padding-inline: 20px;
  }

  .site-header.is-menu-open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2200;
    width: 100%;
    height: 55px;
    padding-inline: 20px;
    background: var(--surface);
    border-bottom: 0;
    box-shadow: none;
    transform: none;
  }

  .site-header.is-menu-open .site-logo img {
    filter: none;
  }

  .site-header--light {
    width: 100%;
    padding-inline: 20px;
  }

  .site-logo {
    width: 131px;
    height: 35px;
  }

  .site-header__cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    padding: 0;
    margin-left: auto;
    color: var(--blue);
    background: transparent;
    border: 0;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19.5px;
    height: 1.5px;
    content: "";
    background: var(--white);
    border-radius: 999px;
    opacity: 0;
    transform-origin: center;
  }

  .nav-toggle::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-toggle::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-toggle img {
    width: 35px;
    height: 35px;
  }

  .nav-toggle[aria-expanded="true"] img {
    opacity: 1;
  }

  .nav-toggle[aria-expanded="true"] {
    background: transparent;
    border-radius: 0;
  }

  .nav-toggle[aria-expanded="true"]::before,
  .nav-toggle[aria-expanded="true"]::after {
    opacity: 0;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    right: 20px;
    left: auto;
    display: grid;
    gap: 20px;
    align-items: center;
    justify-content: start;
    width: min(320px, calc(100vw - 40px));
    min-height: 318px;
    padding: 40px 55px;
    color: var(--ink);
    font-size: 18px;
    line-height: 23px;
    background: var(--surface);
    border-bottom: 0;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
  }

  .site-nav a {
    display: block;
    min-height: 0;
    padding-block: 0;
    border-bottom: 0;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav__mobile-only {
    display: block;
  }

  .site-header.is-scrolled .site-nav {
    top: 75px;
    right: 20px;
    left: auto;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header--light .site-nav {
    right: 20px;
    left: auto;
  }

  .hero__content {
    top: 257px;
    left: 20px;
    gap: 20px;
    width: calc(100% - 40px);
  }

  .hero h1 {
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .hero__content p {
    margin-top: -10px;
    font-size: 18px;
    line-height: 23px;
  }

  .scroll-cue {
    bottom: 10px;
    gap: 5px;
    font-size: 14px;
    line-height: 19px;
  }

  .home-sections {
    min-height: 5804px;
    overflow: hidden;
    padding-top: 120px;
  }

  .experience::before,
  .offer::before,
  .audience::before,
  .why::before,
  .coverage::before,
  .process::before,
  .team::before {
    display: block;
    width: 80px;
    height: 1px;
    background: url("../assets/section-rule.svg") center / 100% 100% no-repeat;
    transform: translateX(-50%) rotate(-90deg);
  }

  .experience::before { top: -61px; }
  .offer::before { top: -60px; }
  .audience::before { top: -60px; }
  .why::before { top: -60px; }
  .coverage::before { top: -35px; }
  .process::before { top: -60px; }
  .team::before { top: -60px; }

  .experience {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 0;
    margin-bottom: 120px;
  }

  .experience__numbers,
  .experience__copy {
    gap: 20px;
    width: 100%;
  }

  .stat strong {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .stat p {
    font-size: 18px;
    line-height: 23px;
  }

  .offer {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }

  .offer__intro {
    gap: 20px;
    width: 100%;
    margin-top: 0;
  }

  .offer-grid {
    display: flex;
    gap: 10px;
    justify-self: start;
    width: 100vw;
    padding-inline: 20px;
    margin-left: calc(50% - 50vw);
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
  }

  .service-card {
    flex: 0 0 265px;
    min-height: 0;
    gap: 20px;
    padding: 20px;
  }

  .service-card img {
    width: 20px;
    height: 20px;
  }

  .service-card h3,
  .benefit-card h3 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .audience {
    width: calc(100% - 40px);
    height: 522px;
    margin-bottom: 120px;
  }

  .audience__content {
    gap: 20px;
    width: calc(100% - 40px);
  }

  .audience h2 {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .audience p {
    width: 100%;
    font-size: 18px;
    line-height: 23px;
  }

  .audience__tags {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .audience__tags span {
    min-height: 40px;
    font-size: 14px;
    line-height: 19px;
  }

  .audience__grid {
    opacity: .5;
    background: url("../assets/grid-mobile-vertical.svg") center 0 / min(319px, 100%) 522px no-repeat;
  }

  .audience__grid::after {
    top: 81px;
    width: min(360px, calc(100% + 40px));
    height: 318px;
    background-image: url("../assets/grid-mobile-horizontal.svg");
  }

  .why {
    height: 787px;
    margin-bottom: 250px;
  }

  .why__media {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 787px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .why__media > img {
    width: 1416px;
    max-width: none;
    height: 787px;
    object-position: center;
  }

  .why__content {
    position: absolute;
    top: 650px;
    left: 50%;
    width: calc(100% - 40px);
    margin: 0;
    transform: translateX(-50%);
  }

  .why h2 {
    width: 100%;
    min-height: 0;
    margin-bottom: 20px;
  }

  .why__grid::before {
    top: 55px;
    left: 50%;
    width: var(--mobile-grid-vertical-width);
    background-image: url("../assets/grid-mobile-vertical.svg");
    background-position: 0 0;
    background-size: 100% 100%;
    filter: brightness(.55);
  }

  .why__grid::after {
    top: 106px;
    left: 50%;
    filter: brightness(.55);
    transform: translateX(-50%);
  }

  .benefit-grid {
    display: flex;
    gap: 10px;
    width: 100vw;
    padding-inline: 20px;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
  }

  .benefit-card {
    flex: 0 0 320px;
    min-height: 0;
    gap: 20px;
    padding: 20px;
  }

  .benefit-card img {
    width: 20px;
    height: 20px;
  }

  .benefit-card h3 + p {
    margin-top: 0;
  }

  .coverage {
    grid-template-columns: 1fr;
    gap: 20px;
    width: calc(100% - 40px);
    margin-bottom: 120px;
  }

  .coverage__map {
    width: 320px;
    height: 327px;
  }

  .coverage__copy {
    gap: 20px;
    padding-top: 0;
  }

  .process {
    width: 100%;
    margin-bottom: 120px;
  }

  .process h2,
  .process-grid,
  .process__button {
    margin-inline: 20px;
  }

  .process h2 {
    margin-bottom: 20px;
  }

  .process-track {
    gap: 0;
    height: 80px;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .process-track li:not(:last-child)::after {
    top: 20px;
    left: 65px;
    width: calc(100% - 60px);
  }

  .process-track span {
    font-size: 18px;
    line-height: 23px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-step:not(.is-active) {
    display: none;
  }

  .process-step {
    gap: 10px;
  }

  .process-step p {
    font-size: 18px;
    line-height: 23px;
  }

  .process__button {
    display: inline-flex;
    margin-top: 20px;
  }

  .team {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
  }

  .team__media {
    height: 350px;
  }

  .team__media::after {
    background: linear-gradient(90deg, rgb(0 12 40 / 37%) 0%, rgb(0 3 10 / 0%) 100%);
  }

  .team__media img,
  .team__media video {
    object-position: 50% 30%;
  }

  .team__copy {
    gap: 20px;
    width: calc(100% - 40px);
    padding: 0;
    margin: 0 auto;
  }

  .contact {
    min-height: 815px;
    height: auto;
    padding: 40px 0;
  }

  .contact__grid {
    opacity: .42;
    background: url("../assets/grid-mobile-vertical.svg") center 40px / var(--mobile-grid-vertical-width) 530px no-repeat;
  }

  .contact__grid::after {
    top: 0;
    left: 50%;
    width: var(--mobile-grid-horizontal-width);
    height: 848px;
    background:
      url("../assets/grid-mobile-horizontal.svg") center 128px / 100% 318px no-repeat,
      url("../assets/grid-mobile-horizontal.svg") center 488px / 100% 318px no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    transform: translateX(-50%);
  }

  .contact__intro {
    top: auto;
    gap: 20px;
    width: calc(100% - 40px);
  }

  .contact-form {
    top: auto;
    gap: 10px;
    width: calc(100% - 40px);
    margin-top: 40px;
  }

  .contact-form label {
    gap: 5px;
  }

  .contact-form label > span:first-child {
    font-size: 14px;
    line-height: 19px;
  }

  .contact-form input {
    height: 40px;
    padding: 8px 10px;
    font-size: 18px;
    line-height: 23px;
  }

  .contact-form textarea {
    height: 160px;
    min-height: 160px;
    padding: 8px 10px;
    font-size: 18px;
    line-height: 23px;
  }

  .field-error {
    min-height: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .privacy {
    font-size: 14px;
    line-height: 19px;
  }

  .privacy .wpcf7-list-item label {
    gap: 10px;
  }

  .contact-form .button {
    margin-top: 10px;
  }

  .form-status {
    min-height: 19px;
    font-size: 14px;
    line-height: 19px;
  }

  .breadcrumb {
    margin-top: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .about-hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    width: calc(100% - 40px);
    margin: 20px auto 120px;
  }

  .about-hero h1 {
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .about-hero__media,
  .about-hero__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .about-hero__media {
    width: 100%;
    height: 330px;
  }

  .about-hero__copy {
    gap: 20px;
    font-size: 18px;
    line-height: 23px;
  }

  .about-hero__copy .button,
  .about-fleet__copy .button {
    margin-top: 0;
  }

  .about-hero__cta--desktop {
    display: none;
  }

  .about-hero__cta--mobile {
    display: inline-flex;
  }

  .about-sections {
    overflow: visible;
  }

  .about-strengths::before,
  .about-fleet::before,
  .about-notes::before {
    top: -100px;
    left: 50%;
    display: block;
    width: 1px;
    height: 80px;
    background: var(--lavender);
    transform: translateX(-50%);
  }

  .about-strengths {
    min-height: 0;
    margin-bottom: 120px;
  }

  .about-strengths__intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .about-strengths h2,
  .about-fleet h2 {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .about-strengths__copy,
  .about-fleet__copy {
    gap: 23px;
    font-size: 18px;
    line-height: 23px;
  }

  .about-tile-grid {
    display: flex;
    gap: 10px;
    width: 100vw;
    padding-inline: 20px;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: hidden;
  }

  .about-tile {
    flex: 0 0 265px;
    gap: 20px;
    min-height: 162px;
    padding: 20px;
  }

  .about-tile img {
    width: 20px;
    height: 20px;
  }

  .about-tile h3 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .about-fleet {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    width: 100%;
    margin-bottom: 120px;
  }

  .about-fleet__copy {
    width: calc(100% - 40px);
    padding-top: 0;
    margin: 0 auto;
  }

  .about-fleet__media {
    width: 100%;
    height: 350px;
  }

  .about-fleet__media img {
    object-position: bottom;
  }

  .about-notes {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 40px;
  }

  .about-note {
    gap: 20px;
    min-height: 0;
    padding: 20px;
  }

  .about-note h2 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -.75px;
  }

  .about-note p {
    font-size: 14px;
    line-height: 19px;
  }

  .contact--about {
    min-height: 776px;
    padding: 40px 0;
  }

  .carriers-hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    width: calc(100% - 40px);
    margin: 20px auto 120px;
  }

  .carriers-hero h1 {
    width: 100%;
    margin-bottom: 68px;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .carriers-hero__media {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: 330px;
  }

  .carriers-hero__media img {
    object-position: 50% 50%;
  }

  .carriers-hero__copy {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    gap: 20px;
    padding-top: 0;
  }

  .carriers-hero__copy h2 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .carriers-hero__copy p {
    font-size: 18px;
    line-height: 23px;
  }

  .carriers-hero__copy .button {
    margin-top: 0;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    width: calc(100% - 40px);
    margin: 20px auto 120px;
  }

  .contact-hero::after {
    top: calc(100% + 20px);
    left: 50%;
    width: 1px;
    height: 80px;
    background: var(--lavender);
    transform: translateX(-50%);
  }

  .contact-hero h1 {
    width: 100%;
    margin: 0;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .contact-hero .carriers-hero__media {
    width: 100%;
    height: 270px;
  }

  .contact-hero__copy {
    gap: 20px;
    padding-top: 0;
  }

  .contact-hero__copy > p,
  .contact-address,
  .contact-details {
    font-size: 18px;
    line-height: 23px;
  }

  .contact-address span:nth-of-type(3),
  .contact-details div + div {
    margin-top: 23px;
  }

  .contact-details dt {
    grid-template-columns: 20px 1fr;
  }

  .carriers-sections {
    overflow: visible;
  }

  .carrier-benefits::before,
  .carrier-stability::before,
  .process--carriers::before,
  .carrier-team::before,
  .contact--carriers::before {
    left: 50%;
    width: 1px;
    height: 80px;
    background: var(--lavender);
    transform: translateX(-50%);
  }

  .carrier-benefits::before { top: -100px; }
  .carrier-stability::before { top: -100px; }
  .process--carriers::before { top: -130px; }
  .carrier-team::before { top: -100px; }
  .contact--carriers::before { display: none; }

  .carrier-benefits {
    width: 100%;
    margin-bottom: 120px;
  }

  .carrier-benefits h2 {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .carrier-benefit-grid {
    display: flex;
    gap: 10px;
    width: 100vw;
    padding: 0 20px 6px;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
  }

  .carrier-benefit-card {
    flex: 0 0 265px;
    gap: 20px;
    min-height: 162px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .carrier-benefit-card img {
    width: 20px;
    height: 20px;
  }

  .carrier-benefit-card h3 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .carrier-stability {
    min-height: 773px;
    margin-bottom: 120px;
  }

  .carrier-stability__media {
    height: 440px;
  }

  .carrier-stability__media img {
    width: 1020px;
    max-width: none;
    object-position: 350% center;
  }

  .carrier-stability__grid {
    --mobile-grid-vertical-width: min(319px, calc(100vw - 42px));
    --mobile-grid-horizontal-width: min(360px, 100vw);
    opacity: .5;
  }

  .carrier-stability__box {
    gap: 20px;
    width: calc(100% - 40px);
    min-height: 0;
    padding: 20px;
    margin: -116px auto 0;
  }

  .carrier-stability__box h2 {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .carrier-stability__box .button {
    margin-top: 0;
  }

  .process--carriers {
    margin-bottom: 120px;
  }

  .process--carriers .process-track {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 20px;
  }

  .process--carriers .process-track li:first-child {
    justify-items: start;
  }

  .process--carriers .process-track li:nth-child(2) {
    justify-items: center;
  }

  .process--carriers .process-track li:last-child {
    justify-items: end;
  }

  .process--carriers .process-track li:not(:last-child)::after {
    width: 90px;
  }

  .process--carriers .process-track li:first-child::after {
    left: 45px;
  }

  .process--carriers .process-track li:nth-child(2)::after {
    left: 78px;
  }

  .process--carriers .process-grid {
    grid-template-columns: 1fr;
  }

  .process--carriers .process-step:not(.is-active) {
    display: none;
  }

  .process--carriers .process-step p:last-child {
    font-size: 14px;
    line-height: 19px;
  }

  .carrier-team {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
  }

  .carrier-team__copy {
    gap: 20px;
    width: calc(100% - 40px);
    padding-top: 0;
    margin: 0 auto;
  }

  .carrier-team h2 {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .carrier-team__copy p,
  .carrier-list {
    font-size: 18px;
    line-height: 23px;
  }

  .carrier-team__media {
    width: 100%;
    height: 350px;
  }

  .carrier-team__media img,
  .carrier-team__media video {
    object-position: 50% 30%;
  }

  .contact--carriers {
    min-height: 799px;
    padding: 40px 0;
    margin-top: 0;
  }

  .contact--page {
    min-height: 784px;
    padding: 40px 0;
  }

  .contact--page .contact__intro {
    gap: 20px;
  }

  .contact--page .contact__intro h2 {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .contact--page .contact__intro p {
    font-size: 18px;
    line-height: 23px;
  }

  .contact--page .contact-form {
    margin-top: 20px;
  }

  .order-hero {
    min-height: 350px;
  }

  .order-hero__photo {
    object-position: center;
  }

  .order-hero__breadcrumb {
    width: calc(100% - 40px);
    margin-top: 65px;
  }

  .order-hero__content {
    width: calc(100% - 40px);
    margin-top: 70px;
  }

  .order-hero h1 {
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .order-form-section {
    min-height: 0;
    padding: 40px 0;
  }

  .order-form-section .contact__grid {
    --mobile-grid-vertical-width: min(319px, calc(100vw - 42px));
    background: url("../assets/grid-mobile-vertical.svg") center 0 / var(--mobile-grid-vertical-width) 530px repeat-y;
  }

  .order-form-section .contact__grid::after {
    left: 50%;
    width: min(360px, 100vw);
    height: 100%;
    background: url("../assets/grid-mobile-horizontal.svg") center 106px / 100% 318px repeat-y;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  }

  .order-form fieldset {
    gap: 10px;
  }

  .order-form fieldset + fieldset {
    margin-top: 40px;
  }

  .order-form legend {
    margin-bottom: 20px;
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .order-form .privacy {
    margin-top: 10px;
  }

  .offer-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    width: calc(100% - 40px);
    margin: 20px auto 120px;
  }

  .offer-page .offer-hero::after,
  .offer-page .offer-benefits::before,
  .offer-page .offer-services::before,
  .offer-page .coverage--offer::before,
  .offer-page .process--offer::before {
    left: 50%;
    display: block;
    width: 1px;
    height: 80px;
    background: var(--lavender);
    transform: translateX(-50%);
  }

  .offer-page .offer-hero::after {
    top: auto;
    bottom: -100px;
  }

  .offer-page .offer-benefits::before,
  .offer-page .offer-services::before,
  .offer-page .coverage--offer::before,
  .offer-page .process--offer::before {
    top: -100px;
  }

  .offer-page .contact--offer::before {
    display: none;
  }

  .offer-hero h1 {
    width: 100%;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .offer-hero__media {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    height: 330px;
    margin-top: 0;
  }

  .offer-hero__media img {
    object-position: 48% center;
  }

  .offer-hero__copy {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    gap: 20px;
  }

  .offer-hero__copy p {
    font-size: 18px;
    line-height: 23px;
  }

  .offer-benefits {
    width: 100%;
    margin-bottom: 120px;
  }

  .offer-benefits h2 {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .offer-benefit-grid {
    display: flex;
    gap: 10px;
    width: 100vw;
    padding: 0 20px 6px;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
  }

  .offer-benefit-card {
    flex: 0 0 265px;
    gap: 20px;
    min-height: 161px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .offer-benefit-card img {
    width: 20px;
    height: 20px;
  }

  .offer-benefit-card h3 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .offer-services {
    padding: 40px 0 100px;
  }

  .offer-services__inner {
    width: calc(100% - 40px);
  }

  .offer-services h2 {
    margin-bottom: 40px;
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .offer-service-list {
    gap: 20px;
  }

  .offer-service {
    gap: 20px;
    padding-bottom: 20px;
  }

  .offer-service__summary,
  .offer-service__details,
  .offer-service__details div {
    gap: 10px;
  }

  .offer-service__summary h3 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -.75px;
  }

  .offer-service__summary p,
  .offer-service__details > p {
    font-size: 18px;
    line-height: 23px;
  }

  .offer-service__summary a {
    gap: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .offer-service__details h4 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .offer-service__details ul {
    font-size: 14px;
    line-height: 19px;
  }

  .coverage--offer {
    display: grid;
    gap: 20px;
    width: calc(100% - 40px);
    max-width: calc(100vw - 40px);
    height: auto;
    margin: 120px auto;
  }

  .coverage--offer .coverage__map {
    width: 100%;
    height: auto;
    aspect-ratio: 320 / 327;
  }

  .coverage--offer .coverage__copy {
    gap: 20px;
    padding-top: 0;
  }

  .coverage--offer .coverage__copy p + p {
    margin-top: 0;
  }

  .process--offer {
    margin-bottom: 120px;
  }

  .process--offer .process-track {
    display: grid;
    grid-template-columns: repeat(var(--process-count, 6), minmax(40px, 1fr));
    gap: 0;
    padding-inline: 20px;
  }

  .process--offer .process-track li {
    min-width: 40px;
  }

  .process--offer .process-track li:not(:last-child)::after {
    left: 45px;
    width: calc(100% - 50px);
  }

  .process--offer .process-grid {
    grid-template-columns: 1fr;
  }

  .process--offer .process-step:not(.is-active) {
    display: none;
  }

  .process--offer .process-step p:last-child {
    font-size: 14px;
    line-height: 19px;
  }

  .contact--offer {
    min-height: 815px;
    padding: 40px 0;
  }

  .contact--offer .contact__intro {
    gap: 20px;
  }

  .contact--offer .contact-form {
    margin-top: 20px;
  }

  .career-hero {
    min-height: 350px;
  }

  .career-hero__photo {
    object-position: 52% center;
  }

  .career-hero__breadcrumb {
    width: calc(100% - 40px);
    margin-top: 65px;
  }

  .career-hero__content {
    width: calc(100% - 40px);
  }

  .career-hero h1 {
    width: 100%;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .career-intro {
    margin: 40px auto 80px;
  }

  .career-intro p {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .career-benefits {
    width: 100%;
    margin-bottom: 120px;
  }

  .career-benefits::after {
    bottom: -100px;
    left: 50%;
    height: 80px;
    transform: translateX(-50%);
  }

  .career-benefits h2 {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .career-benefit-grid {
    display: flex;
    gap: 10px;
    width: 100vw;
    padding: 0 20px 6px;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
  }

  .career-benefit-card {
    flex: 0 0 265px;
    gap: 20px;
    min-height: 161px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .career-benefit-card img {
    width: 20px;
    height: 20px;
  }

  .career-benefit-card h3 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .career-jobs__inner {
    width: calc(100% - 40px);
    padding: 80px 0;
  }

  .career-jobs h2 {
    margin-bottom: 40px;
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .career-job-list {
    gap: 20px;
  }

  .career-job {
    padding-bottom: 20px;
  }

  .career-job summary {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -.75px;
  }

  .career-job summary::after {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background:
      linear-gradient(var(--white), var(--white)) center / 20px 1px no-repeat,
      linear-gradient(var(--white), var(--white)) center / 1px 20px no-repeat;
  }

  .career-job[open] summary::after {
    background: linear-gradient(var(--white), var(--white)) center / 20px 1px no-repeat;
  }

  .career-job > p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 23px;
  }

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

  .career-job h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .career-job ul {
    font-size: 14px;
    line-height: 19px;
  }

  .career-job__apply {
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 19px;
  }

  .contact--career {
    min-height: 815px;
    padding: 40px 0;
  }

  .contact--career .contact__intro {
    gap: 20px;
  }

  .contact--career .contact__intro h2 {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .contact--career .contact-form {
    margin-top: 20px;
  }

  .realizations-hero {
    min-height: 350px;
  }

  .realizations-hero__photo {
    object-position: 62% center;
  }

  .realizations-hero__breadcrumb {
    width: calc(100% - 40px);
    margin-top: 65px;
  }

  .realizations-hero__content {
    width: calc(100% - 40px);
  }

  .realizations-hero h1 {
    width: 100%;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .realizations-list {
    width: calc(100% - 40px);
    margin: 20px auto 40px;
  }

  .realizations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 320px;
    gap: 10px;
  }

  .realizations-grid + .realizations-grid {
    margin-top: 10px;
  }

  .realization-card:nth-child(6n + 1),
  .realization-card:nth-child(6n + 2),
  .realization-card:nth-child(6n + 3),
  .realization-card:nth-child(6n + 4),
  .realization-card:nth-child(6n + 5),
  .realization-card:nth-child(6n + 6) {
    grid-column: auto;
    grid-row: auto;
  }

  .realization-card a {
    min-height: 320px;
  }

  .realization-card h2 {
    right: 20px;
    bottom: 20px;
    left: 20px;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .contact--realizations {
    min-height: 815px;
    padding: 40px 0;
  }

  .contact--realizations .contact__intro {
    gap: 20px;
  }

  .contact--realizations .contact__intro h2 {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .contact--realizations .contact-form {
    margin-top: 20px;
  }

  .blog-breadcrumb {
    width: calc(100% - 40px);
    margin-top: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .blog-breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .blog-breadcrumb a,
  .blog-breadcrumb span,
  .blog-breadcrumb img {
    flex: 0 0 auto;
  }

  .blog-featured {
    width: calc(100% - 40px);
    margin: 16px auto 120px;
  }

  .blog-featured::after {
    bottom: -100px;
    width: 1px;
    height: 80px;
    background: var(--lavender);
  }

  .blog-featured__header {
    display: block;
    margin-bottom: 20px;
  }

  .blog-featured h1 {
    font-weight: 400;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .blog-featured__controls {
    width: auto;
    margin-top: 20px;
    margin-left: 0;
  }

  .blog-featured__viewport {
    display: grid;
  }

  .blog-featured-card a {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-featured-card figure {
    height: 270px;
  }

  .blog-featured-card__content {
    gap: 10px;
    padding-bottom: 0;
  }

  .blog-featured-card time {
    padding: 5px 10px;
    background: var(--white);
  }

  .blog-featured-card h2 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -.75px;
  }

  .blog-featured-card p {
    font-size: 14px;
    line-height: 19px;
  }

  .blog-read-more {
    gap: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .blog-list {
    width: calc(100% - 40px);
    margin-bottom: 40px;
  }

  .blog-post-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-post-card a {
    gap: 0;
  }

  .blog-post-card figure {
    height: 220px;
  }

  .blog-post-card div {
    gap: 20px;
    min-height: 197px;
    padding: 20px;
    background: var(--white);
  }

  .blog-post-card h2 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .pagination {
    margin-top: 17px;
  }

  .nav-links {
    gap: 5px;
  }

  .page-numbers.prev {
    margin-right: 40px;
  }

  .page-numbers.next {
    margin-left: 40px;
  }

  .blog-single-heading {
    display: block;
    width: calc(100% - 40px);
    margin: 20px auto;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .blog-single-hero {
    width: calc(100% - 40px);
    margin: 0 auto 40px;
  }

  .blog-single-hero figure {
    height: 270px;
    margin-bottom: 20px;
  }

  .blog-single-hero figure::after {
    display: none;
  }

  .blog-single-hero__meta {
    position: static;
    width: auto;
    gap: 20px;
    color: var(--blue);
  }

  .blog-single-hero__meta h2,
  .blog-author h2,
  .blog-related h2 {
    color: var(--blue);
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -.81px;
  }

  .blog-toc h2 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .blog-copy-section h2 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -.75px;
  }

  .blog-single-hero__meta p {
    color: var(--blue);
    flex-wrap: wrap;
    gap: 10px 24px;
    font-size: 16px;
    line-height: 21px;
  }

  .blog-single-share a,
  .blog-single-share button,
  .blog-single-share img {
    width: 40px;
    height: 40px;
  }

  .blog-single-content {
    width: 100%;
    gap: 40px;
  }

  .blog-single-content-shell {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }

  .blog-toc {
    grid-column: 1;
    grid-row: auto;
  }

  .blog-single-lead,
  .blog-copy-section p {
    font-size: 18px;
    line-height: 23px;
  }

  .blog-toc {
    gap: 20px;
    padding: 20px 0;
  }

  .blog-toc li {
    grid-template-columns: 40px 1fr;
    font-size: 18px;
    line-height: 23px;
  }

  .blog-copy-section ul {
    font-size: 14px;
    line-height: 19px;
  }

  .blog-single blockquote {
    padding: 20px;
  }

  .blog-single blockquote p {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0;
  }

  .blog-single-photo img {
    height: 320px;
  }

  .blog-post-nav {
    gap: 20px;
    width: calc(100% - 40px);
    margin-bottom: 120px;
  }

  .blog-post-nav a {
    gap: 10px;
    font-size: 14px;
    line-height: 19px;
  }

  .blog-post-nav span {
    display: none;
  }

  .blog-author {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 80px;
  }

  .blog-author::before {
    top: -100px;
    left: 50%;
    width: 1px;
    height: 80px;
    background: var(--lavender);
  }

  .blog-author__bio {
    grid-template-columns: 55px 1fr;
    gap: 10px;
    align-items: center;
  }

  .blog-author__bio > img {
    width: 55px;
    height: 55px;
  }

  .blog-author__bio div {
    display: contents;
  }

  .blog-author h3 {
    grid-column: 2;
    align-self: center;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .blog-author p {
    grid-column: 1 / -1;
    font-size: 14px;
    line-height: 19px;
  }

  .blog-author__bio .blog-single-share {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
  }

  .blog-related {
    width: 100%;
    margin-bottom: 40px;
  }

  .blog-related h2 {
    width: calc(100% - 40px);
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }

  .blog-related .blog-post-grid {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .blog-related .blog-post-grid::-webkit-scrollbar {
    display: none;
  }

  .blog-related .blog-post-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
  }

  .blog-post-card h3 {
    font-size: 22px;
    line-height: 27px;
    letter-spacing: -.66px;
  }

  .policy-entry {
    gap: 20px;
    width: 100%;
    min-height: 984px;
    padding: 20px;
    margin: 20px 0 40px;
  }

  .policy-entry h1 {
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.96px;
  }

  .policy-entry__lead {
    font-size: 18px;
    line-height: 23px;
  }

  .policy-entry__divider,
  .policy-copy--desktop {
    display: none;
  }

  .policy-copy {
    gap: 10px;
  }

  .policy-copy--mobile {
    display: grid;
  }

  .policy-copy h2 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -.75px;
  }

  .policy-copy p,
  .policy-list {
    font-size: 14px;
    line-height: 19px;
  }

  .policy-list li {
    padding-left: 16px;
  }

  .policy-list li::before {
    top: 3px;
  }
  .show-on-mobile {
    display: inline-block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue {
    animation: none;
  }

  .has-reveal [data-reveal] {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
