* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  outline: 0px solid rgba(255,0,0,0.2);
}

h1, h2 {
  font-size: inherit; 
  font-weight: inherit;
  margin: 0;
  line-height: inherit;
}

.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;
}

.projet-texte-XXL {
font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.005px;
  line-height: 1.275em;
  text-transform: uppercase;
  width: 100%;
}

@media (max-width: 767px) {
  .projet-texte-XXL {
    padding: 20px 0 20px 0;
    font-size: 15px;
  }
}

sup {
  text-transform: lowercase !important;
  vertical-align: baseline;
  position: relative; top: -0.4em;
  line-height: 0;
}

strong {
  font-weight: 700;
  font-variation-settings: "wght" 700;
}

.fade-in { 
    animation: fadeIn 2.95s; 
}

.footer-link {
  text-decoration: none;
  color: #000;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: font-weight 0.25s ease;
}

.footer-link:hover {
  font-weight: 700;
}


.header {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
}

.logo {
  width: 90px;
  height: auto;
}

.vertical-nav {
  max-width: 33.33%;
  margin: 0 auto;
  text-align: left;
  font-family: "Host Grotesk", sans-serif;
}

@media (min-width: 48em) and (max-width: 63.9375em) {
  .vertical-nav {
    max-width: 90.33%;
  }
}
@media (max-width: 47.9375em) { /* 767px */
  .vertical-nav {
    max-width: 75%;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  height: 175px;
  z-index: 1000;
  background: #fff;
  transition: transform 0.3s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.vertical-nav a {
  position: relative;
  display: block;
  padding: 14px 0 0;
  text-decoration: none;
  color: #000;
  font-size: 0.675em; /* 14px */
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: font-weight 0.25s ease;
}

.vertical-nav a:hover {
  font-weight: 700;
}

.vertical-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background-color: #000;
  opacity: 0.4;
  pointer-events: none;
}

.vertical-nav a:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0px;
  background-color: #000;
  opacity: 0.4;
  pointer-events: none;
}

.footer-display {
  max-width: 33%;
  margin: 0 auto;
  text-align: left;
  font-family: "Host Grotesk", sans-serif;
  padding-bottom: 4.2vw;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 0;
  font-family: "Host Grotesk", sans-serif;
  text-decoration: none;
  color: #000;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  bottom: 12%;
}

.footer-block {
  flex: 1;
  text-align: center;
  align-self: flex-start;
}

.footer-block:first-child {
  text-align: left;
}

.footer-block:last-child {
  text-align: left;
  padding-left: 100px;
}

@media (min-width: 48em) and (max-width: 63.9375em) {
  .footer-display {
    max-width: 100%;
    padding: 4.2vw;
  }
}

@media (max-width: 47.9375em) {
  .site-header {
    height: 240px;
  }

  .footer-display {
    max-width: 100%;
    margin-top: 100px;
  }
  .site-footer {
    flex-direction: column;
    gap: 0.75em;
    text-align: center;
    bottom: 70px;
  }
  .footer-block {
  text-align: left;
  padding: 14px 12vw;
  }
  .footer-block:last-child {
    padding: 14px 12vw;
  }
}

