@font-face {
  font-family: "Acid Grotesk";
  src: url("../../fonts/acid/AcidGrotesk-Light.eot");
  src: url("../../fonts/acid/AcidGrotesk-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/acid/AcidGrotesk-Light.woff2") format("woff2"), url("../../fonts/acid/AcidGrotesk-Light.woff") format("woff"), url("../../fonts/acid/AcidGrotesk-Light.ttf") format("truetype"), url("../../fonts/acid/AcidGrotesk-Light.svg#AcidGrotesk-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acid Grotesk";
  src: url("../../fonts/acid/AcidGrotesk-Medium.eot");
  src: url("../../fonts/acid/AcidGrotesk-Medium.eot?#iefix") format("embedded-opentype"), url("../../fonts/acid/AcidGrotesk-Medium.woff2") format("woff2"), url("../../fonts/acid/AcidGrotesk-Medium.woff") format("woff"), url("../../fonts/acid/AcidGrotesk-Medium.ttf") format("truetype"), url("../../fonts/acid/AcidGvrotesk-Medium.svg#AcidGrotesk-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-acid-grotesk-family: "Acid Grotesk";
  --font-fallback-family: Arial, Helvetica, Open Sans, sans-serif;
  --font-size-general: 12px;
}

html, body {
  font-family: var(--font-acid-grotesk-family), var(--font-fallback-family);
  font-weight: 500;
  font-size: var(--font-size-general, 12px);
  margin: 0;
  background-color: black;
  color: white;
  padding: 0;
  font-family: var(--font-acid-grotesk-family), var(--font-fallback-family);
  font-size: var(--font-size-general, 12px);
}

.header_text {
  font-size: 7rem;
}
.header_text .header_1, .header_text .header_2 {
  color: white;
  overflow: hidden;
  font-family: var(--font-acid-grotesk-family), var(--font-fallback-family);
  font-weight: 500;
}
.header_text .header_1 .letter, .header_text .header_2 .letter {
  display: inline-block;
  vertical-align: middle;
  line-height: 1rem;
  transform: translateY(-200px);
}
.header_text .header_1 .letter:nth-of-type(8), .header_text .header_1 .letter:nth-of-type(9), .header_text .header_1 .letter:nth-of-type(10), .header_text .header_1 .letter:nth-of-type(11), .header_text .header_1 .letter:nth-of-type(12), .header_text .header_1 .letter:nth-of-type(13), .header_text .header_1 .letter:nth-of-type(14), .header_text .header_1 .letter:nth-of-type(15), .header_text .header_1 .letter:nth-of-type(15) {
  margin-top: 25px;
  font-family: "Kitsune", sans-serif;
}

.section_contact {
  background-color: white;
  color: rgb(0, 0, 0);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transform-style: preserve-3d;
  z-index: 2;
}
.section_contact._info {
  padding: 0;
}
.section_contact._info ._item {
  color: rgb(0, 0, 0);
  border-color: rgb(255, 255, 255);
  position: relative;
  padding-bottom: 10px;
}
.section_contact._info ._item:after {
  position: absolute;
  bottom: 5px;
  width: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
  content: "";
  transition: all 2.3s ease-in-out;
}
.section_contact._info ._item a {
  color: rgb(0, 0, 0);
}
.section_contact._info ._item h4 {
  color: rgb(0, 0, 0);
}
.section_contact._info .row_item_bottom.aos-triggered:after {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
}

.parallax-container {
  min-height: 100vh;
  overflow: hidden;
  perspective: 10px;
  transform-style: preserve-3d;
}

[data-aos] {
  transition-duration: 1500ms;
}

header {
  transform-style: preserve-3d;
  z-index: 1;
}

.full_height {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out;
}

.main-wrapper {
  position: relative;
  min-height: 200vh; /* Placeholder for dynamic height */
  overflow: hidden;
}

#intro {
  background-color: transparent;
}

#header-welcome, #contact-info {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out;
}

#header-welcome {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  z-index: 30;
  opacity: 1;
  transition: all 400ms ease-in-out;
}
#header-welcome.below-60 {
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#contact-info {
  color: black;
  z-index: 32;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  filter: blur(var(--cct-blur, 24px));
}
#contact-info.above-60 {
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  --cct-blur: 0px;
}
#contact-info ._item {
  margin-bottom: 10px;
  margin-top: 10px;
  position: relative;
  padding-bottom: 10px;
}
#contact-info ._item:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 2.5s ease-in-out;
}
#contact-info ._item > div {
  margin-bottom: 40px;
}
#contact-info ._item h3 {
  font-size: 6.25vw;
}
#contact-info ._item h4 {
  font-size: 2.083vw;
}
#contact-info ._item h5 {
  font-size: 20px;
  font-weight: 300;
}
#contact-info ._item h5 strong {
  font-weight: bolder;
}
#contact-info ._item a {
  color: black;
  text-decoration: none;
}
#contact-info ._item a:hover {
  outline: none;
  text-decoration: none;
}
#contact-info ._item p {
  font-weight: 300;
  font-size: 16px;
}
#contact-info.full-act ._item:after {
  width: 100%;
}

.bg-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(9, 1fr);
  z-index: 20;
}
.bg-dots ._d-plus {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0); /* Start as a dot */
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
}
.bg-dots ._d-plus:before, .bg-dots ._d-plus:after {
  content: "";
  position: absolute;
  background-color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.bg-dots ._d-plus:before {
  width: var(--before-width, 0%);
  height: var(--before-height, 0%);
}
.bg-dots ._d-plus:after {
  width: var(--after-width, 0%);
  height: var(--after-height, 0%);
}
.bg-dots.expanded ._d-plus {
  transform: scale(10);
}

.bg-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-repeat: repeat;
  background-size: auto;
  mix-blend-mode: difference;
}

footer {
  position: relative;
  z-index: 100;
}

/*# sourceMappingURL=contact.css.map */
