﻿@font-face {
  font-family: 'Mattone';
  src: url('Mattone/Mattone-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #111112;
  --raisin: #1a1a1b;
  --accent: #F0E226;
  --heading: #e4e3dc;
  --body: #888;
  --border: rgba(255, 255, 255, .08);
  --wrap: 1320px;
  --pad: clamp(20px, 4vw, 40px);
  --font-body: 'Mattone', Arial, sans-serif;
  --font-heading: 'Mattone', Arial, sans-serif;
  --nav-h: 80px;
  --hero-gutter: clamp(24px, 5vw, 80px);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit
}

html {
  font-size: 16px;
  font-family: var(--font-body);
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 226, 38, .45) var(--bg)
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

button,
input {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

input {
  cursor: text;
  background: transparent
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative
}

.grid-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  left: 0;
  right: 0
}

.grid-lines span {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .06) 10%, rgba(255, 255, 255, .06) 90%, transparent)
}

.text-regular {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: .02em;
  font-weight: 400;
  text-transform: none;
  color: var(--body);
  font-family: var(--font-body)
}

.white {
  color: var(--heading)
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 16px 28px;
  background: rgba(240, 226, 38, .2);
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap
}

.button-text-wrap {
  position: relative;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2
}

.button-text {
  display: block
}

.button-text.second-text {
  position: absolute;
  left: 0;
  top: 100%;
  color: #fff
}

.button-icon-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  background: rgba(17, 17, 18, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.button-icon.second-icon {
  position: absolute;
  opacity: 0
}

.btn-fill {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: -1
}

.btn-fill-l,
.btn-fill-r {
  width: 0;
  height: 100%;
  background: rgba(240, 226, 38, .2)
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 750;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(17, 17, 18, .55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .4s
}

nav.scrolled {
  background: rgba(17, 17, 18, .88)
}

.nav-shell {
  width: 100%;
  max-width: none;
  padding: 0 var(--hero-gutter)
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  height: var(--nav-h);
  width: 100%
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2
}

.nav-logo img {
  height: 34px;
  width: auto;
  max-width: min(160px, 42vw);
  object-fit: contain
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center
}

.nav-links a {
  padding: 8px 14px 8px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--heading);
  text-transform: uppercase;
  background: url(images/icons/nav-link.svg) no-repeat 0 10px;
  transition: color .3s
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background-image: url(images/icons/nav-link-active.svg)
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  z-index: 2
}

.nav-button {
  padding: 11px 14px 11px 20px;
  font-size: 12px;
  gap: 8px
}

.nav-button .button-icon-wrap {
  width: 28px;
  height: 28px
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(17, 17, 18, .45);
  cursor: pointer;
  z-index: 2
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--heading);
  transition: transform .3s, opacity .3s
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 18, .98);
  z-index: 740;
  padding: calc(88px + env(safe-area-inset-top, 0px)) var(--pad) calc(40px + env(safe-area-inset-bottom, 0px));
  flex-direction: column;
  gap: 8px;
  overflow-y: auto
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  font-size: clamp(22px, 6vw, 28px);
  color: var(--heading);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase
}

.mobile-menu .button {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--accent)
}

.legal-page {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h)
}

.legal-hero {
  padding: clamp(72px, 12vw, 140px) 0 clamp(40px, 6vw, 64px);
  text-align: center
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 7.5vw, 88px);
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.02em;
  font-weight: 400
}

.legal-updated {
  margin-top: clamp(12px, 2vw, 20px);
  font-size: 14px;
  color: var(--body);
  text-transform: none;
  letter-spacing: .02em
}

.legal-content {
  max-width: min(900px, 100%);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(64px, 10vw, 100px)
}

.legal-intro {
  margin-bottom: clamp(28px, 4vw, 40px)
}

.legal-copyright {
  margin-top: 20px;
  color: var(--heading)
}

.legal-section {
  margin-bottom: clamp(36px, 5vw, 52px)
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--heading);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 400;
  line-height: 1.3
}

.legal-section p {
  margin-bottom: 12px
}

.legal-section ul,
.legal-section ol {
  margin: 12px 0 12px 1.25rem;
  padding: 0
}

.legal-section li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  text-transform: none
}

.legal-section li strong {
  color: var(--heading);
  font-weight: 400
}

.legal-ip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 3vw, 32px);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border)
}

.legal-ip-item .legal-ip-num {
  display: block;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: .04em
}

.legal-ip-item .legal-ip-label {
  font-size: 14px;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.4
}

.services-marquee-section {
  background: var(--raisin);
  position: relative;
  overflow: hidden;
  z-index: 1
}

.services-marquee-link {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 64px 0;
  text-decoration: none;
  position: relative;
  overflow: hidden
}

.services-marquee {
  display: flex;
  gap: 40px;
  overflow: hidden
}

.services-marquee-truck {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0
}

.services-marquee-truck.marquee-left {
  animation: marqueeLeft 25s linear infinite
}

.services-marquee-truck.marquee-right {
  animation: marqueeRight 25s linear infinite
}

.services-marquee-dot {
  width: 24px;
  height: 24px;
  background: var(--accent);
  flex-shrink: 0
}

.display-three {
  font-family: var(--font-body);
  font-size: clamp(48px, 8vw, 100px);
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

footer.footer-section {
  padding: clamp(80px, 10vw, 120px) 0 0;
  background: #000;
  position: relative;
  z-index: 1;
  width: 100%
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 40%) minmax(0, 60%);
  gap: clamp(72px, 12vw, 160px);
  align-items: start;
  width: 100%
}

.footer-left-content,
.footer-right-panel {
  max-width: 100%;
  width: 100%;
  min-width: 0
}

.footer-details-with-form {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px)
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: clamp(20px, 3vw, 28px)
}

.footer-logo {
  height: clamp(30px, 3vw, 38px);
  width: auto
}

.footer-desc {
  font-size: 12px;
  line-height: 1.75;
  text-transform: uppercase;
  color: var(--heading);
  letter-spacing: .045em
}

.footer-form-with-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%
}

.footer-form-title-with-para {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-form-title {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2
}

.footer-form-para {
  font-size: 14px;
  line-height: 1.65;
  color: var(--body);
  text-transform: none
}

.footer-form-wrap {
  margin: 0;
  width: 100%
}

.footer-form-btn-with-field {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 0
}

.footer-input-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex
}

.footer-input-field {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 1px solid #39393a;
  border-right: none;
  background: #353535;
  color: var(--heading);
  font-size: 14px;
  outline: none
}

.footer-input-field::placeholder {
  color: #666
}

.footer-input-field:focus {
  border-color: #4a4a4b;
  border-right: none
}

.footer-email-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: .8;
  pointer-events: none;
  color: var(--heading)
}

.footer-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(17, 17, 18, .85);
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--accent);
  flex-shrink: 0;
  cursor: pointer
}

.footer-submit:hover {
  background: rgba(240, 226, 38, .12)
}

.footer-submit-arrow {
  font-size: 14px;
  line-height: 1
}

.footer-menus,
.footer-right-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
  width: 100%;
  min-width: 0
}

.footer-menu-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 36px);
  width: 100%
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 24px)
}

.footer-link {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--heading);
  font-size: clamp(16px, 1.45vw, 20px);
  text-transform: uppercase;
  padding: 2px 0;
  background: none;
  transition: color .35s;
  line-height: 1.2;
  text-decoration: none;
  gap: 12px
}

.footer-link::before {
  content: '';
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background: url(images/icons/nav-link.svg) no-repeat center;
  background-size: contain
}

.footer-link::after {
  content: '';
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  background: url(images/icons/frame.svg) no-repeat center;
  background-size: contain
}

.footer-link:hover,
.footer-link.active {
  color: var(--accent)
}

.footer-link:hover::before,
.footer-link.active::before {
  background-image: url(images/icons/nav-link-active.svg)
}

.footer-extra-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  width: 100%;
  padding-top: clamp(12px, 2vw, 20px)
}

.footer-extra-link .footer-link-style-two:first-child,
.footer-extra-link .footer-link-style-two:last-child {
  grid-column: auto;
  justify-self: auto
}

.footer-link-style-two {
  color: var(--accent);
  font-size: clamp(16px, 1.45vw, 18px);
  text-transform: uppercase
}

.footer-bottom {
  margin-top: clamp(48px, 8vw, 80px);
  padding: 0;
  border-top: 1px solid var(--border);
  background: var(--raisin)
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  flex-wrap: wrap;
  padding: clamp(28px, 3.5vw, 40px) 0
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(520px, 100%)
}

.footer-bottom-tagline {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--heading);
  text-transform: none;
  margin: 0
}

.footer-link-style-three {
  color: #888;
  font-size: 13px;
  text-transform: uppercase
}

.footer-underline {
  text-decoration: underline;
  text-underline-offset: 3px
}

.footer-bottom-right {
  display: flex;
  gap: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto
}

@media(max-width:991px) {
  nav {
    min-height: 64px;
    padding: calc(8px + env(safe-area-inset-top, 0px)) 0 8px
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
    height: auto;
    min-height: 48px
  }

  .nav-links,
  .nav-button {
    display: none !important
  }

  .menu-toggle {
    display: flex
  }

  .nav-logo img {
    height: 30px;
    max-width: 130px
  }

  .legal-ip-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-menu-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .footer-right-panel,
  .footer-menus {
    min-height: auto
  }

  .footer-left-content {
    max-width: 100%
  }

  .footer-form-para {
    max-width: 100%
  }

  .footer-form-btn-with-field {
    flex-direction: column
  }

  .footer-input-field {
    border-right: 1px solid #39393a
  }

  .footer-submit {
    width: 100%;
    justify-content: center
  }

  .footer-extra-link {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .footer-extra-link .footer-link-style-two:first-child,
  .footer-extra-link .footer-link-style-two:last-child {
    grid-column: 1;
    justify-self: start
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .display-three {
    font-size: clamp(32px, 10vw, 52px)
  }

  .services-marquee-link {
    padding: 36px 0;
    gap: 28px
  }
}

@media(max-width:575px) {
  .legal-ip-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-form-btn-with-field {
    flex-direction: column
  }

  .footer-submit {
    width: 100%;
    justify-content: center
  }
}