* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  font-family: TT Hoves;
  letter-spacing: -0.03em;
  -webkit-font-feature-settings: 'ss01' on, 'ss04' on, 'ss03' on;
          font-feature-settings: 'ss01' on, 'ss04' on, 'ss03' on;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0.75em;
}

body::-webkit-scrollbar-track {
  background-color: #000;
}

body::-webkit-scrollbar-thumb {
  background-color: #222222;
  border-radius: 50px;
}

.pin-spacer {
  padding: 0 !important;
  inset: 0 !important;
}

canvas {
  width: 100vw;
  height: 100vh;
  max-width: 1920px;
  max-height: 1080px;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0 !important;
  margin: 0 auto !important;
}

.container {
  width: 90vw;
  inset: 0 !important;
  max-width: 1488px !important;
  margin: 0 auto !important;
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 100vh;
  max-height: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero h1.hero-text {
  margin: auto auto 128px 0;
  font-style: normal;
  font-size: 40px;
  font-weight: 400;
}

.nav-bar {
  margin: 72px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-bar .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

a.button-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  height: 16px;
  text-decoration: none;
  text-align: center;
}

a.button-text span.text {
  color: #333333;
  font-family: TT Hoves;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 16px;
  line-height: 16px;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0.18, 0.58, 1.22);
  transition: all 0.3s cubic-bezier(0.42, 0.18, 0.58, 1.22);
}

a.button-text:hover span.text {
  color: white;
}

a.button {
  background-color: #A3E0D9;
  border-radius: 50px;
  height: 42px;
  padding-left: 24px;
  padding-right: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  white-space: nowrap;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

a.button div.button-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  height: 16px;
  z-index: 2;
}

a.button div.button-text span.text {
  color: #333333;
  font-family: TT Hoves;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 16px;
  line-height: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.button div.button-text::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 1;
  bottom: -20%;
  left: 49%;
  right: 49%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #94ccc5;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  -webkit-transform-origin: top;
          transform-origin: top;
}

a.button:hover div.button-text span.text {
  color: white;
}

a.button:hover div.button-text::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 1;
  bottom: -20%;
  left: 49%;
  right: 49%;
  width: 4px;
  height: 4px;
  -webkit-transform: scale(100) translateY(-1px);
          transform: scale(100) translateY(-1px);
}

.details {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  background-color: red;
}
/*# sourceMappingURL=style.css.map */