@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "DTLFleischmannT";
  src: url("../assets/fonts/DTLFleischmannT-Caps.woff2") format("woff2"), url("../assets/fonts/DTLFleischmannT-Caps.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DTLFleischmannST regular";
  src: url("../assets/fonts/DTLFleischmannST.woff2") format("woff2"), url("../assets/fonts/DTLFleischmannST.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Founders Grotesk";
  src: url("../assets/fonts/FoundersGrotesk-Light.woff2") format("woff2"), url("../assets/fonts/FoundersGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Surt";
  src: url("../assets/fonts/Surt-Regular.woff2") format("woff2"), url("../assets/fonts/Surt-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --pico-block-spacing-vertical: 0;
}

:root {
  --regularsz: 16px;
}

body {
  color: #3b4b49;
  transition: background-color 0.8s linear;
  font-family: "DTLFleischmannT", serif;
  font-size: 15px;
  width: 100%;
  overflow-x: hidden;
}
body .content {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3b4b49;
  font-weight: normal;
  text-transform: lowercase;
}

.site-title a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #3b4b49;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.site-title a .logo {
  font-size: 2em;
  margin-left: 5px;
  margin-right: 5px;
  line-height: 0.8em;
}
.site-title a .logo svg {
  transition: all 0.4s ease-in-out;
}
.site-title a:hover {
  color: #b1b3b4;
}
.site-title a:hover svg {
  fill: #b1b3b4;
}
.site-title a .loc {
  width: 105px;
}
.site-title a .loc:first-of-type {
  text-align: right;
}

.header-perren {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  background-color: #FFFFFF;
  z-index: 200;
  top: 0;
  left: 0;
  padding: 15px;
  box-sizing: border-box;
  transition: all 0.4s ease-in-out;
}
.header-perren .col-menu {
  flex: 1;
}
.header-perren .logo {
  margin-left: 15px;
  margin-right: 15px;
}
.header-perren .logo svg {
  height: 33px;
  width: auto;
  fill: #3b4b49;
}

.col-button {
  justify-content: center;
  display: flex;
  height: 100%;
  align-items: center;
}

.popup-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

button.open-contact {
  border: 1px solid #3b4b49;
  padding: 10px 18px;
  padding-top: 7px;
  border-radius: 20px;
  text-transform: lowercase;
  line-height: 0.8em;
  background-color: transparent;
  box-shadow: none;
  color: #3b4b49;
  font-family: "DTLFleischmannT", sans-serif;
  font-size: 15px;
  cursor: pointer;
}
button.open-contact:hover {
  background-color: #3b4b49;
  color: #b1b3b4;
}
button.open-contact.close-btn {
  color: #b1b3b4;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 15px;
  width: auto;
  z-index: 100;
}

button.menu-button {
  border: 1px solid white;
  padding: 10px 18px;
  padding-top: 7px;
  border-radius: 20px;
  text-transform: lowercase;
  line-height: 0.8em;
  background-color: transparent;
  box-shadow: none;
  color: #3b4b49;
  font-family: "DTLFleischmannT", sans-serif;
  font-size: 15px;
  cursor: pointer;
}
button.menu-button:hover {
  background-color: #3b4b49;
  color: #b1b3b4;
}
button.menu-button.close-btn {
  color: #b1b3b4;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 22px;
  width: auto;
  z-index: 100;
}

.popup-title {
  color: #b1b3b4;
  padding: 15px;
  margin-top: 6px;
}

.header-menu {
  width: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.menu-holder {
  display: flex;
  flex-direction: column;
  height: 100%;
}

ul.menu-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  list-style-type: none;
}
ul.menu-list li {
  width: 100%;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
ul.menu-list li:after {
  content: "";
  width: 75%;
  margin-left: 12.5%;
  height: 1px;
  background-color: #b1b3b4;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
ul.menu-list li:hover a {
  color: white;
}
ul.menu-list li:hover:after {
  opacity: 1;
}
ul.menu-list li a {
  color: #b1b3b4;
  font-size: 30px;
  text-align: center;
  font-family: "DTLFleischmannT", sans-serif;
  text-decoration: none;
  display: flex; /* Permet au lien de se comporter comme un conteneur flexible */
  align-items: center; /* Centrage vertical */
  justify-content: center; /* Centrage horizontal */
  height: 100%;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  flex: 1;
}

ul.footer-menu {
  display: flex;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #3b4b49;
}
ul.footer-menu li {
  margin: 0 10px;
  width: 33.333%;
  text-align: center;
  box-sizing: border-box;
}
ul.footer-menu li a {
  color: #b1b3b4;
  font-size: 15px;
  font-family: "DTLFleischmannT", sans-serif;
  text-decoration: none;
}
ul.footer-menu li a:hover {
  color: #3b4b49;
}

button.open-contact {
  transition: all 0.5s ease;
}

.header-prehome {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 30px;
  color: black;
  padding-bottom: 15px;
}
.header-prehome .subtitle {
  display: flex;
  width: 100%;
  color: black;
  justify-content: space-between;
  padding: 15px;
  font-size: 15px;
  padding-right: 1.5%;
  padding-top: 8px;
  padding-bottom: 0;
  box-sizing: border-box;
  text-transform: lowercase;
}

.prehome {
  position: fixed;
  display: none;
  background-color: #3b4b49;
}

.precontent {
  height: auto;
  width: 100%;
  background-color: #3b4b49;
  position: relative;
  z-index: 300;
}

.prehome-img {
  width: 100%;
  height: auto;
  margin-top: calc(100vh - 14vw);
  display: flex;
  line-height: 0;
  align-items: center;
  justify-content: center;
}
.prehome-img img {
  width: auto;
  line-height: 0;
  height: 90vh;
  margin-bottom: 150px;
}

.content {
  height: 100vh;
  background-color: white;
}

.background {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  z-index: 0;
  background-color: #3b4b49;
  opacity: 1;
  transition: opacity 0.8s linear;
  z-index: 0;
}
.background img {
  object-position: top center;
  animation: zoomInOut 80s infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.content {
  height: auto;
}

.content-home {
  margin-top: 100vh;
  background-color: white;
  position: relative;
  z-index: 100;
  width: 100%;
}

#main-content {
  height: 1px;
  width: 100%;
  display: block;
}

.home-introduction {
  min-height: calc(50vh - 64px);
  border-bottom: 1px solid #3b4b49;
  color: #b1b3b4;
}
.home-introduction .columns {
  min-height: calc(50vh - 64px);
  display: flex;
  align-items: center;
}
.home-introduction .column {
  width: 50%;
}
.home-introduction .title-intro {
  width: 100%;
  font-family: "Surt";
  font-size: 12px;
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
  box-sizing: border-box;
  text-transform: uppercase;
}
.home-introduction .text-intro {
  width: 100%;
  padding: 24px;
  font-family: "DTLFleischmannST regular", serif;
  font-size: 27px;
  box-sizing: border-box;
  line-height: 1.25em;
}
.home-introduction .text-intro strong {
  font-family: "DTLFleischmannT", serif;
  text-transform: lowercase;
  font-weight: normal;
}

.article.twoColumnsPictureRight,
.article.twoColumnsPictureLeft {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.article.twoColumnsPictureRight .column,
.article.twoColumnsPictureLeft .column {
  width: 50%;
  box-sizing: border-box;
  flex: none;
  position: relative;
}
.article.twoColumnsPictureRight h2,
.article.twoColumnsPictureLeft h2 {
  font-size: 36px;
  line-height: 10vh;
  text-align: center;
  color: #b1b3b4;
  transition: all 0.3s ease;
}
.article.twoColumnsPictureRight h2 p + p,
.article.twoColumnsPictureLeft h2 p + p {
  margin-top: 1em;
}
.article.twoColumnsPictureRight .excerpt,
.article.twoColumnsPictureLeft .excerpt {
  font-size: 16px;
  font-family: "DTLFleischmannST regular", serif;
  transition: all 0.3s ease;
}
.article.twoColumnsPictureRight .excerpt strong,
.article.twoColumnsPictureLeft .excerpt strong {
  font-family: "DTLFleischmannT", serif;
  text-transform: lowercase;
  font-weight: normal;
}
.article.twoColumnsPictureRight a,
.article.twoColumnsPictureLeft a {
  text-decoration: underline;
  color: #b1b3b4;
  transition: all 0.3s ease;
  text-decoration: none;
}
.article.twoColumnsPictureRight a .discover-link .round-icon svg,
.article.twoColumnsPictureLeft a .discover-link .round-icon svg {
  transition: all 0.3s ease;
}
.article.twoColumnsPictureRight a:hover,
.article.twoColumnsPictureLeft a:hover {
  color: #3b4b49;
}
.article.twoColumnsPictureRight a:hover .discover-link,
.article.twoColumnsPictureLeft a:hover .discover-link {
  background-color: #3b4b49;
}
.article.twoColumnsPictureRight a:hover .discover-link .round-icon svg,
.article.twoColumnsPictureLeft a:hover .discover-link .round-icon svg {
  fill: #3b4b49;
}
.article.twoColumnsPictureRight .text,
.article.twoColumnsPictureLeft .text {
  height: 100%;
}
.article.twoColumnsPictureRight .text a,
.article.twoColumnsPictureLeft .text a {
  padding: 48px;
  color: #b1b3b4;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.article.twoColumnsPictureRight .text a:hover,
.article.twoColumnsPictureLeft .text a:hover {
  color: #3b4b49;
}
.article.twoColumnsPictureRight .text a:hover h2,
.article.twoColumnsPictureLeft .text a:hover h2 {
  color: #3b4b49;
}
.article.twoColumnsPictureRight .text a:hover .excerpt,
.article.twoColumnsPictureLeft .text a:hover .excerpt {
  color: #3b4b49;
}
.article.twoColumnsPictureRight .picture,
.article.twoColumnsPictureLeft .picture {
  height: 100%;
  background-color: #b1b3b4;
  overflow: hidden;
}
.article.twoColumnsPictureRight .picture img,
.article.twoColumnsPictureLeft .picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease-in-out;
}
.article.twoColumnsPictureRight .picture:hover img,
.article.twoColumnsPictureLeft .picture:hover img {
  transform: scale(1.1);
}

.grid-articles {
  width: 100%;
  border-bottom: 1px solid #3b4b49;
}
.grid-articles .article:first-of-type {
  background-color: #3b4b49;
}
.grid-articles .article:first-of-type .link .round-icon {
  background-color: #3b4b49;
  transition: all 0.3s ease;
}
.grid-articles .article:first-of-type .link .linktitle {
  color: #3b4b49;
  transition: color 0.3s ease;
}
.grid-articles .article:first-of-type .link .discover-link {
  border: 1px solid #3b4b49;
  transition: all 0.3s ease;
}
.grid-articles .article:first-of-type:hover {
  color: white;
}
.grid-articles .article:first-of-type a:hover h2, .grid-articles .article:first-of-type a:hover .excerpt {
  color: white;
}
.grid-articles .article:first-of-type a:hover .link .discover-link {
  background-color: #3b4b49;
  color: #b1b3b4;
  border: 1px solid #b1b3b4;
}
.grid-articles .article:first-of-type a:hover .link .discover-link .linktitle {
  color: white;
}
.grid-articles .article:first-of-type a:hover .link .discover-link .round-icon {
  background-color: white;
}
.grid-articles .article:first-of-type a:hover .link .discover-link .round-icon svg {
  fill: #3b4b49;
}

.page-the-materials-texture-and-technique .picture {
  padding: 10%;
}

.article.twoColumnsPictureLeft.page-the-materials-texture-and-technique .picture img {
  object-fit: contain;
}

.article {
  height: 100vh;
  width: 100%;
  position: relative;
}

.link {
  z-index: 100;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 108px;
  padding-right: 4px;
}
.link .linktitle {
  padding-left: 10px;
  padding-bottom: 3px;
}
.link .round-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  border-radius: 50%;
  background-color: white;
  padding: 4px;
  box-sizing: border-box;
  height: 22px;
}
.link .round-icon svg {
  fill: #b1b3b4;
  height: 100%;
  width: auto;
  transition: all 0.3s ease;
}
.link .discover-link {
  height: 30px;
  padding: 5px;
  border-radius: 16px;
  background-color: #b1b3b4;
  color: white;
  font-size: 15px;
  text-decoration: none;
  font-family: "DTLFleischmannT", serif;
  text-transform: lowercase;
  display: block;
  width: 200px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  padding-right: 4px;
}

.footer a {
  text-decoration: none;
  color: inherit;
}

.contact-section {
  height: 100%;
}

.contact-section a {
  min-height: calc(50vh - 64px);
  border-bottom: 1px solid #3b4b49;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-family: "DTLFleischmannT", serif;
  text-transform: lowercase;
  color: #b1b3b4;
  transition: all 0.3s ease;
}
.contact-section a:hover {
  color: #3b4b49;
}
.contact-section a:hover .discover-link {
  background-color: #3b4b49;
  color: white;
}

.join-section {
  min-height: calc(50vh - 64px);
}
.join-section .cover-join {
  display: none;
}

.contact-holder.link {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-holder.link .discover-link {
  margin-left: 1em;
  margin-top: 7px;
}
.contact-holder.link .discover-link:hover {
  background-color: #3b4b49;
  color: #b1b3b4;
}

#form-footer {
  background-color: #3b4b49;
  color: #b1b3b4;
  width: 100%;
  overflow: hidden;
}
#form-footer .row {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
#form-footer .row .col-4 {
  width: 33.333333%;
  padding: 26px;
  box-sizing: border-box;
  min-height: calc(50vh - 64px);
  position: relative;
}
#form-footer .row .col-4:after {
  content: "";
  width: 1px;
  height: calc(100% - 20px);
  position: absolute;
  right: 0;
  top: 10px;
  border-left: 1px solid #b1b3b4;
}
#form-footer .row .col-4:last-of-type:after {
  display: none;
}
#form-footer .col-description {
  font-size: 30px;
  text-align: center;
}
#form-footer .col-footer-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
#form-footer .footer-text-container {
  max-width: 500px;
  font-size: 15px;
  text-transform: lowercase;
  text-align: center;
}
#form-footer .footer-text .privacy-link {
  color: #b1b3b4;
  font-size: 15px;
  font-family: "DTLFleischmannT", sans-serif;
  text-decoration: none;
  position: static;
}

.col-form .button-row {
  width: 100%;
  position: absolute;
  bottom: 25px;
  margin-bottom: 0;
  margin-top: 0;
}

.contact-holder h2 {
  color: #b1b3b4;
}

.contact-section a:hover .contact-holder h2 {
  color: #3b4b49;
}

@media (max-width: 768px) {
  .show-mobile {
    display: block;
  }
  .hide-mobile {
    display: none;
  }
  body {
    font-size: 18px;
    line-height: 1.25em;
  }
  .tagline {
    display: none;
  }
  .prehome-img {
    width: 100%;
    height: auto;
    margin-top: calc(50vh - 41vw);
    display: flex;
    line-height: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
  }
  .prehome-img img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
  header.header-fendi {
    position: fixed;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px;
    font: normal normal normal 18px/22.5px "DTLFleischmannT";
    justify-content: center;
  }
  .header-perren .logo svg {
    height: 23px;
    width: 100%;
    fill: #3b4b49;
  }
  .site-mobile {
    margin-bottom: 1em;
  }
  .open-button {
    cursor: pointer;
  }
  #form-popup,
  #legal-popup {
    padding: 0px;
    box-sizing: border-box;
    align-items: flex-start;
    width: 100%;
  }
  .form-columns {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 0 10px;
  }
  input[type=text],
  input[type=email],
  textarea {
    padding: 8px 0;
    width: 100%;
    border: none;
    border-bottom: 1px solid #b1b3b4;
    box-sizing: border-box;
    background-color: transparent;
    margin-bottom: 10px;
    color: #b1b3b4;
  }
  .form-column {
    flex: 1;
    padding: 0;
  }
  .legal-container .content-holder {
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    padding-top: 0;
    padding-bottom: 1.5em;
    width: 100%;
  }
  .content-legal {
    padding: 0px;
    font-size: 16px;
    line-height: 1.2em;
  }
  .form-part-2 {
    height: auto;
  }
  .form-part-1:after,
  .form-part-2:after,
  .text-form:after {
    width: 100%;
  }
  .header-prehome {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px;
    color: black;
    padding-bottom: 15px;
  }
  .header-perren {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    background-color: #FFFFFF;
    z-index: 1;
    top: 0;
    left: 0;
    padding: 10px;
    box-sizing: border-box;
    flex-direction: column;
    max-height: 45px;
  }
  .header-perren .site-title {
    margin-bottom: 0px;
  }
  .site-title .loc {
    font-size: 11px;
  }
  .header-perren .logo {
    margin-left: 10px;
    margin-right: 10px;
  }
  .button-holder {
    width: 100%;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 112px;
    left: 0;
    z-index: 1;
  }
  .site-title .logo {
    line-height: 8px;
  }
  .button-holder.show-mobile {
    display: flex;
  }
  .background {
    top: 42px;
    height: calc(100% - 42px);
  }
  .form-container {
    padding-top: 20px;
  }
  .text-form,
  .form-part-3,
  .form-part-2,
  .form-part-1 {
    min-height: 160px;
    height: auto;
  }
  .radios label:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 7px;
    width: 13px;
    height: 13px;
    border: 1px solid #b1b3b4;
    border-radius: 50%;
    background-color: transparent;
    box-sizing: border-box;
  }
  .title-legal h1 {
    color: #b1b3b4;
    text-align: center;
    margin-top: 51px;
    font-size: 15px;
  }
  .popup .header-perren {
    z-index: 1010;
    background-color: #3b4b49;
    color: #b1b3b4;
    position: absolute;
  }
  .popup .header-perren svg {
    max-height: 100%;
    object-fit: contain;
    fill: #b1b3b4;
  }
  button.close-btn.show-mobile {
    top: 52px;
  }
  .header-perren {
    height: 45px;
  }
  .header-perren .logo svg {
    height: 25px;
  }
  .radios label:after {
    top: 7px;
    left: 10px;
  }
  button.open-contact.close-btn {
    top: 76px;
  }
  .form-column {
    padding: 0px;
    padding-left: 0;
    padding-right: 0;
  }
  .form-columns .form-column:last-of-type {
    padding-right: 0;
    padding-left: 0;
  }
}
.title-legal h1 {
  color: #b1b3b4;
  text-align: center;
  margin-top: 28px;
  font-size: 15px;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.1);
  }
}
.lozad {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.lozad.loaded {
  opacity: 1;
}

.no-scroll {
  overflow: hidden;
}

#prehome {
  cursor: pointer;
}

.popup {
  position: fixed;
  height: 100%;
  overflow: auto;
  display: none;
  z-index: 1000;
  width: auto;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  top: 0;
  right: 0;
}

.popup {
  right: unset;
  left: 0;
}
.popup .close-btn {
  position: absolute;
  top: 11px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.popup .close-btn line {
  stroke: #b1b3b4;
}

#form-popup.popup {
  left: unset;
  right: 0;
}

.popup-content {
  background-color: #3b4b49;
  width: 33vw;
  padding: 0 8%;
  padding-top: 0;
  border-radius: 0px;
  position: relative;
  min-width: 480px;
  max-width: 1080px;
  overflow: auto;
  height: 100%;
  text-transform: lowercase;
  box-sizing: border-box;
}

.form-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.form-header {
  text-align: center;
  width: 100%;
  padding: 8px;
  padding-left: 0px;
  margin-left: -3px;
}

.form-part-1,
.form-part-2 {
  text-align: center;
  text-align: center;
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 25px;
  padding-top: 50px;
  box-sizing: border-box;
  position: relative;
}
.form-part-1:after,
.form-part-2:after {
  content: "";
  display: block;
  width: 110%;
  height: 0.5px;
  background-color: #b1b3b4;
  bottom: 0;
  position: absolute;
}

.form-part-1 {
  min-height: 130px;
}

.form-part-2 {
  min-height: 250px;
  padding-top: 25px;
  padding-bottom: 30px;
  height: 40vh;
}

.form-part-3 {
  height: 20vh;
  padding-bottom: 25px;
  padding-top: 25px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}

.text-form {
  height: 20vh;
  padding-bottom: 25px;
  padding-top: 25px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-form:after {
  content: "";
  display: block;
  width: 110%;
  height: 0.5px;
  background-color: #b1b3b4;
  bottom: 0;
  position: absolute;
}

.uniform__potty {
  position: absolute;
  left: -9999px;
}

.form {
  padding: 0;
  width: 100%;
}

.form-columns {
  display: flex;
  justify-content: space-between;
}
.form-columns.flex-end {
  justify-content: flex-end;
}
.form-columns.flex-end .form-column {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex: none;
}
.form-columns .form-column:first-of-type {
  padding-left: 0;
}
.form-columns .form-column:last-of-type {
  padding-right: 0;
}

.form-column {
  flex: 1;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}

#form-footer .row {
  align-items: stretch;
}
#form-footer .col-form .button-row {
  width: 100%;
  position: static;
  bottom: 25px;
  margin-bottom: 0;
  margin-top: 25px;
}

.logo-form {
  width: 188px;
  height: 116px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.logo-form svg {
  width: 100%;
  fill: #3b4b49;
}

.text-form {
  text-align: center;
  font-size: 15px;
  line-height: 1.26em;
  color: #b1b3b4;
}

.title-form {
  font-size: 30px;
  line-height: 0.9em;
  text-align: center;
  color: #b1b3b4;
}

button.btn {
  background: transparent 0% no-repeat padding-box;
  border: 1px solid #b1b3b4;
  padding: 10px 18px;
  padding-top: 7px;
  border-radius: 20px;
  text-transform: lowercase;
  line-height: 0.8em;
  width: auto;
  font: normal normal normal 15px/15px "DTLFleischmannT";
  color: #b1b3b4;
  opacity: 1;
  cursor: pointer;
  transition: all 0.2s;
}
button.btn:hover {
  background-color: #b1b3b4;
  color: #3b4b49;
}
button.btn:hover svg {
  fill: #3b4b49;
}
button.btn svg {
  fill: #b1b3b4;
}

input[type=text],
input[type=email],
textarea {
  padding: 8px 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid #b1b3b4;
  box-sizing: border-box;
  background-color: transparent;
  margin-bottom: 8px;
  color: #b1b3b4;
  -webkit-appearance: none;
  border-radius: 0;
  font-family: "DTLFleischmannST regular", serif;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #b1b3b4;
  font-size: 15px;
  text-transform: lowercase;
  font-family: "DTLFleischmannT", sans-serif;
}
input[type=text]:focus, input[type=text]:active,
input[type=email]:focus,
input[type=email]:active,
textarea:focus,
textarea:active {
  outline: none;
  border-bottom: 1px solid #b1b3b4;
}

label {
  text-transform: lowercase;
}

.radios label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
  line-height: 20px;
}
.radios label:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 10px;
  width: 13px;
  height: 13px;
  border: 1px solid #b1b3b4;
  border-radius: 50%;
  background-color: transparent;
  box-sizing: border-box;
}
.radios label:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #b1b3b4;
  opacity: 0;
  transition: opacity 0.2s;
}
.radios input[type=radio] {
  opacity: 0;
  position: absolute;
}
.radios input[type=radio]:checked + label:after {
  opacity: 1;
}

.button-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 25px;
}

form {
  font-size: 15px;
}

.radios label + label {
  margin-left: 16px;
}

table {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.privacy-link {
  font-size: 15px;
  width: 100%;
  text-align: center;
  color: #b1b3b4;
  text-transform: lowercase;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  text-transform: lowercase;
  font-family: "DTLFleischmannT", serif;
  border: none;
  box-shadow: none;
}
.privacy-link:hover {
  color: white;
}

p.error-text {
  text-align: center;
  opacity: 0.7;
}

.thank-you-message {
  position: absolute;
  font-size: 1.5em;
  height: 100%;
}

.thanks {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #b1b3b4;
}

.popup-thanks {
  top: calc(50% + 7vh);
  color: #b1b3b4;
}

.open-button {
  background-color: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  color: #3b4b49;
  font-family: "DTLFleischmannT", sans-serif;
  font-size: 1em;
  cursor: pointer;
}

.legal-popup {
  height: calc(100% - 40px);
}

.content-legal {
  padding: 0px;
  font-size: 15px;
  line-height: 1.2em;
}
.content-legal p + p {
  margin-top: 1em;
}
.content-legal h1,
.content-legal h2,
.content-legal h3,
.content-legal h4 {
  margin-bottom: 1.6em;
  margin-top: 2.5em;
  font-weight: normal;
  color: #b1b3b4;
  font-size: 15px;
  font-family: "DTLFleischmannT", serif;
  text-align: center;
}
.content-legal h2:first-of-type {
  margin-top: 0;
}
.content-legal strong {
  font-weight: normal;
  font-family: "DTLFleischmannT", serif;
}
.content-legal ul li {
  margin-bottom: 0.5em;
}
.content-legal p, .content-legal ul {
  font-family: "DTLFleischmannST regular", serif;
  font-size: 16px;
  color: #b1b3b4;
}
.content-legal p + ul {
  margin-top: 1em;
}
.content-legal a {
  color: #b1b3b4;
}

#credits-popup .legal-container {
  height: 100%;
}

#credits-popup .part-1 {
  text-align: center;
  margin-bottom: 10%;
}
#credits-popup .content-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.credits {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  height: auto;
}
.credits .part-1 {
  text-align: center;
}

#legal-popup {
  padding: 0;
}
#legal-popup .close-btn {
  position: absolute;
  top: 11px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
#legal-popup .close-btn line {
  stroke: #b1b3b4;
}

.close-btn.show-mobile {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.close-btn.show-mobile line {
  stroke: #b1b3b4;
}

.legal-container {
  color: #b1b3b4;
  overflow: auto;
}
.legal-container .content-holder {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 2.5em;
  width: 100%;
  height: 100%;
}

.form-realtor {
  color: #b1b3b4;
}

.form-container {
  height: auto;
  position: relative;
}

.show-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .content-legal h1, .content-legal h2, .content-legal h3, .content-legal h4 {
    margin-bottom: 1.1em;
    margin-top: 2.5em;
    font-weight: normal;
    color: #b1b3b4;
    font-size: 15px;
    font-family: "DTLFleischmannT", serif;
    text-align: center;
  }
}
:root {
  --margin: 3%;
  --fonth2: 28px;
  --fontp: 16px;
  --fonth3: 15px;
  --fonth1: 30px;
  --swiper-pagination-bullet-width: 3px;
  --swiper-pagination-bullet-height: 3px;
  --swiper-pagination-bullet-inactive-color: $color;
  --swiper-pagination-bullet-active-color: $color;
  --swiper-pagination-color: $color;
}

@media screen and (min-width: 2000px) {
  :root {
    --fonth2: 34px;
    --fontp: 19px;
    --fonth3: 18px;
    --fonth1: 36px;
  }
}
body.article header {
  border-bottom: 1px solid #3b4b49;
  z-index: 1000;
}

body.article {
  height: auto;
}

.content.content-article {
  height: auto;
}
.content.content-article section {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #3b4b49;
}
.content.content-article h1 {
  font-size: var(--fonth1);
  line-height: 1.07em;
}
.content.content-article h2 {
  font-size: var(--fonth2);
  line-height: 1.5em;
}
.content.content-article h3 {
  font-size: var(--fonth3);
  line-height: 1em;
}
.content.content-article p + p {
  text-indent: 0.875em;
}

.title-article {
  height: calc(50vh - 32px);
  border-bottom: 1px solid #3b4b49;
}

h1 {
  width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  position: sticky;
  top: 64px;
  font-size: var(--fonth1);
  line-height: 1.07em;
  margin-top: calc(25vh - 32px);
  z-index: 10;
  text-align: center;
  background-color: white;
  color: #3b4b49;
}
h1 br {
  display: none;
}

.border-sticky {
  border-bottom: 1px solid #3b4b49;
  width: 100%;
  height: 1px;
  position: sticky;
  top: 129px;
  margin-top: calc(25vh - 64px);
  z-index: 10;
}

.cover-article {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid #3b4b49;
}
.cover-article picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section.quote {
  min-height: calc(50vh - 32px);
}
section.quote .columns {
  min-height: calc(50vh - 32px);
  display: flex;
  justify-content: center;
  align-items: center;
}
section.quote .blocks-column-quote {
  max-width: 900px;
  width: 70%;
  min-width: 300px;
}
section.quote .quote {
  text-align: center;
  font-family: "Surt", sans-serif;
  padding: 20px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.2em;
}
section.quote .quote blockquote footer {
  margin-top: 5.5em;
}

section.gallerygrid {
  width: 100%;
}

section.gallerygrid .gallerygrid {
  display: flex;
  flex-direction: column;
  padding-top: 3%;
  padding-bottom: 3%;
}
section.gallerygrid .gallerygrid .row {
  display: flex;
}
section.gallerygrid .gallerygrid .row.row-1 .col, section.gallerygrid .gallerygrid .row.row-2 .col {
  flex: 1;
  display: flex;
}
section.gallerygrid .gallerygrid .picture-catpion {
  height: 47px;
  width: 100%;
  display: block;
  font-size: 12px;
  font-family: "DTLFleischmannT", serif;
  text-transform: lowercase;
  padding-top: 7px;
  box-sizing: border-box;
  line-height: 1.25em;
}
section.gallerygrid .gallerygrid .gallery-caption {
  font-size: 12px;
  font-family: "DTLFleischmannT", serif;
  text-transform: lowercase;
  margin-bottom: 47px;
  width: 54%;
}
section.gallerygrid .gallerygrid .gallery-caption strong {
  font-weight: normal;
}
section.gallerygrid .gallerygrid ol {
  list-style-type: none;
  counter-reset: list-counter;
  padding: 0;
  margin: 0;
}
section.gallerygrid .gallerygrid ol li {
  display: flex;
  align-items: flex-start;
}
section.gallerygrid .gallerygrid ol li::before {
  counter-increment: list-counter;
  content: counter(list-counter);
  display: inline-block;
  width: 40px;
  margin-right: 0px;
  text-align: left;
}
section.gallerygrid .gallerygrid .grid-picture {
  position: relative;
  display: block;
  overflow: hidden;
}
section.gallerygrid .gallerygrid .grid-picture picture {
  display: block;
}
section.gallerygrid .gallerygrid .grid-picture picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
section.gallerygrid .gallerygrid .col-1 {
  padding-left: 5%;
  padding-right: 4%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
section.gallerygrid .gallerygrid .col-1 .grid-picture:first-of-type {
  width: 56%;
}
section.gallerygrid .gallerygrid .col-1 .grid-picture:nth-of-type(2) {
  width: 37%;
}
section.gallerygrid .gallerygrid .col-2 {
  justify-content: space-between;
  padding-right: 5%;
  padding-left: 4%;
}
section.gallerygrid .gallerygrid .row-1 .col-2 .grid-picture:first-of-type {
  width: 44%;
  align-self: flex-end;
}
section.gallerygrid .gallerygrid .row-1 .col-2 .grid-picture:nth-of-type(2) {
  width: 37%;
  align-self: flex-start;
}
section.gallerygrid .gallerygrid .row-2 .col-1 .grid-picture {
  width: 37%;
  align-self: flex-end;
}
section.gallerygrid .gallerygrid .row-2 .col-2 {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
section.gallerygrid .gallerygrid .row-2 .col-2 .grid-picture {
  width: 68%;
  align-self: flex-end;
}

section.heading-text {
  min-height: calc(50vh - 32px);
}
section.heading-text div {
  height: 100%;
}
section.heading-text div.blocks {
  height: auto;
  width: 100%;
}
section.heading-text div.columns {
  min-height: calc(50vh - 32px);
  justify-content: center;
  align-items: center;
}
section.heading-text div.column {
  align-items: center;
  display: flex;
  height: 100%;
}
section.heading-text .heading {
  text-align: center;
  width: 100%;
  padding: var(--margin);
}
section.heading-text .text {
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  font-size: var(--fontp);
  line-height: 1.2em;
  font-family: "DTLFleischmannST regular", serif;
}
section.heading-text .text strong {
  text-transform: lowercase;
  font-family: "DTLFleischmannT", serif;
}
section.heading-text .blocks > .text {
  padding: var(--margin);
}

section.image {
  width: 100%;
  height: calc(100vh - 64px);
}
section.image div {
  padding: 0;
  height: 100%;
  box-sizing: border-box;
}
section.image .image {
  width: 100%;
  height: 100%;
}
section.image .image.horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.image .image.vertical {
  padding: 3%;
}
section.image .image.vertical figure {
  height: 100%;
}
section.image .image.vertical img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
section.image figure {
  height: 100%;
}

section.heading-text {
  width: 100%;
}
section.heading-text .columns {
  display: flex;
}
section.heading-text .columns .column {
  flex: 1;
}

section.gallery {
  width: 100%;
  height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}
section.gallery .columns,
section.gallery .column,
section.gallery .gallery,
section.gallery .blocks,
section.gallery .swiper-gallery {
  height: 100%;
}
section.gallery .swiper-gallery {
  height: 100%;
  overflow: visible;
  display: flex;
  align-items: center;
}
section.gallery .swiper-gallery .swiper-wrapper {
  height: 77%;
  width: 100%;
  display: flex;
  align-items: center;
}
section.gallery .swiper-gallery .swiper-slide {
  height: 100%;
  max-height: 100%;
  max-width: 80vw;
  width: auto;
  display: flex;
  padding: 0px 6vw;
  justify-content: center;
  align-items: center;
}
section.gallery .swiper-gallery .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-aspect-ratio: 3/2) {
  section.gallery .swiper-gallery .swiper-slide {
    padding: 0px 3vw;
  }
}
section.gallery .swiper-gallery .swiper-pagination {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 7%;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
section.gallery .swiper-button-next.swiper-button-disabled,
section.gallery .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-pagination-bullet {
  background-color: #3b4b49;
  opacity: 1;
  width: 2px;
  height: 2px;
  margin: 0 12px !important;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.swiper-pagination-bullet-active {
  height: 2px;
  width: 2px;
  border: 4px solid #3b4b49;
}

.form-part-1 button.open-contact.close-btn {
  left: 0;
}

.swiper-button {
  opacity: 0;
  height: 100%;
  top: 0;
  width: 50%;
}
.swiper-button::selection {
  background-color: transparent;
}

.next-chapter {
  background-color: white;
  color: #3b4b49;
  text-align: center;
  padding: 0px;
  box-sizing: border-box;
  position: relative;
  height: calc(50vh - 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.next-chapter a {
  text-decoration: none;
  display: block;
  color: #3b4b49;
}
.next-chapter h2 {
  font-family: "DTLFleischmannT", serif;
  font-size: var(--fonth2);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  text-transform: lowercase;
  line-height: 1.14;
  color: #3b4b49;
  margin-top: 30px;
  max-width: 39em;
}
.next-chapter h3 {
  font-family: "DTLFleischmannT", serif;
  font-size: var(--fonth3);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  text-align: center;
  color: #3b4b49;
  display: inline-block;
  text-transform: lowercase;
}
.next-chapter a,
.next-chapter h2,
.next-chapter h3 {
  transition: color 0.8s;
}

.next-chapter:hover {
  cursor: pointer;
  color: #b1b3b4;
}
.next-chapter:hover a,
.next-chapter:hover h2,
.next-chapter:hover h3 {
  color: #b1b3b4;
}

.next-chapter::before {
  content: "";
  position: absolute;
  bottom: 0;
  /* Part du bas */
  left: 0;
  width: 100%;
  height: 0%;
  /* Départ sans hauteur */
  background-color: #3b4b49;
  z-index: 0;
  /* Derrière le contenu */
  transition: height 0.5s ease-in-out;
  /* Animation fluide */
}

.next-chapter:hover::before {
  height: 100%;
  /* Remplit tout le conteneur */
}

.next-chapter-content {
  position: relative;
}

.next-chapter-cover {
  padding: 0;
  margin: 0;
  height: 60vh;
  background-color: #3b4b49;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.next-chapter-cover picture {
  mix-blend-mode: multiply;
}
.next-chapter-cover img,
.next-chapter-cover picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-past-future {
  background-color: #3b4b49;
  color: #b1b3b4;
}
.page-past-future h1 {
  background-color: #3b4b49;
  color: #b1b3b4;
}
.page-past-future .border-sticky {
  border-bottom: 1px solid #b1b3b4;
}
.page-past-future section {
  border-color: #b1b3b4;
  background-color: #3b4b49;
}
.page-past-future .header-perren {
  background-color: #3b4b49;
  color: #b1b3b4;
  border-bottom: 1px solid #b1b3b4;
}
.page-past-future .header-perren .logo svg {
  fill: #b1b3b4;
}
.page-past-future .header-perren a {
  color: #b1b3b4;
  text-decoration: none;
}
.page-past-future .header-perren a:hover {
  color: white;
}
.page-past-future .header-perren a:hover svg {
  fill: white;
}
.page-past-future h1,
.page-past-future h2,
.page-past-future h3,
.page-past-future h4,
.page-past-future h5,
.page-past-future h6 {
  color: #b1b3b4;
}
.page-past-future .content.content-article section,
.page-past-future .title-article,
.page-past-future .cover-article {
  border-bottom: 1px solid #b1b3b4;
}
.page-past-future button.menu-button {
  border: 1px solid transparent;
  color: #b1b3b4;
}
.page-past-future button.menu-button:hover {
  color: #3b4b49;
  background-color: #b1b3b4;
}
.page-past-future button.open-contact {
  border: 1px solid #b1b3b4;
  color: #b1b3b4;
}
.page-past-future button.open-contact:hover {
  color: #3b4b49;
  background-color: #b1b3b4;
}
.page-past-future .next-chapter {
  background-color: #3b4b49;
  color: #b1b3b4;
}
.page-past-future .next-chapter::before {
  background-color: white;
}
.page-past-future .form-part-1 button.open-contact {
  color: #b1b3b4;
  background-color: transparent;
  border: none;
}

section.text {
  min-height: calc(50vh - 32px);
  text-align: center;
  justify-content: center;
  padding: 0 15px;
  font-family: "DTLFleischmannT regular", serif;
  font-size: 16px;
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.text p + p {
  margin-top: 2.25em;
}

section.text .blocks > .text {
  width: 50%;
  min-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

section.text .blocks-column-text {
  height: 100%;
}

section.text a {
  text-decoration: none;
  color: #3b4b49;
}

section.text a:hover {
  text-decoration: underline;
}

.page-contact .header-perren {
  border-bottom: 1px solid #3b4b49;
}

.introduction-contact {
  position: relative;
  height: calc(50vh - 32px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #3b4b49;
  margin-top: 64px;
  box-sizing: border-box;
}

.introduction-contact h1 {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  position: static;
  top: 0;
  font-size: var(--fonth1);
  line-height: 1.07em;
  margin-top: 0;
  z-index: 10;
}

section.image-text {
  height: calc(100vh - 64px);
}

section.image-text div {
  height: 100%;
}

section.image-text div.blocks {
  height: auto;
  width: 100%;
}

section.image-text div.columns {
  min-height: calc(100vh - 64px);
  justify-content: center;
  align-items: center;
  display: flex;
}

section.image-text div.column {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 1;
}

section.image-text .heading {
  text-align: center;
  width: 100%;
  padding: var(--margin);
}

section.image-text .text {
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.2em;
  font-family: "DTLFleischmannT regular", serif;
}

section.image-text .blocks > .text {
  padding: var(--margin);
}

section.image-text .image {
  width: 100%;
  height: 100%;
}

section.image-text .image.horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section.image-text .image.vertical {
  padding: 3%;
}

section.image-text .image.vertical figure {
  height: 100%;
}

section.image-text .image.vertical img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.image-text figure {
  height: 100%;
}

section.image-text .blocks-column-image .blocks {
  height: 100%;
}

.text strong {
  font-weight: normal;
  font-family: "DTLFleischmannT", serif;
  text-transform: lowercase;
}

section.text-image {
  height: calc(100vh - 64px);
}

section.text-image .columns {
  display: flex;
  height: 100%;
  align-items: center;
}

section.text-image .columns .column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

section.text-image .blocks-column-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.text-text {
  min-height: calc(50vh - 32px);
}

section.text-text div {
  height: 100%;
}

section.text-text div.blocks {
  height: auto;
  width: 100%;
}

section.text-text div.columns {
  min-height: calc(50vh - 32px);
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

section.text-text div.column {
  align-items: flex-start;
  display: flex;
  height: 100%;
  padding: 5%;
  flex: 1;
}

section.text-text div.column h3 {
  margin-bottom: 2.5em;
  font-family: "DTLFleischmannT", serif;
  text-align: center;
}

section.text-text .text {
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.15em;
  font-family: "DTLFleischmannT regular", serif;
}

section.text-text .blocks > .text {
  padding: var(--margin);
}

section.heading {
  min-height: calc(50vh - 32px);
}

section.heading div {
  height: 100%;
  width: 100%;
}

section.heading div.blocks {
  height: auto;
  width: 100%;
}

section.heading div.columns {
  min-height: calc(50vh - 32px);
  justify-content: center;
  align-items: center;
  display: flex;
}

section.heading div.column {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

section.heading .heading {
  text-align: center;
  width: 100%;
  padding: var(--margin);
}

section.heading .text {
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.2em;
  font-family: "DTLFleischmannT regular", serif;
}

section.heading .blocks > .text {
  padding: var(--margin);
}

.content.content-article h3 {
  font-size: var(--fonth3);
  line-height: 1em;
  font-family: "DTLFleischmannT", serif;
  text-align: center;
  margin-bottom: 1.5em;
  margin-top: 0.5em;
}

.page-the-materials-texture-and-technique section.gallery .swiper-gallery .swiper-slide {
  aspect-ratio: unset;
  height: 100%;
  width: 55vw;
  display: flex;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-the-materials-texture-and-technique section.gallery .swiper-gallery .swiper-slide img {
  height: 80%;
}
.page-the-materials-texture-and-technique section.gallery .swiper-gallery .swiper-slide .legend {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: lowercase;
}

.page-the-materials-texture-and-technique section.gallery {
  padding-top: 5%;
}

.page-the-materials-texture-and-technique section.gallery .swiper-gallery .swiper-wrapper {
  height: 77%;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 0%;
  box-sizing: border-box;
}

@media (max-width: 1280px) {
  section.text-text .columns,
  section.text-heading-text .columns,
  section.text-list .columns,
  section.text-image .columns {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  section.heading-text div.columns {
    flex-direction: column;
  }
  .content-info .columns {
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: normal;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    max-width: 1044px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .content-info .columns p + p {
    margin-top: 1em;
  }
  .content-info .columns a {
    color: #3b4b49;
    text-decoration: underline;
  }
  .content-info .columns .text.align-center {
    text-align: center;
    font-size: 17px;
  }
  .content-info section.credits {
    padding: 20px;
    line-height: 1.12;
    letter-spacing: normal;
    text-align: left;
    max-width: 1044px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .content-info section.credits p {
    font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: left;
  }
  body {
    font-size: 18px;
    line-height: 1.15em;
  }
  .open-button {
    cursor: pointer;
  }
  .open-contact {
    font: normal normal normal var(--regularsz)/1.25em "Rauschen A";
  }
  section {
    margin-bottom: 40px;
  }
  .introduction-content,
  section.text {
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: normal;
    text-align: left;
    padding: 20px 20px;
    box-sizing: border-box;
    width: 100%;
  }
  .introduction-content p,
  section.text p {
    font-family: "Remix A";
    width: 100%;
  }
  section.text-text .columns {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
  }
  section.text-text {
    padding: 0px 10px;
  }
  section.quote blockquote {
    width: 100%;
    font-family: "Rauschen A", sans-serif;
    font-size: 21px;
    line-height: 1.13;
    padding: 0 20px;
  }
  section.quote blockquote footer {
    margin-top: 20px;
  }
  section.text-text .column {
    padding: 0;
  }
  .column.column-text + .column.column-text {
    margin-top: 20px;
  }
  section.image-heading h2,
  section.heading-image h2 {
    flex-grow: 1;
    font-size: 21px;
  }
  section.heading-image .column.column-image,
  section.image-heading .column.column-image {
    padding: 0px;
    height: 100%;
    flex: 1;
    box-sizing: border-box;
  }
  .column.column-image picture {
    line-height: 0;
  }
  section.heading-image .columns {
    flex-direction: column-reverse;
  }
  .column.column-heading {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .page-title h1 {
    color: white;
    font-size: 21px;
    line-height: 1.11em;
    max-width: 1000px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .next-chapter h2 {
    font-size: var(--fonth2);
    font-family: "DTLFleischmannT", serif;
  }
  .next-chapter h3 {
    font-size: var(--fonth3);
    font-family: "DTLFleischmannT", serif;
    text-transform: lowercase;
  }
  section .swiper-button {
    display: none;
  }
  section .swiper.swiper-gallery,
  section .swiper-wrapper {
    display: block;
    width: 100%;
    height: auto;
  }
  section .swiper .swiper-slide {
    display: block;
    width: auto;
    height: 100%;
    padding-left: 10vw;
    padding-right: 10vw;
    box-sizing: border-box;
    height: auto;
    margin-bottom: 5px;
    line-height: 1;
  }
  section .swiper .swiper-slide::selection {
    background-color: transparent;
  }
  section .swiper .swiper-slide.hide-xs {
    display: none;
  }
  section .swiper .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
  }
  section.grid .swiper .swiper-slide {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .next-chapter {
    color: white;
    text-align: center;
    padding: 0px;
    box-sizing: border-box;
    position: relative;
    height: 40vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .logo-article svg {
    fill: white;
    width: 100px;
  }
  .grid.image + .grid.image {
    margin-top: -30px;
  }
  section.gallerygrid .gallerygrid .row {
    width: 100%;
    flex-direction: column;
  }
  section.gallerygrid .gallerygrid .gallery-caption {
    padding-left: 3%;
    padding-right: 3%;
    box-sizing: border-box;
    width: 100%;
    line-height: 1.2em;
  }
  section.gallerygrid .gallerygrid .col-1 .grid-picture:first-of-type {
    width: 57%;
  }
  section.gallerygrid .gallerygrid .col-1 {
    padding-left: 3%;
    padding-right: 3%;
  }
  .page-the-materials-texture-and-technique section.gallery {
    height: calc(150vw - 45px);
    padding: 5% 0;
  }
  .page-the-materials-texture-and-technique section.gallery .swiper-gallery {
    height: 100%;
    width: 100%;
  }
  .page-the-materials-texture-and-technique section.gallery .swiper-gallery .swiper-wrapper {
    height: 100%;
  }
  .page-the-materials-texture-and-technique section.gallery .swiper-gallery .swiper-slide {
    aspect-ratio: unset;
    height: 100%;
    width: 70vw;
    padding: 0 10px;
  }
  .page-the-materials-texture-and-technique section.gallery .swiper-gallery .swiper-slide img {
    height: auto;
  }
  .page-the-materials-texture-and-technique section.gallery .swiper-gallery .swiper-slide .legend {
    height: 10%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-transform: lowercase;
    font-size: 14px;
    line-height: 1.15em;
    text-align: center;
    padding: 10px;
  }
  .page-the-materials-texture-and-technique section.grid .swiper .swiper-slide {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-the-materials-texture-and-technique section.grid .swiper .swiper-slide:first-of-type {
    padding-top: 0;
  }
  .page-the-materials-texture-and-technique section.grid .swiper .swiper-slide:last-of-type {
    padding-bottom: 0;
  }
  .page-the-materials-texture-and-technique section.grid .swiper .swiper-slide:first-of-type {
    padding-top: 0%;
  }
  .page-the-materials-texture-and-technique section.gallery {
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .text-image .columns {
    flex-direction: column-reverse;
  }
  .text-image .columns .column, .text-image .columns .blocks {
    width: 100%;
  }
  .text-image ol {
    width: 100%;
    font-size: 12px;
    list-style: decimal;
    padding-left: 26px;
    line-height: 1.15em;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .content.content-article section {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #3b4b49;
  }
  section.gallerygrid .gallerygrid ol li::before {
    width: 20px;
    flex: none;
  }
  .swiper-pagination-bullet {
    border: 1px solid transparent;
    margin: 0 8px !important;
  }
  .swiper-pagination-bullet-active {
    border: 2px solid #3b4b49;
  }
  .introduction-contact {
    position: relative;
    height: calc(50vh - 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #3b4b49;
    margin-top: 0px;
    box-sizing: border-box;
  }
  .page-past-future button.open-contact {
    border: none;
  }
  .legal-mentions .content-legal h3:first-of-type {
    margin-top: 0;
  }
}
.privacy-policy .part-1 h2:first-of-type:after, .legal-mentions .part-1 h2:first-of-type:after {
  display: block;
  content: " ";
  border-bottom: 1px solid #b1b3b4;
  bottom: 0;
  left: -15%;
  width: 130%;
  position: absolute;
}

.content-legal {
  padding: 0 15px;
  padding-top: 0;
  min-height: 40dvh;
}

.content-legal h3:first-of-type {
  padding-top: 0;
  margin-top: 0;
}

.privacy-policy .part-1 h2:first-of-type, .legal-mentions .part-1 h2:first-of-type {
  min-height: 50dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  margin-bottom: 1.15em;
}
.privacy-policy .part-1 h2:first-of-type:after, .legal-mentions .part-1 h2:first-of-type:after {
  display: block;
  content: " ";
  border-bottom: 1px solid #b1b3b4;
  bottom: 0;
  left: -15%;
  width: 130%;
  position: absolute;
}

.credits .part-1 {
  min-height: 50dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  margin-bottom: 1.15em;
  flex-direction: column;
}
.credits .part-1:after {
  display: block;
  content: " ";
  border-bottom: 1px solid #b1b3b4;
  bottom: 0;
  left: -15%;
  width: 130%;
  position: absolute;
}

.hide-mobile {
  display: block;
}

.show-mobile, .show-xs {
  display: none;
}

.hide-mobile-flex {
  display: flex;
}

@media (max-width: 768px) {
  :root {
    --margin: 3%;
    --fonth2: 21px;
    --fontp: 16px;
    --fonth3: 15px;
    --fonth1: 24px;
    --swiper-pagination-bullet-width: 3px;
    --swiper-pagination-bullet-height: 3px;
    --swiper-pagination-bullet-inactive-color: $color;
    --swiper-pagination-bullet-active-color: $color;
    --swiper-pagination-color: $color;
    --margin: 24px;
    line-height: 1.15em;
  }
  .hide-mobile, .hide-xs {
    display: none;
  }
  .hide-mobile-flex {
    display: none;
  }
  .show-mobile, .show-xs {
    display: block;
  }
  .popup-title {
    padding: 0 15px;
    margin-top: 1px;
    padding-top: 14px;
  }
  section {
    margin-bottom: 0;
  }
  .header-perren {
    display: flex;
    flex-direction: row;
    position: sticky;
    z-index: 2000;
    top: 0;
  }
  .site-title a {
    padding: 0 5px;
  }
  .header-perren .col-menu {
    flex: auto;
  }
  .home-introduction {
    margin-bottom: 0;
  }
  .home-introduction .columns {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-introduction .column {
    width: 100%;
  }
  .home-introduction .text-intro {
    width: 100%;
    padding: 20px;
    font-size: 21px;
  }
  .home-introduction .title-intro {
    width: 100%;
    font-family: "Surt";
    font-size: 12px;
    text-align: center;
    padding: 5%;
    height: 33vh;
    display: flex;
    align-items: center;
    line-height: 1.15em;
  }
  .article.twoColumnsPictureLeft {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  .article.twoColumnsPictureLeft .column {
    width: 100%;
  }
  .article.twoColumnsPictureRight .picture,
  .article.twoColumnsPictureLeft .picture {
    height: auto;
    line-height: 0;
  }
  .article.twoColumnsPictureRight .text,
  .article.twoColumnsPictureLeft .text {
    padding: 20px;
    color: #b1b3b4;
    display: block;
    justify-content: space-between;
    height: auto;
  }
  .article.twoColumnsPictureRight,
  .article.twoColumnsPictureLeft {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
  .article.twoColumnsPictureRight {
    flex-direction: column-reverse;
  }
  .article.twoColumnsPictureRight h2,
  .article.twoColumnsPictureLeft h2 {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }
  .article.twoColumnsPictureRight .column,
  .article.twoColumnsPictureLeft .column {
    width: 100%;
  }
  #form-footer .row .col-4 {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    min-height: 0;
    position: relative;
  }
  #form-footer .row {
    width: 100%;
    display: block;
  }
  #form-footer .row .col-4:after {
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    right: 10%;
    top: unset;
    bottom: 0;
    border-left: none;
    border-bottom: 1px solid #b1b3b4;
  }
  #form-footer .col-description {
    font-size: 21px;
    text-align: center;
  }
  .article {
    height: auto;
    width: 100%;
    position: relative;
  }
  .link {
    top: 60px;
  }
  .contact-section {
    min-height: calc(50vh - 64px);
    border-bottom: none;
    display: flex;
    flex-direction: column;
    padding: 5%;
  }
  .contact-section a {
    border-bottom: none;
  }
  .show-mobile {
    display: block;
  }
  .contact-holder.link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .contact-holder.link a {
    margin-top: 2.5em;
  }
  .privacy-link.open-button {
    position: static;
    bottom: 10px;
    font-size: 15px;
    width: 100%;
    text-align: center;
    color: #b1b3b4;
    text-transform: lowercase;
    margin-top: 2.5em;
  }
  .form-columns.flex-end .form-column {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex: none;
  }
  .col-form .button-row {
    width: 100%;
    position: static;
    margin-bottom: 2.5em;
    margin-top: 3em;
  }
  ul.menu-list li a {
    font-size: 24px;
  }
  .footer-menu .privacy-link.open-button {
    margin-top: 0;
  }
  ul.menu-list {
    min-height: calc(100vh - 104px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    list-style-type: none;
    padding-left: 20px;
    padding-right: 20px;
  }
  h1 {
    width: 100%;
    height: 45px;
    top: 45px;
    font-size: var(--fonth1);
    margin-top: calc(25vh - 22px);
    z-index: 10;
    padding: 20px;
    position: sticky;
    text-align: center;
  }
  .border-sticky {
    top: 90px;
    margin-top: calc(25vh - 22px);
    z-index: 10;
    position: static;
  }
  section.heading-text .columns .column.blocks-column-heading {
    flex: 1;
    width: 100%;
    height: 25vh;
    border-bottom: 1px solid #3b4b49;
    display: flex;
    flex: none;
    justify-content: center;
    align-items: center;
  }
  section.image .image.vertical img {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  section.image {
    width: 100%;
    height: auto;
  }
  section.quote .blocks-column-quote {
    max-width: 900px;
    width: 100%;
    min-width: 300px;
  }
  section.quote blockquote {
    width: 100%;
    font-family: "Rauschen A", sans-serif;
    font-size: 12px;
    line-height: 1.15em;
    padding: 0 20px;
  }
  section.quote .quote blockquote footer {
    margin-top: 3.5em;
  }
  .grid.image + .grid.image {
    margin-top: 0;
  }
  section.image figure {
    line-height: 0;
  }
  section.gallery .swiper-gallery .swiper-slide img {
    height: auto;
    width: 100%;
    max-width: none;
  }
  section.gallery {
    height: calc(100vh - 45px);
  }
  .next-chapter {
    background-color: #3b4b49;
  }
  .next-chapter h3 {
    font-size: var(--fonth3);
    color: #fff;
  }
  .next-chapter h2 {
    color: #fff;
  }
  .popup-content {
    width: 100%;
    padding: 15px;
    border-radius: 0px;
    position: relative;
    min-width: 0;
    max-height: unset;
    min-height: 100%;
  }
  section.gallery .swiper-gallery .swiper-wrapper {
    height: auto;
    width: 100%;
    max-height: none;
    display: block;
    aspect-ratio: auto;
  }
  section.grid .swiper .swiper-slide {
    height: auto;
    width: 100%;
    max-width: none;
    margin-top: 0;
    object-fit: unset;
    padding: 0px;
    margin-bottom: 0px;
    padding: 1.5% 3%;
  }
  section.grid .swiper .swiper-slide:last-of-type {
    margin-bottom: 0;
    padding-bottom: 3%;
  }
  section.grid .swiper .swiper-slide:first-of-type {
    padding-top: 3%;
  }
  section.gallery {
    height: auto;
  }
  .article.twoColumnsPictureRight .text a, .article.twoColumnsPictureLeft .text a {
    padding: 15px;
  }
  .introduction h1 {
    text-align: center;
  }
  .introduction h1 br {
    display: block;
  }
  .loc {
    display: none;
  }
  .popup {
    z-index: 100000;
  }
  .contact-holder h2 {
    font-size: 36px;
    line-height: 10vh;
    text-align: center;
    color: #b1b3b4;
    transition: all 0.3s ease;
  }
  #form-footer .col-4.col.col-description {
    height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 25px;
    padding-top: 50px;
    box-sizing: border-box;
    position: relative;
  }
  .popup-content .form-container {
    padding-top: 0px;
    overflow-x: hidden;
  }
  .popup-content button.open-contact.close-btn {
    top: 0px;
  }
  .popup-content button.close-btn.show-mobile {
    top: 14px;
    z-index: 10000;
  }
  .cover-article picture img {
    width: 100%;
    height: auto;
    object-fit: none;
    object-position: center;
    line-height: 0;
  }
  .cover-article {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-bottom: 1px solid #3b4b49;
    line-height: 0;
  }
  .page-past-future .content.content-article section, .page-past-future .title-article, .page-past-future .cover-article {
    border-bottom: 1px solid #b1b3b4;
    line-height: 0;
  }
  .page-contact section.text .blocks-column-text {
    height: 100%;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
  }
  .page-contact section.text {
    font-size: 14px;
    line-height: 1.15em;
    text-align: center;
  }
  .page-contact section.text .blocks > .text {
    width: 100%;
    min-width: 0;
  }
  .page-contact .content.content-article section {
    border-bottom: 0;
  }
  .contact-holder.link .discover-link {
    margin-left: 1em;
    margin-top: 4vh;
  }
  .form-columns .form-column:first-of-type {
    padding-left: 0;
    padding-right: 0;
  }
  .form-part-2 {
    min-height: 250px;
    padding-top: 25px;
    padding-bottom: 30px;
    height: auto;
  }
  button.open-contact {
    border: none;
  }
  .sticky-holder {
    height: 100%;
  }
  .privacy-policy .part-1 h2:first-of-type:after, .legal-mentions .part-1 h2:first-of-type:after {
    display: block;
    content: " ";
    border-bottom: 1px solid #b1b3b4;
    bottom: 0;
    left: -30px;
    width: calc(100% + 60px);
    position: absolute;
  }
  .credits .part-1:after {
    display: block;
    content: " ";
    border-bottom: 1px solid #b1b3b4;
    bottom: 0;
    left: -15px;
    width: calc(100% + 30px);
    position: absolute;
  }
  .privacy-policy .part-1 h2:first-of-type, .legal-mentions .part-1 h2:first-of-type {
    min-height: calc(50dvh - 15px);
  }
  .credits .part-1 {
    min-height: calc(50dvh - 15px);
  }
  .menu-holder {
    height: auto;
    width: 100%;
    max-height: none;
  }
  .side-menu, .popup {
    width: 100%;
    overflow-x: hidden;
  }
}/*# sourceMappingURL=index.css.map */