@charset "UTF-8";
/* FONTS */
@font-face {
  font-family: "ESAllianz";
  src: url("../fonts/ESAllianz/ESAllianz-Regular.woff2") format("woff2"), url("../fonts/ESAllianz/ESAllianz-Regular.woff") format("woff"), url("../fonts/ESAllianz/ESAllianz-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "ESAllianz";
  src: url("../fonts/ESAllianz/ESAllianz-Italic.woff2") format("woff2"), url("../fonts/ESAllianz/ESAllianz-Italic.woff") format("woff"), url("../fonts/ESAllianz/ESAllianz-Italic.otf") format("opentype");
  font-style: italic;
  font-weight: normal;
}
/* VARIABLES */
:root {
  --font-size: 0.7vw;
  --line-height: calc(var(--font-size) * 1.2);
  --padding-top-body: var(--line-height);
  --column-gap: calc(var(--line-height) * 4);
  --small-font-size: calc(var(--font-size) * 0.75);
  --small-line-height: calc(var(--line-height) * 0.75);
}

/* SWIPER */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: " ";
}

.swiper-button-next,
.swiper-button-prev {
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 25%;
  display: none;
}

/* SLIDER TRANS-DEVICES */
img, video {
  max-height: calc(100vh - 8vw);
  max-height: calc(100dvh - 8vw);
  max-height: calc(100vh - var(--line-height) * 7);
  max-height: calc(100dvh - var(--line-height) * 7);
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* GENERAL */
html {
  font-size: var(--font-size);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "ESAllianz", "Helvetica", "Arial", sans-serif;
  font-size: var(--font-size);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  touch-action: manipulation;
  object-fit: cover;
}

a {
  color: blue;
}

em {
  font-style: italic;
}

strong {
  display: block;
  margin-top: calc(var(--line-height) * 0.2);
  font-size: var(--small-font-size);
  line-height: var(--small-line-height);
}

.fine {
  white-space: nowrap;
}

#projects {
  margin-top: calc(var(--line-height) * -2);
}

body .header {
  padding: var(--line-height);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  z-index: 999;
  position: relative;
  background: white;
  top: 0;
}

body .header .mobile {
  display: none;
}

body .header > *:nth-child(1):not(.close),
body .header > *:nth-child(3):not(.close) {
  width: 8rem;
}

body .header > *:nth-child(2):not(.close) {
  width: calc(100% - 16rem);
}

body .header .year::before {
  content: ",";
  margin-right: 0.3rem;
}

body .header > *:nth-child(2) {
  text-align: center;
}

body .header > *:nth-child(3) {
  text-align: right;
}

#title .target {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* EXTRA SYSTEM */
.extra_link:not(#title),
.extra_link#title .moving {
  color: blue;
}

.extra_link .target {
  display: block;
}

body[data-player=playing] #player,
body[data-extra=menu] #menu,
body[data-extra=description] #description,
body[data-extra=informations] #informations,
body[data-extra=publications] #publications,
body[data-extra=evenements] #evenements {
  display: block;
  z-index: 999;
}

body[data-player=playing] #player .header {
  padding-bottom: 0;
}

body.has_extra #caption,
body.has_extra > header {
  opacity: 0;
}

body.has_extra div.header {
  top: unset;
}

.extra.hover {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.9) 75%);
}

#player,
.extra {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: 100dvh;
  overflow: scroll;
  padding: var(--padding-top-body) var(--line-height) var(--line-height) var(--line-height);
  background: rgba(255, 255, 255, 0.9);
  top: 0;
  left: 0;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

#player,
.extra::-webkit-scrollbar {
  display: none;
}

.extra#description .smaller {
  font-size: var(--small-font-size);
  line-height: var(--small-line-height);
  width: 75%;
}

#description p:not(:last-child),
#informations p:not(:last-child),
#description ul:not(:last-child),
#informations ul:not(:last-child),
#description ol:not(:last-child),
#informations ol:not(:last-child) {
  margin-bottom: var(--line-height);
}

.extra .lang {
  display: none;
}

.extra .header {
  padding: 0;
  margin-bottom: var(--line-height);
}

.extra .content {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: var(--column-gap);
  orphans: 2;
}

#player .close,
.extra .close {
  position: fixed;
  right: 0;
  top: 0;
  font-size: calc(var(--font-size) * 1.5);
  line-height: var(--font-size);
  padding: var(--padding-top-body) var(--line-height) var(--line-height) var(--line-height);
  color: blue;
}

#player .close::after,
.extra .close::after {
  content: "×";
}

#description .content .info,
#informations .content .info,
#menu .content nav {
  grid-column: span 2;
}

#publications .content .column,
#evenements .wrapper {
  grid-column: span 4;
}

#evenements table .title:not(:first-of-type) td {
  padding-top: var(--line-height);
}

#evenements table td:not(:last-of-type) {
  padding-right: calc(var(--line-height) * 2);
}

#evenements table tr:not(.title) td:last-of-type {
  padding-bottom: calc(var(--line-height) / 2);
}

#evenements table td .name {
  color: black;
}

#publications .content .column li {
  margin-bottom: var(--line-height);
}

#publications .content .column li span {
  display: block;
}

#informations .content {
  min-height: calc(100% - var(--line-height) * 2);
  padding-bottom: calc(var(--line-height) * 2);
  position: relative;
}

#informations #webcredits {
  position: absolute;
  bottom: calc(var(--line-height) * -0.5);
  font-size: var(--small-font-size);
  line-height: var(--small-line-height);
}

/* MENU */
#menu ul {
  margin-bottom: var(--line-height);
}

#menu .ongoing {
  font-size: var(--small-font-size);
  line-height: var(--small-line-height);
  max-width: calc(var(--small-font-size) * 30);
}

#menu .ongoing li span:not(.name)::before {
  content: ", ";
}

#menu .projectList li span.name {
  color: blue;
  display: inline-block;
}

#menu .projectList li.currentProject span.name {
  color: black;
}

#menu ul li #accueil {
  font-size: var(--small-font-size);
  line-height: var(--small-line-height);
}

#preview {
  padding: 0 var(--line-height);
  left: 0;
  z-index: -1;
  height: calc(100vh - var(--line-height) * 6);
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
}

#preview figure {
  text-align: center;
}

#preview figure img {
  display: inline-block;
}

/* EVENEMENTS */
#evenements table tr td div span:not(:first-of-type)::before {
  content: ", ";
}

/* PROJECTS */
#slider figure {
  justify-content: center;
  align-items: center;
  padding: calc(var(--column-gap) / 2);
  display: none;
  height: calc(100vh - var(--line-height) * 3);
  height: calc(100dvh - var(--line-height) * 3);
}

#slider figure {
  display: flex;
}

#slider figure .meta {
  display: none;
}

#slider figure iframe {
  display: none;
}

#slider figure .poster {
  display: none;
}

#caption {
  position: fixed;
  bottom: 0;
  text-align: center;
  font-size: var(--small-font-size);
  line-height: var(--small-line-height);
  left: 0;
  width: 100%;
  z-index: 99;
  background: white;
  min-height: calc(var(--line-height) * 2 + var(--line-height) * 0.85);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: calc(var(--line-height) / 2);
  padding-bottom: var(--line-height);
  padding-left: var(--line-height);
  padding-right: var(--line-height);
}

#caption p {
  margin-bottom: 0;
}

#caption div > * {
  display: inline;
}

#caption .fullVideo {
  color: blue;
}

#caption .fullVideo .play::before {
  content: "▶";
}

#caption .fullVideo .play {
  display: inline-block;
  text-align: center;
  margin-right: 0.35rem;
  line-height: 0.75rem;
}

#directions .arrow {
  position: fixed;
  top: calc(var(--line-height) * 3);
  width: 25%;
}

#directions #next {
  right: 0;
}

#player iframe {
  width: 80vw;
  height: 45vw;
  background: #000;
}

#player {
  background: rgba(255, 255, 255, 0.85);
  align-items: center;
  justify-content: center;
  padding: 0;
}

#player .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - var(--line-height) * 3);
  height: calc(100dvh - var(--line-height) * 3);
}

.helpers > * {
  display: none;
}

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