@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Overpass+Mono:wght@300..700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: #C2C2C2;
  color: #191919;
}

::selection {
  background-color: #C2C2C2;
  color: #191919;
}

::-moz-selection {
  background-color: #C2C2C2;
  color: #191919;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  background-color: #191919;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.typography-hero {
  font-family: "Overpass Mono", monospace;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: 0.02em;
  line-height: 1em;
}
@media (max-width: 1024px) {
  .typography-hero {
    font-size: 28px;
  }
}

.typography-secondary {
  font-family: "Overpass Mono", monospace;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.444444em;
}
@media (max-width: 768px) {
  .typography-secondary {
    font-size: 16px;
  }
}

.typography-title-1 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 53px;
  letter-spacing: -0.01em;
  line-height: 0.735849em;
}
@media (max-width: 1024px) {
  .typography-title-1 {
    font-size: 32px;
  }
}

.typography-title-2 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 0.71875em;
}
@media (max-width: 1024px) {
  .typography-title-2 {
    font-size: 24px;
  }
}

.typography-text-1 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.545454em;
}
@media (max-width: 1024px) {
  .typography-text-1 {
    font-size: 18px;
    letter-spacing: -0.01em;
    line-height: 1.666666em;
  }
}
@media (max-width: 768px) {
  .typography-text-1 {
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 1.6em;
  }
}

.typography-text-2 {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.631578em;
}
@media (max-width: 1024px) {
  .typography-text-2 {
    font-size: 18px;
    letter-spacing: -0.01em;
    line-height: 1.666666em;
  }
}
@media (max-width: 768px) {
  .typography-text-2 {
    font-size: 20px;
    letter-spacing: -0.01em;
    line-height: 1.6em;
  }
}

.typography-menu-item {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 0.71875em;
}

.typography-text-secondary {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.625em;
}
@media (max-width: 768px) {
  .typography-text-secondary {
    font-size: 14px;
  }
}

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

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 17px;
    padding-right: 17px;
  }
}

.container2 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 100px;
  padding-right: 100px;
}
@media (max-width: 768px) {
  .container2 {
    padding-left: 17px;
    padding-right: 17px;
  }
}

.header {
  padding-top: 35px;
  padding-bottom: 35px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  background-image: linear-gradient(to bottom, rgba(25, 25, 25, 0.9019607843) 0%, transparent 100%);
}
@media (max-width: 620px) {
  .header {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

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

.header__logo {
  display: block;
}

.header__logo-desktop {
  width: 137px;
  height: auto;
  display: block;
}
@media (max-width: 620px) {
  .header__logo-desktop {
    display: none;
  }
}

.header__logo-mobile {
  width: 38px;
  height: auto;
  display: none;
}
@media (max-width: 620px) {
  .header__logo-mobile {
    display: block;
  }
}

.header__menu-toggle {
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 78px;
}

.header__menu-line {
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  display: block;
  transition: transform 0.3s ease;
}
.header__menu-toggle.is-active .header__menu-line:first-child {
  transform: rotate(22deg) translateY(6px);
}
.header__menu-toggle.is-active .header__menu-line:last-child {
  transform: rotate(-22deg) translateY(-6px);
}

.nav_blur {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  pointer-events: none;
  transform: translate(0, -25%);
  width: 100%;
}
@media (max-width: 1024px) {
  .nav_blur {
    height: 12vh;
  }
}
.nav_blur > div {
  position: absolute;
  inset: 0;
}

.nav-blur-step-1 {
  z-index: 2;
  -webkit-backdrop-filter: blur(0.5px);
          backdrop-filter: blur(0.5px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #fff 5% 12%, rgba(255, 255, 255, 0) 19%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #fff 5% 12%, rgba(255, 255, 255, 0) 19%);
}

.nav-blur-step-2 {
  z-index: 3;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 5%, #fff 12% 19%, rgba(255, 255, 255, 0) 26%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 5%, #fff 12% 19%, rgba(255, 255, 255, 0) 26%);
}

.nav-blur-step-3 {
  z-index: 4;
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 12%, #fff 19% 26%, rgba(255, 255, 255, 0) 33%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 12%, #fff 19% 26%, rgba(255, 255, 255, 0) 33%);
}

.nav-blur-step-4 {
  z-index: 5;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 19%, #fff 26% 33%, rgba(255, 255, 255, 0) 40%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 19%, #fff 26% 33%, rgba(255, 255, 255, 0) 40%);
}

.nav-blur-step-5 {
  z-index: 6;
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 26%, #fff 33% 40%, rgba(255, 255, 255, 0) 47%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 26%, #fff 33% 40%, rgba(255, 255, 255, 0) 47%);
}

.nav-blur-step-6 {
  z-index: 7;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 33%, #fff 40% 47%, rgba(255, 255, 255, 0) 54%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 33%, #fff 40% 47%, rgba(255, 255, 255, 0) 54%);
}

.nav-blur-step-7 {
  z-index: 8;
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 40%, #fff 47% 54%, rgba(255, 255, 255, 0) 61%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 40%, #fff 47% 54%, rgba(255, 255, 255, 0) 61%);
}

.nav-blur-step-8 {
  z-index: 9;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 47%, #fff 54% 61%, rgba(255, 255, 255, 0) 68%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 47%, #fff 54% 61%, rgba(255, 255, 255, 0) 68%);
}

.nav-blur-step-9 {
  z-index: 10;
  -webkit-backdrop-filter: blur(4.5px);
          backdrop-filter: blur(4.5px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 54%, #fff 61% 68%, rgba(255, 255, 255, 0) 75%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 54%, #fff 61% 68%, rgba(255, 255, 255, 0) 75%);
}

.nav-blur-step-10 {
  z-index: 11;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 61%, #fff 68% 75%, rgba(255, 255, 255, 0) 82%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 61%, #fff 68% 75%, rgba(255, 255, 255, 0) 82%);
}

.nav-blur-step-11 {
  z-index: 12;
  -webkit-backdrop-filter: blur(5.5px);
          backdrop-filter: blur(5.5px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 68%, #fff 75% 82%, rgba(255, 255, 255, 0) 89%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 68%, #fff 75% 82%, rgba(255, 255, 255, 0) 89%);
}

.nav-blur-step-12 {
  z-index: 13;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 75%, #fff 82% 89%, rgba(255, 255, 255, 0) 96%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 75%, #fff 82% 89%, rgba(255, 255, 255, 0) 96%);
}

.nav-blur-step-13 {
  z-index: 14;
  -webkit-backdrop-filter: blur(6.5px);
          backdrop-filter: blur(6.5px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 82%, #fff 89% 96%, rgba(255, 255, 255, 0) 100%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 82%, #fff 89% 96%, rgba(255, 255, 255, 0) 100%);
}

.nav-blur-step-14 {
  z-index: 15;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  -webkit-mask: linear-gradient(to top, rgba(255, 255, 255, 0) 89%, #fff 96% 100%);
          mask: linear-gradient(to top, rgba(255, 255, 255, 0) 89%, #fff 96% 100%);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 575px;
  height: 100vh;
  background-color: rgba(25, 25, 25, 0.9019607843);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 200;
  padding-top: 35px;
  padding-right: 34px;
  padding-left: 30px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media (max-width: 620px) {
  .menu {
    padding-top: 22px;
    padding-right: 17px;
    padding-left: 17px;
    padding-bottom: 22px;
  }
}
.menu.is-open {
  transform: translateX(0);
}

.menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu__item {
  border-bottom: 1px solid #484848;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.menu__link {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 0.71875em;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s ease;
}
.menu__link:hover {
  opacity: 0.7;
}

.menu__info {
  margin-bottom: 32px;
  font-family: "Overpass Mono", monospace;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.444444em;
  color: #828282;
}
@media (max-width: 768px) {
  .menu__info {
    font-size: 16px;
  }
}

.menu__copyright {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.625em;
  color: #828282;
}
@media (max-width: 768px) {
  .menu__copyright {
    font-size: 14px;
  }
}

.border-bottom-link {
  display: inline-block;
  color: #C2C2C2;
  text-decoration: unset;
  font-weight: 200;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .border-bottom-link {
    margin-top: 70px;
  }
}
.border-bottom-link::after, .border-bottom-link::before {
  content: "";
  position: absolute;
  top: calc(100% - 0.1em);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: transform 0.3s ease;
  transition-timing-function: ease-in-out;
  transition-duration: 0.45s;
}
.border-bottom-link::after {
  transition-delay: 0.1s;
}
.border-bottom-link::before {
  transform: translateX(calc(-100% - 8px));
  transition-delay: 0.45s;
}
.border-bottom-link:hover {
  color: #FFFFFF;
}
.border-bottom-link:hover::after {
  transform: translateX(100%);
}
.border-bottom-link:hover::before {
  transform: translateX(0);
}

#liquid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  pointer-events: none;
  mix-blend-mode: plus-lighter;
  opacity: 0.5;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #191919;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
}
.preloader.preloader--hidden {
  opacity: 0;
  filter: blur(20px);
  transform: scale(1.2);
}
.preloader.preloader--removed {
  display: none;
}

.preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.preloader__counter,
.preloader__text {
  font-family: "Overpass Mono", monospace;
  font-size: 18px;
  font-weight: 300;
  color: #828282;
  margin: 0;
}

.preloader__text {
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transform: translateY(10px);
  animation: revealText 1s ease forwards;
  animation-delay: 0.4s;
}

.preloader__counter {
  align-self: flex-end;
}

.preloader__video {
  width: 185px;
  height: auto;
  display: block;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  animation: revealVideo 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes revealVideo {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes revealText {
  from {
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    transform: translateY(10px);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  min-height: calc(100vh + 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: linear-gradient(to bottom, rgba(25, 25, 25, 0), #191919 75%);
  z-index: 1;
  pointer-events: none;
}

.hero--internal {
  min-height: calc(75vh + 150px);
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.hero__title {
  position: relative;
  color: #C2C2C2;
  z-index: 1;
  text-align: center;
  margin-top: -150px;
}

.hero__info {
  position: absolute;
  bottom: 198px;
  left: 34px;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__info {
    left: 17px;
  }
}

.hero__info-text {
  color: #C2C2C2;
}

.hero__info-link {
  color: #C2C2C2;
  text-decoration: none;
  display: block;
}
.hero__info-link:hover {
  text-decoration: underline;
}

.hero__clock {
  position: absolute;
  bottom: 198px;
  right: 34px;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__clock {
    right: 17px;
  }
}

.hero__clock-time {
  color: #C2C2C2;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  white-space: nowrap;
  transform: rotate(180deg);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.about {
  padding-top: 200px;
  position: relative;
}
@media (max-width: 1024px) {
  .about {
    padding-top: 156px;
  }
}
@media (max-width: 1024px) {
  .about {
    padding-top: 64px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .about {
    padding-top: 40px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .about {
    padding-top: 32px;
  }
}
.about .about-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../media/side-gradient-desktop.png");
  background-position: center left;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .about .about-background-container {
    background-size: 200%;
  }
}

.about__item {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 200px;
  border-bottom: 1px solid #484848;
}
@media (max-width: 1024px) {
  .about__item {
    padding-bottom: 156px;
  }
}
.about__item:not(:first-child) {
  padding-top: 64px;
}
@media (max-width: 1024px) {
  .about__item:not(:first-child) {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .about__item:not(:first-child) {
    padding-top: 32px;
  }
}
.about__item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .about__item {
    flex-direction: column;
    gap: 32px;
  }
}

.about__left {
  flex-shrink: 0;
}

.about__title {
  color: #FFFFFF;
  position: relative;
}
@media (max-width: 1024px) {
  .about__title {
    margin-bottom: 64px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .about__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .about__title {
    margin-bottom: 32px;
  }
}

.about__number {
  font-size: 0.4em;
  letter-spacing: -0.01em;
  color: #C2C2C2;
  vertical-align: super;
  line-height: 0;
  margin-left: 8px;
}

.about__right {
  flex: 1;
  max-width: 637px;
}
@media (max-width: 1024px) {
  .about__right {
    max-width: 470px;
  }
}
@media (max-width: 768px) {
  .about__right {
    max-width: 100%;
  }
}

.about__text {
  color: #C2C2C2;
}

.about__link {
  display: inline-block;
  color: #C2C2C2;
  text-decoration: unset;
  font-weight: 200;
  margin-top: 80px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .about__link {
    margin-top: 70px;
  }
}

.about__services {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.about__service {
  display: flex;
  flex-direction: column;
}

.about__service-title {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.about__service-subtitle {
  color: #828282;
  margin-bottom: 28px;
}

.about__service-description {
  color: #C2C2C2;
}

.about__separator {
  height: 1px;
  background-color: #484848;
  border: none;
  margin-top: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .about__separator {
    background-color: transparent;
  }
}

.about__services--carousel {
  position: relative;
  min-height: 300px;
}
.about__services--carousel .about__service {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.about__services--carousel .about__service.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.about__service-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.faq {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid #545454;
}
.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: none;
  border: none;
  color: #FFFFFF;
  text-align: left;
  cursor: pointer;
  padding-top: 24px;
  padding-bottom: 24px;
  transition: color 0.3s ease;
}

.faq__icon {
  flex-shrink: 0;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
}
.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-content {
  min-height: 0;
}
.faq__item.is-open .faq__answer-content {
  padding-bottom: 48px;
}
.faq__answer-content p {
  color: #C2C2C2;
}

.hero--contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 200px;
  padding-bottom: 200px;
}
@media (max-width: 1024px) {
  .hero--contact {
    padding-top: 156px;
  }
}
@media (max-width: 1024px) {
  .hero--contact {
    padding-bottom: 156px;
  }
}
@media (max-width: 1024px) {
  .hero--contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .hero--contact {
    padding-top: 40px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .hero--contact {
    padding-top: 32px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .hero--contact {
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .hero--contact {
    padding-bottom: 32px;
  }
}
.hero--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.22);
  z-index: 1;
  pointer-events: none;
}
.hero--contact .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 32px;
  }
}

.contact-content__left {
  flex-shrink: 0;
}

.contact-content__right {
  flex: 1;
  max-width: 637px;
}
@media (max-width: 1024px) {
  .contact-content__right {
    max-width: 470px;
  }
}
@media (max-width: 768px) {
  .contact-content__right {
    max-width: 100%;
  }
}

.contact-content__title {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.contact-content__intro {
  font-family: "Overpass Mono", monospace;
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.18px;
  color: #C2C2C2;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form__field {
  margin-bottom: 24px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #AEAEAE;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.2px;
  padding: 4px 0;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #FFFFFF;
  opacity: 1;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #FFFFFF;
  opacity: 1;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  border-bottom-color: #FFFFFF;
}

.contact-form__textarea {
  min-height: 96px;
  resize: none;
}

.contact-form__checkbox {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-form__checkbox input[type=checkbox] {
  margin-top: 6px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.contact-form__checkbox label {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: -0.16px;
  color: #C2C2C2;
  cursor: pointer;
}
.contact-form__checkbox label a {
  color: #C2C2C2;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.contact-form__checkbox label a:hover {
  color: #FFFFFF;
}

.contact-form__submit {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: -0.22px;
  color: #EBEBEB;
  background: none;
  border: none;
  padding: 0;
  padding-bottom: 4px;
  cursor: pointer;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #EBEBEB;
  transition: color 0.3s ease, border-color 0.3s ease;
  margin-top: 32px;
}
.contact-form__submit:hover {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
.contact-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cta {
  text-align: center;
  padding-top: 200px;
  padding-bottom: 200px;
}
@media (max-width: 1024px) {
  .cta {
    padding-top: 156px;
  }
}
@media (max-width: 1024px) {
  .cta {
    padding-bottom: 156px;
  }
}

.cta__text {
  color: #C2C2C2;
  margin-bottom: 8px;
}

.cta__link {
  display: inline-block;
  color: #C2C2C2;
  font-weight: 300;
}
.cta__link:hover {
  color: #FFFFFF;
}

.prefooter {
  background-color: #191919;
  padding-top: 700px;
  margin-top: -700px;
  margin-bottom: 60px;
  background-image: url("../media/footer-gradient-desktop.png");
  background-position: center calc(100% - 200px);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .prefooter {
    background-position: center calc(100% - 150px);
  }
}
@media (max-width: 768px) {
  .prefooter {
    background-position: center bottom;
    background-image: url("../media/footer-gradient-mobile.png");
  }
}

.prefooter2 {
  background-color: #191919;
  padding-top: 200px;
  padding-bottom: 200px;
}
@media (max-width: 1024px) {
  .prefooter2 {
    padding-top: 156px;
  }
}
@media (max-width: 1024px) {
  .prefooter2 {
    padding-bottom: 156px;
  }
}
@media (max-width: 1200px) {
  .prefooter2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 1200px) and (max-width: 1024px) {
  .prefooter2 {
    padding-top: 70px;
  }
}
@media (max-width: 1200px) and (max-width: 1024px) {
  .prefooter2 {
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .prefooter2 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .prefooter2 {
    padding-top: 40px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .prefooter2 {
    padding-top: 32px;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .prefooter2 {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .prefooter2 {
    padding-bottom: 32px;
  }
}

.prefooter__inner {
  padding-top: 400px;
  position: relative;
}
@media (max-width: 1400px) {
  .prefooter__inner {
    padding-top: 300px;
  }
}
@media (max-width: 1024px) {
  .prefooter__inner {
    padding-top: 250px;
  }
}
@media (max-width: 768px) {
  .prefooter__inner {
    padding-top: 400px;
  }
}
@media (max-width: 576px) {
  .prefooter__inner {
    padding-top: 300px;
  }
}
@media (max-width: 480px) {
  .prefooter__inner {
    padding-top: 250px;
  }
}
.prefooter__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(25, 25, 25, 0) 60%, #191919 95%);
}
@media (max-width: 1500px) {
  .prefooter__inner::after {
    background-image: linear-gradient(to bottom, rgba(25, 25, 25, 0) 65%, #191919 95%);
  }
}
@media (max-width: 1024px) {
  .prefooter__inner::after {
    background-image: linear-gradient(to bottom, rgba(25, 25, 25, 0) 65%, #191919 95%);
  }
}
@media (max-width: 768px) {
  .prefooter__inner::after {
    background-image: linear-gradient(to bottom, rgba(25, 25, 25, 0) 70%, #191919 95%);
  }
}
@media (max-width: 576px) {
  .prefooter__inner::after {
    background-image: linear-gradient(to bottom, rgba(25, 25, 25, 0) 75%, #191919 95%);
  }
}
.prefooter__inner img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.footer {
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  .footer__content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.footer__copyright {
  color: #828282;
}

.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .footer__nav {
    flex-direction: column;
    gap: 8px;
  }
}

.footer__link {
  color: #828282;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */