:root {
  --bg: #f0f0f0;
  --text: #1c1c1c;
  --muted: #666;
  --card: #ffffff;
  --orange: #e25743;
  --dark-orange: #c92f1a;
  --container: 1040px;
  --separator: #282728;
  --off-white: #f0f0f0;
}

@font-face {
  font-family: "AtypDisplayRegular";
  src: url('/fonts/AtypDisplayRegular/font.woff2') format('woff2'), url('fonts/AtypDisplayRegular/font.woff') format('woff');
}

@font-face {
  font-family: "AtypDisplayMedium";
  src: url('/fonts/AtypDisplayMedium/font.woff2') format('woff2'), url('fonts/AtypDisplayMedium/font.woff') format('woff');
}

@font-face {
  font-family: "AtypDisplayBold";
  src: url('/fonts/AtypDisplayBold/font.woff2') format('woff2'), url('fonts/AtypDisplayBold/font.woff') format('woff');
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: AtypDisplayRegular, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

h2, h3, h4 {
  font-family: AtypDisplayMedium, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

h2 {
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 0;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0 24px 0 0;
  align-items: end;
  margin: 70px 0 50px 0;
}

.mobile-nav {
  margin-top: 30px;
  display: none;
}

@media screen and (max-width: 756px) {
  .site-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
}

.site-nav a {
  display: block;
}

.site-nav a:hover {
  color: var(--orange);
}

.mobile-nav-bar {
  display: flex;
  justify-content: space-between;
}

.mobile-nav-menu {
  list-style: none;
  font-size: 18px;
  text-align: center;
  height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  padding: 0;
}

.mobile-nav-open .mobile-nav-menu {
  height: 190px;
  opacity: 1;
}

.mobile-nav-menu li {
  margin: 20px 0 0 0;
}

.mobile-nav-menu li a {
  color: var(--orange);
  font-family: AtypDisplayMedium, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.mobile-nav-menu li a:hover {
  color: var(--dark-orange);
}

#mobile-nav-icon {
  width: 33px;
  height: 35px;
  position: relative;
  top: -3px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

#mobile-nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--orange);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#mobile-nav-icon:hover span {
  background: var(--dark-orange);
}

#mobile-nav-icon span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}

#mobile-nav-icon span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}

#mobile-nav-icon span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}

.mobile-nav-open #mobile-nav-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: -3px;
  left: 0;
}

.mobile-nav-open #mobile-nav-icon span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.mobile-nav-open #mobile-nav-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
  left: 0px;
}

.logo-color {
  background: url(/images/logo-color.png);
  background-size: 131px 30px;
  width: 131px;
  height: 30px;
  text-indent: -999em;
  position: relative;
  top: -5px;
  transition: opacity 0.25s ease-in-out;
}

.logo-color:hover {
  opacity: 0.8;
}

.hero {
  position: absolute;
  height: 120vh;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.hero-spacer {
  height: 380px;
}

.hero-street {
  background-image: url(/images/hero-street.png);
  background-repeat: no-repeat;
  background-position: 0px 100%;
  background-size: 110% 110%;
  height: 1000px;
  width: 100%;
}

@keyframes truck-parallax {
  from {
    background-position: 100% 100%;
  }
  20% {
    background-position: 20% 100%;
  }
}

.hero-truck {
  position: absolute;
  left: 0;
  top: 75px;
  background-image: url(/images/hero-truck.png);
  background-repeat: no-repeat;
  background-size: auto 550px;
  animation: truck-parallax linear;
  animation-timeline: scroll();
  width: 100%;
  height: 550px;
}

.hero-text {
  position: absolute;
  left: 50%;
  top: 200px;
  max-width: 780px;
  margin-left: -430px;
}

.hero-text .mobile-break {
  display: none;
}

.hero-text h1,
.hero-text h2 {
  color: var(--text);
  font-size: 72px;
  font-family: AtypDisplayMedium, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: normal;
  margin: 0;
  line-height: 1.1;
}

.hero-text h2 {
  font-family: AtypDisplayRegular, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cta-hero {
  padding: 14px 30px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: var(--orange);
  border-radius: 40px;
  position: relative;
  top: -14px;
  transition: background 0.25s ease-in-out;
  white-space: nowrap;
}

.cta-hero:hover {
  background: var(--dark-orange);
}

@media screen and (max-width: 930px) {
  .hero-text {
    left: 0;
    margin-left: 30px;
    top: auto;
    position: relative;
  }
  .hero-text h1,
  .hero-text h2 {
    line-height: 1.2;
  }
  .hero-text .mobile-break {
    display: block;
  }
  .cta-hero {
    top: 0;
    display: inline-block;
    margin-right: 40px;
    margin-top: 40px;
    outline: 4px solid rgba(255,255,255,.6);
  }
  .hero-street {
    display: none;
  }
  .hero-truck {
    display: none;
  }
  .hero {
    height: 900px;
    background: url(/images/hero-mobile.png);
    background-position: left 0;
    background-repeat: no-repeat;
    background-size: 931px 600px;
  }
  .hero-spacer {
    height: auto;
  }
}

@media screen and (max-width: 756px) {
  .hero-text {
    left: 0;
    padding-left: 2rem;
    margin-left: 0;
  }
  .hero-text h1,
  .hero-text h2 {
    font-size: 36px;
  }
}

.section {
  width: 700px;
  margin: 140px auto 0 auto;
}

.section-block {
  border-top: 1px solid var(--separator);
  margin-top: 60px;
  padding-top: 30px;
}

.section-cols {
  display: grid;
  grid-template-columns: 300px 300px;
  gap: 100px;
}

.intermediate-content {
  margin-top: 40px;
}

@media screen and (max-width: 930px) {
  .section {
    margin: 70px auto;
  }
}

@media screen and (max-width: 830px) {
  .section {
    width: auto;
    margin: 70px 30px;
  }
  .section-cols {
    grid-template-columns: auto;
    gap: 0;
  }
  .section-block {
    margin-top: 30px;
    padding-top: 0px;
  }
  .intermediate-content {
    margin-top: 0;
  }
  .section-cols .col h4:first-child {
    margin-top: 0;
  }
}

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

.section ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--separator);
}
.section ul li:last-child {
  border-bottom: 0;
}

.section-widget {
  margin-top: 140px;
  background: var(--separator);
  border-radius: 20px;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.widget-description {
  width: 400px;
  padding: 70px 48px 48px 70px;
  color: var(--off-white);
}

@media screen and (max-width: 830px) {
  .section-widget {
    margin-top: 30px;
    display: block;
  }
  .widget-description {
    width: auto;
    padding: 15px 30px;
    color: var(--off-white);
  }
}

.widget-content {
  background: rgba(255,255,255,.05);
  flex: auto;
  height: 500px;
}

.marker {
  background-image: url(/images/marker.png);
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

#become-a-partner {
  text-align: center;
  background: var(--separator);
}

#become-a-partner .border-radius-wrapper {
  padding: 100px 0 200px 0;
  background: var(--bg) url(/images/footer.png) left bottom no-repeat;
  background-size: 100% auto;
  border-bottom-left-radius: 31px;
  border-bottom-right-radius: 31px;
}

#become-a-partner h2 {
  font-size: 72px;
  color: var(--text);
  font-family: AtypDisplayRegular, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
}

#become-a-partner h2 em {
  font-family: AtypDisplayBold, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-style: normal;
}

#partners {
  list-style: none;
  padding: 0;
  margin: 70px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
#partners img {
  max-height: 30px;
}

#become-a-partner p {
  font-family: AtypDisplayMedium, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 40px;
  margin: 0 0 50px 0;
}

.cta-big {
  display: inline-block;
  border-radius: 50px;
  font-size: 24px;
  color: white;
  padding: 20px 50px;
  margin-bottom: 40px;
  background: var(--orange);
  transition: background 0.25s ease-in-out;
}

@media screen and (max-width: 830px) {
  #become-a-partner .border-radius-wrapper {
    padding: 30px 30px 100px 30px;
  }
  #become-a-partner h2 {
    font-size: 36px;
  }
  #become-a-partner p {
    font-size: 24px;
  }
  .cta-big {
    font-size: 20px;
    padding: 15px 25px;
  }
}

.cta-big:hover {
  background: var(--dark-orange);
}

.footer-section {
  background: var(--separator);
}

.footer {
  color: var(--off-white);
  padding: 60px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 830px) {
  .footer .container {
    flex-direction: column;
  }
}

.footer a {
  transition: opacity 0.25s ease-in-out;
}

.footer a:hover {
  opacity: 0.8;
}

.logo-white img {
  width: 126px;
  position: relative;
  top: -5px;
}

.social-media-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 40px;
}

.social-media-links img {
  width: 28px;
}

#back-to-top {
  outline: 4px solid rgba(255,255,255,.6);
}