h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4,
em, strong {
  font-size: inherit;
  font-style: normal;
  font-weight: 400;
}

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

.no-select {
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.clear {
  display: block;
  float: none;
  clear: both;
}

html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  display: none;
}

* {
  scrollbar-width: none;
}

@font-face {
  font-family: "OatmealSans-light";
  src: url("../fonts/OatmealSans-light.woff2") format("woff2"), url("../fonts/OatmealSans-light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Bold";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Medium";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --FS20: 20px;
  --LH20: calc(20/20);
  --FS36: 36px;
  --LH36: calc(36/36);
  --FS24: 24px;
  --LH24: calc(24/24);
  --FS16: 16px;
  --LH16: calc(16/16);
  --FS14: 14px;
  --LH14: calc(14/14);
}

@media (max-width: 1280px) {
  :root {
    --FS20: calc(20 * 0.05rem);
    --FS36: calc(36 * 0.05rem);
    --FS24: calc(24 * 0.05rem);
    --FS16: calc(16 * 0.05rem);
    --FS14: calc(14 * 0.05rem);
  }
}
:root {
  --GRID_MARGIN: 0px;
  --GRID_GUTTER: 10px;
  --P6: 6px;
  --P10: 10px;
  --P20: 20px;
  --P30: 30px;
  --P40: 40px;
  --P150: 150px;
}

@media (max-width: 1280px) {
  :root {
    --GRID_MARGIN: calc(0 * 0.05rem);
    --GRID_GUTTER: calc(10 * 0.05rem);
    --P6: calc(6 * 0.05rem);
    --P10: calc(10 * 0.05rem);
    --P20: calc(20 * 0.05rem);
    --P30: calc(30 * 0.05rem);
    --P40: calc(40 * 0.05rem);
    --P150: calc(150 * 0.05rem);
  }
}
#debug-grid {
  display: grid;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  z-index: 10000;
  pointer-events: none;
}
#debug-grid .col {
  height: 100%;
  grid-column-end: span 1;
  background-color: rgba(0, 255, 255, 0.2);
}

html {
  font-family: "OatmealSans-light";
  font-size: 20px;
  line-height: normal;
  overflow-x: hidden;
  visibility: hidden;
}

body {
  display: flex;
  flex-direction: column;
  color: #000000;
  background-color: #FFFFFF !important;
}
body #main {
  flex-grow: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--P30) var(--P40);
  position: sticky;
  top: 0;
  z-index: 1;
  filter: invert(1);
  mix-blend-mode: difference;
  font-family: "Inter Bold";
  font-size: var(--FS20);
  line-height: var(--LH20);
}
header a {
  display: block;
  text-decoration: none;
}
header h1 {
  display: block;
  text-align: center;
  font-size: var(--FS24);
  line-height: var(--LH24);
}
header img {
  display: block;
  width: auto;
  height: var(--P40);
}
header #lang-switch {
  display: flex;
  align-items: center;
  font-family: "Inter";
}
header #lang-switch a.sel {
  font-family: "Inter Bold";
}
header nav {
  margin-left: calc(var(--P40) * 2);
}

picture {
  display: block;
  width: 100%;
}
picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#cookie-banner {
  background-color: #FFFFFF;
  color: #000000;
  position: fixed;
  z-index: 1000;
  bottom: calc(var(--P20));
  right: calc(var(--P20));
  width: 500px;
  font-size: var(--FS14);
  line-height: var(--LH14);
  padding: var(--P20);
  box-sizing: border-box;
}
#cookie-banner.hide {
  display: none;
}
#cookie-banner .description {
  margin-bottom: var(--P20);
}
#cookie-banner #save-cookies {
  display: block;
  border: 1px solid #000000;
  cursor: pointer;
  font-size: var(--FS14);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  padding: var(--P10);
  margin-top: var(--P20);
}
#cookie-banner #save-cookies:hover {
  background-color: #000000;
  color: #FFFFFF;
}
#cookie-banner .list .cookie {
  display: flex;
  align-items: center;
  margin-bottom: var(--P10);
}
#cookie-banner .list .cookie:last-child {
  margin-bottom: 0;
}
#cookie-banner .list .cookie .name {
  width: var(--P150);
}
#cookie-banner .list .cookie .desc {
  color: green;
}
#cookie-banner .list .cookie .checkbox {
  display: block;
  width: var(--P10);
  height: var(--P10);
  border: 1px solid #000000;
  cursor: pointer;
}
#cookie-banner .list .cookie .checkbox.checked {
  background-color: #000000;
}

.template-template-home #section-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  row-gap: var(--GRID_GUTTER);
  font-size: var(--FS20);
  line-height: var(--LH20);
}
.template-template-home #section-gallery a {
  cursor: pointer;
}
.template-template-home #section-gallery > * {
  display: block;
}
.template-template-home #section-gallery > *#section-gallery-sentinel {
  grid-column-end: span 12;
  height: 0;
}
.template-template-home #section-gallery > *#section-gallery-vars {
  display: none;
}
.template-template-home #section-gallery > *.col-3 {
  grid-column-end: span 3;
}
.template-template-home #section-gallery > *.col-6 {
  grid-column-end: span 6;
}
.template-template-home #section-gallery > *.col-9 {
  grid-column-end: span 9;
}
.template-template-home #section-gallery > *.col-12 {
  grid-column-end: span 12;
}
.template-template-home #section-gallery > *.flip .flipbox-recto picture {
  overflow: hidden;
}
.template-template-home #section-gallery > *.flip .flipbox-recto picture::after {
  display: block;
  content: "";
  position: absolute;
  background-image: url("../vectos/cursor.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20%;
  padding-top: 20%;
  top: 2.5%;
  right: 5%;
  animation: blink 2s infinite ease-in-out;
}
@keyframes blink {
  0%, 100% {
    visibility: hidden;
  }
  5% {
    visibility: visible;
    transform: scale(1.3);
  }
  15% {
    visibility: visible;
    transform: scale(1);
  }
  20% {
    visibility: hidden;
  }
}
.template-template-home #section-gallery > *.flip.white-cursor .flipbox-recto picture::after {
  filter: invert(1);
}
.template-template-home #section-gallery > *.flip .flipbox {
  position: relative;
  width: 100%;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  cursor: pointer;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-recto,
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  padding: var(--P20);
  transform: rotateY(180deg);
  color: #FFFFFF;
  background-color: #000000;
  border-color: #FFFFFF;
  box-sizing: border-box;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso h1, .template-template-home #section-gallery > *.flip .flipbox .flipbox-verso h2, .template-template-home #section-gallery > *.flip .flipbox .flipbox-verso h2, .template-template-home #section-gallery > *.flip .flipbox .flipbox-verso p {
  display: block;
  margin-bottom: 1em;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso h1:last-child, .template-template-home #section-gallery > *.flip .flipbox .flipbox-verso h2:last-child, .template-template-home #section-gallery > *.flip .flipbox .flipbox-verso h2:last-child, .template-template-home #section-gallery > *.flip .flipbox .flipbox-verso p:last-child {
  margin-bottom: 0;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso a {
  display: block;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso h1 {
  font-size: var(--FS36);
  line-height: var(--LH36);
  font-weight: bold;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso h2 {
  font-size: var(--FS24);
  line-height: var(--LH24);
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso p {
  font-size: var(--FS20);
  line-height: var(--LH20);
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso strong {
  font-weight: bold;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso strong em {
  font-style: italic;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso em {
  font-style: italic;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso em strong {
  font-weight: bold;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.template-template-home #section-gallery > *.flip .flipbox .flipbox-verso .citynove {
  position: absolute;
  top: unset;
  left: var(--P20);
  bottom: var(--P20);
  display: block;
  width: 4em;
  height: auto;
}
.template-template-home #section-gallery > *.flip:hover .flipbox {
  transform: rotateY(180deg);
}
.template-template-home #section-gallery > * picture {
  position: relative;
  width: 100%;
}
.template-template-home #section-gallery > * picture img {
  display: block;
  width: 100%;
  height: calc((100vw - var(--GRID_GUTTER) * 3) / 4 * 1080 / 720);
  object-fit: cover;
}
.template-template-home #section-gallery > * picture .credits {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000000;
  color: #FFFFFF;
  padding: var(--P6);
  border-top-right-radius: 0.5em;
  box-sizing: border-box;
  font-size: var(--FS16);
  line-height: var(--LH16);
  max-width: 100%;
}
.template-template-home #section-gallery > * picture:hover .credits {
  display: block;
}
.template-template-home #section-gallery > *.a-video {
  position: relative;
}
.template-template-home #section-gallery > *.a-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.template-template-home #section-gallery > *.a-video picture::after {
  display: block;
  content: "";
  position: absolute;
  background-image: url("../vectos/play.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20%;
  padding-top: 20%;
  top: 2.5%;
  right: 5%;
  animation: blink 1s infinite ease-in-out;
}
@keyframes blink {
  0%, 100% {
    visibility: hidden;
  }
  5% {
    visibility: visible;
    transform: scale(1.1);
  }
  15% {
    visibility: visible;
    transform: scale(1);
  }
  20% {
    visibility: hidden;
  }
}
.template-template-home #section-gallery > * video {
  position: relative;
  width: 100%;
  height: calc((100vw - var(--GRID_GUTTER) * 3) / 4 * 1080 / 720);
  object-fit: cover;
}
.template-template-home #section-video-over {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10;
}
.template-template-home #section-video-over.visible {
  display: block;
}
.template-template-home #section-video-over video {
  position: absolute;
  max-width: 75%;
  max-height: 75%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: black;
}

.template-template-infos header {
  border-bottom: 1px solid;
  mix-blend-mode: unset;
  filter: unset;
  background-color: #FFFFFF;
}
.template-template-infos #section-content {
  width: 66%;
  max-width: 1920px;
  padding: var(--P40);
  box-sizing: border-box;
}
.template-template-infos #section-content h1, .template-template-infos #section-content h2, .template-template-infos #section-content h2, .template-template-infos #section-content h3, .template-template-infos #section-content p {
  display: block;
  margin-bottom: 1em;
}
.template-template-infos #section-content h1:last-child, .template-template-infos #section-content h2:last-child, .template-template-infos #section-content h2:last-child, .template-template-infos #section-content h3:last-child, .template-template-infos #section-content p:last-child {
  margin-bottom: 0;
}
.template-template-infos #section-content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.template-template-infos #section-content h1 {
  font-size: var(--FS36);
  line-height: var(--LH36);
  font-weight: bold;
}
.template-template-infos #section-content h1:not(:first-child) {
  margin-top: 2em;
}
.template-template-infos #section-content h2,
.template-template-infos #section-content h3 {
  font-size: var(--FS24);
  line-height: var(--LH24);
}
.template-template-infos #section-content p {
  font-size: var(--FS20);
  line-height: normal;
}
.template-template-infos #section-content strong {
  font-weight: bold;
}
.template-template-infos #section-content strong em {
  font-style: italic;
}
.template-template-infos #section-content em {
  font-style: italic;
}
.template-template-infos #section-content em strong {
  font-weight: bold;
}
.template-template-infos #section-content .tetro {
  display: flex;
  align-items: center;
  font-size: var(--FS20);
  line-height: 1;
}
.template-template-infos #section-content .tetro img {
  display: flex;
  width: 4em;
  height: auto;
  margin-left: 0.25em;
  margin-top: 0.15em;
}

.template-template-contact header {
  border-bottom: 1px solid;
  mix-blend-mode: unset;
  filter: unset;
  background-color: #FFFFFF;
}
.template-template-contact #main {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  padding: var(--P40);
  box-sizing: border-box;
  display: flex;
  font-size: var(--FS24);
  line-height: normal;
}
.template-template-contact #main #section-left {
  width: 33%;
}
.template-template-contact #main #section-left h1 {
  font-weight: bold;
  font-size: var(--FS36);
  line-height: normal;
  margin-bottom: var(--P10);
}
.template-template-contact #main #section-right {
  width: 67%;
}
.template-template-contact #main #section-right form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.template-template-contact #main #section-right .input {
  display: block;
  width: 49%;
  margin-bottom: var(--P20);
}
.template-template-contact #main #section-right .input.textarea {
  width: 100%;
}
.template-template-contact #main #section-right .input.consent {
  display: flex;
  align-items: flex-start;
}
.template-template-contact #main #section-right .input.consent input {
  width: var(--P20);
  margin: 0;
  margin-top: var(--P10);
  margin-right: 0.5em;
}
.template-template-contact #main #section-right .input.submit {
  display: flex;
  justify-content: flex-end;
}
.template-template-contact #main #section-right .input.submit #submit {
  width: fit-content;
  height: fit-content;
  border: 1px solid;
  padding: var(--P6) var(--P40);
  text-transform: uppercase;
  cursor: pointer;
}
.template-template-contact #main #section-right .input.submit #submit:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.template-template-contact #main #section-right .input label {
  display: block;
  margin-bottom: var(--P10);
}
.template-template-contact #main #section-right .input input,
.template-template-contact #main #section-right .input textarea {
  display: block;
  background-color: #EEE;
  border: none;
  outline: none;
  width: 100%;
  padding: var(--P10) var(--P10);
  font-family: "OatmealSans-light";
  font-size: var(--FS24);
  line-height: 1;
}
.template-template-contact #main #section-right .input textarea {
  height: 8em;
}
.template-template-contact #main #section-right .error {
  display: none;
  width: 100%;
  color: red;
}
.template-template-contact #main #section-right .error.visible {
  display: block;
}
.template-template-contact #main #section-right .error.ok {
  color: green;
}