/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/* Begin */

* {
  box-sizing: border-box;
}

img {
  display: block;
}

@font-face {
    font-family: 'Edition International Italic 70';
    src: url('Edition-InternationalItalic70.woff2') format('woff2'),
        url('Edition-InternationalItalic70.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Edition International 70';
    src: url('Edition-International70.woff2') format('woff2'),
        url('Edition-International70.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --font: 'Edition International 70', sans-serif;
  --dark: #3d3838;
  --light: #eeedc9;
  --orange: #fa8535;
}

::selection {
  color: var(--dark);
  background: var(--light);
}

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

a.active {
  color: var(--orange);
}

a:hover {
  color: var(--orange);
}

body {
  font-family: var(--font);
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.35rem;
}

main {
  padding: 1rem;
}

header {
  width: 100%;
  position: fixed;
  z-index: 4;
}

nav {
  width: 100%;
  display: flex;
}

nav ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  display: flex;
}

nav ul li {
  padding-right: 1rem;
  display: flex;
  align-items: center;
}

nav div:first-of-type img {
  height: 2rem;
}

nav div:last-of-type {
  padding-left: 1rem;
}

section:first-of-type {
  margin-top: 8rem;
}

section {
  width: 55%;
}

sup {
  padding-left: 0.15rem;
}

main.works figure img, main.online-screening figure img {
  width: 10rem;
}

section.items {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.item {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted var(--light);
  display: flex;
  flex-direction: row;
}

.item .title {
  margin-bottom: 1rem;
  width: max-content;
  max-width: 20rem;
  padding-right: 2rem;
}

.item .image {
  width: 20%;
}

.item .image img {
  width: 100%;
}

.item .link {
  width: 20%;
}

.link {
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.link a {
  padding: 0.5rem 1rem;
  border: 1px dotted var(--light);
}

h2 {
  font-size: 1rem;
  width: 100%;
  border-bottom: 1px dotted var(--light);
  padding-bottom: 1rem;
  margin-block-start: 1rem;
  margin-block-end: 1rem;
  font-weight: normal;
}

figure.gallery {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

main.works figure.gallery img {
  width: 100%;
}

.splide {
  cursor: e-resize;
}

.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@-webkit-keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
@-moz-keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
@-o-keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

nav ul li:hover .dot {
  background-color: var(--orange);
}

.dot {
  background-color: var(--light);
  width: 1rem;
  height: 1rem;
  transform: scale(80%) translateY(1px);
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: blink 3s infinite;
  -moz-animation: blink 3s infinite;
  -o-animation: blink 3s infinite;
  animation: blink 3s infinite;
  margin-right: 0.25rem;
}

.dot.active {
  background-color: var(--orange);
}

@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

.screening-mobile {
  display: none;
}

.screening-desktop {
  display: flex;
}

@media screen and (max-width: 1100px) {

section {
  width: 80%;
}

}

@media screen and (max-width: 900px) {

.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

section {
  width: 90%;
}

.item {
  flex-direction: column;
}

.item .title {
  margin-bottom: 1rem;
  width: 100%;
  max-width: inherit;
  padding-right: 0;
}

.item .image {
  width: 100%;
}

.item .link {
  width: max-content;
}

.link {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  padding-left: 0;
}

}

@media screen and (max-width: 750px) {

section {
  width: 100%;
}

.screening-mobile {
  display: flex;
}

.screening-desktop {
  display: none;
}

.dot {
  transform: scale(80%) translateY(3px);
}

}
