:root {
  --var_one_third: 30%;
}

.block {
  margin-bottom: min(8vw, 8rem);
}
.block .layout {
  display: grid;
  gap: 2rem;
}
.block.cols_1 .container {
  width: 100vw;
}

#project_banner {
  font-size: 0.52vw;
}
#project_banner h1 {
  font-size: 10em;
  width: 60%;
  max-width: 1500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.21em;
  position: relative;
  top: -0.35em;
}
#project_banner h1 small {
  font-size: 0.35em;
}
#project_banner {
  width: 100vw;
  aspect-ratio: 16/9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100vw auto;
  overflow: hidden;
  position: relative;
}
#project_banner::before {
  content: " ";
  display: block;
  opacity: 0.6;
  mix-blend-mode: multiply;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  mix-blend-mode: multiply;
  z-index: 1;
  background: #000;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(179, 179, 179) 50%, rgb(255, 255, 255) 85%, rgb(0, 0, 0) 100%);
}
#project_banner .container {
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  width: 100%;
  aspect-ratio: inherit;
  flex-direction: column;
  align-items: center;
}
#project_banner .container .banner_header {
  margin: auto;
  color: #fff;
}

.element {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.element .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.align_top .layout {
  align-items: start;
}

.align_center .layout {
  align-items: center;
}

.align_bottom .layout {
  align-items: end;
}

.cols_1 .layout {
  grid-template-columns: 1fr;
}

.cols_2 .layout {
  grid-template-columns: repeat(2, 1fr);
}

.cols_3 .layout {
  grid-template-columns: repeat(3, 1fr);
}

.cols_3_1 .layout {
  grid-template-columns: var(--var_one_third) 1fr;
}

.cols_3_2 .layout {
  grid-template-columns: 1fr var(--var_one_third);
}

._text {
  font-size: var(--var-general-text);
  line-height: 1.24;
  font-weight: 300;
}
._text strong {
  font-weight: 500;
}

.image_size_0 {
  width: 60%;
}

.image_size_1 {
  width: 80%;
}

.image_size_2 {
  width: 95%;
}

.image_size_3 {
  width: 100%;
}

.text_size_0 {
  width: 60%;
}

.text_size_1 {
  width: 80%;
}

.text_size_2 {
  width: 100%;
}

.image_location_0 {
  margin: auto;
}

.image_location_1 {
  margin-right: auto;
}

.image_location_3 {
  margin-left: auto;
}

.text_location_0 {
  margin: auto;
}

.text_location_1 {
  margin-right: auto;
}

.text_location_3 {
  margin-left: auto;
}

#details {
  padding: var(--var-general_padding);
  font-size: var(--var-general-text);
  padding-top: min(10vw, 10rem);
  padding-bottom: min(20vw, 20rem);
}
#details .container {
  max-width: 1600px;
}
#details ._left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#details ._left h1 {
  font-size: var(--var-h1-text);
  font-weight: 300;
  margin-bottom: min(2vw, 1.6rem);
}
#details ._left .desc {
  font-size: min(4vw, 2.4rem);
  font-weight: 300;
  line-height: 1.25;
}
#details ._layout {
  display: grid;
  grid-template-columns: min(60vw, 90rem) 1fr;
  align-items: flex-start;
  gap: min(10vw, 20rem);
}
#details ._right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#details ._details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.2rem;
}
#details ._detail {
  display: flex;
  align-items: flex-start;
  grid-template-columns: 6rem 2fr;
  gap: 1em;
}
#details ._detail a:hover {
  color: #FAA605;
}
#details ._detail .orange {
  color: #FAA605;
}
#details ._detail h3 {
  display: none;
  color: #1B1918;
  font-size: inherit;
  font-weight: 300;
}
#details ._detail ._text {
  font-weight: 500;
}
#details .credits {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  line-height: 1.4;
  font-weight: 300;
  line-height: 1.1;
  font-size: min(4vw, 2.4rem);
}
#details .credits strong {
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1300px) {
  #details ._layout {
    display: flex;
    flex-direction: column;
    gap: min(3vw, 3rem);
  }
  #details ._layout .left {
    width: min 90vw, 120rem;
  }
  #details ._layout .credits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  #details ._layout ._detail {
    grid-column: span 3;
  }
}
@media (max-width: 800px) {
  .cols_2 .layout {
    grid-template-columns: 1fr;
  }
  .cols_3 .layout {
    grid-template-columns: 1fr;
  }
  .cols_3_1 .layout {
    grid-template-columns: 1fr;
  }
  .cols_3_2 .layout {
    grid-template-columns: 1fr;
  }
  .block {
    margin-bottom: 2rem;
  }
  .block.cols_1 .container {
    width: var(--var-container-w);
  }
  .image_size_0 {
    width: 100%;
  }
  .image_size_1 {
    width: 100%;
  }
  .image_size_2 {
    width: 100%;
  }
  .image_size_3 {
    width: 100%;
  }
  .image_location_0 {
    margin: auto;
  }
  .image_location_1 {
    margin: auto;
  }
  .image_location_3 {
    margin: auto;
  }
}
@media (max-aspect-ratio: 1/1) {
  #project_banner {
    height: 100vh;
    background-size: cover;
  }
  #project_banner h1 {
    font-size: 11vw;
  }
  #project_banner::before {
    height: 100vh;
  }
  #details ._layout .credits {
    display: grid;
    grid-template-columns: 1fr;
  }
  #details ._layout ._detail {
    grid-column: span 3;
  }
}/*# sourceMappingURL=block.css.map */