@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/poppins-300.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-400.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/roboto-300.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-400.ttf") format("truetype");
}

:root {
  --blue: #1c3c6d;
  --blue-bright: #2e68ae;
  --ink: #54595f;
  --light: #f0eded;
  --fleet-light: #f0f0f0;
  --white: #fff;
  --shell: 1400px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  font-family: "Poppins", Arial, sans-serif;
}

ul {
  padding: 0;
  list-style: none;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 15px;
  color: var(--white);
  background: var(--blue);
  font-family: "Poppins", sans-serif;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

/* Header */

.site-header {
  position: relative;
  z-index: 20;
  height: 154px;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  width: min(100%, var(--shell));
  height: 100%;
  margin-inline: auto;
}

.header-cell {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-logo-cell {
  justify-content: center;
}

.header-contact-cell {
  justify-content: flex-end;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-trigger-icon,
.header-contact-icon {
  display: inline-flex;
  flex: 0 0 auto;
}

.menu-trigger-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 2.5;
}

.site-logo {
  display: block;
  width: 150px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 256px;
  padding: 14px 22px;
  color: var(--white);
  background: var(--blue);
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  background: #244e87;
  transform: translateY(-4px);
}

.header-contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.mobile-contact-label {
  display: none;
}

/* Slide-out menu */

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  visibility: hidden;
  pointer-events: none;
}

.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.menu-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 72vh;
  min-height: 480px;
  max-height: 720px;
  padding: 80px 0 50px 100px;
  color: #fffaf5;
  background: var(--blue);
  transform: translateX(-105%);
  transition: transform 0.5s ease;
}

.menu-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.menu-modal.is-open .menu-backdrop {
  opacity: 1;
}

.menu-modal.is-open .menu-panel {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 14px;
  color: var(--white);
  background: var(--blue-bright);
  border: 0;
  cursor: pointer;
  place-items: center;
}

.menu-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.menu-nav ul {
  margin: 0;
}

.menu-nav li + li {
  margin-top: 26px;
}

.menu-nav a {
  position: relative;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.25;
  text-transform: uppercase;
}

.menu-nav a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.menu-nav a:hover::after,
.menu-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-socials {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.menu-socials a {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  place-items: center;
}

.menu-socials a:first-child {
  background: #647db5;
}

.menu-socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.menu-socials svg path,
.menu-socials .fill {
  fill: currentColor;
  stroke: none;
}

/* Home */

.hero {
  position: relative;
  min-height: 80vh;
  color: var(--white);
  background-image: var(--hero-image);
  background-position: bottom center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80vh;
  padding: 10px;
}

.hero-eyebrow {
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  color: var(--white);
  font-size: 90px;
  font-weight: 600;
  line-height: 1.2;
}

.about-section,
.reasons-section {
  background: var(--white);
}

.about-section {
  min-height: 850px;
  padding: 100px 0 50px;
}

.about-grid,
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.about-copy {
  padding-right: 10%;
}

.about-copy h2,
.reasons-copy h2 {
  margin-bottom: 0;
  color: var(--blue);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

.section-rule {
  display: block;
  width: 20%;
  height: 1px;
  margin: 30px 0 44px;
  background: var(--blue);
}

.section-rule.light {
  background: var(--white);
}

.section-rule.full {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-copy p {
  margin-bottom: 15px;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  text-align: justify;
}

.about-image img,
.reasons-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

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

.reasons-section {
  min-height: 800px;
  padding: 0 0 100px;
}

.reasons-image img {
  object-position: center right;
}

.reasons-copy {
  padding-left: 10%;
}

.reasons-copy .section-rule {
  margin-bottom: 30px;
}

.reasons-copy ul {
  margin: 0;
}

.reasons-copy li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 40px;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.reasons-copy li svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: square;
  stroke-width: 4;
}

.fleet-section {
  min-height: 1251px;
  padding: 100px 0;
  background: var(--fleet-light);
}

.display-title {
  margin: 0;
  color: var(--blue);
  font-size: 70px;
  font-weight: 600;
  line-height: 1.2;
}

.display-title.light {
  color: var(--white);
}

.display-title.centered {
  text-align: center;
}

.fleet-section > .shell > .section-rule {
  margin-bottom: 32px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  margin-top: 32px;
}

.fleet-copy,
.fleet-image {
  padding: 30px;
}

.fleet-copy h3 {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.fleet-copy ul {
  margin: -8px 0 0;
}

.fleet-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 41px;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.fleet-copy li svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.fleet-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
}

.services-section {
  min-height: 1659px;
  color: var(--white);
  background: var(--blue);
}

.services-heading {
  min-height: 319px;
  padding-top: 100px;
}

.services-heading .section-rule {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(390px, auto);
  gap: 10px;
  padding-top: 50px;
  padding-bottom: 90px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  padding: 80px 100px;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
  text-align: center;
}

.service-card:last-child {
  min-height: 400px;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
}

.contact-section {
  min-height: 1266px;
  padding: 100px 0;
  background: var(--light);
}

.contact-section > .shell > .section-rule {
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-height: 825px;
}

.contact-form-wrap {
  padding-right: 10%;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-field label {
  margin-bottom: 2px;
  color: #000;
  font-size: 15px;
  font-weight: 300;
}

.form-field label span {
  margin-left: 2px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 9px 12px;
  color: #000;
  background: var(--light);
  border: 0;
  border-bottom: 1px solid #69727d;
  border-radius: 0;
  outline: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field input {
  height: 39px;
}

.form-field textarea {
  min-height: 114px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  background: #e9e6e6;
  border-color: var(--blue);
}

.submit-button {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 144px;
  margin-top: 2px;
  padding: 15px 45px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #244e87;
  transform: translateY(-4px);
}

.submit-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.contact-divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 65px 0 30px;
  background: var(--blue);
}

.contact-form-wrap h3 {
  margin-bottom: 25px;
  color: var(--blue);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.contact-list {
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.contact-list li + li {
  margin-top: 10px;
}

.contact-list svg {
  width: 17px;
  height: 17px;
  margin-top: 5px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
}

.contact-image {
  overflow: hidden;
  background: var(--white);
  border-radius: 10px;
}

.contact-image img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: center;
}

.partners-section {
  min-height: 681px;
  padding: 100px 0;
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: 220px;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 20px 30px;
}

.partner-card img {
  width: auto;
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.partner-card:first-child img {
  width: 50%;
}

.partner-card:hover img,
.partner-card:focus-visible img {
  transform: scale(0.9);
}

/* Footer */

.footer-main {
  min-height: 310px;
  padding: 60px 0;
  background: var(--light);
}

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

.footer-logo-wrap,
.footer-block {
  min-width: 0;
}

.footer-logo {
  display: block;
  width: 50%;
}

.footer-block h2 {
  margin-bottom: 25px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.footer-block .contact-list li {
  font-size: 18px;
}

.footer-block .contact-list a {
  overflow-wrap: anywhere;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  display: inline-flex;
  color: var(--blue);
}

.footer-socials svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-socials svg path,
.footer-socials .fill {
  fill: currentColor;
  stroke: none;
}

.footer-legal-block li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.footer-legal-block li + li {
  margin-top: 10px;
}

.footer-legal-block svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
}

.footer-legal-block a:hover,
.footer-legal-block a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  display: grid;
  min-height: 30px;
  padding: 9px 20px;
  color: var(--white);
  background: var(--blue);
  place-items: center;
}

.footer-bottom p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

/* Legal and utility pages */

.legal-hero {
  display: flex;
  align-items: center;
  min-height: 320px;
  color: var(--white);
  background: var(--blue);
}

.legal-hero h1 {
  margin: 0;
  padding: 40px 10px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.1;
}

.legal-content {
  max-width: 980px;
  padding: 90px 20px 110px;
}

.legal-block + .legal-block {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(28, 60, 109, 0.25);
}

.legal-block h2 {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 600;
}

.legal-block p {
  color: #222;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.message-page {
  display: grid;
  min-height: 680px;
  padding: 60px 20px;
  background: var(--light);
  place-items: center;
}

.message-card {
  width: min(100%, 680px);
  padding: 70px 50px;
  background: var(--white);
  border-radius: 10px;
  text-align: center;
}

.message-card h1 {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 42px;
  line-height: 1.15;
}

.message-card p {
  font-size: 18px;
  line-height: 1.7;
}

.message-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 30px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  place-items: center;
}

.message-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.error-code {
  margin-bottom: 10px;
  color: var(--blue);
  font-family: "Poppins", sans-serif;
  font-size: 72px !important;
  font-weight: 600;
  line-height: 1 !important;
}

.primary-link {
  display: inline-block;
  margin-top: 15px;
  padding: 15px 28px;
  color: var(--white);
  background: var(--blue);
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  background: #244e87;
  transform: translateY(-3px);
}

/* Motion */

.animate-on-load {
  animation: hero-in 0.8s 0.1s both ease-out;
}

.js .reveal {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.fade-up {
  transform: translateY(35px);
}

.js .reveal.fade-right {
  transform: translateX(35px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1400px) {
  .shell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  .site-header {
    padding: 20px;
  }

  .header-contact {
    min-width: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .about-section,
  .reasons-section,
  .contact-section {
    padding-right: 25px;
    padding-left: 25px;
  }

  .about-grid,
  .reasons-grid,
  .fleet-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .reasons-copy,
  .contact-form-wrap {
    padding-right: 0;
    padding-left: 0;
  }

  .about-image,
  .reasons-image {
    margin-top: 25px;
  }

  .reasons-grid .reasons-copy {
    grid-row: 1;
  }

  .reasons-grid .reasons-image {
    grid-row: 2;
  }

  .fleet-section,
  .services-heading,
  .services-grid,
  .partners-section {
    padding-right: 25px;
    padding-left: 25px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 60px;
  }

  .contact-image {
    margin-top: 35px;
  }

  .footer-main {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 128px;
    padding: 20px 30px;
  }

  .header-inner {
    grid-template-columns: 20% 40% 40%;
  }

  .menu-trigger {
    gap: 0;
    padding: 8px 0;
  }

  .menu-trigger-icon svg {
    width: 20px;
    height: 20px;
  }

  .menu-trigger-label {
    display: none;
  }

  .site-logo {
    width: 90px;
  }

  .header-contact {
    min-width: 96px;
    padding: 12px 16px;
    font-size: 10px;
  }

  .header-contact-icon,
  .desktop-contact-label {
    display: none;
  }

  .mobile-contact-label {
    display: inline;
  }

  .menu-panel {
    width: 230px;
    height: 70vh;
    min-height: 520px;
    max-height: none;
    padding: 160px 0 64px 23px;
  }

  .menu-nav li + li {
    margin-top: 23px;
  }

  .menu-nav a {
    font-size: 22px;
    line-height: 1;
  }

  .hero,
  .hero-content {
    min-height: 70vh;
  }

  .hero-content {
    padding: 10px;
  }

  .hero-eyebrow {
    margin-bottom: 34px;
    font-size: 16px;
    letter-spacing: 3px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 30px;
    line-height: 1.2;
  }

  .about-section {
    min-height: 1202px;
    padding: 50px 20px 34px;
  }

  .about-copy {
    padding-top: 25px;
  }

  .about-copy h2,
  .reasons-copy h2 {
    font-size: 30px;
  }

  .section-rule {
    margin-top: 30px;
    margin-bottom: 44px;
  }

  .about-copy p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 2;
  }

  .about-image {
    margin-top: 25px;
  }

  .about-image img,
  .reasons-image img {
    height: 300px;
  }

  .reasons-section {
    min-height: 724px;
    padding: 0 20px 50px;
  }

  .reasons-copy {
    padding-top: 25px;
  }

  .reasons-copy li {
    min-height: 35px;
    font-size: 16px;
  }

  .fleet-section {
    min-height: 1464px;
    padding: 20px;
  }

  .display-title {
    font-size: 35px;
  }

  .fleet-grid {
    margin-top: 32px;
  }

  .fleet-copy,
  .fleet-image {
    padding: 30px;
  }

  .fleet-copy h3 {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 1;
  }

  .fleet-image img {
    height: 700px;
  }

  .services-section {
    min-height: 1794px;
  }

  .services-heading {
    min-height: 175px;
    padding: 35px 30px 0;
  }

  .services-heading .section-rule {
    margin-bottom: 0;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(303px, auto);
    gap: 10px;
    padding: 30px 30px;
  }

  .service-card,
  .service-card:last-child {
    min-height: 303px;
    padding: 30px;
  }

  .service-icon {
    margin-bottom: 18px;
  }

  .service-icon svg {
    width: 54px;
    height: 54px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .contact-section {
    min-height: 1295px;
    padding: 50px 20px;
  }

  .contact-section > .shell > .section-rule {
    margin-bottom: 32px;
  }

  .contact-grid {
    min-height: 1024px;
  }

  .contact-form-wrap {
    padding-bottom: 35px;
  }

  .submit-button {
    align-self: center;
  }

  .contact-divider {
    margin-top: 50px;
  }

  .contact-form-wrap h3 {
    font-size: 20px;
  }

  .contact-details li {
    font-size: 14px;
  }

  .contact-details svg {
    width: 16px;
    height: 16px;
  }

  .contact-image {
    margin-top: 0;
    border-radius: 10px;
  }

  .contact-image img {
    height: 300px;
  }

  .partners-section {
    min-height: 680px;
    padding: 110px 10px 90px;
  }

  .partners-section .display-title {
    letter-spacing: 2px;
    line-height: 1;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 289px;
  }

  .partner-card {
    min-height: 120px;
    padding: 18px;
  }

  .partner-card img {
    max-height: 100px;
  }

  .footer-main {
    min-height: 640px;
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-logo-wrap {
    margin-bottom: 42px;
  }

  .footer-logo {
    width: 50%;
  }

  .footer-block {
    margin-bottom: 30px;
  }

  .footer-social-block {
    margin-bottom: 50px;
  }

  .footer-block .contact-list li {
    font-size: 18px;
  }

  .footer-socials {
    gap: 16px;
  }

  .footer-socials svg {
    width: 15px;
    height: 15px;
  }

  .footer-bottom p {
    font-size: 10px;
  }

  .legal-hero {
    min-height: 240px;
  }

  .legal-hero h1 {
    padding: 40px 20px;
    font-size: 38px;
  }

  .legal-content {
    padding: 60px 20px 80px;
  }

  .legal-block h2 {
    font-size: 25px;
  }

  .legal-block p {
    font-size: 16px;
  }

  .message-page {
    min-height: 600px;
  }

  .message-card {
    padding: 50px 25px;
  }

  .message-card h1 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
