@charset "UTF-8";
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 {
  overscroll-behavior: none;
}

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

* {
  scrollbar-width: none;
}

:root {
  --FS8: calc(8 * 0.0833333333rem);
  --FS10: calc(10 * 0.0833333333rem);
  --FS12: calc(12 * 0.0833333333rem);
  --LH12: 1.25em;
  --FS14: calc(14 * 0.0833333333rem);
  --LH14: 1.25em;
  --FS16: calc(16 * 0.0833333333rem);
  --LH16: 1.25em;
  --FS20: calc(20 * 0.0833333333rem);
  --LH20: 1.25em;
  --FS26: calc(26 * 0.0833333333rem);
}

:root {
  --GRID_MARGIN: calc(33 * 0.0833333333rem);
  --GRID_GUTTER: calc(10 * 0.0833333333rem);
  --4: calc(4 * 0.0833333333rem);
  --6: calc(6 * 0.0833333333rem);
  --10: calc(10 * 0.0833333333rem);
  --15: calc(15 * 0.0833333333rem);
  --20: calc(20 * 0.0833333333rem);
  --25: calc(25 * 0.0833333333rem);
  --30: calc(30 * 0.0833333333rem);
  --40: calc(40 * 0.0833333333rem);
  --55: calc(55 * 0.0833333333rem);
  --155: calc(155 * 0.0833333333rem);
  --215: calc(215 * 0.0833333333rem);
}

#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: "Arizona";
  font-size: 12px;
  line-height: 1;
  visibility: hidden;
}

body {
  font-size: var(--FS12);
  line-height: 1;
  color: #321F0A;
  background-color: #F2EDDD;
  display: flex;
  flex-direction: column;
}

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

.video-container {
  position: relative;
  cursor: pointer;
}
.video-container svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: translateX(-50%) translateY(-50%);
  width: var(--55);
}
.video-container svg > * {
  fill: inherit;
}
.video-container.playing svg {
  display: none;
}

a {
  text-decoration: none;
}

.textarea a {
  text-decoration: underline;
}
.textarea p:not(:last-child) {
  margin-bottom: 1em;
}
.textarea em {
  font-family: "Arizona Italic";
  font-style: italic;
}
.textarea em strong {
  font-family: "Arizona Bold Italic";
}
.textarea strong {
  font-family: "Arizona Bold";
}
.textarea strong em {
  font-family: "Arizona Bold Italic";
  font-style: italic;
}

#contact-band {
  display: flex;
  justify-content: flex-end;
  column-gap: var(--GRID_MARGIN);
  font-family: "Arizona";
  font-size: var(--FS10);
  padding: var(--10) var(--GRID_MARGIN);
  box-sizing: border-box;
  color: #EEEADE;
  background-color: #533414;
}

#header-nav {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  padding: var(--10) var(--GRID_MARGIN);
  box-sizing: border-box;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.8);
}
#header-nav .level {
  position: relative;
  grid-column-end: span 2;
}
#header-nav .level, #header-nav .level .submenu {
  display: flex;
  flex-direction: column;
  row-gap: var(--4);
}
#header-nav .level .submenu {
  position: absolute;
  width: 100%;
  padding-top: calc(var(--ndx) * (1em + var(--4)));
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity ease-in-out 250ms;
}
#header-nav .level .submenu.visible, #header-nav .level .submenu.hover {
  opacity: 1;
  pointer-events: initial;
}
#header-nav .level .submenu.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}
#header-nav a {
  display: block;
  width: fit-content;
  transition: color ease-in-out 250ms;
}
#header-nav a.sel {
  color: #533414;
}
#header-nav a.sel::before {
  content: "→";
  margin-right: 0.25em;
}
#header-nav a:hover {
  color: #533414;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
}

footer {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  padding: var(--20) var(--GRID_MARGIN);
  padding-bottom: var(--55);
  box-sizing: border-box;
  line-height: var(--LH12);
  color: #000000;
  background-color: #F2EDDD;
}
footer a {
  display: block;
}
footer h4 {
  font-family: "Arizona Bold";
}
footer .addresses {
  grid-column-start: 3;
  grid-column-end: span 3;
}
footer .addresses > div:not(:last-child) {
  margin-bottom: var(--20);
}
footer .contacts {
  grid-column-start: 6;
  grid-column-end: span 2;
}
footer .contacts a.email {
  font-family: "Arizona Bold";
}
footer .contacts > div:not(:last-child) {
  margin-bottom: var(--20);
}
footer .contacts h4 {
  margin-bottom: 0.2em;
}

#main {
  flex-grow: 1;
}

#main-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  padding: var(--25) var(--GRID_MARGIN);
  padding-bottom: 0;
  box-sizing: border-box;
}
#main-container #column-left {
  position: sticky;
  top: calc(var(--HEADER_HEIGHT) + var(--25));
  grid-column-end: span 2;
  height: fit-content;
  z-index: 1;
}
#main-container #column-right {
  display: flex;
  flex-direction: column;
  grid-column-end: span 10;
}

h1 {
  font-family: "Arizona Bold";
}

#section-infos {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100svh - var(--HEADER_HEIGHT) - var(--25));
}

.infos {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  font-size: var(--FS12);
  line-height: 1;
}
.infos h2 {
  font-family: "Arizona Bold";
}
.infos h2, .infos h3 {
  margin-top: 0.2em;
}
.infos .row {
  display: flex;
  justify-content: space-between;
  column-gap: var(--GRID_GUTTER);
}
.infos .row:nth-child(1) {
  flex-grow: 1;
}
.infos .row .textarea {
  line-height: var(--LH12);
}

#louvier {
  padding: var(--25) 0;
  width: calc(var(--COLUMN_WIDTH) * 2 + var(--GRID_GUTTER) * 0 + var(--GRID_MARGIN) * 0);
  margin-top: auto;
  z-index: 1;
  fill: #000000;
  transition: fill ease-in-out 500ms;
}
#louvier svg path {
  fill: inherit;
}
#louvier.dark {
  fill: #000000 !important;
}
#louvier.light, #louvier.dark.light {
  fill: #EEEADE !important;
}

#section-image-footer {
  grid-column-end: span 10;
  position: relative;
}
#section-image-footer picture {
  position: relative;
  width: 100vw;
  left: calc(-1 * (var(--COLUMN_WIDTH) * 2 + var(--GRID_GUTTER) * 2 + var(--GRID_MARGIN) * 1));
  max-height: 100svh;
  aspect-ratio: 1280/490;
}

*.mobile {
  display: none;
}

.template-page-about {
  background-color: #1E1A16 !important;
  color: #EEEADE !important;
  fill: #EEEADE !important;
}
.template-page-about #louvier {
  fill: #EEEADE !important;
}
.template-page-about #section-about {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--GRID_GUTTER);
  font-size: var(--FS16);
  line-height: var(--LH16);
  padding-bottom: var(--155);
}
.template-page-about #section-about .left,
.template-page-about #section-about .right {
  grid-column-end: span 5;
}
.template-page-about #section-team {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--GRID_GUTTER);
  font-size: var(--FS16);
  line-height: var(--LH16);
  border-top: 1px solid;
  padding-top: var(--10);
  box-sizing: border-box;
  padding-bottom: var(--25);
}
.template-page-about #section-team .left {
  grid-column-end: span 3;
}
.template-page-about #section-team .right {
  display: flex;
  flex-direction: column;
  row-gap: var(--25);
  grid-column-end: span 3;
}

.template-page-home #louvier {
  position: sticky;
  left: var(--GRID_MARGIN);
  top: calc(100svh - var(--LOUVIER_HEIGHT));
  padding-top: 0;
  margin-top: unset;
  fill: #EEEADE;
  width: calc(var(--COLUMN_WIDTH) * 4 + var(--GRID_GUTTER) * 1 + var(--GRID_MARGIN) * 0);
}
.template-page-home #louvier svg:nth-child(1) {
  width: calc(var(--COLUMN_WIDTH) * 2 + var(--GRID_GUTTER) * 0 + var(--GRID_MARGIN) * 0);
}
.template-page-home #louvier svg:nth-child(2) {
  width: calc((var(--COLUMN_WIDTH) * 2 + var(--GRID_GUTTER) * 0 + var(--GRID_MARGIN) * 0) * 0.8743169399);
}
.template-page-home #louvier {
  display: flex;
  align-items: flex-end;
  column-gap: calc(8 * 0.0833333333rem);
}
.template-page-home #louvier.small svg:nth-child(2) {
  opacity: 0;
  transition: opacity ease-in-out 500ms;
}
.template-page-home #main-container {
  all: unset;
}
.template-page-home #section-cover {
  position: relative;
  width: 100vw;
  height: 100svh;
  margin-top: calc(-1 * var(--HEADER_HEIGHT) - var(--LOUVIER_HEIGHT));
  left: 0;
}
.template-page-home #section-news {
  background-color: #533414;
  color: #EEEADE;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  padding: var(--40) var(--GRID_MARGIN);
  box-sizing: border-box;
}
.template-page-home #section-news h2 {
  font-size: var(--FS26);
  grid-column-start: 3;
  grid-column-end: span 10;
  margin-bottom: var(--20);
}
.template-page-home #section-news .left {
  grid-column-start: 3;
  grid-column-end: span 6;
}
.template-page-home #section-news .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column-end: span 3;
}
.template-page-home #section-news .right h3 {
  font-size: var(--FS16);
  line-height: var(--LH16);
}
.template-page-home #section-news .right .textarea {
  font-size: var(--FS12);
  line-height: var(--LH12);
  margin-top: var(--10);
}
.template-page-home #section-contents {
  padding: var(--GRID_MARGIN) var(--GRID_MARGIN);
  box-sizing: border-box;
}
.template-page-home #section-contents .section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  row-gap: var(--215);
  margin-bottom: var(--215);
}
.template-page-home #section-contents .section picture.landscape {
  grid-column-end: span 7;
}
.template-page-home #section-contents .section picture.portrait {
  grid-column-end: span 5;
}
.template-page-home #section-contents .section:nth-child(2n+1) picture {
  grid-column-start: 6;
}
.template-page-home #section-contents .section:nth-child(2n+2) picture {
  grid-column-start: 3;
}
.template-page-home #section-contents .section .text {
  grid-column-start: 4;
  grid-column-end: span 8;
}
.template-page-home #section-contents .section .text .textarea {
  font-size: var(--FS20);
  line-height: var(--LH20);
  text-align: center;
  white-space: nowrap;
}
.template-page-home #section-contents .section .text a {
  display: block;
  font-size: var(--FS12);
  line-height: var(--LH12);
  text-align: center;
  margin-top: var(--20);
}
.template-page-home #section-image-footer picture {
  left: unset;
}

.template-page-projects,
.template-single-project-cat {
  background-color: #1E1A16 !important;
  color: #EEEADE !important;
}
.template-page-projects #louvier,
.template-single-project-cat #louvier {
  fill: #EEEADE !important;
}
.template-page-projects #column-right .intro,
.template-single-project-cat #column-right .intro {
  width: calc(var(--COLUMN_WIDTH) * 5 + var(--GRID_GUTTER) * 4 + var(--GRID_MARGIN) * 0);
  font-size: var(--FS16);
  line-height: var(--LH16);
  margin-bottom: var(--30);
}
.template-page-projects #column-right #section-projects,
.template-single-project-cat #column-right #section-projects {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--GRID_GUTTER);
  row-gap: var(--30);
  font-size: var(--FS14);
  padding-bottom: var(--215);
}
.template-page-projects #column-right #section-projects .project,
.template-single-project-cat #column-right #section-projects .project {
  display: block;
  grid-column-end: span 5;
  height: fit-content;
}
.template-page-projects #column-right #section-projects .project picture,
.template-single-project-cat #column-right #section-projects .project picture {
  aspect-ratio: 500/320;
  margin-bottom: var(--6);
}
.template-page-projects #column-right #section-projects .project h3,
.template-single-project-cat #column-right #section-projects .project h3 {
  margin-top: 0.2em;
}

.template-single-project {
  background-color: #1E1A16 !important;
  color: #EEEADE !important;
  fill: #EEEADE !important;
}
.template-single-project #louvier {
  fill: #EEEADE !important;
}
.template-single-project .location {
  font-family: "Arizona Bold";
  margin-top: 0.2em;
}
.template-single-project .btn-window {
  fill: #EEEADE !important;
}

.template-page-products #column-right .intro {
  width: calc(var(--COLUMN_WIDTH) * 5 + var(--GRID_GUTTER) * 4 + var(--GRID_MARGIN) * 0);
  font-size: var(--FS16);
  line-height: var(--LH16);
  margin-bottom: var(--30);
}
.template-page-products #column-right #section-categories .category {
  border-top: 1px solid;
  padding-bottom: var(--30);
}
.template-page-products #column-right #section-categories .category h2 {
  font-family: "Arizona Bold";
  font-size: var(--FS16);
  line-height: 1;
  padding: var(--10) 0;
}
.template-page-products #column-right #section-categories .category .subcategories {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--GRID_GUTTER);
  row-gap: var(--30);
  font-size: var(--FS12);
  line-height: 1;
}
.template-page-products #column-right #section-categories .category .subcategories .subcategory {
  display: block;
  grid-column-end: span 3;
  height: fit-content;
}
.template-page-products #column-right #section-categories .category .subcategories .subcategory picture {
  aspect-ratio: 300/190;
}
.template-page-products #column-right #section-categories .category .subcategories .subcategory h3 {
  margin-top: var(--6);
}

.template-single-product-cat #section-products,
.template-single-product-cat-2 #section-products {
  flex-grow: 1;
  border-bottom: 1px solid;
  padding-bottom: var(--25);
}

.template-single-product #main-container,
.template-single-project #main-container,
.template-single-press #main-container {
  padding-bottom: var(--25);
}
.template-single-product.template-single-product:not(:has(#section-related)) #main-container,
.template-single-project.template-single-product:not(:has(#section-related)) #main-container,
.template-single-press.template-single-product:not(:has(#section-related)) #main-container {
  padding-bottom: 0;
}
.template-single-product.template-single-product:not(:has(#section-related)) #section-gallery,
.template-single-project.template-single-product:not(:has(#section-related)) #section-gallery,
.template-single-press.template-single-product:not(:has(#section-related)) #section-gallery {
  padding-bottom: var(--25);
  border-bottom: 1px solid;
}
.template-single-product #column-left .row .right,
.template-single-project #column-left .row .right,
.template-single-press #column-left .row .right {
  display: flex;
  column-gap: var(--6);
}
.template-single-product #column-left .row .right .btn-window,
.template-single-project #column-left .row .right .btn-window,
.template-single-press #column-left .row .right .btn-window {
  width: var(--20);
  fill: #6D5E4F;
  cursor: pointer;
}
.template-single-product #column-left .row .right .btn-window:not(.sel),
.template-single-project #column-left .row .right .btn-window:not(.sel),
.template-single-press #column-left .row .right .btn-window:not(.sel) {
  opacity: 0.5;
}
.template-single-product #column-left .row .right .btn-window svg *,
.template-single-project #column-left .row .right .btn-window svg *,
.template-single-press #column-left .row .right .btn-window svg * {
  fill: inherit;
}
.template-single-product #column-right #section-gallery,
.template-single-project #column-right #section-gallery,
.template-single-press #column-right #section-gallery {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--GRID_GUTTER);
  flex-grow: 1;
}
.template-single-product #column-right #section-gallery picture,
.template-single-project #column-right #section-gallery picture,
.template-single-press #column-right #section-gallery picture {
  grid-column-end: span 5;
}
.template-single-product #column-right #section-gallery.full picture,
.template-single-project #column-right #section-gallery.full picture,
.template-single-press #column-right #section-gallery.full picture {
  grid-column-end: span 10;
}
.template-single-product #section-related,
.template-single-project #section-related,
.template-single-press #section-related {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--GRID_GUTTER);
  padding: 0 var(--GRID_MARGIN);
  box-sizing: border-box;
}
.template-single-product #section-related .left,
.template-single-project #section-related .left,
.template-single-press #section-related .left {
  grid-column-end: span 2;
  padding-top: calc(var(--15) * 2 + 1em);
}
.template-single-product #section-related .right,
.template-single-project #section-related .right,
.template-single-press #section-related .right {
  grid-column-end: span 9;
  padding-bottom: var(--20);
  border-bottom: 1px solid;
  box-sizing: border-box;
}
.template-single-product #section-related .right .head,
.template-single-project #section-related .right .head,
.template-single-press #section-related .right .head {
  display: flex;
  justify-content: space-between;
  padding: var(--15) 0;
  border-top: 1px solid;
  box-sizing: border-box;
}

.template-page-partners #section-partners {
  padding-bottom: var(--25);
}
.template-page-partners #column-right .intro {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--GRID_GUTTER);
  font-size: var(--FS14);
  line-height: var(--LH14);
  margin-bottom: var(--30);
}
.template-page-partners #column-right .intro > * {
  grid-column-end: span 5;
}
.template-page-partners #column-right #section-alpha {
  display: flex;
  column-gap: var(--6);
  padding: var(--10) 0;
  box-sizing: border-box;
  border-top: 1px solid;
}
.template-page-partners #column-right #section-alpha .alpha {
  cursor: pointer;
}
.template-page-partners #column-right #section-partners {
  font-size: var(--FS20);
}
.template-page-partners #column-right #section-partners .alpha {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--GRID_GUTTER);
  padding-top: var(--6);
  padding-bottom: var(--15);
  border-top: 1px solid;
}
.template-page-partners #column-right #section-partners .alpha:first-child {
  padding-top: var(--15);
}
.template-page-partners #column-right #section-partners .alpha .left {
  grid-column-end: span 1;
}
.template-page-partners #column-right #section-partners .alpha .partners {
  grid-column-end: span 9;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: var(--GRID_GUTTER);
}
.template-page-partners #column-right #section-partners .alpha .partners .partner {
  display: block;
  grid-column-end: span 3;
  height: fit-content;
}
.template-page-partners #column-right #section-partners .alpha .partners .partner h2 {
  margin-bottom: var(--6);
}
.template-page-partners #column-right #section-partners .alpha .partners .partner picture {
  aspect-ratio: 300/226;
}

.template-single-partner #column-right #section-products {
  width: calc(var(--COLUMN_WIDTH) * 9 + var(--GRID_GUTTER) * 8 + var(--GRID_MARGIN) * 0);
  border-bottom: 1px solid;
  padding-bottom: var(--25);
  flex-grow: 1;
}

.template-page-journal {
  background-color: rgba(153, 120, 83, 0.7019607843) !important;
  color: #000000 !important;
}
.template-page-journal #column-right #section-news,
.template-page-journal #column-right #section-press {
  padding-bottom: var(--40);
}
.template-page-journal #column-right #section-news .head,
.template-page-journal #column-right #section-press .head {
  display: flex;
  align-items: center;
  column-gap: var(--GRID_GUTTER);
  margin-bottom: var(--20);
}
.template-page-journal #column-right #section-news .head::after,
.template-page-journal #column-right #section-press .head::after {
  display: block;
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #000000;
}
.template-page-journal #column-right #section-news .all {
  display: block;
  position: relative;
  margin-left: auto;
  width: fit-content;
  padding-right: calc(var(--COLUMN_WIDTH) * 1 + var(--GRID_GUTTER) * 1 + var(--GRID_MARGIN) * 0);
  margin-top: var(--20);
  font-family: "Arizona Bold";
}
.template-page-journal #column-right #section-news .article h2 {
  font-family: "Arizona Bold";
  margin-bottom: var(--6);
}
.template-page-journal #column-right #section-news .article picture {
  aspect-ratio: 300/190;
  margin-bottom: var(--6);
}
.template-page-journal #column-right #section-news .article .textarea {
  line-height: var(--LH12);
}
.template-page-journal #column-right #section-news .carrousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.template-page-journal #column-right #section-news .carrousel .carrousel-inner {
  position: relative;
  width: calc(var(--COLUMN_WIDTH) * 3 + var(--GRID_GUTTER) * 3 + var(--GRID_MARGIN) * 0);
}
.template-page-journal #column-right #section-news .carrousel .carrousel-inner .carrousel-container {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  column-gap: var(--GRID_GUTTER);
}
.template-page-journal #column-right #section-news .carrousel .carrousel-inner .carrousel-container > * {
  display: block;
  height: fit-content;
  width: calc(var(--COLUMN_WIDTH) * 3 + var(--GRID_GUTTER) * 2 + var(--GRID_MARGIN) * 0);
  flex-shrink: 0;
}
.template-page-journal #column-right #section-news .carrousel-out {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(var(--COLUMN_WIDTH) * 9 + var(--GRID_GUTTER) * 8 + var(--GRID_MARGIN) * 0);
}
.template-page-journal #column-right #section-news .carrousel-out .arrow-left,
.template-page-journal #column-right #section-news .carrousel-out .arrow-right {
  position: absolute;
  top: calc(1em + (var(--COLUMN_WIDTH) * 3 + var(--GRID_GUTTER) * 2 + var(--GRID_MARGIN) * 0) * 190 / 296 / 2);
  cursor: pointer;
  pointer-events: initial;
  z-index: 10;
}
.template-page-journal #column-right #section-news .carrousel-out .arrow-left.hide,
.template-page-journal #column-right #section-news .carrousel-out .arrow-right.hide {
  display: none !important;
}
.template-page-journal #column-right #section-news .carrousel-out .arrow-left.disable,
.template-page-journal #column-right #section-news .carrousel-out .arrow-right.disable {
  display: none;
}
.template-page-journal #column-right #section-news .carrousel-out .arrow-left {
  left: calc(-1 * var(--GRID_GUTTER));
  transform: translateX(-100%) rotate(180deg);
}
.template-page-journal #column-right #section-news .carrousel-out .arrow-right {
  right: calc(-1 * var(--GRID_GUTTER));
  transform: translateX(100%);
}
.template-page-journal #column-right #section-news .carrousel-out svg {
  width: var(--15);
  height: auto;
}
.template-page-journal #column-right #section-news .carrousel-out svg path {
  fill: #000000;
}
.template-page-journal #column-right #section-press {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  column-gap: var(--GRID_GUTTER);
}
.template-page-journal #column-right #section-press .head {
  grid-column-end: span 10;
}
.template-page-journal #column-right #section-press .articles {
  grid-column-end: span 5;
}
.template-page-journal #column-right #section-press .articles .year {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: var(--GRID_GUTTER);
  margin-bottom: var(--6);
}
.template-page-journal #column-right #section-press .articles .year .left {
  grid-column-end: span 1;
  padding-top: var(--10);
}
.template-page-journal #column-right #section-press .articles .year .right {
  grid-column-end: span 4;
}
.template-page-journal #column-right #section-press .articles .year .right .press {
  display: block;
  padding: var(--6) 0;
}
.template-page-journal #column-right #section-press .articles .year .right .press:not(:last-child) {
  border-bottom: 1px solid;
}
.template-page-journal #column-right #section-press .covers {
  position: relative;
  grid-column-start: 7;
  grid-column-end: span 3;
}
.template-page-journal #column-right #section-press .covers picture {
  position: absolute;
  display: none;
}
.template-page-journal #column-right #section-press .covers picture.visible {
  display: block;
}

.template-page-news {
  background-color: rgba(153, 120, 83, 0.7019607843) !important;
  color: #000000 !important;
}
.template-page-news #column-right #section-news {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--GRID_GUTTER);
  row-gap: var(--20);
  padding-bottom: var(--215);
}
.template-page-news #column-right #section-news .article {
  display: block;
  grid-column-end: span 3;
  height: fit-content;
}
.template-page-news #column-right #section-news .article h2 {
  font-family: "Arizona Bold";
  margin-bottom: var(--6);
}
.template-page-news #column-right #section-news .article picture {
  aspect-ratio: 300/190;
  margin-bottom: var(--6);
}
.template-page-news #column-right #section-news .article .textarea {
  line-height: var(--LH12);
}

.template-single-press {
  background-color: rgba(153, 120, 83, 0.7019607843) !important;
  color: #000000 !important;
}
.template-single-press #column-left {
  grid-column-end: span 3 !important;
}
.template-single-press #column-right {
  grid-column-end: span 9 !important;
}
.template-single-press #column-right #section-gallery {
  grid-template-columns: repeat(9, 1fr);
}
.template-single-press #column-right #section-gallery picture {
  grid-column-start: 2;
  grid-column-end: span 8;
}

#section-related .products,
#section-products .products {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  column-gap: var(--GRID_GUTTER);
  row-gap: var(--20);
}
#section-related .products a,
#section-products .products a {
  display: block;
  height: fit-content;
  grid-column-end: span 3;
}
#section-related .products a.product picture,
#section-products .products a.product picture {
  aspect-ratio: 300/190;
  margin-bottom: var(--6);
}
#section-related .products a.product h2,
#section-products .products a.product h2 {
  margin-bottom: 0.2em;
}
#section-related .products a.product:not(.partner) h2,
#section-products .products a.product:not(.partner) h2 {
  font-family: "Arizona Italic";
}
#section-related .products a.product.partner h3,
#section-products .products a.product.partner h3 {
  font-size: var(--FS8);
  text-transform: uppercase;
}