html,
body {
  width: 100%;
  height: 100%;
  font-family: "Primary";
  background-color: var(--background);
  color: var(--primary);
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 1.2rem;
  padding: 0.2rem;
}

h2 a {
  color: var(--secondary);
  font-size: 1.2rem;
}

h2 a:hover {
  font-size: 1.2rem;
  text-decoration: underline var(--secondary);
}

a,
span {
  color: var(--primary);
  font-size: 1rem;
  text-orientation: uppercase;
  text-decoration: none;
  pointer-events: auto;
  user-select: none;
}

.nav_top {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  color: var(--primary);
  z-index: 2;
}

.nav {
  top: 0;
}

.nav_menu {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav_logo p {
  font-family: "Kanji";
  font-size: 2.5rem;
  letter-spacing: -10px;
  font-weight: 600;
}

.nav_menu a {
  font-size: 1rem;
  opacity: 0.5;
}

.nav_menu a:hover {
  opacity: 1;
  text-decoration: underline var(--primary);
}

.nav_menu a#active {
  opacity: 1;
  text-decoration: underline;
}

.section {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 3.2rem;
}

.section_col:nth-child(1) {
  position: relative;
  width: calc(100vw / 2 - 3.2rem);
}

.section_col_container {
  position: relative;
  height: inherit;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.section_col_container_image {
  width: inherit;
  height: 100vh;
  object-fit: cover;
}

.section_col:nth-child(2) {
  position: fixed;
  right: 0;
  top: 0;
  width: 60%;
  height: 95vh;
  padding: 4rem;
  padding-left: 15%;
}

.section_col:nth-child(2) .section_col_container {
  color: var(--secondary);
  gap: 5rem;
}

.section_col_description {
  display: flex;
  flex-wrap: wrap;
  gap: 6.4rem;
  width: 100%;
  padding-right: 10rem;
}

.section_col_info p {
  font-size: 1vw;
}

.section_col_services {
  font-size: 0.8vw;
  color: var(--primary);
  padding-left: 0rem;
  list-style-type: none;
  width: 40%;
}

.section_col_services li {
  padding-left: 0rem;
  padding-top: 0.2rem;
}

.section_col_cta {
  color: var(--primary);
  width: 30%;
}

.section_col_cta p {
  font-size: 0.8vw;
}

.section_col_cta p a {
  color: var(--secondary);
  font-size: 0.8vw;
  text-decoration: underline;
  font-weight: 600;
}

.section_col_services::before,
.section_col_cta::before {
  color: var(--secondary);
  font-size: 1vw;
  font-weight: 600;
  display: block;
  margin-bottom: 2rem;
}

.section_col_services::before {
  content: "My available services::";
}

.section_col_link {
  position: relative;
  bottom: 0;
  left: 0;
  padding-top: 4rem;
  cursor: pointer;
}

.section_col_scroll {
  position: absolute;
  right: -2rem;
  bottom: 0;
}

.section_col_scroll span {
  font-weight: 800;
  font-size: 15rem;
  opacity: 0.1;
}

.--clone {
  height: 100vh;
  margin-top: 3.2rem;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

@media (max-width: 1260px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .nav_top {
    background: fixed;
    background-color: var(--background);
    padding-bottom: 1rem;
  }

  a,
  span,
  li {
    font-size: 1rem;
  }

  .section_col_container_image {
    display: none;
  }

  .section_col:nth-child(1) {
    display: none;
  }

  .section_col:nth-child(2) {
    position: relative;
    width: 100%;
    height: auto;
    padding: 2rem;
    margin-top: 5rem;
  }

  .section_col:nth-child(2) .section_col_container {
    gap: 3.2rem;
  }

  .section_col_info p {
    font-size: 1.2rem;
  }

  .section_col_services {
    min-width: 15rem;
  }

  .section_col_services li {
    font-size: 1rem;
  }

  .section_col_services::before {
    font-size: 1.2rem;
    padding-top: 2rem;
  }

  .section_col_cta {
    width: 100%;
  }

  .section_col_cta p {
    font-size: 1rem;
    padding-top: 2rem;
  }

  .section_col_cta p a {
    font-size: 1rem;
  }

  .section_col_services::before {
    font-size: 1.2rem;
    padding-top: 2rem;
  }

  .section_col_description {
    width: 100%;
    gap: 1.6rem;
    padding-right: 2rem;
  }

  .section_col_info {
    width: 100%;
  }

  .section_col_link {
    position: relative;
    bottom: 0;
    top: 3rem;
    left: 0rem;
    bottom: 2rem;
    margin-bottom: 5rem;
    cursor: pointer;
  }

  .section_col_scroll {
    display: none;
  }
}
