@font-face {
  font-family: "ppm";
  src: url("../fonts/PPMonumentExtended-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "ppn";
  src: url("../fonts/PPNeueMontreal-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
/*
* VW Unit
*/
/*
* VH Unit
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

html {
  scroll-behavior: auto;
}
html.is-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

html.has-smooth-scroll,
body.has-smooth-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html.has-smooth-scroll.is-scroll-locked,
body.has-smooth-scroll.is-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}
html.has-smooth-scroll::-webkit-scrollbar,
body.has-smooth-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
  font-family: "ppn";
}
body.is-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition-property: opacity;
  transition-duration: 0.2s;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

p,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  line-height: 140%;
}

h2 {
  font-size: 48px;
  line-height: 58px;
  color: var(--black);
}

section {
  padding: 220px 44px;
}

#viewport,
#pageWrapper,
#pageContent,
#app,
.app-shell {
  min-height: 100vh;
}

html.has-smooth-scroll #pageContent {
  will-change: transform;
}

.app-shell {
  min-height: inherit;
  display: flex;
  flex-direction: column;
}

.app-shell__body {
  flex: 1 0 auto;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.button {
  background: transparent;
  display: flex;
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  height: 54px;
  padding: 0 42px;
  border: 1px solid var(--black);
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.button span {
  font-size: 20px;
  font-family: "ppn";
  line-height: 100%;
  white-space: nowrap;
  color: var(--black);
}
.button.revert {
  border-color: var(--white);
}
.button.revert span {
  color: var(--white);
}
.button.full {
  background: var(--black);
}
.button.full span {
  color: var(--white);
}
.button.full.revert {
  background: var(--white);
  border-color: var(--white);
}
.button.full.revert span {
  color: var(--black);
}
.button:hover {
  opacity: 0.4;
}

.img-container {
  background: #ccc;
}

.contents {
  pointer-events: initial !important;
}
.contents .inner-contents .uptitle {
  display: table;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 10px;
  color: #929B97;
}
.contents .inner-contents .buttons {
  margin-top: 40px;
}

.pastille {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  width: clamp(120px, 13.5593220339vw, 160px);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
}
.pastille span {
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
}

#app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
#app-header .plywood {
  padding: 20px 44px;
}
#app-header .plywood .menu-backdrop {
  display: none;
}
#app-header .plywood .container {
  display: flex;
  column-gap: 35px;
  align-items: center;
  justify-content: space-between;
}
#app-header .plywood .container > a {
  display: inline-flex;
  width: fit-content;
}
#app-header .plywood .container > a svg {
  width: 140px;
  height: auto;
}
#app-header .plywood .container nav ul {
  display: flex;
  column-gap: 20px;
  align-items: center;
}
#app-header .plywood .container nav ul li a {
  font-size: 20px;
  line-height: 100%;
  color: var(--black);
}
#app-header .plywood .container nav ul li a:hover {
  opacity: 0.4;
}
#app-header .plywood .container .menu-project {
  display: none;
}
#app-header .plywood .container .menu-toggle {
  display: none;
}

@media (max-width: 767px) {
  #app-header .plywood {
    position: relative;
    padding: 16px 20px;
  }
  #app-header .plywood .menu-backdrop {
    background: rgba(0, 0, 0, 0.72);
    position: fixed;
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;
    appearance: none;
    cursor: pointer;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    backdrop-filter: blur(3px);
    z-index: 1;
  }
  #app-header .plywood .container {
    position: relative;
    z-index: 2;
    align-items: center;
    flex-direction: row;
  }
  #app-header .plywood .container > a svg {
    width: 92px;
  }
  #app-header .plywood .container .menu-toggle {
    background: var(--black);
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin: 0 0 0 auto;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 6px;
  }
  #app-header .plywood .container .menu-toggle span {
    background: var(--white);
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    transition: transform 0.25s ease;
  }
  #app-header .plywood .container .menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    max-height: calc(100vh - 92px);
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
  #app-header .plywood .container .menu-panel::-webkit-scrollbar {
    display: none;
  }
  #app-header .plywood .container .menu-panel nav {
    background: rgba(255, 255, 255, 0.94);
    width: 100%;
    padding: 22px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px);
  }
  #app-header .plywood .container .menu-panel nav ul {
    width: 100%;
    row-gap: 18px;
    column-gap: 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }
  #app-header .plywood .container .menu-panel nav ul li a {
    font-size: 22px;
    white-space: nowrap;
  }
  #app-header .plywood .container .menu-panel .menu-project {
    background: var(--black);
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 12px;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    overflow: hidden;
  }
  #app-header .plywood .container .menu-panel .menu-project .media {
    position: absolute;
    display: block;
    inset: 0;
  }
  #app-header .plywood .container .menu-panel .menu-project .media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #app-header .plywood .container .menu-panel .menu-project .media:after {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82));
    position: absolute;
    display: block;
    content: "";
    inset: 0;
  }
  #app-header .plywood .container .menu-panel .menu-project .content {
    position: relative;
    display: flex;
    width: 100%;
    padding: 18px 20px;
    row-gap: 6px;
    align-self: flex-end;
    flex-direction: column;
    z-index: 1;
  }
  #app-header .plywood .container .menu-panel .menu-project .content span,
  #app-header .plywood .container .menu-panel .menu-project .content strong {
    color: var(--white);
  }
  #app-header .plywood .container .menu-panel .menu-project .content span {
    font-size: 13px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.72);
  }
  #app-header .plywood .container .menu-panel .menu-project .content strong {
    font-size: 24px;
    font-weight: 900;
    font-family: "ppm";
    line-height: 30px;
    text-transform: uppercase;
  }
  #app-header .plywood.is-menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  #app-header .plywood.is-menu-open .container .menu-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  #app-header .plywood.is-menu-open .container .menu-toggle span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
  #app-header .plywood.is-menu-open .container .menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: initial;
  }
}
@media (max-width: 420px) {
  #app-header .plywood .container .menu-panel nav ul li a {
    font-size: 20px;
  }
  #app-header .plywood .container .menu-panel .menu-project .content {
    padding: 16px;
  }
  #app-header .plywood .container .menu-panel .menu-project .content strong {
    font-size: 21px;
    line-height: 27px;
  }
}
footer {
  padding: 0 44px 50px;
}
footer .container .top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
footer .container .top .col h4 {
  display: table;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  font-family: "ppn";
  line-height: 100%;
  color: #929B97;
}
footer .container .top .col p {
  font-size: 30px;
  line-height: 36px;
  color: var(--black);
}
footer .container .top .col ul li a,
footer .container .top .col ul li span {
  font-size: 30px;
  line-height: 36px;
  color: var(--black);
}
footer .container .top .col ul li a small,
footer .container .top .col ul li span small {
  display: table;
  font-size: 14px;
  margin-top: -7px;
  color: var(--black);
}
footer .container .top .col ul li a:hover {
  opacity: 0.4;
}
footer .container .top .col ul li + li {
  margin-top: 4px;
}
footer .container .top .col ul + ul, footer .container .top .col ul + h4 {
  margin-top: 35px;
}
footer .container .top .col:nth-child(1) {
  width: 100%;
  max-width: 740px;
}
footer .container .top .col:nth-child(2), footer .container .top .col:nth-child(3) {
  width: calc((100% - 740px) / 2);
}
footer .container .top .col:nth-child(2) {
  margin-left: 196px;
}
footer .container .top .col:nth-child(3) {
  margin-left: 40px;
}
footer .container .bottom {
  display: flex;
  column-gap: 196px;
  margin-top: -32px;
  align-items: flex-end;
  justify-content: space-between;
}
footer .container .bottom .logo {
  width: 100%;
  max-width: 740px;
}
footer .container .bottom ul {
  display: flex;
  column-gap: 40px;
  width: calc(100% - 740px);
  align-items: center;
  justify-content: flex-start;
}
footer .container .bottom ul li a,
footer .container .bottom ul li span {
  font-size: 20px;
  line-height: 100%;
  color: #929B97;
}
footer .container .bottom ul li a:hover {
  opacity: 0.4;
}
footer .container .bottom ul li:nth-child(1), footer .container .bottom ul li:nth-child(2) {
  width: 50%;
}

@media (max-width: 1500px) {
  footer {
    padding: 0 36px 46px;
  }
  footer .container .top {
    column-gap: 64px;
  }
  footer .container .top .col {
    min-width: 0;
  }
  footer .container .top .col p {
    font-size: 26px;
    line-height: 32px;
  }
  footer .container .top .col ul li a,
  footer .container .top .col ul li span {
    font-size: 26px;
    line-height: 32px;
  }
  footer .container .top .col:nth-child(1) {
    flex: 1 1 460px;
    max-width: 560px;
  }
  footer .container .top .col:nth-child(2), footer .container .top .col:nth-child(3) {
    flex: 1 1 220px;
    width: auto;
    max-width: 280px;
  }
  footer .container .top .col:nth-child(3) {
    flex-basis: 300px;
    max-width: 340px;
  }
  footer .container .top .col:nth-child(3) ul li a {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  footer .container .top .col:nth-child(2), footer .container .top .col:nth-child(3) {
    margin-left: 0;
  }
  footer .container .bottom {
    column-gap: 64px;
    margin-top: 72px;
  }
  footer .container .bottom .logo {
    flex: 1 1 460px;
    max-width: 560px;
  }
  footer .container .bottom ul {
    flex: 1 1 420px;
    width: auto;
    column-gap: 28px;
  }
}
@media (max-width: 1180px) {
  footer {
    padding: 0 32px 44px;
  }
  footer .container .top {
    flex-wrap: wrap;
    row-gap: 56px;
    column-gap: 56px;
  }
  footer .container .top .col:nth-child(1) {
    flex: 0 0 100%;
    max-width: 760px;
  }
  footer .container .top .col:nth-child(2), footer .container .top .col:nth-child(3) {
    flex: 1 1 calc((100% - 56px) / 2);
    max-width: none;
  }
  footer .container .bottom {
    column-gap: 56px;
    margin-top: 72px;
  }
  footer .container .bottom .logo {
    flex: 0 1 460px;
    max-width: 460px;
  }
  footer .container .bottom ul {
    flex: 1 1 auto;
    min-width: 0;
  }
  footer .container .bottom ul li:nth-child(1), footer .container .bottom ul li:nth-child(2) {
    width: auto;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 0 20px 36px;
  }
  footer .container .top {
    row-gap: 34px;
    column-gap: 0;
    flex-direction: column;
  }
  footer .container .top .col {
    width: 100%;
    max-width: none;
  }
  footer .container .top .col h4 {
    margin-bottom: 12px;
    font-size: 16px;
  }
  footer .container .top .col p {
    max-width: 520px;
    font-size: 22px;
    line-height: 28px;
  }
  footer .container .top .col ul li a,
  footer .container .top .col ul li span {
    font-size: 22px;
    line-height: 28px;
  }
  footer .container .top .col ul + ul, footer .container .top .col ul + h4 {
    margin-top: 28px;
  }
  footer .container .top .col:nth-child(1), footer .container .top .col:nth-child(2), footer .container .top .col:nth-child(3) {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
  footer .container .bottom {
    row-gap: 28px;
    column-gap: 0;
    margin-top: 58px;
    align-items: flex-start;
    flex-direction: column;
  }
  footer .container .bottom .logo {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }
  footer .container .bottom ul {
    flex: 0 0 auto;
    width: 100%;
    row-gap: 12px;
    column-gap: 0;
    align-items: flex-start;
    flex-direction: column;
  }
  footer .container .bottom ul li a,
  footer .container .bottom ul li span {
    font-size: 14px;
    line-height: 20px;
  }
  footer .container .bottom ul li:nth-child(1), footer .container .bottom ul li:nth-child(2) {
    width: auto;
  }
}
@media (max-width: 480px) {
  footer .container .top .col p {
    font-size: 20px;
    line-height: 26px;
  }
  footer .container .top .col ul li a,
  footer .container .top .col ul li span {
    font-size: 20px;
    line-height: 26px;
  }
}

/*# sourceMappingURL=champgauche.min.css.map */
