@font-face {
  font-family: "BoldFont";
  src: url("../fonts/bold.otf") format("opentype");
}
@font-face {
  font-family: "LightFont";
  src: url("../fonts/regular.otf") format("opentype");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font-family: "LightFont";
  font-size: 4rem;
  line-height: 4rem;
}
@media (max-width: 600px) {
  input,
  button,
  textarea,
  select {
    font-size: 6rem;
    line-height: 6rem;
  }
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

.lines {
  background-color: #fff;
  background-position: center top;
  background-size: 100rem 1rem;
  background-repeat: repeat-y;
  background-image: url("../images/lines.svg");
}

* {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  * {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}

body {
  background-color: #D9D4CC;
  transition: background-color 0.5s;
  will-change: background-color;
  width: 100%;
  overflow-x: hidden;
  margin: auto;
  -ms-overflow-style: none;
}
body.noscroll {
  overflow: hidden;
  position: fixed;
}

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

.light {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  .light {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}

.txtMed,
.txtMed > * {
  font-family: "LightFont";
  font-size: 4rem;
  line-height: 4rem;
}
@media (max-width: 600px) {
  .txtMed,
  .txtMed > * {
    font-size: 6rem;
    line-height: 6rem;
  }
}

.bold,
strong {
  font-family: "BoldFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
  font-weight: normal;
}
@media (max-width: 600px) {
  .bold,
  strong {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}

.bigBold {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  .bigBold {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}

.separator {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
  padding: 0 1rem;
}
@media (max-width: 600px) {
  .separator {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}
@media (max-width: 600px) {
  .separator {
    padding: 0 3rem;
  }
}

@media (max-width: 600px) {
  .hidemob {
    opacity: 0;
  }
}

.nobreak {
  white-space: nowrap;
}

h1 {
  font-family: "LightFont";
  font-size: 6rem;
  line-height: 6rem;
  font-weight: normal;
}
@media (max-width: 600px) {
  h1 {
    font-size: 15rem;
    line-height: 15rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 9rem;
    line-height: 12rem;
  }
}

h2 {
  font-family: "LightFont";
  font-size: 4rem;
  line-height: 4rem;
}
@media (max-width: 600px) {
  h2 {
    font-size: 6rem;
    line-height: 6rem;
  }
}

hr {
  width: 100%;
  margin: 0;
  border: none;
}
@media (max-width: 600px) {
  hr {
    margin: 2.5rem 0;
  }
}

@media (max-width: 600px) {
  .blockMob {
    display: block;
  }
}

@media (max-width: 600px) {
  .fullscreen-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    /* Added dynamic viewport height */
    z-index: 1000;
    background-color: rgb(255, 255, 255);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .fullscreen-container::-webkit-scrollbar {
    display: none;
  }
  .fullscreen-image {
    height: 100vh;
    height: 100dvh;
    /* Added dynamic viewport height */
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    /* Changed from cover to ensure full visibility */
    flex-shrink: 0;
    max-width: none;
    min-width: auto;
    display: block;
    margin: auto;
    /* Centers the image if it's narrower than the screen */
  }
}
form input,
form input:focus {
  padding: 1rem;
  height: 6rem;
  margin: 2rem 0;
  border: solid #000000 0.1rem;
  border-radius: 0;
  outline: none;
  width: 48rem;
}
@media (max-width: 600px) {
  form input,
  form input:focus {
    padding: 3rem;
    height: 2;
    margin: 6rem 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  form input,
  form input:focus {
    border: solid #000000 0.2rem;
  }
}
form textarea,
form textarea:focus {
  padding: 1rem;
  height: 30rem;
  margin: 2rem 0;
  border: solid #000000 0.1rem;
  border-radius: 0;
  outline: none;
  width: 48rem;
}
@media (max-width: 600px) {
  form textarea,
  form textarea:focus {
    padding: 3rem;
    height: 70rem;
    margin: 6rem 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  form textarea,
  form textarea:focus {
    border: solid #000000 0.2rem;
  }
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 600px) {
  .buttons {
    width: 100%;
  }
}
.buttons .button,
.buttons button,
.buttons button:focus {
  color: #fff;
  background-color: #000000;
  text-align: center;
  font-weight: normal;
  padding: 2rem 6rem;
  height: 6rem;
  line-height: 2rem;
  margin: 2rem 0;
  width: auto;
  border: solid #000000 0.1rem;
  border-radius: 0;
  outline: none;
}
@media (max-width: 600px) {
  .buttons .button,
  .buttons button,
  .buttons button:focus {
    line-height: 8rem;
    padding: 3rem;
    height: 2;
    margin: 6rem 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .buttons .button,
  .buttons button,
  .buttons button:focus {
    border: solid #000000 0.2rem;
  }
}
.buttons .button:hover,
.buttons button:hover,
.buttons button:focus:hover {
  background-color: #373737;
  border: solid #373737 0.15rem;
}
@media (max-width: 600px) {
  .buttons .button:hover,
  .buttons button:hover,
  .buttons button:focus:hover {
    border: solid #373737 0.45rem;
  }
}
.buttons label {
  display: none;
}

.ensemble {
  position: fixed;
  right: 0;
  top: 30rem;
  width: 4rem;
  height: 32rem;
}
@media (max-width: 600px) {
  .ensemble {
    top: 78rem;
  }
}

a,
a:visited,
a:focus,
a:active {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:hover > *,
a:visited:hover,
a:visited:hover > *,
a:focus:hover,
a:focus:hover > *,
a:active:hover,
a:active:hover > * {
  color: oklch(from var(--bg-color) calc(l - 0.35) calc(c * 1.5) h);
}
a:hover .hidehover, a:hover > * .hidehover,
a:visited:hover .hidehover,
a:visited:hover > * .hidehover,
a:focus:hover .hidehover,
a:focus:hover > * .hidehover,
a:active:hover .hidehover,
a:active:hover > * .hidehover {
  opacity: 1;
  color: #000000;
}

.under {
  text-decoration: underline;
}

.publication {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hidehover {
  opacity: 0;
}
@media (max-width: 600px) {
  .hidehover {
    opacity: 1;
  }
}

#imgLinkPreview {
  position: fixed;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
#imgLinkPreview img {
  display: block;
  max-width: 30rem;
  max-height: 30rem;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 600px) {
  #imgLinkPreview {
    display: none !important;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(20rem);
  }
  100% {
    transform: translateY(0);
  }
}
#content {
  position: relative;
  opacity: 1;
  transform: none;
  animation: slideUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  width: 72rem;
  margin: auto;
  margin-top: 20rem;
  min-height: calc(100vh - 38rem);
  pointer-events: none;
}
#content a,
#content button,
#content input,
#content textarea,
#content .image,
#content .north {
  pointer-events: auto;
}
@media (max-width: 600px) {
  #content {
    width: 100rem;
    margin-top: 40rem;
  }
}

.on-top {
  background-color: var(--bg-color);
}

.menu {
  position: fixed;
  display: flex;
  justify-content: space-between;
  top: 0;
  width: 14rem;
  right: 0;
  padding: 3rem;
  z-index: 900;
  transform: translateZ(0);
}
@media (max-width: 600px) {
  .menu {
    padding: 6rem;
    width: 34rem;
  }
}

.logo {
  position: fixed;
  top: 10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60rem;
}
.logo img {
  width: 100%;
}
@media (max-width: 600px) {
  .logo {
    top: 28rem;
    width: 70rem;
  }
  .logo img {
    width: 100%;
  }
}

#footer {
  width: 72rem;
  margin: 100dvh auto 0 auto;
  padding-bottom: 6rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  pointer-events: auto;
}
@media (max-width: 600px) {
  #footer {
    width: 84rem;
    height: auto;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
  }
  #footer span {
    display: block;
    width: 100%;
    text-align: left;
  }
  #footer span,
  #footer span > a {
    line-height: 4rem;
    height: auto;
  }
}

.module {
  position: relative;
  margin-bottom: 10rem;
}
.module img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .module {
    margin-bottom: 30rem;
  }
}

.bottomMargSmall {
  margin-bottom: 4rem;
}
@media (max-width: 600px) {
  .bottomMargSmall {
    margin-bottom: 8rem;
  }
}

.legend {
  position: absolute;
  line-height: 4rem;
}
@media (max-width: 600px) {
  .legend {
    line-height: 6rem;
    padding-top: 3rem;
    margin-left: 8rem;
  }
}

.north {
  position: absolute;
  width: 4rem;
  height: 4rem;
  bottom: -4rem;
  right: -0.75rem;
}
@media (max-width: 600px) {
  .north {
    width: 12rem;
    height: 12rem;
    bottom: -12rem;
    right: 7.6rem;
  }
}

.texte {
  width: 72rem;
}
@media (max-width: 600px) {
  .texte {
    width: 84rem;
    display: block;
    margin-bottom: 15rem;
    margin-left: 8rem;
    margin-right: 8rem;
  }
}

.texteFR > p,
.texteDE > p {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .texteFR > p,
  .texteDE > p {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}

.texteFR a,
.texteFR a:visited,
.texteFR a:focus,
.texteFR a:active,
.texteDE a,
.texteDE a:visited,
.texteDE a:focus,
.texteDE a:active {
  color: oklch(from var(--bg-color) calc(l - 0.35) calc(c * 1.5) h);
}
.texteFR a:hover,
.texteFR a:visited:hover,
.texteFR a:focus:hover,
.texteFR a:active:hover,
.texteDE a:hover,
.texteDE a:visited:hover,
.texteDE a:focus:hover,
.texteDE a:active:hover {
  color: #000000;
}

li {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  li {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}

.texteDE {
  padding-top: 8rem;
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  .texteDE {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}

.texte.bilingue .texteDE {
  display: none;
  padding-top: 0;
}
.texte.bilingue.show-de .texteFR {
  display: none;
}
.texte.bilingue.show-de .texteDE {
  display: block;
}

.lang-switch {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: #000000;
  cursor: pointer;
}
@media (max-width: 600px) {
  .lang-switch {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}
.lang-switch:hover {
  color: oklch(from var(--bg-color) calc(l - 0.35) calc(c * 1.5) h);
}

.title {
  margin-bottom: 8rem;
  width: 72rem;
}
@media (max-width: 600px) {
  .title {
    width: 84rem;
    margin-bottom: 15rem;
    margin-left: 8rem;
    margin-right: 8rem;
  }
}

.moduleTeam {
  width: 72rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16rem;
}
.moduleTeam img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .moduleTeam {
    width: 100rem;
    margin-bottom: 30rem;
  }
}

.teamOne {
  width: 20rem;
  margin-bottom: 16rem;
  margin-right: 0;
}
.teamOne .teamLink {
  text-decoration: none;
  color: inherit;
  display: block;
}
.teamOne:not(:nth-child(3n)) {
  margin-right: 6rem;
}
.teamOne .image {
  width: 20rem;
  height: 30rem;
}
@media (max-width: 600px) {
  .teamOne {
    margin-right: 0;
    width: 100rem;
  }
  .teamOne:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .teamOne .image {
    width: 100rem;
    height: 100rem;
  }
  .teamOne p {
    margin-left: 8rem;
  }
}
.teamOne p {
  padding-top: 3rem;
}

.teamList {
  margin-bottom: 8rem;
  width: 72rem;
}
@media (max-width: 600px) {
  .teamList {
    width: 84rem;
    margin-bottom: 15rem;
    margin-left: 8rem;
    margin-right: 8rem;
  }
}
@media (max-width: 600px) {
  .teamList hr {
    margin: 2rem 0;
  }
}
.teamList .nom {
  width: 22rem;
  display: inline-block;
}
@media (max-width: 600px) {
  .teamList .nom {
    width: 100%;
    display: block;
  }
}
.teamList .titre {
  width: 22rem;
  display: inline-block;
}
@media (max-width: 600px) {
  .teamList .titre {
    width: 100%;
    display: block;
  }
}

.projectList {
  margin-top: 30rem;
  margin-bottom: 2rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 600px) {
  .projectList {
    width: 84rem;
    margin-top: 60rem;
    margin-bottom: 15rem;
    margin-left: 8rem;
    margin-right: 8rem;
  }
}
@media (max-width: 600px) {
  .projectList hr {
    margin: 2rem 0;
  }
}
.projectList .number {
  width: 3rem;
  display: inline-block;
}
@media (max-width: 600px) {
  .projectList .number {
    width: 12rem;
    font-family: "LightFont";
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .projectList .number {
    font-size: 6rem;
    line-height: 6rem;
  }
}
@media (max-width: 600px) {
  .projectList .number a {
    font-family: "LightFont";
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .projectList .number a {
    font-size: 6rem;
    line-height: 6rem;
  }
}
.projectList .nom {
  width: 23rem;
  display: inline-block;
}
@media (max-width: 600px) {
  .projectList .nom {
    display: inline;
    width: 68rem;
    font-family: "LightFont";
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .projectList .nom {
    font-size: 6rem;
    line-height: 6rem;
  }
}
@media (max-width: 600px) {
  .projectList .nom a {
    font-family: "LightFont";
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .projectList .nom a {
    font-size: 6rem;
    line-height: 6rem;
  }
}
.projectList .lieu {
  width: 16rem;
  display: inline-block;
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  .projectList .lieu {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}
.projectList .lieu a {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  .projectList .lieu a {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}
@media (max-width: 600px) {
  .projectList .lieu {
    width: 83rem;
  }
}
.projectList .type {
  width: 18rem;
  display: inline-block;
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  .projectList .type {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}
.projectList .type a {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  .projectList .type a {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}
@media (max-width: 600px) {
  .projectList .type {
    width: 83rem;
  }
}
.projectList .date {
  width: 8rem;
  display: inline-block;
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  .projectList .date {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}
.projectList .date a {
  font-family: "LightFont";
  font-size: 1.2rem;
  line-height: 1.68rem;
}
@media (max-width: 600px) {
  .projectList .date a {
    font-size: 3.5rem;
    line-height: 4.9rem;
  }
}
@media (max-width: 600px) {
  .projectList .date {
    width: 83rem;
  }
}

.productList {
  table-layout: auto;
  position: relative;
  width: 60rem;
}
@media (max-width: 600px) {
  .productList tr {
    display: block;
    float: left;
    padding: 3rem 0;
  }
}
.productList tr:hover td a {
  color: oklch(from var(--bg-color) calc(l - 0.35) calc(c * 1.5) h);
  cursor: pointer;
}
@media (max-width: 600px) {
  .productList td {
    display: block;
    float: left;
    padding: 0;
  }
}
@media (max-width: 600px) {
  .productList td:first-child {
    width: 9rem;
  }
}
@media (max-width: 600px) {
  .productList td:nth-child(2) {
    width: 77rem;
  }
}
@media (max-width: 600px) {
  .productList td:nth-child(4) {
    padding-left: 3rem;
  }
}
@media (max-width: 600px) {
  .productList td:last-child {
    width: 100%;
  }
}

.texteCol {
  width: 50rem;
}
@media (max-width: 600px) {
  .texteCol {
    width: 84rem;
  }
  .texteCol .image {
    width: 66rem;
    height: 66rem;
  }
}

.twoCol {
  width: 24rem;
}
.twoCol .image {
  width: 24rem;
  height: 16rem;
}
@media (max-width: 600px) {
  .twoCol {
    width: 66rem;
    width: 100rem;
  }
  .twoCol .image {
    width: 100rem;
    height: 100rem;
  }
}

.threeCol {
  width: 36rem;
}
.threeCol .image {
  width: 36rem;
  height: 24rem;
}
@media (max-width: 600px) {
  .threeCol {
    width: 66rem;
    width: 100rem;
  }
  .threeCol .image {
    width: 100rem;
    height: 100rem;
  }
}

.fourColSquare {
  width: 48rem;
}
.fourColSquare .image {
  width: 48rem;
  height: 48rem;
}
@media (max-width: 600px) {
  .fourColSquare {
    width: 66rem;
  }
  .fourColSquare .image {
    width: 66rem;
    height: 66rem;
  }
}

.fourCol {
  width: 48rem;
}
.fourCol .image {
  width: 48rem;
  height: 32rem;
}
@media (max-width: 600px) {
  .fourCol {
    width: 66rem;
    width: 100rem;
  }
  .fourCol .image {
    width: 100rem;
    height: 100rem;
  }
}

.fiveCol {
  width: 60rem;
}
.fiveCol .image {
  width: 60rem;
  height: 40rem;
}
@media (max-width: 600px) {
  .fiveCol {
    width: 66rem;
    width: 100rem;
  }
  .fiveCol .image {
    width: 100rem;
    height: 100rem;
  }
}

.sixCol {
  width: 72rem;
}
.sixCol .image {
  width: 72rem;
  height: 48rem;
}
@media (max-width: 600px) {
  .sixCol {
    width: 66rem;
    width: 100rem;
  }
  .sixCol .image {
    width: 100rem;
    height: 100rem;
  }
}

.twoCol.portrait .image {
  height: 32rem;
}
@media (max-width: 600px) {
  .twoCol.portrait {
    width: 66rem;
    width: 100rem;
  }
  .twoCol.portrait .image {
    width: 100rem;
    height: 100rem;
  }
}

.threeCol.portrait .image {
  height: 48rem;
}
@media (max-width: 600px) {
  .threeCol.portrait {
    width: 66rem;
    width: 100rem;
  }
  .threeCol.portrait .image {
    width: 100rem;
    height: 100rem;
  }
}

.fourCol.portrait .image {
  height: 64rem;
}
@media (max-width: 600px) {
  .fourCol.portrait {
    width: 66rem;
    width: 100rem;
  }
  .fourCol.portrait .image {
    width: 100rem;
    height: 100rem;
  }
}

.fiveCol.portrait .image {
  height: 80rem;
}
@media (max-width: 600px) {
  .fiveCol.portrait {
    width: 66rem;
    width: 100rem;
  }
  .fiveCol.portrait .image {
    width: 100rem;
    height: 100rem;
  }
}

.sixCol.portrait .image {
  height: 96rem;
}
@media (max-width: 600px) {
  .sixCol.portrait {
    width: 66rem;
    width: 100rem;
  }
  .sixCol.portrait .image {
    width: 100rem;
    height: 100rem;
  }
}

.pos0 {
  left: -12rem;
}
@media (max-width: 600px) {
  .pos0 {
    left: 0;
  }
}

.pos1 {
  left: 0;
}
@media (max-width: 600px) {
  .pos1 {
    left: 0;
  }
}

.pos2 {
  left: 12rem;
}
@media (max-width: 600px) {
  .pos2 {
    left: 0;
  }
}

.pos3 {
  left: 24rem;
}
@media (max-width: 600px) {
  .pos3 {
    left: 0;
  }
}

.pos4 {
  left: 36rem;
}
@media (max-width: 600px) {
  .pos4 {
    left: 0;
  }
}

.pos5 {
  left: 48rem;
}
@media (max-width: 600px) {
  .pos5 {
    left: 0;
  }
}

.fullWidth {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}
.fullWidth .image {
  width: 100%;
  height: auto;
}

.videoWithControls::-webkit-media-controls-panel,
.videoWithControls::-webkit-media-controls-play-button,
.videoWithControls::-webkit-media-controls-volume-slider-container,
.videoWithControls::-webkit-media-controls-volume-slider,
.videoWithControls::-webkit-media-controls-mute-button,
.videoWithControls::-webkit-media-controls-timeline,
.videoWithControls::-webkit-media-controls-current-time-display,
.videoWithControls::-webkit-full-page-media::-webkit-media-controls-panel,
.videoWithControls::-webkit-media-controls-timeline-container,
.videoWithControls::-webkit-media-controls-time-remaining-display,
.videoWithControls::-webkit-media-controls-seek-back-button,
.videoWithControls::-webkit-media-controls-seek-forward-button,
.videoWithControls::-webkit-media-controls-fullscreen-button,
.videoWithControls::-webkit-media-controls-rewind-button,
.videoWithControls::-webkit-media-controls-return-to-realtime-button,
.videoWithControls::-webkit-media-controls-toggle-closed-captions-button {
  display: none !important;
  -webkit-appearance: none !important;
}

.video-container {
  display: flex;
  justify-content: space-around;
}
.video-container video {
  width: 42rem;
  height: 26rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .video-container video {
    width: 50rem;
    height: 50rem;
    margin: 0 -4rem;
  }
}

.half > .video-container > video {
  width: 20rem;
}
@media (max-width: 600px) {
  .half > .video-container > video {
    width: 50rem;
    height: 50rem;
    margin: 0 -4rem;
  }
}

.video-controls {
  margin-bottom: -2rem;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .video-controls {
    justify-content: flex-start;
    top: -8rem;
    left: 0rem;
    margin-bottom: -4rem;
  }
}

.reloadplaypause {
  display: flex;
  flex-direction: row;
}

.video-control {
  line-height: 1.68rem;
  font-size: 1.68rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background-color: #FFF;
}
@media (max-width: 600px) {
  .video-control {
    width: 4rem;
    height: 4rem;
  }
}

.videoWithControls {
  cursor: pointer;
}

.play-btn {
  background-image: url("../images/play.svg");
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
}

.pause-btn {
  background-image: url("../images/pause.svg");
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
}

.fullscreen-btn {
  float: right;
  background-image: url("../images/fullscreen.svg");
  background-size: 75%;
  background-position: center right;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .fullscreen-btn {
    margin-left: 2rem;
    background-position: center;
  }
}

.replay-btn {
  background-image: url("../images/reload.svg");
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .replay-btn {
    display: none;
  }
}

.hiddenVideo {
  opacity: 0 !important;
  transition: 0.5s;
}

.hiddenjs {
  display: none !important;
}

.module.title h1 {
  font-family: "LightFont";
  font-size: 4rem;
  line-height: 4rem;
}
@media (max-width: 600px) {
  .module.title h1 {
    font-size: 6rem;
    line-height: 6rem;
  }
}
.module.title p {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 600px) {
  .module.title p {
    width: auto;
  }
}

.module.title .line {
  display: block;
  border: none;
  padding: 0.25rem 0;
  line-height: 1.4;
}
.module.title .line + .line {
  border-top: none;
}
@media (max-width: 600px) {
  .module.title .line {
    border: none;
  }
  .module.title .line + .line {
    border-top: none;
  }
}
.module.title .line a {
  text-decoration: none;
  border-bottom: none;
}
.module.title .line.cliquable {
  background-color: rgba(0, 0, 0, 0.05);
}

.module.projectList .line {
  display: block;
  border: none;
  padding: 1.5rem 1rem;
  line-height: 1.4;
}
.module.projectList .line + .line {
  border-top: none;
}
@media (max-width: 600px) {
  .module.projectList .line {
    border: none;
  }
  .module.projectList .line + .line {
    border-top: none;
  }
}
.module.projectList .line a {
  text-decoration: none;
  border-bottom: none;
}
.module.projectList .line.cliquable {
  background-color: rgba(0, 0, 0, 0.05);
}

.label {
  margin-right: 0.5rem;
  display: inline-block;
}

#introVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  background-color: #D9D4CC;
  cursor: pointer;
}
#introVideo video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blend-multiply {
  mix-blend-mode: multiply;
  transform: translate3d(0, 0, 0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*# sourceMappingURL=css.css.map */