:root {
  --color-black: #25237a;
  --color-white: #ffffff;
  --color-primary: #75feaf;
  --color-primary-dark: #3aab69;
  --color-secondary: #5342ff;
  --font-family-heading: "Saira Stencil One", sans-serif;
  --font-family-body: "Saira", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-family-body);
  font-optical-sizing: auto;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-secondary);
}

header {
  position: fixed;
  padding-top: clamp(2rem, 5vw, 5rem);
  pointer-events: none;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  border-top: 1.4rem solid var(--color-secondary);
  z-index: 999;
}

@media (max-width: 899px) {
  header {
    padding-top: 2rem;
  }
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.brand-logo svg {
  width: 170vw;
  min-width: 170rem;
  max-width: 309rem;
  height: auto;
}

.brand-logo svg .st0 {
  fill: none;
  stroke: var(--color-primary);
  stroke-linejoin: bevel;
  stroke-width: 13.81px;
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  -webkit-animation: drawLine 3s ease-in-out forwards;
  animation: drawLine 3s ease-in-out forwards;
}

.brand-logo svg .st1 {
  fill: var(--color-primary);
}

@-webkit-keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

h1,
.h1 {
  font-family: var(--font-family-heading);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(5rem, 5vw, 11rem);
  line-height: 0.9;
  margin: 0;
  padding: 0;
  text-wrap: balance;
}

p {
  margin: 0;
  padding: 0;
  text-wrap: pretty;
}

address {
  font-style: normal;
}

p a,
address a {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-thickness: 0.3rem;
  text-underline-offset: 0.5rem;
  -webkit-text-decoration-color: var(--color-primary);
  text-decoration-color: var(--color-primary);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

p a:hover,
address a:hover {
  -webkit-text-decoration-color: var(--color-primary-dark);
  text-decoration-color: var(--color-primary-dark);
}

.text-primary {
  color: var(--color-primary);
}

.text-black {
  color: var(--color-black);
}

.fill-black {
  fill: var(--color-black);
}

.fill-white {
  fill: var(--color-white);
}

.align-middle {
  vertical-align: middle;
}

.mr-5 {
  margin-right: 0.5rem;
}

.container {
  margin-inline: auto;
  padding-inline: 2rem;
  max-width: 120rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.w-full {
  width: 100%;
}

.gap-3 {
  gap: 3rem;
}

.gap-x-6 {
  -webkit-column-gap: 6rem;
  -moz-column-gap: 6rem;
  column-gap: 6rem;
}

.gap-y-4 {
  row-gap: 4rem;
}

.row-start-1 {
  -ms-grid-row: 1;
  grid-row-start: 1;
}

.col-start-1 {
  -ms-grid-column: 1;
  grid-column-start: 1;
}

.items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

@media (max-width: 899px) {
  .justify-end {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.hero-banner {
  position: relative;
  padding: 14rem 0 10rem 0;
}

.hero-banner .flex-row {
  -webkit-column-gap: 15rem;
  -moz-column-gap: 15rem;
  column-gap: 15rem;
  row-gap: 5rem;
}

@media (max-width: 1023px) {
  .hero-banner .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.hero-banner .flex-col:first-child {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 9999999999;
}

.hero-banner .flex-col:last-child {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

@media (min-width: 1024px) and (max-width: 1500px) {
  .gear-logos {
    padding-left: 10rem;
  }

  .gear-logos a img {
    max-height: 7rem;
    max-width: 22rem;
  }
}

@media (min-width: 900px) and (max-width: 1023px) {
  .hero-banner .flex-col:first-child {
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
    width: 50%;
  }

  .hero-banner .flex-col:last-child {
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
    width: 70%;
  }

  .gear-logos {
    padding-left: 5rem;
  }
}

@media (max-width: 639px) {
  .gear-logos a img {
    max-height: 6rem;
    max-width: 20rem;
  }
}

.fullscreen-parallax {
  position: sticky;
  height: 100dvh;
  width: 100%;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  overflow: hidden;
}

.fullscreen-parallax::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40%;
  width: 100%;
  background: -o-linear-gradient(bottom, var(--color-black), transparent);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(var(--color-black)),
    to(transparent)
  );
  background: linear-gradient(to top, var(--color-black), transparent);
  z-index: 1;
}

.fullscreen-parallax > img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}

.fullscreen-parallax a,
.fullscreen-parallax div {
  position: absolute;
  left: clamp(2rem, 5vw, 5rem);
  bottom: clamp(2rem, 5vw, 5rem);
  z-index: 2;
}

.fullscreen-parallax a img {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  max-width: calc(100% - 2rem);
}

@media (max-width: 1023px) {
  .fullscreen-parallax a img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@media (max-width: 639px) {
  .fullscreen-parallax a img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.gear-logos a,
.fullscreen-parallax a {
  pointer-events: none;
}
