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

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

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

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

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

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

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

html, body {
  overflow-x: hidden;
}

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

* {
  scrollbar-width: none;
}

:root {
  --FS12: calc(15 * 0.0555555556rem);
  --LH12: calc(15/12);
  --FS18: calc(18 * 0.0555555556rem);
  --LH18: calc(22/18);
  --FS20: calc(20 * 0.0555555556rem);
  --LH20: calc(22/20);
  --FS22: calc(22 * 0.0555555556rem);
  --LH22: calc(26/22);
  --FS28: calc(28 * 0.0555555556rem);
  --LH28: calc(31/28);
  --FS30: calc(30 * 0.0555555556rem);
  --LH30: calc(32/30);
  --FS50: calc(50 * 0.0555555556rem);
  --LH50: calc(50/50);
  --FS70: calc(70 * 0.0555555556rem);
  --LH70: calc(74/70);
  --FS90: calc(90 * 0.0555555556rem);
  --LH90: calc(79/90);
  --FS180: calc(180 * 0.0555555556rem);
  --LH180: calc(150/180);
}

:root {
  --GRID_MARGIN: calc(25 * 0.0555555556rem);
  --GRID_GUTTER: calc(25 * 0.0555555556rem);
  --HEADER_HEIGHT: calc(42 * 0.0555555556rem);
  --FOOTER_HEIGHT: calc(102 * 0.0555555556rem);
  --5: calc(5 * 0.0555555556rem);
  --10: calc(10 * 0.0555555556rem);
  --15: calc(15 * 0.0555555556rem);
  --20: calc(20 * 0.0555555556rem);
  --30: calc(30 * 0.0555555556rem);
  --40: calc(40 * 0.0555555556rem);
  --60: calc(60 * 0.0555555556rem);
  --65: calc(65 * 0.0555555556rem);
  --72: calc(72 * 0.0555555556rem);
  --100: calc(100 * 0.0555555556rem);
  --152: calc(152 * 0.0555555556rem);
  --420: calc(420 * 0.0555555556rem);
  --12: calc(12 * 0.0555555556rem);
  --50: calc(50 * 0.0555555556rem);
}

#main-grid {
  display: grid;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  z-index: 10000;
  pointer-events: none;
}
#main-grid .col {
  height: 100%;
  grid-column-end: span 1;
  background-color: rgba(0, 255, 255, 0.1);
}

html {
  font-family: "Raleway Regular";
  font-size: 18px;
  line-height: normal;
  background-color: #FFFFFF;
  visibility: hidden;
}

body {
  font-size: var(--FS18);
  line-height: 1;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  color: #FFFFFF;
  z-index: 1000;
  mix-blend-mode: difference;
}
header.band {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  mix-blend-mode: unset;
  transition: all ease-in-out 500ms;
}
header.band .logo svg path {
  fill: #000000 !important;
  transition: all ease-in-out 500ms;
}
header #header-menu {
  display: flex;
  justify-content: space-between;
  padding: var(--15) calc(var(--GRID_MARGIN) * 1.8);
  box-sizing: border-box;
}
header #header-menu .logo svg {
  display: block;
  width: var(--65);
  height: auto;
}
header #header-menu .logo svg path {
  fill: #FFFFFF;
}
header #header-menu .right {
  display: flex;
}
header #header-menu #main-menu,
header #header-menu #lang-switch {
  display: flex;
  align-items: center;
  font-family: "Right Grotesk Fine";
  font-size: var(--FS18);
  line-height: 1;
  letter-spacing: 0.12em;
}
header #header-menu #main-menu a,
header #header-menu #lang-switch a {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: var(--72);
}
header #header-menu #main-menu a.sel, header #header-menu #main-menu a:hover,
header #header-menu #lang-switch a.sel,
header #header-menu #lang-switch a:hover {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
header #header-menu #main-menu#lang-switch,
header #header-menu #lang-switch#lang-switch {
  margin-left: var(--72);
}
header #header-menu #main-menu#lang-switch a.sel,
header #header-menu #lang-switch#lang-switch a.sel {
  display: none;
}

footer {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--GRID_GUTTER);
  padding: var(--20) var(--GRID_MARGIN);
  align-items: end;
  font-family: "Right Grotesk Fine";
  font-size: var(--FS18);
  line-height: var(--LH18);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 10;
}
footer .address {
  grid-column-end: span 3;
  font-weight: bold;
}
footer #footer-menu {
  grid-column-end: span 2;
  grid-column-start: 5;
}
footer #footer-menu a {
  display: block;
  text-transform: uppercase;
  text-decoration: none;
}
footer #footer-menu a:hover {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
footer .mention {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  grid-column-end: span 4;
  grid-column-start: 9;
}
footer .mention a {
  text-decoration: none;
}
footer .mention a:hover {
  text-decoration: underline;
}
footer.sticky {
  position: sticky;
  bottom: 0;
  margin-top: calc(0svh + var(--computed-margin)) !important;
  z-index: 100;
}

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

iframe {
  width: 100%;
  height: 100%;
}

.textarea p:not(:last-child),
.textarea ul:not(:last-child) {
  margin-bottom: 1em;
}
.textarea em {
  font-family: "Raleway Italic";
  font-style: italic;
}
.textarea em strong {
  font-family: "Raleway Medium Italic";
}
.textarea strong {
  font-family: "Raleway Medium";
}
.textarea strong em {
  font-family: "Raleway Medium Italic";
  font-style: italic;
}
.textarea span.align-left,
.textarea span.align-center,
.textarea span.align-right,
.textarea span.align-justify {
  display: block;
}
.textarea span.align-left {
  text-align: left;
}
.textarea span.align-center {
  text-align: center;
}
.textarea span.align-right {
  text-align: right;
}
.textarea span.align-justify {
  text-align: justify;
}

h2 {
  font-family: "Right Grotesk Wide";
  font-size: var(--FS90);
  line-height: var(--LH90);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn {
  font-family: "Right Grotesk Fine";
  font-size: var(--FS18);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  width: fit-content;
  padding: var(--20) var(--30);
  box-sizing: border-box;
  border: 1px solid #000000;
  border-radius: 10em;
  cursor: pointer;
}
.btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.svg-btn {
  display: block;
  mix-blend-mode: difference;
  cursor: pointer;
}
.svg-btn svg {
  display: block;
  width: var(--60);
  height: auto;
}
.svg-btn svg circle, .svg-btn svg line, .svg-btn svg path {
  fill: none;
  stroke: white;
  stroke-width: 1;
}
.svg-btn svg path {
  stroke-width: 1.5;
}
.svg-btn:hover {
  mix-blend-mode: unset;
}
.svg-btn:hover svg circle {
  fill: #000000;
  stroke: #000000;
}
.svg-btn:hover svg line, .svg-btn:hover svg path {
  stroke: #FFFFFF;
}

#arrow-up {
  position: fixed;
  right: calc(var(--GRID_MARGIN) * 2);
  bottom: calc(var(--GRID_MARGIN) * 1);
  transform: rotate(-90deg);
}

#cookie-banner {
  background-color: #000000;
  color: #FFFFFF;
  position: fixed;
  z-index: 1000;
  bottom: calc(var(--GRID_MARGIN));
  right: calc(var(--GRID_MARGIN));
  width: 500px;
  font-size: var(--FS12);
  line-height: var(--LH12);
  padding: var(--20);
  box-sizing: border-box;
  z-index: 10000;
}
#cookie-banner.hide {
  display: none;
}
#cookie-banner .description {
  margin-bottom: var(--20);
}
#cookie-banner #save-cookies {
  display: block;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  font-size: var(--FS12);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  padding: var(--10);
  margin-top: var(--20);
}
#cookie-banner #save-cookies:hover {
  background-color: #FFFFFF;
  color: #000000;
}
#cookie-banner .list .cookie {
  display: flex;
  align-items: center;
  margin-bottom: var(--10);
}
#cookie-banner .list .cookie:last-child {
  margin-bottom: 0;
}
#cookie-banner .list .cookie .name {
  width: var(--100);
}
#cookie-banner .list .cookie .desc {
  color: rgb(0, 255, 0);
}
#cookie-banner .list .cookie .checkbox {
  display: block;
  width: var(--15);
  height: var(--15);
  border: 1px solid #FFFFFF;
  cursor: pointer;
}
#cookie-banner .list .cookie .checkbox.checked {
  background-color: #FFFFFF;
}

#cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--15);
  height: var(--15);
  border-radius: 50%;
  pointer-events: none;
  background-color: #F84512;
  color: #F84512;
  font-family: "Right Grotesk Fine";
  font-size: var(--FS18);
  line-height: var(--LH18);
  letter-spacing: 0.12em;
  z-index: 9999;
  font-weight: bold;
}
#cursor .title {
  text-transform: uppercase;
}
#cursor div {
  white-space: nowrap;
  margin-top: calc(var(--15));
  pointer-events: none;
}

#section-cover .bottom-right {
  position: absolute;
  bottom: calc(var(--GRID_MARGIN));
  right: calc(var(--GRID_MARGIN) * 2);
  display: flex;
  align-items: center;
  width: calc(34 * 0.0555555556rem);
  height: calc(32 * 0.0555555556rem);
  cursor: pointer;
}
#section-cover .bottom-right .sound-on {
  display: none;
}
#section-cover .bottom-right svg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: difference;
}
#section-cover .bottom-right svg path {
  fill: #FFFFFF;
}

.template-page-home {
  overflow: visible;
}
.template-page-home header {
  opacity: 0;
  pointer-events: none;
  transition: opacity ease-in-out 250ms;
}
.template-page-home header.visible {
  pointer-events: initial;
  opacity: 1;
}
.template-page-home section {
  position: sticky !important;
  bottom: 0;
  min-height: 100svh;
  margin-top: calc(var(--computed-margin)) !important;
}
.template-page-home section:nth-child(2) {
  top: 0;
  bottom: unset;
  margin-top: 0 !important;
}
.template-page-home section:nth-child(1) {
  z-index: 1;
}
.template-page-home section:nth-child(2) {
  z-index: 2;
}
.template-page-home section:nth-child(3) {
  z-index: 3;
}
.template-page-home section:nth-child(4) {
  z-index: 4;
}
.template-page-home section:nth-child(5) {
  z-index: 5;
}
.template-page-home section:nth-child(6) {
  z-index: 6;
}
.template-page-home section:nth-child(7) {
  z-index: 7;
}
.template-page-home section:nth-child(8) {
  z-index: 8;
}
.template-page-home section:nth-child(9) {
  z-index: 9;
}
.template-page-home section:nth-child(10) {
  z-index: 10;
}
.template-page-home section:nth-child(11) {
  z-index: 11;
}
.template-page-home section:nth-child(12) {
  z-index: 12;
}
.template-page-home section:nth-child(13) {
  z-index: 13;
}
.template-page-home section:nth-child(14) {
  z-index: 14;
}
.template-page-home section:nth-child(15) {
  z-index: 15;
}
.template-page-home section:nth-child(16) {
  z-index: 16;
}
.template-page-home section:nth-child(17) {
  z-index: 17;
}
.template-page-home section:nth-child(18) {
  z-index: 18;
}
.template-page-home section:nth-child(19) {
  z-index: 19;
}
.template-page-home section:nth-child(20) {
  z-index: 20;
}
.template-page-home #section-cover {
  height: 100svh;
}
.template-page-home #section-cover picture {
  height: 100%;
}
.template-page-home #section-cover h2 {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  text-align: center;
  color: #B7552D;
  opacity: 0;
  transition: opacity ease-in-out 500ms;
  font-family: "Editorial New Light";
  line-height: 1;
  text-transform: unset;
}
.template-page-home #section-cover .btn {
  position: absolute;
  left: 50%;
  bottom: var(--65);
  transform: translateX(-50%);
  border-color: #B7552D;
  color: #B7552D;
  opacity: 0;
  transition: opacity ease-in-out 500ms;
}
.template-page-home #section-cover .btn:hover {
  background-color: #B7552D;
  color: #FFFFFF;
}
.template-page-home #section-cover.visible h2, .template-page-home #section-cover.visible .btn {
  opacity: 1;
}
.template-page-home #section-cover .bottom-right svg {
  mix-blend-mode: unset;
}
.template-page-home #section-cover .bottom-right svg path {
  fill: #B7552D;
}
.template-page-home #section-chapo {
  display: flex;
  padding: var(--72) calc(var(--GRID_MARGIN) + var(--COLUMN_WIDTH) + var(--GRID_GUTTER));
  box-sizing: border-box;
  color: #000000;
  background-color: #FFFFFF;
  height: 200svh;
  padding-top: calc((100svh - var(--h2-height)) / 2);
  box-sizing: border-box;
}
.template-page-home #section-chapo h2 {
  position: sticky !important;
  top: calc((100svh - var(--h2-height)) / 2);
  height: fit-content;
  display: block;
  width: 100%;
  text-align: center;
  font-size: var(--FS90);
  line-height: var(--LH90);
}
.template-page-home #section-chapo .group.hidden .word {
  transform: translateY(150%);
}
.template-page-home #section-chapo .word-container {
  display: inline-block;
  overflow: hidden;
  height: 1em;
  height: 1.1em;
}
.template-page-home #section-chapo .word-container .word {
  display: inline-block;
  transition: transform ease-in-out 400ms;
  transform: translateY(0.1em);
}
.template-page-home #section-chapo .word-container:nth-child(1) .word {
  transition-delay: 40ms;
}
.template-page-home #section-chapo .word-container:nth-child(2) .word {
  transition-delay: 80ms;
}
.template-page-home #section-chapo .word-container:nth-child(3) .word {
  transition-delay: 120ms;
}
.template-page-home #section-chapo .word-container:nth-child(4) .word {
  transition-delay: 160ms;
}
.template-page-home #section-chapo .word-container:nth-child(5) .word {
  transition-delay: 200ms;
}
.template-page-home #section-chapo .word-container:nth-child(6) .word {
  transition-delay: 240ms;
}
.template-page-home #section-chapo .word-container:nth-child(7) .word {
  transition-delay: 280ms;
}
.template-page-home #section-chapo .word-container:nth-child(8) .word {
  transition-delay: 320ms;
}
.template-page-home #section-chapo .word-container:nth-child(9) .word {
  transition-delay: 360ms;
}
.template-page-home #section-chapo .word-container:nth-child(10) .word {
  transition-delay: 400ms;
}
.template-page-home #section-chapo .word-container:nth-child(11) .word {
  transition-delay: 440ms;
}
.template-page-home #section-chapo .word-container:nth-child(12) .word {
  transition-delay: 480ms;
}
.template-page-home #section-chapo .word-container:nth-child(13) .word {
  transition-delay: 520ms;
}
.template-page-home #section-chapo .word-container:nth-child(14) .word {
  transition-delay: 560ms;
}
.template-page-home #section-chapo .word-container:nth-child(15) .word {
  transition-delay: 600ms;
}
.template-page-home #section-chapo .word-container:nth-child(16) .word {
  transition-delay: 640ms;
}
.template-page-home #section-chapo .word-container:nth-child(17) .word {
  transition-delay: 680ms;
}
.template-page-home #section-chapo .word-container:nth-child(18) .word {
  transition-delay: 720ms;
}
.template-page-home #section-chapo .word-container:nth-child(19) .word {
  transition-delay: 760ms;
}
.template-page-home #section-chapo .word-container:nth-child(20) .word {
  transition-delay: 800ms;
}
.template-page-home #section-reviews {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.template-page-home #section-reviews picture {
  position: absolute;
  height: 100%;
}
.template-page-home #section-reviews .headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: var(--100) var(--GRID_MARGIN);
  padding-bottom: var(--20);
  padding-top: calc(var(--72) + var(--HEADER_HEIGHT));
  box-sizing: border-box;
  font-family: "Editorial New Light";
  font-size: var(--FS30);
  line-height: var(--LH30);
  letter-spacing: 0.02em;
  text-align: center;
  color: #FFFFFF;
  z-index: 1;
}
.template-page-home #section-reviews .headline > div {
  text-transform: uppercase;
  font-family: "Right Grotesk Wide";
  font-size: var(--FS50);
  line-height: 1;
  letter-spacing: unset;
  margin-bottom: var(--10);
}
.template-page-home #section-reviews .reviews {
  padding: var(--GRID_MARGIN) calc(var(--GRID_MARGIN) + var(--60) + var(--GRID_GUTTER));
  box-sizing: border-box;
  z-index: 1;
  position: relative;
}
.template-page-home #section-reviews .reviews.mobile {
  display: none;
}
.template-page-home #section-reviews .reviews .carrousel {
  position: relative;
  width: 100%;
  min-height: var(--min-height-review);
  overflow: hidden;
}
.template-page-home #section-reviews .reviews .carrousel .carrousel-inner {
  position: relative;
  width: calc(calc((var(--COLUMN_WIDTH) * 12 + var(--GRID_GUTTER) * 11 - var(--60) * 2 - var(--GRID_GUTTER) * 5) / 4) + var(--GRID_GUTTER));
  overflow-x: visible;
  height: 100%;
}
.template-page-home #section-reviews .reviews .carrousel .carrousel-inner .carrousel-container {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--GRID_GUTTER);
  height: 100%;
  align-items: flex-end;
}
.template-page-home #section-reviews .reviews .carrousel .carrousel-inner .carrousel-container > * {
  width: calc((var(--COLUMN_WIDTH) * 12 + var(--GRID_GUTTER) * 11 - var(--60) * 2 - var(--GRID_GUTTER) * 5) / 4);
  flex-shrink: 0;
}
.template-page-home #section-reviews .reviews .arrow-left,
.template-page-home #section-reviews .reviews .arrow-right {
  position: absolute;
  left: calc(var(--GRID_MARGIN));
  mix-blend-mode: unset;
  bottom: calc(var(--min-height-review) / 2 + var(--GRID_MARGIN));
  transform: translateY(50%);
}
.template-page-home #section-reviews .reviews .arrow-left.arrow-right,
.template-page-home #section-reviews .reviews .arrow-right.arrow-right {
  left: unset;
  right: calc(var(--GRID_MARGIN));
}
.template-page-home #section-reviews .reviews .arrow-left.arrow-left,
.template-page-home #section-reviews .reviews .arrow-right.arrow-left {
  transform: translateY(50%) rotate(180deg);
}
.template-page-home #section-reviews .reviews .arrow-left.hide,
.template-page-home #section-reviews .reviews .arrow-right.hide {
  display: none;
}
.template-page-home #section-reviews .reviews .arrow-left svg circle, .template-page-home #section-reviews .reviews .arrow-left svg line, .template-page-home #section-reviews .reviews .arrow-left svg path,
.template-page-home #section-reviews .reviews .arrow-right svg circle,
.template-page-home #section-reviews .reviews .arrow-right svg line,
.template-page-home #section-reviews .reviews .arrow-right svg path {
  fill: none;
  stroke: #B7552D;
  stroke-width: 1;
}
.template-page-home #section-reviews .reviews .arrow-left:hover svg circle,
.template-page-home #section-reviews .reviews .arrow-right:hover svg circle {
  fill: #B7552D;
  stroke: #B7552D;
}
.template-page-home #section-reviews .reviews .arrow-left:hover svg line, .template-page-home #section-reviews .reviews .arrow-left:hover svg path,
.template-page-home #section-reviews .reviews .arrow-right:hover svg line,
.template-page-home #section-reviews .reviews .arrow-right:hover svg path {
  stroke: #FFFFFF;
}
.template-page-home #section-reviews .reviews .review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--20);
  box-sizing: border-box;
  text-decoration: none;
  background-color: rgba(217, 217, 217, 0.8);
  border-radius: 1em;
  height: fit-content;
  min-height: var(--min-height-review);
}
.template-page-home #section-reviews .reviews .review:has(.rest) {
  cursor: pointer;
}
.template-page-home #section-reviews .reviews .review .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--30);
  flex-grow: 1;
}
.template-page-home #section-reviews .reviews .review .head h3 {
  font-family: "Right Grotesk Wide";
  font-size: var(--FS20);
  line-height: var(--LH20);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 1em;
}
.template-page-home #section-reviews .reviews .review .head h4 {
  font-family: "Right Grotesk Fine";
  font-size: var(--FS18);
  line-height: var(--LH18);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 1em;
}
.template-page-home #section-reviews .reviews .review .head:has(h3):has(h4) h4 {
  margin-top: var(--5);
}
.template-page-home #section-reviews .reviews .review .text {
  font-family: "Editorial New Light";
  letter-spacing: 0.02em;
  font-size: var(--FS22);
  line-height: var(--LH22);
}
.template-page-home #section-reviews .reviews .review .text .rest {
  display: inline-block;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}
.template-page-home #section-reviews .reviews .review .name {
  display: flex;
  justify-content: space-between;
  font-family: "Raleway Medium";
  font-size: var(--FS12);
  line-height: var(--LH12);
  margin-top: 1em;
}
.template-page-home #section-reviews .reviews .review .see {
  font-family: "Raleway Medium";
  font-size: var(--FS12);
  line-height: var(--LH12);
  text-decoration: underline;
  white-space: nowrap;
  width: fit-content;
  align-self: flex-end;
  margin-top: var(--5);
}
.template-page-home #section-reviews .reviews .review.active .text .ellipsis {
  display: none;
}
.template-page-home #section-reviews .reviews .review.active .text .rest {
  opacity: 1;
}
.template-page-home #section-reviews .reviews .review.rest-inline .text .rest {
  display: inline;
}
.template-page-home #section-bio {
  pointer-events: none;
  padding-top: 25svh;
}
.template-page-home #section-bio .bio {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 100%;
  width: 50%;
  padding: calc(var(--GRID_MARGIN) * 2) var(--GRID_MARGIN);
  box-sizing: border-box;
  font-family: "Right Grotesk Wide";
  letter-spacing: 0.02em;
  font-size: var(--FS20);
  line-height: var(--LH22);
  background-color: #B7552D;
  pointer-events: initial;
}
.template-page-home #section-bio .bio .cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: calc(var(--GRID_MARGIN) * 2);
}
.template-page-home #section-portrait {
  padding-top: 25svh;
}
.template-page-home #section-portrait picture {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  padding: calc(var(--GRID_MARGIN) * 2) var(--GRID_MARGIN);
  box-sizing: border-box;
  margin-left: auto;
  background-color: #121212;
}
.template-page-home #section-portrait picture img {
  width: 100%;
  height: auto;
}
.template-page-home #section-related-projects {
  padding: var(--72) var(--GRID_MARGIN);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFFFFF;
}
.template-page-home #section-contact {
  background-color: #FFFFFF;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--GRID_GUTTER);
  padding: calc(var(--72) + var(--HEADER_HEIGHT)) var(--GRID_MARGIN);
  box-sizing: border-box;
}
.template-page-home #section-contact h2 {
  display: block;
  grid-column-end: span 5;
}

.template-page-services {
  overflow: visible;
}
.template-page-services #section-services {
  min-height: calc(100svh - var(--HEADER_HEIGHT) - var(--FOOTER_HEIGHT));
  margin-top: 0;
  padding-top: calc(var(--72) + var(--HEADER_HEIGHT));
}
.template-page-services #section-services .left {
  position: sticky;
  top: calc(var(--72) + var(--HEADER_HEIGHT));
  align-self: flex-start;
}

.template-page-projects .headline {
  display: block;
  margin-top: calc(var(--72) + var(--HEADER_HEIGHT));
  margin-left: var(--GRID_MARGIN);
  box-sizing: border-box;
  font-family: "Editorial New Light";
  font-size: var(--FS30);
  line-height: 0.5;
  letter-spacing: 0.02em;
}
.template-page-projects #section-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--GRID_GUTTER);
  padding: var(--GRID_MARGIN);
  box-sizing: border-box;
  min-height: calc(100svh - var(--HEADER_HEIGHT) - var(--FOOTER_HEIGHT));
}
.template-page-projects #section-gallery * {
  cursor: none !important;
}
.template-page-projects #section-gallery .project {
  display: flex;
  height: fit-content;
}
.template-page-projects #section-gallery .project.landscape {
  grid-column-end: span 8;
}
.template-page-projects #section-gallery .project.landscape.large {
  grid-column-end: span 12;
}
.template-page-projects #section-gallery .project.portrait {
  grid-column-end: span 4;
}
.template-page-projects #section-gallery .project.portrait.large {
  grid-column-end: span 8;
}
.template-page-projects #section-gallery .project .iframe {
  width: 100%;
}
.template-page-projects #section-gallery .project.hide {
  display: none;
}
.template-page-projects #section-gallery .project.hidden {
  display: none;
}
.template-page-projects #section-gallery picture,
.template-page-projects #section-gallery .video-container {
  overflow: hidden;
  position: relative;
}
.template-page-projects #section-gallery picture img,
.template-page-projects #section-gallery picture video,
.template-page-projects #section-gallery .video-container img,
.template-page-projects #section-gallery .video-container video {
  height: unset;
  object-fit: unset;
  transition: transform ease-in-out 200ms;
}
.template-page-projects #section-gallery picture:hover::after,
.template-page-projects #section-gallery .video-container:hover::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  border: 3px solid #F84512;
  pointer-events: none;
}
.template-page-projects #section-gallery:not(.filtered) .project:not([always-visible="1"]) {
  display: none !important;
}
.template-page-projects #filters {
  position: fixed;
  top: 0;
  right: 0;
  letter-spacing: 0;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  z-index: 900;
  background-color: rgba(255, 255, 255, 0.9);
  height: 100svh;
  min-width: calc(var(--GRID_MARGIN) * 3 + var(--COLUMN_WIDTH) * 2);
  transform: translateX(calc(100% - var(--GRID_MARGIN) + 1px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.template-page-projects #filters.open {
  transform: translateX(0);
  transition: transform ease-in-out 500ms;
}
.template-page-projects #filters #filters-container {
  max-height: 100svh;
  overflow-y: scroll;
  padding: var(--72) 0;
  box-sizing: border-box;
}
.template-page-projects #filters .architecture {
  margin-bottom: var(--20);
}
.template-page-projects #filters .filter-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: top left;
  transform: rotate(-90deg) translateY(-100%) translateX(-50%);
  width: calc(222 * 0.0555555556rem);
}
.template-page-projects #filters .filter-label svg {
  position: absolute;
  width: 100%;
  height: auto;
  /* top: 0; */
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.template-page-projects #filters .filter-label svg path {
  fill: rgba(255, 255, 255, 0.9);
}
.template-page-projects #filters .filter-label svg {
  z-index: -1;
}
.template-page-projects #filters .filter-label {
  font-family: "Right Grotesk Fine";
  font-size: var(--FS18);
  line-height: 1;
  letter-spacing: 0.37em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
.template-page-projects #filters h3, .template-page-projects #filters h4 {
  display: block;
  font-family: "Right Grotesk Wide";
  font-size: var(--FS20);
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: var(--10);
}
.template-page-projects #filters h3 {
  display: flex;
  align-items: center;
  margin-bottom: var(--20);
}
.template-page-projects #filters h3::before {
  display: block;
  content: "";
  width: var(--15);
  height: var(--15);
  border-radius: 100%;
  border: 1px solid #000000;
  background-color: #000000;
  margin-right: var(--10);
  margin-top: calc(4 * 0.0555555556rem);
}
.template-page-projects #filters h4 {
  font-family: "Right Grotesk Fine";
  padding-left: calc(var(--15) + var(--10));
  box-sizing: border-box;
}
.template-page-projects #filters .group {
  margin-bottom: var(--20);
}
.template-page-projects #filters .group a {
  display: flex;
  align-items: center;
  font-family: "Raleway Medium";
  font-size: var(--FS12);
  line-height: 1;
  margin-bottom: var(--10);
  cursor: pointer;
}
.template-page-projects #filters .group a::before {
  display: block;
  content: "";
  width: var(--15);
  height: var(--15);
  border-radius: 100%;
  border: 1px solid #000000;
  margin-right: var(--10);
}
.template-page-projects #filters .group a.active::before {
  background-color: #000000;
}

.template-page-atelier {
  overflow: visible;
}
.template-page-atelier footer {
  color: #FFFFFF;
}
.template-page-atelier section {
  position: sticky;
  bottom: 0;
  min-height: 100svh;
  margin-top: calc(10svh + var(--computed-margin)) !important;
}
.template-page-atelier section:nth-child(2) {
  top: 0;
  bottom: unset;
  margin-top: 0 !important;
}
.template-page-atelier section:nth-child(1) {
  z-index: 1;
}
.template-page-atelier section:nth-child(2) {
  z-index: 2;
}
.template-page-atelier section:nth-child(3) {
  z-index: 3;
}
.template-page-atelier section:nth-child(4) {
  z-index: 4;
}
.template-page-atelier section:nth-child(5) {
  z-index: 5;
}
.template-page-atelier section:nth-child(6) {
  z-index: 6;
}
.template-page-atelier section:nth-child(7) {
  z-index: 7;
}
.template-page-atelier section:nth-child(8) {
  z-index: 8;
}
.template-page-atelier section:nth-child(9) {
  z-index: 9;
}
.template-page-atelier section:nth-child(10) {
  z-index: 10;
}
.template-page-atelier section:nth-child(11) {
  z-index: 11;
}
.template-page-atelier section:nth-child(12) {
  z-index: 12;
}
.template-page-atelier section:nth-child(13) {
  z-index: 13;
}
.template-page-atelier section:nth-child(14) {
  z-index: 14;
}
.template-page-atelier section:nth-child(15) {
  z-index: 15;
}
.template-page-atelier section:nth-child(16) {
  z-index: 16;
}
.template-page-atelier section:nth-child(17) {
  z-index: 17;
}
.template-page-atelier section:nth-child(18) {
  z-index: 18;
}
.template-page-atelier section:nth-child(19) {
  z-index: 19;
}
.template-page-atelier section:nth-child(20) {
  z-index: 20;
}
.template-page-atelier #section-cover,
.template-page-atelier #section-delim {
  height: 100svh;
}
.template-page-atelier #section-cover picture,
.template-page-atelier #section-delim picture {
  height: 100%;
}
.template-page-atelier #section-cover .btn,
.template-page-atelier #section-delim .btn {
  position: absolute;
  left: 50%;
  bottom: var(--65);
  transform: translateX(-50%);
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.template-page-atelier #section-cover .btn:hover,
.template-page-atelier #section-delim .btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.template-page-atelier #section-skills {
  background-color: #FFFFFF;
}
.template-page-atelier #section-skills .left a {
  display: none;
}
.template-page-atelier #section-why {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #E3D8C8;
  font-family: "Right Grotesk Wide";
  font-size: var(--FS20);
  line-height: var(--LH20);
  letter-spacing: 0.02em;
  padding: calc(var(--72) + var(--HEADER_HEIGHT)) 0;
  box-sizing: border-box;
}
.template-page-atelier #section-why > .text {
  font-family: "Editorial New Light";
  font-size: var(--FS70);
  line-height: var(--LH70);
  letter-spacing: 0.02em;
  text-align: center;
  padding: var(--100) calc(var(--GRID_MARGIN) + var(--COLUMN_WIDTH) * 1.5 + var(--GRID_GUTTER));
}
.template-page-atelier #section-why .head {
  display: flex;
  width: 100%;
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
}
.template-page-atelier #section-why .head h3 {
  grid-column-end: span 2;
}
.template-page-atelier #section-why .head .why-data {
  grid-column-end: span 3;
}
.template-page-atelier #section-why .head .why-data .prefix,
.template-page-atelier #section-why .head .why-data .value,
.template-page-atelier #section-why .head .why-data .suffix {
  display: inline-block;
  color: #B7552D;
  margin-right: 0.2em;
}
.template-page-atelier #section-why::after {
  display: block;
  content: "";
}
.template-page-atelier #section-clients {
  padding: calc(var(--72) + var(--HEADER_HEIGHT)) var(--GRID_MARGIN);
  box-sizing: border-box;
  background-color: #B7552D;
  display: flex;
}
.template-page-atelier #section-clients .center {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  width: 100%;
}
.template-page-atelier #section-clients .center h3 {
  font-family: "Right Grotesk Wide";
  font-size: var(--FS20);
  line-height: var(--LH20);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  grid-column-end: span 2;
}
.template-page-atelier #section-clients .center .text {
  font-family: "Right Grotesk Wide";
  font-size: var(--FS28);
  line-height: var(--LH28);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  grid-column-end: span 3;
}
.template-page-atelier #section-portfolio {
  padding: var(--72) var(--GRID_MARGIN);
  padding-bottom: var(--152);
  padding-top: calc(var(--72) + var(--HEADER_HEIGHT));
  box-sizing: border-box;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.template-page-atelier #section-portfolio .textarea {
  font-family: "Right Grotesk Wide";
  font-size: var(--FS180);
  line-height: var(--LH180);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--152);
  width: 100%;
}
.template-page-atelier #section-portfolio .btn {
  border-color: #FFFFFF;
}
.template-page-atelier #section-portfolio .btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.template-page-contact #section-contact {
  background-color: #FFFFFF;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--GRID_GUTTER);
  padding: var(--72) var(--GRID_MARGIN);
  padding-bottom: 0;
  box-sizing: border-box;
  min-height: calc(100svh - var(--HEADER_HEIGHT) - var(--FOOTER_HEIGHT));
  margin-top: var(--HEADER_HEIGHT);
}
.template-page-contact #section-contact h2 {
  display: block;
  grid-column-end: span 4;
  font-family: "Editorial New Light";
  font-size: var(--FS30);
  line-height: var(--LH30);
  letter-spacing: 0.02em;
  text-transform: none;
}
.template-page-mentions section {
  padding: var(--72) calc(var(--GRID_MARGIN) * 2);
  box-sizing: border-box;
  min-height: calc(100svh - var(--HEADER_HEIGHT) - var(--FOOTER_HEIGHT));
  margin-top: var(--HEADER_HEIGHT);
  font-size: var(--FS20);
  line-height: var(--LH20);
  max-width: calc(var(--COLUMN_WIDTH) * 9 + var(--GRID_GUTTER) * 8);
}
.template-page-mentions section a, .template-page-mentions section u {
  text-decoration-thickness: 1px;
}
.template-page-mentions section h2 {
  font-size: var(--FS30);
  line-height: var(--LH30);
  margin-bottom: 0.5em;
}

.template-single-project header #lang-switch {
  visibility: hidden;
  pointer-events: none;
}
.template-single-project #section-cover {
  height: calc(100svh - var(--72));
}
.template-single-project #section-cover picture {
  height: 100%;
}
.template-single-project #section-cover #close-page {
  position: fixed;
  top: var(--GRID_MARGIN);
  right: calc(var(--GRID_MARGIN) * 2);
  z-index: 1001;
}
.template-single-project #section-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  padding: var(--GRID_MARGIN);
  margin-bottom: var(--40);
  box-sizing: border-box;
}
.template-single-project #section-header > * {
  grid-column-end: span 3;
}
.template-single-project #section-header > .text {
  grid-column-end: span 4;
  grid-column-start: 5;
  font-size: var(--FS18);
  line-height: var(--LH18);
}
.template-single-project #section-header > :not(.text) {
  font-family: "Right Grotesk Wide";
  font-size: var(--FS20);
  line-height: var(--LH20);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.template-single-project #section-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--GRID_GUTTER);
  padding: var(--GRID_MARGIN);
  box-sizing: border-box;
  margin-bottom: var(--152);
}
.template-single-project #section-gallery .landscape {
  grid-column-end: span 8;
}
.template-single-project #section-gallery .landscape.large {
  grid-column-end: span 12;
}
.template-single-project #section-gallery .portrait {
  grid-column-end: span 4;
}
.template-single-project #section-gallery .portrait.large {
  grid-column-end: span 8;
}
.template-single-project #section-gallery picture img,
.template-single-project #section-gallery picture video,
.template-single-project #section-gallery .video-container img,
.template-single-project #section-gallery .video-container video {
  height: unset;
  object-fit: unset;
}

#section-related-projects {
  position: relative;
  padding: var(--GRID_MARGIN);
  box-sizing: border-box;
}
#section-related-projects * {
  cursor: none !important;
}
#section-related-projects h2 {
  margin-bottom: var(--100);
}
#section-related-projects .carrousel {
  position: relative;
  width: 100%;
  font-family: "Raleway Medium";
  font-size: var(--FS12);
  line-height: var(--LH12);
}
#section-related-projects .carrousel.mobile {
  display: none;
}
#section-related-projects .carrousel .carrousel-inner {
  position: relative;
  width: calc(var(--COLUMN_WIDTH) * 5 + var(--GRID_GUTTER) * 5);
  aspect-ratio: 692/810;
  overflow-x: visible;
}
#section-related-projects .carrousel .carrousel-inner .carrousel-container {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  gap: var(--GRID_GUTTER);
  height: 100%;
}
#section-related-projects .carrousel .carrousel-inner .carrousel-container > * {
  display: flex;
  flex-direction: column;
  width: calc(var(--COLUMN_WIDTH) * 5 + var(--GRID_GUTTER) * 4);
  flex-shrink: 0;
  text-decoration: none;
}
#section-related-projects .carrousel .carrousel-inner .carrousel-container > * h3 {
  margin-bottom: 0.5em;
}
#section-related-projects .carrousel .carrousel-inner .carrousel-container > * picture,
#section-related-projects .carrousel .carrousel-inner .carrousel-container > * .video-container {
  position: relative;
  flex: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#section-related-projects .carrousel .carrousel-inner .carrousel-container > * picture:hover::after,
#section-related-projects .carrousel .carrousel-inner .carrousel-container > * .video-container:hover::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  border: 3px solid #F84512;
  pointer-events: none;
}
#section-related-projects .carrousel .carrousel-inner .carrousel-container > * .iframe,
#section-related-projects .carrousel .carrousel-inner .carrousel-container > * iframe {
  aspect-ratio: unset !important;
  height: 100%;
}
#section-related-projects .carrousel .arrow-left,
#section-related-projects .carrousel .arrow-right {
  position: absolute;
  top: calc(50% + 0.75em);
  left: calc(var(--GRID_MARGIN) * 2);
  transform: translateY(-50%) rotate(180deg);
  mix-blend-mode: unset;
}
#section-related-projects .carrousel .arrow-left *,
#section-related-projects .carrousel .arrow-right * {
  cursor: pointer !important;
}
#section-related-projects .carrousel .arrow-left.arrow-right,
#section-related-projects .carrousel .arrow-right.arrow-right {
  left: unset;
  right: calc(var(--GRID_MARGIN) * 2);
  transform: translateY(-50%);
}
#section-related-projects .carrousel .arrow-left.hide,
#section-related-projects .carrousel .arrow-right.hide {
  display: none;
}
#section-related-projects .carrousel .arrow-left svg circle, #section-related-projects .carrousel .arrow-left svg line, #section-related-projects .carrousel .arrow-left svg path,
#section-related-projects .carrousel .arrow-right svg circle,
#section-related-projects .carrousel .arrow-right svg line,
#section-related-projects .carrousel .arrow-right svg path {
  fill: none;
  stroke: #B7552D;
  stroke-width: 1;
}
#section-related-projects .carrousel .arrow-left:hover svg circle,
#section-related-projects .carrousel .arrow-right:hover svg circle {
  fill: #B7552D;
  stroke: #B7552D;
}
#section-related-projects .carrousel .arrow-left:hover svg line, #section-related-projects .carrousel .arrow-left:hover svg path,
#section-related-projects .carrousel .arrow-right:hover svg line,
#section-related-projects .carrousel .arrow-right:hover svg path {
  stroke: #FFFFFF;
}
#section-related-projects .carrousel .carrousel-inner {
  width: calc(var(--COLUMN_WIDTH) * 3.5 + var(--GRID_GUTTER) * 3);
}
#section-related-projects .carrousel .carrousel-inner .carrousel-container > * {
  width: calc(var(--COLUMN_WIDTH) * 3.5 + var(--GRID_GUTTER) * 2);
}

#section-services,
#section-skills {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--GRID_GUTTER);
  padding: var(--72) var(--GRID_MARGIN);
  padding-top: calc(var(--72) + var(--HEADER_HEIGHT));
  margin-top: var(--HEADER_HEIGHT);
  box-sizing: border-box;
}
#section-services .left,
#section-skills .left {
  grid-column-end: span 2;
}
#section-services .left h3,
#section-skills .left h3 {
  display: block;
  font-family: "Right Grotesk Wide";
  font-size: var(--FS20);
  line-height: var(--LH20);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1em;
}
#section-services .left a,
#section-skills .left a {
  display: block;
  font-family: "Right Grotesk Fine";
  font-size: var(--FS18);
  line-height: var(--LH18);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #121212;
  cursor: pointer;
}
#section-services .left a:hover,
#section-skills .left a:hover {
  font-weight: bold;
}
#section-services #services,
#section-services #skills,
#section-skills #services,
#section-skills #skills {
  grid-column-start: 3;
  grid-column-end: span 10;
}
#section-services #services .service,
#section-services #services .skill,
#section-services #skills .service,
#section-services #skills .skill,
#section-skills #services .service,
#section-skills #services .skill,
#section-skills #skills .service,
#section-skills #skills .skill {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  column-gap: var(--GRID_GUTTER);
  padding-bottom: var(--20);
  border-bottom: 1px solid #000000;
}
#section-services #services .service:first-child,
#section-services #services .skill:first-child,
#section-services #skills .service:first-child,
#section-services #skills .skill:first-child,
#section-skills #services .service:first-child,
#section-skills #services .skill:first-child,
#section-skills #skills .service:first-child,
#section-skills #skills .skill:first-child {
  margin-top: calc(var(--20) * -1);
}
#section-services #services .service:first-child .head h2,
#section-services #services .skill:first-child .head h2,
#section-services #skills .service:first-child .head h2,
#section-services #skills .skill:first-child .head h2,
#section-skills #services .service:first-child .head h2,
#section-skills #services .skill:first-child .head h2,
#section-skills #skills .service:first-child .head h2,
#section-skills #skills .skill:first-child .head h2 {
  padding-top: 0;
}
#section-services #services .service:first-child .head .svg-btn,
#section-services #services .skill:first-child .head .svg-btn,
#section-services #skills .service:first-child .head .svg-btn,
#section-services #skills .skill:first-child .head .svg-btn,
#section-skills #services .service:first-child .head .svg-btn,
#section-skills #services .skill:first-child .head .svg-btn,
#section-skills #skills .service:first-child .head .svg-btn,
#section-skills #skills .skill:first-child .head .svg-btn {
  top: var(--15);
}
#section-services #services .service .head,
#section-services #services .skill .head,
#section-services #skills .service .head,
#section-services #skills .skill .head,
#section-skills #services .service .head,
#section-skills #services .skill .head,
#section-skills #skills .service .head,
#section-skills #skills .skill .head {
  position: relative;
  grid-column-end: span 6;
  padding-left: calc(var(--COLUMN_WIDTH) * 3 / 4);
  cursor: pointer;
}
#section-services #services .service .head .svg-btn,
#section-services #services .skill .head .svg-btn,
#section-services #skills .service .head .svg-btn,
#section-services #skills .skill .head .svg-btn,
#section-skills #services .service .head .svg-btn,
#section-skills #services .skill .head .svg-btn,
#section-skills #skills .service .head .svg-btn,
#section-skills #skills .skill .head .svg-btn {
  position: absolute;
  left: 0;
  top: calc(var(--20));
}
#section-services #services .service .head .svg-btn svg,
#section-services #services .skill .head .svg-btn svg,
#section-services #skills .service .head .svg-btn svg,
#section-services #skills .skill .head .svg-btn svg,
#section-skills #services .service .head .svg-btn svg,
#section-skills #services .skill .head .svg-btn svg,
#section-skills #skills .service .head .svg-btn svg,
#section-skills #skills .skill .head .svg-btn svg {
  width: calc(50 * 0.0555555556rem);
}
#section-services #services .service .head .svg-btn:hover line.V,
#section-services #services .skill .head .svg-btn:hover line.V,
#section-services #skills .service .head .svg-btn:hover line.V,
#section-services #skills .skill .head .svg-btn:hover line.V,
#section-skills #services .service .head .svg-btn:hover line.V,
#section-skills #services .skill .head .svg-btn:hover line.V,
#section-skills #skills .service .head .svg-btn:hover line.V,
#section-skills #skills .skill .head .svg-btn:hover line.V {
  display: none;
}
#section-services #services .service .head h2,
#section-services #services .skill .head h2,
#section-services #skills .service .head h2,
#section-services #skills .skill .head h2,
#section-skills #services .service .head h2,
#section-skills #services .skill .head h2,
#section-skills #skills .service .head h2,
#section-skills #skills .skill .head h2 {
  padding-top: var(--5);
  user-select: none;
  font-size: var(--FS70);
  line-height: var(--LH70);
}
#section-services #services .service .content,
#section-services #services .skill .content,
#section-services #skills .service .content,
#section-services #skills .skill .content,
#section-skills #services .service .content,
#section-skills #services .skill .content,
#section-skills #skills .service .content,
#section-skills #skills .skill .content {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--GRID_GUTTER);
  grid-column-end: span 10;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
#section-services #services .service .content .text,
#section-services #services .skill .content .text,
#section-services #skills .service .content .text,
#section-services #skills .skill .content .text,
#section-skills #services .service .content .text,
#section-skills #services .skill .content .text,
#section-skills #skills .service .content .text,
#section-skills #skills .skill .content .text {
  display: block;
  grid-column-end: span 6;
  padding-left: calc(var(--COLUMN_WIDTH) * 3 / 4);
  margin-top: var(--40);
  font-family: "Editorial New Light";
  font-size: var(--FS30);
  line-height: var(--LH30);
  letter-spacing: 0.02em;
}
#section-services #services .service .content .download,
#section-services #services .skill .content .download,
#section-services #skills .service .content .download,
#section-services #skills .skill .content .download,
#section-skills #services .service .content .download,
#section-skills #services .skill .content .download,
#section-skills #skills .service .content .download,
#section-skills #skills .skill .content .download {
  grid-column-end: span 4;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: initial;
}
#section-services #services .service.active .content,
#section-services #services .skill.active .content,
#section-services #skills .service.active .content,
#section-services #skills .skill.active .content,
#section-skills #services .service.active .content,
#section-skills #services .skill.active .content,
#section-skills #skills .service.active .content,
#section-skills #skills .skill.active .content {
  opacity: 1;
}
#section-services #services .service.active .head .svg-btn,
#section-services #services .skill.active .head .svg-btn,
#section-services #skills .service.active .head .svg-btn,
#section-services #skills .skill.active .head .svg-btn,
#section-skills #services .service.active .head .svg-btn,
#section-skills #services .skill.active .head .svg-btn,
#section-skills #skills .service.active .head .svg-btn,
#section-skills #skills .skill.active .head .svg-btn {
  mix-blend-mode: unset;
}
#section-services #services .service.active .head .svg-btn line.V,
#section-services #services .skill.active .head .svg-btn line.V,
#section-services #skills .service.active .head .svg-btn line.V,
#section-services #skills .skill.active .head .svg-btn line.V,
#section-skills #services .service.active .head .svg-btn line.V,
#section-skills #services .skill.active .head .svg-btn line.V,
#section-skills #skills .service.active .head .svg-btn line.V,
#section-skills #skills .skill.active .head .svg-btn line.V {
  display: none;
}
#section-services #services .service.active .head .svg-btn svg circle,
#section-services #services .skill.active .head .svg-btn svg circle,
#section-services #skills .service.active .head .svg-btn svg circle,
#section-services #skills .skill.active .head .svg-btn svg circle,
#section-skills #services .service.active .head .svg-btn svg circle,
#section-skills #services .skill.active .head .svg-btn svg circle,
#section-skills #skills .service.active .head .svg-btn svg circle,
#section-skills #skills .skill.active .head .svg-btn svg circle {
  fill: #000000;
  stroke: #000000;
}
#section-services #services .service.active .head .svg-btn svg line,
#section-services #services .skill.active .head .svg-btn svg line,
#section-services #skills .service.active .head .svg-btn svg line,
#section-services #skills .skill.active .head .svg-btn svg line,
#section-skills #services .service.active .head .svg-btn svg line,
#section-skills #services .skill.active .head .svg-btn svg line,
#section-skills #skills .service.active .head .svg-btn svg line,
#section-skills #skills .skill.active .head .svg-btn svg line {
  stroke: #FFFFFF;
}

#contact-form,
#download-form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--GRID_GUTTER);
  grid-column-end: span 6;
  grid-column-start: 7;
  height: fit-content;
  font-family: "Raleway Regular";
  font-size: var(--FS18);
  line-height: var(--LH18);
}
#contact-form .input,
#download-form .input {
  grid-column-end: span 3;
}
#contact-form .input.large,
#download-form .input.large {
  grid-column-end: span 6;
}
#contact-form .input.submit,
#download-form .input.submit {
  grid-column-end: span 1;
  grid-column-start: 6;
}
#contact-form .input label,
#download-form .input label {
  margin-bottom: 0.5em;
}
#contact-form .input input,
#contact-form .input textarea,
#download-form .input input,
#download-form .input textarea {
  display: block;
  border: none;
  outline: none;
  width: 100%;
  border-bottom: 1px solid #000000;
  font-family: "Raleway Regular";
  font-size: var(--FS18);
  line-height: var(--LH18);
  margin-bottom: var(--20);
}
#contact-form .input input:not(textarea),
#contact-form .input textarea:not(textarea),
#download-form .input input:not(textarea),
#download-form .input textarea:not(textarea) {
  line-height: 1;
}
#contact-form .input textarea,
#download-form .input textarea {
  height: 6em;
}
#contact-form .error,
#download-form .error {
  display: none;
  width: 100%;
  height: 0;
  grid-column-end: span 3;
  color: red;
}
#contact-form .error.visible,
#download-form .error.visible {
  display: block;
}
#contact-form .error.ok,
#download-form .error.ok {
  color: green;
}

#download-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 90vw;
  max-width: calc(600 * 0.0555555556rem);
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 1em;
  padding: var(--GRID_MARGIN);
  z-index: 100000;
}
#download-form.visible {
  display: grid;
}
#download-form h3 {
  font-family: "Raleway Regular";
  font-size: var(--FS18);
  line-height: var(--LH18);
  grid-column-end: span 6;
}
#download-form input {
  background: none !important;
  border-bottom: 1px solid #FFFFFF !important;
  color: #FFFFFF !important;
}
#download-form #submit {
  border-color: #FFFFFF;
}