/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

@font-face {
  font-family: "Greed";
  src: url("../fonts/greed-regular.woff2") format("woff2"), url("../fonts/greed-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Greed";
  src: url("../fonts/greed-regular-italic.woff2") format("woff2"), url("../fonts/greed-regular-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Greed";
  src: url("../fonts/greed-semibold.woff2") format("woff2"), url("../fonts/greed-semibold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Serapion";
  src: url("../fonts/serapion-italic.woff2") format("woff2"), url("../fonts/serapion-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Serapion";
  src: url("../fonts/serapion-italic.woff2") format("woff2"), url("../fonts/serapion-italic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.test_grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  position: fixed;
  top: 0;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0;
  z-index: 200000;
  pointer-events: none;
}
.test_grid .g {
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
          justify-content: center;
  font-size: 2rem;
  color: cyan;
  padding-bottom: 1rem;
}
@media (max-width: 1000px) {
  .test_grid {
    gap: 1rem 0.5rem;
  }
  .test_grid .g {
    font-size: 1rem;
  }
}

a {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

h1, h2 {
  font-size: 8rem;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
}
@media (max-width: 1000px) {
  h1, h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
}

h4, h5, h6 {
  font-size: 1rem;
}

p {
  font-size: 1em;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}
.block_h1 em, .block_h2 em, .block_h3 em, header em {
  font-style: normal;
  font-family: "Serapion", cursive;
  font-weight: normal;
  text-transform: none;
  letter-spacing: -0.01em;
}

ul, ol {
  padding-left: 1rem;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

.tab {
  display: inline-block;
  width: -webkit-calc((100vw - 12rem) / 24);
  width: calc((100vw - 12rem) / 24);
}
@media (max-width: 1000px) {
  .tab {
    width: -webkit-calc((100vw - 1rem) / 12);
    width: calc((100vw - 1rem) / 12);
  }
}

.negative_tab {
  display: inline-block;
  margin-left: -webkit-calc((100vw - 12rem) / -24);
  margin-left: calc((100vw - 12rem) / -24);
}
@media (max-width: 1000px) {
  .negative_tab {
    margin-left: -webkit-calc((100vw - 1rem) / -12);
    margin-left: calc((100vw - 1rem) / -12);
  }
}

.text_wrap {
  line-height: 1.25;
}

.layout_wrap {
  margin: 0.5rem;
  margin-top: 3rem;
}

a.back {
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
@media (max-width: 1000px) {
  .grid {
    gap: 0.5rem;
  }
}
.grid:not(:last-child) {
  margin-bottom: 1rem;
}
.grid .column {
  grid-column: span var(--span);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
@media (max-width: 1000px) {
  .grid .column.last_on_mobile {
    -webkit-box-ordinal-group: 101;
            order: 100;
  }
}
@media (max-width: 1000px) {
  .grid:not(.force_horizontal) .column {
    grid-column: span 12;
  }
  .grid:not(.force_horizontal) .column.empty_column {
    display: none;
  }
  .grid:not(.force_horizontal) .column:last-child .block_image, .grid:not(.force_horizontal) .column:nth-last-child(2):not(:nth-child(1), :nth-child(2)) .block_image {
    margin-left: auto;
  }
  .grid:not(.force_horizontal) .column.span_3 .block_image {
    max-width: 50%;
  }
  .grid:not(.force_horizontal).columns_2 .column_1 {
    grid-column: span 11;
  }
  .grid:not(.force_horizontal).columns_2 .column_2 {
    grid-column: 2/span 11;
  }
  .grid:not(.force_horizontal).columns_2[data-columns="3/12, 9/12"] .column_1 {
    grid-column: span 8;
  }
  .grid:not(.force_horizontal).columns_2[data-columns="9/12, 3/12"] .column_2 {
    grid-column: 5/span 8;
  }
  .grid:not(.force_horizontal).columns_3 .column_1 {
    grid-column: span 10;
  }
  .grid:not(.force_horizontal).columns_3 .column_2 {
    grid-column: 2/span 10;
  }
  .grid:not(.force_horizontal).columns_3 .column_3 {
    grid-column: 3/span 10;
  }
  .grid:not(.force_horizontal).columns_3[data-columns="6/12, 3/12, 3/12"] .column_2 {
    grid-column: 4/span 8;
  }
  .grid:not(.force_horizontal).columns_3[data-columns="6/12, 3/12, 3/12"] .column_3 {
    grid-column: 5/span 8;
  }
  .grid:not(.force_horizontal).columns_3[data-columns="3/12, 6/12, 3/12"] .column_1 {
    grid-column: span 8;
  }
  .grid:not(.force_horizontal).columns_3[data-columns="3/12, 6/12, 3/12"] .column_3 {
    grid-column: 5/span 8;
  }
  .grid:not(.force_horizontal).columns_3[data-columns="3/12, 3/12, 6/12"] .column_1 {
    grid-column: span 8;
  }
  .grid:not(.force_horizontal).columns_3[data-columns="3/12, 3/12, 6/12"] .column_2 {
    grid-column: 2/span 8;
  }
  .grid:not(.force_horizontal).columns_4 .column_1 {
    grid-column: span 8;
  }
  .grid:not(.force_horizontal).columns_4 .column_2 {
    grid-column: 2/span 8;
  }
  .grid:not(.force_horizontal).columns_4 .column_3 {
    grid-column: 4/span 8;
  }
  .grid:not(.force_horizontal).columns_4 .column_4 {
    grid-column: 5/span 8;
  }
}

.block {
  color: var(--color, "#000000");
  position: relative;
}
.block.align_center {
  margin: auto 0;
}
.block.align_bottom {
  margin-top: auto;
}
.block.text_align_right {
  text-align: right;
}
.block.text_align_center {
  text-align: center;
}
.block:not(:last-child) {
  margin-bottom: 1rem;
}
.block > *:first-child {
  margin-top: 0;
}
.block > *:last-child {
  margin-bottom: 0;
}
.block_image {
  z-index: 2000;
}
.block_image img {
  display: block;
  width: 100%;
}
.block_h1, .block_h2, .block_h3 {
  z-index: 2000;
}
.column:first-child .block_h1, .column:first-child .block_h2, .column:first-child .block_h3 {
  padding-left: -webkit-calc((100vw - 12rem) / 24);
  padding-left: calc((100vw - 12rem) / 24);
}
@media (max-width: 1000px) {
  .column:first-child .block_h1, .column:first-child .block_h2, .column:first-child .block_h3 {
    padding-left: 0;
  }
}
.column:last-child .block_h1, .column:last-child .block_h2, .column:last-child .block_h3 {
  padding-right: -webkit-calc((100vw - 12rem) / 24);
  padding-right: calc((100vw - 12rem) / 24);
}
@media (max-width: 1000px) {
  .column:last-child .block_h1, .column:last-child .block_h2, .column:last-child .block_h3 {
    padding-right: 0;
  }
}
@media (max-width: 1000px) {
  .block_h1, .block_h2, .block_h3 {
    z-index: initial;
  }
}
.block_video {
  z-index: 2000;
}
.block_video video {
  display: block;
  width: 100%;
}
.block_audio {
  z-index: 2000;
}
.block_audio audio {
  display: none;
}
.block_text {
  text-indent: -webkit-calc((100vw - 12rem) / 24);
  text-indent: calc((100vw - 12rem) / 24);
}
@media (max-width: 1000px) {
  .block_text {
    text-indent: -webkit-calc((100vw - 1rem) / 12);
    text-indent: calc((100vw - 1rem) / 12);
  }
}
.block_text.size_120 {
  font-size: 1.2em;
}
@media (max-width: 1000px) {
  .block_text.size_120 {
    font-size: 1.1em;
  }
}
.block_text.size_150 {
  font-size: 1.5em;
}
@media (max-width: 1000px) {
  .block_text.size_150 {
    font-size: 1.1em;
  }
}
.block_text.indentation_none {
  text-indent: 0;
}
.block_text.indentation_1_column {
  padding-left: -webkit-calc((100vw - 12rem) / 24);
  padding-left: calc((100vw - 12rem) / 24);
}
@media (max-width: 1000px) {
  .block_text.indentation_1_column {
    padding-left: -webkit-calc((100vw - 1rem) / 12);
    padding-left: calc((100vw - 1rem) / 12);
  }
}
.column:first-child .block_text {
  padding-left: -webkit-calc((100vw - 12rem) / 24);
  padding-left: calc((100vw - 12rem) / 24);
}
@media (max-width: 1000px) {
  .column:first-child .block_text {
    padding-left: 0;
  }
}
.column:last-child .block_text {
  padding-right: -webkit-calc((100vw - 12rem) / 24);
  padding-right: calc((100vw - 12rem) / 24);
}
@media (max-width: 1000px) {
  .column:last-child .block_text {
    padding-right: 0;
  }
}
.column:first-child .block_drawer {
  padding-left: -webkit-calc((100vw - 12rem) / 24);
  padding-left: calc((100vw - 12rem) / 24);
}
@media (max-width: 1000px) {
  .column:first-child .block_drawer {
    padding-left: 0;
  }
}
.column:last-child .block_drawer {
  padding-right: -webkit-calc((100vw - 12rem) / 24);
  padding-right: calc((100vw - 12rem) / 24);
}
@media (max-width: 1000px) {
  .column:last-child .block_drawer {
    padding-right: 0;
  }
}
.block_color {
  margin: 1rem 0;
  pointer-events: none;
}
.block_color:not(:first-child) {
  margin-top: -1rem;
}
.block_color:not(:last-child) {
  margin-bottom: -1rem;
}
.block_anchor {
  margin: 1rem 0;
}
.block_anchor:not(:first-child) {
  margin-top: -1rem;
}
.block_anchor:not(:last-child) {
  margin-bottom: -1rem;
}
.block_anchor a {
  scroll-margin-top: 4rem;
}
.block_spacer {
  pointer-events: none;
}
.block_spacer.size_xsmall {
  height: 1rem;
}
.block_spacer.size_small {
  height: 2rem;
}
.block_spacer.size_medium {
  height: 5rem;
}
.block_spacer.size_large {
  height: 10rem;
}
.block_spacer.size_xlarge {
  height: 15rem;
}

figure figcaption {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  text-align: right;
}

.iframe_wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.drawer_wrap {
  margin: 1rem 0;
}

.drawer {
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 0.25rem 0;
  margin: -webkit-calc((0.25rem + 2px) * -1) 0;
  margin: calc((0.25rem + 2px) * -1) 0;
}
.drawer .drawer_title {
  text-decoration: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.drawer .drawer_title svg {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  margin-left: 0.5rem;
}
.drawer .drawer_title svg line {
  stroke-width: 1px;
  stroke: currentColor;
}
.drawer .drawer_content {
  display: none;
  opacity: 0;
  overflow: hidden;
}
.drawer:target .drawer_title svg, .drawer.is_active .drawer_title svg {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.drawer:target .drawer_content {
  display: block;
  opacity: 1;
}

.article_links {
  margin-bottom: -10vh;
}
@media (max-width: 1000px) {
  .article_links {
    margin-bottom: 0;
  }
}

.article_link_outer {
  height: 150vh;
  pointer-events: none;
}
.article_link_outer:nth-last-child(7) .article_link {
  z-index: 106;
}
.article_link_outer:nth-last-child(7) .article_link_inner {
  width: 40%;
}
.article_link_outer:nth-last-child(6) .article_link {
  z-index: 105;
}
.article_link_outer:nth-last-child(6) .article_link_inner {
  width: 50%;
}
.article_link_outer:nth-last-child(5) .article_link {
  z-index: 104;
}
.article_link_outer:nth-last-child(5) .article_link_inner {
  width: 60%;
}
.article_link_outer:nth-last-child(4) .article_link {
  z-index: 103;
}
.article_link_outer:nth-last-child(4) .article_link_inner {
  width: 70%;
}
.article_link_outer:nth-last-child(3) .article_link {
  z-index: 102;
}
.article_link_outer:nth-last-child(3) .article_link_inner {
  width: 80%;
}
.article_link_outer:nth-last-child(2) .article_link {
  z-index: 101;
}
.article_link_outer:nth-last-child(2) .article_link_inner {
  width: 90%;
}
.article_link_outer:nth-last-child(1) .article_link {
  z-index: 100;
}

@media (max-width: 1000px) {
  .article_link_outer {
    height: 80vh;
  }
  .article_link_outer .article_link {
    z-index: 1060;
  }
  .article_link_outer :not(.penis) .article_link_inner {
    width: 100%;
  }
}
.article_link {
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
}
.has_js.load_animation .article_link {
  visibility: hidden;
}
.article_link video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
  will-change: opacity;
}

@media (max-width: 1000px) {
  .article_link {
    position: relative;
    top: 0;
    width: 100%;
    background-color: black;
  }
  .article_link video {
    height: 80vh;
  }
}
.article_link_inner {
  display: block;
  background-color: black;
  position: relative;
  pointer-events: all;
  margin: 0 auto;
  will-change: transform;
}
.has_js .article_link_inner {
  cursor: s-resize;
}
@media (max-width: 1000px) {
  .has_js .article_link_inner {
    cursor: pointer;
  }
}
.is_clickable .article_link_inner:hover {
  cursor: pointer;
}

.article_link_title {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  text-align: center;
  color: white;
  mix-blend-mode: exclusion;
  padding: 2rem;
  will-change: transform, opacity;
}
.has_js .article_link_title {
  visibility: hidden;
}
.article_link_title .author {
  font-size: clamp(2rem, 9.5vw, 10rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.article_link_title .title {
  font-family: "Serapion", cursive;
  margin-top: 0.5rem;
}
.article_link_title.dupe {
  visibility: hidden;
  mix-blend-mode: normal;
  color: var(--color);
}

@media (max-width: 1000px) {
  .article_link_title {
    position: absolute;
  }
  .has_js .article_link_title {
    visibility: visible;
  }
  .article_link_title .author {
    font-size: clamp(2rem, 11vw, 10rem);
  }
  .article_link_title .title {
    font-size: 1.25rem;
  }
  .article_link_title.dupe {
    visibility: hidden;
  }
}
.article_splash {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--highlight_color);
  visibility: hidden;
  z-index: 20000;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.footnote_link {
  display: inline-block;
  text-decoration: none;
  background-color: var(--background_color);
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  padding: 0 0.25rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  text-indent: 0;
}
.footnote_link:hover {
  background-color: var(--selection_background_color);
}

.footnote_wrap {
  top: 0;
  left: 0;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  position: fixed;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  visibility: hidden;
  opacity: 0;
  padding: 1rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  z-index: 3000;
}
.footnote_wrap:target {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.footnote {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 20rem;
  background-color: var(--background_color);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin: auto;
}
:target .footnote {
  -webkit-transform: none;
          transform: none;
}

.footnote_close {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

.footnote_image img {
  display: block;
  width: 100%;
}

.footnote_text {
  padding: 1rem;
  padding-top: 0.8rem;
  text-align: center;
}
.footnote_text > *:first-child {
  margin-top: 0;
}
.footnote_text > *:last-child {
  margin-bottom: 0;
}

.video_wrap {
  background-color: black;
}

.video_wrap, .audio_wrap {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}
.wave {
  display: -webkit-box;
  display: flex;
  padding: 12px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}
.wave svg {
  width: 100%;
  height: 100%;
  opacity: 0.25;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.is_playing .wave svg, .is_played .wave svg {
  opacity: 1;
}

.video_inner {
  position: relative;
}
.video_inner video {
  cursor: pointer;
  background: black;
}
:-webkit-full-screen .video_inner video {
  width: 100vw;
  height: -webkit-calc(100vh - 40px);
  height: calc(100vh - 40px);
}
:-ms-fullscreen .video_inner video {
  width: 100vw;
  height: calc(100vh - 40px);
}
:fullscreen .video_inner video {
  width: 100vw;
  height: -webkit-calc(100vh - 40px);
  height: calc(100vh - 40px);
}
.gif_mode .video_inner video {
  pointer-events: none;
}

.playpause {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  pointer-events: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.is_playing .playpause {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.playpause svg {
  width: 20%;
  height: 20%;
  -webkit-filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.25));
}
.playpause svg * {
  fill: white;
}

.controls_wrap {
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
}
.is_played .controls_wrap {
  cursor: col-resize;
}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: var(--background_color);
  pointer-events: none;
  font-size: 14px;
}
.progress span {
  position: absolute;
  right: 0.5rem;
  bottom: 0;
  height: 40px;
  display: none;
  -webkit-box-align: center;
          align-items: center;
  visibility: hidden;
  color: black;
}
.is_played .progress span {
  display: -webkit-box;
  display: flex;
}

.controls {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 5px;
  height: 40px;
}
.controls button {
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  border: none;
  background: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 5px;
  cursor: pointer;
  font: inherit;
  position: relative;
  color: inherit;
}
.controls button svg {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.controls button svg:nth-child(2) {
  position: absolute;
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}
.controls button.play {
  z-index: 2;
}
.is_playing .controls button.play svg:nth-child(1) {
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}
.is_playing .controls button.play svg:nth-child(2) {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.controls button.back {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.is_played .controls button.back {
  visibility: visible;
  opacity: 1;
}
.controls button.duration {
  margin-left: auto;
  font-size: 14px;
  pointer-events: none;
  color: black;
}
.controls button.duration svg {
  margin-right: 5px;
}
.is_muted .controls button.mute svg:nth-child(1) {
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}
.is_muted .controls button.mute svg:nth-child(2) {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.controls button.fullscreen {
  display: none;
}
.video_wrap .controls button.fullscreen {
  display: -webkit-box;
  display: flex;
}

html {
  font-size: 20px;
  --background_color: #f8f8f8;
  --color: #000000;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (max-width: 1000px) {
  html {
    font-size: 16px;
  }
}
html.loading {
  cursor: progress;
}

body {
  font-family: "Greed", sans-serif;
  background-color: var(--background_color);
  color: var(--color);
  font-size: clamp(20px, 1.5vw, 25px);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
body.t_article {
  padding-top: 3rem;
}

::-moz-selection {
  background-color: var(--selection_background_color);
}

::selection {
  background-color: var(--selection_background_color);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.4rem 0.5rem;
  will-change: opacity;
}
@media (max-width: 1000px) {
  header {
    height: 2.25rem;
    background: white;
  }
}
.t_article header {
  background-color: var(--background_color);
}
header .logo, header .claim, header .praeposition {
  width: auto;
  -webkit-box-flex: 0;
          flex: 0 0 auto;
  text-decoration: none;
  text-transform: uppercase;
}
header .logo em, header .claim em, header .praeposition em {
  text-transform: none;
}
header .logo {
  margin-right: auto;
}
header .logo svg path {
  fill: currentColor;
}
@media (max-width: 1000px) {
  header .logo svg, header .logo em {
    display: none;
  }
}
header .claim {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1000px) {
  header .claim {
    position: relative;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
  header .claim em {
    display: none;
  }
}
header .praeposition {
  margin-left: auto;
}
@media (max-width: 1000px) {
  header .praeposition {
    display: none;
  }
}
.t_home header {
  color: white;
  mix-blend-mode: exclusion;
}
@media (max-width: 1000px) {
  .t_home header {
    mix-blend-mode: normal;
    color: inherit;
  }
}
.article_link_outer header {
  color: var(--color);
  mix-blend-mode: normal;
  visibility: hidden;
  z-index: 1001;
}
.has_js.load_animation .t_home header {
  visibility: hidden;
}
header .header_border {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 2px;
  background-color: currentColor;
  visibility: hidden;
}
@media (max-width: 1000px) {
  header .header_border {
    height: 1px;
  }
}

.splash {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  z-index: 200;
  visibility: hidden;
  will-change: opacity;
}
.has_js.load_animation .t_home .splash {
  visibility: visible;
}
.splash svg {
  width: 100%;
  height: 100%;
  max-width: 50vw;
}
.splash svg path {
  fill: currentColor;
}
.splash.dupe {
  mix-blend-mode: exclusion;
  z-index: 199;
}
.splash.dupe svg path {
  fill: white;
}

.article_menu {
  position: fixed;
  z-index: 1000;
  bottom: 0.75rem;
  right: 0.75rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: end;
          align-items: flex-end;
}
.has_js.load_animation .article_menu {
  visibility: hidden;
}
@media (max-width: 1000px) {
  .article_menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: center;
            justify-content: center;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }
}

.article_menu_item {
  display: -webkit-box;
  display: flex;
  margin: 0.25rem;
  overflow: hidden;
  text-decoration: none;
}
.article_menu_item:hover .article_menu_item_text {
  -webkit-transform: none;
          transform: none;
  background: var(--color);
  pointer-events: all;
}
.article_menu_item.is_active .article_menu_item_text {
  background: var(--color);
}
@media (max-width: 1000px) {
  .article_menu_item {
    margin: 0;
    padding: 0.25rem;
  }
  .article_menu_item:before {
    content: "";
    display: block;
    background: rgba(255, 255, 255, 0.33);
    width: 2rem;
    height: 2px;
  }
  .article_menu_item.is_active:before {
    background: var(--color);
  }
}

.article_menu_item_text {
  background: rgba(255, 255, 255, 0.33);
  height: 1.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 0.5rem;
  -webkit-transform: translateX(-webkit-calc(100% - 0.25rem));
          transform: translateX(calc(100% - 0.25rem));
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-size: 0.75rem;
}
.is_black .article_menu_item_text {
  color: white;
}
@media (max-width: 1000px) {
  .article_menu_item_text {
    display: none;
  }
}
.article_menu_item_text .author {
  text-transform: uppercase;
  position: relative;
  top: -0.05rem;
}
.article_menu_item_text .title {
  font-family: "Serapion", cursive;
  margin-left: 0.25rem;
}

.side_menu {
  position: fixed;
  bottom: 0.5rem;
  left: 0.5rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-transform: rotate(-90deg) translateY(100%);
          transform: rotate(-90deg) translateY(100%);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  z-index: 999;
}
@media (max-width: 1000px) {
  .side_menu {
    bottom: auto;
    left: 0;
    top: 2.25rem;
    right: 0;
    -webkit-transform: none;
            transform: none;
    padding: 0.4rem 0.5rem;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    z-index: 1000;
    background-color: var(--background_color);
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
}

.progress_pie {
  background: conic-gradient(currentColor -webkit-calc(var(--progress) * 1%), transparent 0%);
  background: conic-gradient(currentColor calc(var(--progress) * 1%), transparent 0%);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 1000px) {
  .progress_pie {
    -webkit-transform: none;
            transform: none;
    margin-right: 0.5rem;
    position: relative;
    z-index: 10;
  }
}

.article_title {
  margin: -0.5rem 2rem -0.5rem 1rem;
  padding: 0.5rem 0;
  text-transform: uppercase;
  max-width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 1000px) {
  .article_title {
    margin-left: 0;
  }
  .with_chapters .article_title {
    display: none;
  }
}

.chapter_menu {
  position: relative;
}
.chapter_menu .active_anchors {
  position: relative;
}
.chapter_menu .active_anchors .active_anchor {
  position: absolute;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: -webkit-calc(100vh - 450px);
  max-width: calc(100vh - 450px);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
}
@media (max-width: 1000px) {
  .chapter_menu .active_anchors .active_anchor {
    max-width: none;
  }
}
.chapter_menu .active_anchors .active_anchor:first-child {
  position: relative;
}
.chapter_menu .active_anchors .active_anchor.is_active {
  visibility: visible;
  opacity: 1;
}
.chapter_menu .anchors {
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.chapter_menu .anchors a {
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: -webkit-calc(100vh - 450px);
  max-width: calc(100vh - 450px);
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  padding: 0.25rem 0;
  margin: -0.25rem 0;
}
.chapter_menu .anchors a:hover {
  color: var(--selection_background_color);
}
@media (max-width: 1000px) {
  .chapter_menu .anchors a {
    max-width: none;
  }
  .chapter_menu .anchors a:hover {
    color: currentColor;
  }
}
@media (max-width: 1000px) {
  .chapter_menu {
    position: static;
  }
  .chapter_menu .anchors {
    visibility: visible;
    opacity: 1;
    letter-spacing: 0;
    left: 0;
    right: 0;
    padding: 0.4rem 0.5rem 0.4rem 2rem;
    background-color: var(--background_color);
    border-bottom: 1px solid currentColor;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .is_open .chapter_menu .anchors {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media (min-width: 1000px) {
  .chapter_menu:hover .active_anchors .active_anchor {
    visibility: hidden;
    opacity: 0;
  }
  .chapter_menu:hover .anchors {
    opacity: 1;
    visibility: visible;
  }
}

footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 0.5rem;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  footer a {
    text-decoration: none;
  }
  footer a:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
}
footer a {
  text-decoration: none;
}
footer a:not(:last-child) {
  margin-right: 0.5rem;
}

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