@charset "UTF-8";
/* Copyright © 2022-now Flac Studio. All rights reserved. https://flac-studio.fr/
<><><><><><><><><><><><><><><><> */
:root {
  --white: whitesmoke;
  --black: black;
  --main-color: #3d4041;
  --font-size: 1rem;
  --font-size-s: calc(var(--font-size) * 0.75);
  --font-size-l: calc(var(--font-size) * 1.85);
  --font-size-xl: calc(var(--font-size) * 2.8);
  --line-height: 1.35;
  --spacing: 0.45rem;
  --spacing-l: calc(var(--spacing) * 2);
  --spacing-xl: calc(var(--spacing) * 3);
  --spacing-text-y: calc(var(--spacing) * 0.5);
  --timeline-line-thickness: 2px;
  --timeline-bar-thickness: 1px;
  --nav-logo-height: calc(10rem + 10vw);
}

@media only screen and (min-width: 768px) {
  :root {
    --nav-logo-height: calc(11.5rem + 8vw);
    --spacing: 0.8rem;
    --spacing-xl: calc(var(--spacing) * 4);
    --font-size-l: calc(var(--font-size) * 1.95);
    --font-size-xl: calc(var(--font-size) * 3.2);
  }
}

html {
  font-size: clamp(14px, calc(1vh + 1vw), 18px);
  scroll-behavior: smooth;
}

body {
  display: block;
  position: relative;
  line-height: var(--line-height);
  font-feature-settings: 'kern' 1;
  font-kerning: normal;
  background-color: var(--main-color);
  color: var(--white);
  font-family: 'IBM Plex Sans', sans-serif;
  overflow-x: hidden;
  hyphens: none;
}

h1 {
  font-size: var(--font-size-l);
  text-transform: uppercase;
}

h2 {
  font-size: var(--font-size-l);
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: var(--timeline-line-thickness);
  text-underline-offset: 0.25rem;
}

a {
  color: var(--white);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-l) calc(var(--spacing-xl) * 0.9);
  z-index: 100;
  font-size: var(--font-size);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-l);
}

header nav .logo {
  width: var(--nav-logo-height);
  opacity: 1;
  transition: opacity 200ms ease-in-out;
}

.switch-about header nav .logo {
  opacity: 0;
}

.switch-about.switch-services-modal header nav .logo {
  opacity: 1;
}

header nav .menu-toggle {
  display: block;
  margin-left: auto;
  padding: var(--spacing-text-y) var(--spacing);
  background: rgba(61, 64, 65, 0.65);
  height: fit-content;
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

@media only screen and (min-width: 768px) {
  header nav .menu-toggle {
    display: none;
  }
}

header nav .main-nav {
  display: none;
  opacity: 0;
  flex-direction: column;
  gap: var(--spacing);
  justify-content: space-around;
  list-style: none;
  position: absolute;
  top: 80%;
  right: var(--spacing-l);
  padding: var(--spacing-text-y) var(--spacing);
  backdrop-filter: blur(5px);
  background-color: rgba(61, 64, 65, 0.65);
  border-radius: 4px;
  transition: opacity 400ms ease-in-out;
}

header nav .main-nav.active {
  display: flex;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  header nav .main-nav {
    display: flex;
    opacity: 1;
    position: static;
    margin-left: auto;
    gap: var(--spacing-l);
    flex-direction: row;
    background-color: rgba(61, 64, 65, 0.5);
  }
}

.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--main-color);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
}

.switch-services-modal .menu-modal {
  opacity: 1;
  visibility: visible;
}

.menu-modal .menu-modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: var(--spacing-l);
  box-sizing: border-box;
}

.menu-modal .services-nav {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: var(--spacing-l);
  width: 100%;
}

.menu-modal .services-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing);
}

.menu-modal .services-nav .menu-item {
  display: flex;
  align-items: center;
  padding: var(--spacing-text-y) var(--spacing);
  border: 2px solid var(--white);
  border-radius: 8px;
  font-size: var(--font-size-l);
  opacity: 0;
  transform: translateY(20px);
  text-transform: uppercase;
  transition: background-color 400ms ease-in-out, color 400ms ease-in-out, opacity 400ms ease-in-out, transform 400ms ease-in-out;
}

.menu-modal .services-nav .menu-item a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.menu-modal .services-nav .menu-item a .arrow-n-e {
  height: 1.75rem;
  width: auto;
  object-fit: contain;
  margin-right: calc(var(--spacing) / 4);
}

.menu-modal .services-nav .menu-item:hover a {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: var(--timeline-line-thickness);
}

.switch-services-modal .menu-modal .menu-item {
  opacity: 1;
  transform: translateY(0);
}

.switch-services-modal .menu-modal .menu-item:nth-child(1) {
  transition-delay: 0s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(2) {
  transition-delay: 0.08s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(3) {
  transition-delay: 0.16s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(4) {
  transition-delay: 0.24s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(5) {
  transition-delay: 0.32s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(6) {
  transition-delay: 0.4s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(7) {
  transition-delay: 0.48s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(8) {
  transition-delay: 0.56s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(9) {
  transition-delay: 0.64s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(10) {
  transition-delay: 0.72s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(11) {
  transition-delay: 0.8s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(12) {
  transition-delay: 0.88s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(13) {
  transition-delay: 0.96s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(14) {
  transition-delay: 1.04s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(15) {
  transition-delay: 1.12s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(16) {
  transition-delay: 1.2s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(17) {
  transition-delay: 1.28s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(18) {
  transition-delay: 1.36s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(19) {
  transition-delay: 1.44s;
}

.switch-services-modal .menu-modal .menu-item:nth-child(20) {
  transition-delay: 1.52s;
}

.partners {
  padding: 0;
  border-bottom: none;
  overflow: hidden;
}

.partners .partners-scroll {
  width: 100%;
  overflow: hidden;
  padding: 0 0;
  position: relative;
}

.partners .partners-track {
  display: flex;
  width: max-content;
}

.partners .partners-track.animated {
  animation: scroll-left 20s linear infinite;
}

.partners .partners-track .entry-logo {
  max-height: 20rem;
  max-width: 11rem;
  flex-shrink: 0;
  object-fit: contain;
  background-color: transparent;
  border: none;
  margin-right: calc(var(--spacing-xl) * 0.85);
  -webkit-filter: drop-shadow(2px 2px 5px #000000);
  filter: drop-shadow(2px 2px 5px #000000);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

section,
article {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
  padding: var(--spacing-xl) var(--spacing-xl) calc(var(--spacing-xl) * 2) var(--spacing-xl);
}

section .section-title,
article .section-title {
  margin-bottom: var(--spacing-l);
}

@media only screen and (min-width: 768px) {
  section .section-title,
article .section-title {
    margin-bottom: 0;
  }
}

section em,
article em {
  font-size: var(--font-size-s);
}

section blockquote,
article blockquote {
  font-style: italic;
}

section ul,
article ul {
  list-style-type: '→';
  margin-left: calc(var(--spacing) * 3);
}

@media only screen and (min-width: 768px) {
  section ul,
article ul {
    margin-left: calc(var(--spacing) * 1.25);
  }
}

section ul li,
article ul li {
  padding-left: calc(var(--spacing-text-y) * 2);
}

@media only screen and (min-width: 768px) {
  section ul li,
article ul li {
    padding-left: var(--spacing-text-y);
  }
}

section.hero,
article.hero {
  position: relative;
  padding: 0;
  height: 100svh;
  width: 100vw;
}

section.hero .hero-carousel,
article.hero .hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

section.hero .hero-carousel img,
article.hero .hero-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
}

section.hero .hero-carousel img:nth-of-type(1),
article.hero .hero-carousel img:nth-of-type(1) {
  object-position: 40% 50%;
}

@media only screen and (min-width: 768px) {
  section.hero .hero-carousel img:nth-of-type(1),
article.hero .hero-carousel img:nth-of-type(1) {
    object-position: 50% 50%;
  }
}

section.hero .hero-carousel img:nth-of-type(2),
article.hero .hero-carousel img:nth-of-type(2) {
  object-position: 15% 50%;
}

@media only screen and (min-width: 768px) {
  section.hero .hero-carousel img:nth-of-type(2),
article.hero .hero-carousel img:nth-of-type(2) {
    object-position: 50% 50%;
  }
}

section.hero .hero-carousel img:nth-of-type(3),
article.hero .hero-carousel img:nth-of-type(3) {
  object-position: 65% 50%;
}

@media only screen and (min-width: 768px) {
  section.hero .hero-carousel img:nth-of-type(3),
article.hero .hero-carousel img:nth-of-type(3) {
    object-position: 50% 50%;
  }
}

section.hero .hero-carousel img:nth-of-type(4),
article.hero .hero-carousel img:nth-of-type(4) {
  object-position: 30% 50%;
}

@media only screen and (min-width: 768px) {
  section.hero .hero-carousel img:nth-of-type(4),
article.hero .hero-carousel img:nth-of-type(4) {
    object-position: 50% 50%;
  }
}

section.hero .hero-carousel img:nth-of-type(5),
article.hero .hero-carousel img:nth-of-type(5) {
  object-position: 70% 50%;
}

@media only screen and (min-width: 768px) {
  section.hero .hero-carousel img:nth-of-type(5),
article.hero .hero-carousel img:nth-of-type(5) {
    object-position: 50% 50%;
  }
}

section.hero .hero-carousel img:nth-of-type(6),
article.hero .hero-carousel img:nth-of-type(6) {
  object-position: 75% 50%;
}

@media only screen and (min-width: 768px) {
  section.hero .hero-carousel img:nth-of-type(6),
article.hero .hero-carousel img:nth-of-type(6) {
    object-position: 50% 50%;
  }
}

section.hero .hero-carousel img.active,
article.hero .hero-carousel img.active {
  opacity: 1;
}

section.hero .hero-content,
article.hero .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--spacing);
  padding: var(--spacing-xl);
  box-sizing: border-box;
  text-align: left;
  text-shadow: 2px 2px 6px #3d4041;
}

section.hero .hero-content h1,
article.hero .hero-content h1 {
  font-size: var(--font-size-xl);
  line-height: calc(var(--line-height) * 0.75);
  font-weight: bold;
}

section.hero .hero-content .hero-subtitle,
article.hero .hero-content .hero-subtitle {
  font-size: var(--font-size-l);
}

section.about,
article.about {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spacing-l);
  position: relative;
}

section.about ul,
article.about ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-text-y);
  list-style: disc;
  margin-left: var(--spacing-l);
}

section.about .section-title,
article.about .section-title {
  grid-column: span 12;
  grid-row: 1;
}

section.about .about-intro,
article.about .about-intro {
  display: flex;
  flex-direction: column;
  gap: var(--spacing);
  grid-column: span 12;
  grid-row: 2;
}

section.about p img,
article.about p img {
  max-width: 10rem;
  height: auto;
}

section.about .about-images,
article.about .about-images {
  margin-top: var(--spacing-xl);
  grid-column: span 12;
  display: grid;
  gap: var(--spacing-l);
  grid-template-columns: repeat(12, 1fr);
}

section.about .about-images .entry-img-figure,
article.about .about-images .entry-img-figure {
  height: auto;
  width: 100%;
  grid-column: span 12;
}

section.about .about-images .entry-img-figure figcaption,
article.about .about-images .entry-img-figure figcaption {
  font-size: var(--font-size-s);
  margin-top: var(--spacing);
}

@media only screen and (min-width: 768px) {
  section.about .about-intro,
article.about .about-intro {
    grid-column: span 8;
    grid-row: 2;
  }
  section.about .about-images,
article.about .about-images {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media only screen and (min-width: 1280px) {
  section.about .about-intro,
article.about .about-intro {
    grid-column: span 6;
    grid-row: 2;
  }
  section.about .about-expertise,
article.about .about-expertise {
    grid-column: span 4;
    grid-row: 2;
  }
  section.about .about-origins,
article.about .about-origins {
    grid-column: span 4;
    grid-row: 2;
  }
  section.about .about-credentials,
article.about .about-credentials {
    grid-column: span 4;
    grid-row: 3;
  }
  section.about .about-images .entry-img-figure,
article.about .about-images .entry-img-figure {
    grid-column: span 6;
  }
}

section.history,
article.history {
  --gradient-opacity: 1;
}

section.history .history-text,
article.history .history-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing);
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  section.history .history-text,
article.history .history-text {
    width: 50%;
  }
}

section.history .timeline-wrapper,
article.history .timeline-wrapper {
  position: relative;
  margin-top: calc(var(--spacing-xl) * 2);
}

section.history .timeline-wrapper::after,
article.history .timeline-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, transparent 0%, var(--main-color) 100%);
  pointer-events: none;
  opacity: var(--gradient-opacity);
  transition: opacity 400ms ease-in-out;
  z-index: 1;
}

section.history .timeline-container,
article.history .timeline-container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--white) transparent;
}

section.history .timeline-container::-webkit-scrollbar,
article.history .timeline-container::-webkit-scrollbar {
  height: 6px;
}

section.history .timeline-container::-webkit-scrollbar-track,
article.history .timeline-container::-webkit-scrollbar-track {
  background: transparent;
}

section.history .timeline-container::-webkit-scrollbar-thumb,
article.history .timeline-container::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 3px;
}

section.history .timeline-container .timeline-block,
article.history .timeline-container .timeline-block {
  position: relative;
  width: 8rem;
  height: 18.5rem;
  flex: 1 0 auto;
}

section.history .timeline-container .timeline-block:hover .timeline-date,
article.history .timeline-container .timeline-block:hover .timeline-date {
  translate: 0 -0.25rem;
  scale: 1.25;
}

section.history .timeline-container .timeline-block:hover .timeline-graphics,
article.history .timeline-container .timeline-block:hover .timeline-graphics {
  min-height: 8rem;
}

section.history .timeline-container .timeline-block:hover .timeline-graphics .timeline,
article.history .timeline-container .timeline-block:hover .timeline-graphics .timeline {
  transform: translate(-50%, 0) scaleY(1);
}

section.history .timeline-container .timeline-block:hover .timeline-graphics .timeline-dot,
article.history .timeline-container .timeline-block:hover .timeline-graphics .timeline-dot {
  transform: translate(-50%, -50%) scale(1.5);
}

section.history .timeline-container .timeline-block:last-of-type .timeline .timeline-arrow,
article.history .timeline-container .timeline-block:last-of-type .timeline .timeline-arrow {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-bottom: var(--timeline-line-thickness) solid var(--white);
  border-right: var(--timeline-line-thickness) solid var(--white);
  right: 0;
  translate: -5px -50%;
  rotate: -45deg;
}

section.history .timeline-container .timeline-block .timeline-date,
article.history .timeline-container .timeline-block .timeline-date {
  font-size: var(--font-size);
  text-align: center;
  margin-bottom: var(--spacing);
  transition: all 200ms ease-in-out;
}

section.history .timeline-container .timeline-block .timeline-paragraph,
article.history .timeline-container .timeline-block .timeline-paragraph {
  margin-top: var(--spacing);
  font-size: var(--font-size-s);
  padding: var(--spacing);
  width: fit-content;
  margin: 0 auto;
}

section.history .timeline-container .timeline-block .timeline-graphics,
article.history .timeline-container .timeline-block .timeline-graphics {
  display: block;
  position: relative;
  min-height: 6rem;
  transition: min-height 200ms ease-in-out;
}

section.history .timeline-container .timeline-block .timeline-graphics .timeline,
article.history .timeline-container .timeline-block .timeline-graphics .timeline {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: var(--timeline-line-thickness);
  background-color: var(--white);
  transition: transform 400ms;
}

section.history .timeline-container .timeline-block .timeline-graphics .timeline-dot,
article.history .timeline-container .timeline-block .timeline-graphics .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  translate: 0 calc(var(--timeline-line-thickness) / 2);
  background-color: var(--white);
  width: 1rem;
  height: 1rem;
  border-radius: 1000px;
  transition: transform 400ms;
}

section.history .timeline-container .timeline-block .timeline-graphics .timeline-bar,
article.history .timeline-container .timeline-block .timeline-graphics .timeline-bar {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--white);
  height: 100%;
  width: var(--timeline-bar-thickness);
}

section.team,
article.team {
  margin-top: calc(var(--spacing-l) * 4);
}

section.team h1,
article.team h1 {
  text-decoration: underline;
}

section.team img,
article.team img {
  width: 100%;
  height: auto;
}

section.contact,
article.contact {
  --members-gradient-opacity: 1;
}

section.contact .trombino-wrapper,
article.contact .trombino-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: var(--spacing-l);
  margin-top: var(--spacing-l);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--spacing);
  scrollbar-width: thin;
  scrollbar-color: var(--white) transparent;
}

section.contact .trombino-wrapper::after,
article.contact .trombino-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent 0%, var(--main-color) 100%);
  pointer-events: none;
  opacity: var(--members-gradient-opacity);
  transition: opacity 400ms ease-in-out;
  z-index: 1;
}

section.contact .trombino-wrapper::-webkit-scrollbar,
article.contact .trombino-wrapper::-webkit-scrollbar {
  height: 4px;
}

section.contact .trombino-wrapper::-webkit-scrollbar-track,
article.contact .trombino-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

section.contact .trombino-wrapper::-webkit-scrollbar-thumb,
article.contact .trombino-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 2px;
}

@media only screen and (min-width: 768px) {
  section.contact .trombino-wrapper,
article.contact .trombino-wrapper {
    justify-content: space-around;
    overflow-x: visible;
  }
}

section.contact .trombino-wrapper .member-wrapper,
article.contact .trombino-wrapper .member-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing);
  min-width: 120px;
  flex-shrink: 0;
}

@media only screen and (min-width: 768px) {
  section.contact .trombino-wrapper .member-wrapper,
article.contact .trombino-wrapper .member-wrapper {
    min-width: auto;
    flex-shrink: 1;
  }
}

section.contact .trombino-wrapper .member-wrapper .member-img,
article.contact .trombino-wrapper .member-wrapper .member-img {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 1000px;
}

section.contact .trombino-wrapper .member-wrapper .member-text,
article.contact .trombino-wrapper .member-wrapper .member-text {
  text-align: center;
  font-size: var(--font-size-s);
  max-width: 8.5rem;
}

section.contact .trombino-wrapper .member-wrapper .member-text .member-name,
article.contact .trombino-wrapper .member-wrapper .member-text .member-name {
  text-transform: uppercase;
  font-weight: 600;
}

section.contact .trombino-wrapper .member-wrapper .member-text .member-title,
article.contact .trombino-wrapper .member-wrapper .member-text .member-title {
  font-style: italic;
}

.img-footer-wrapper {
  display: block;
  position: relative;
}

.img-footer-wrapper figcaption {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 var(--spacing);
  margin: var(--spacing);
  color: var(--white);
  width: 50%;
  border-left: var(--timeline-bar-thickness) solid var(--white);
  font-style: italic;
}

@media only screen and (min-width: 768px) {
  .img-footer-wrapper figcaption {
    width: 33%;
  }
}

@media only screen and (min-width: 1280px) {
  .img-footer-wrapper figcaption {
    width: 25%;
  }
}

.img-footer-wrapper .img-footer {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: relative;
  object-position: 65% 50%;
}

@media only screen and (min-width: 768px) {
  .img-footer-wrapper .img-footer {
    object-position: 50% 50%;
  }
}

article {
  margin-top: calc(var(--spacing-l) * 8);
}

@media only screen and (min-width: 768px) {
  article {
    margin-top: calc(var(--spacing-l) * 4);
  }
}

article .title-wrapper {
  display: flex;
  position: relative;
  gap: var(--spacing);
  width: 100%;
}

@media only screen and (min-width: 768px) {
  article .title-wrapper {
    width: calc(50% - var(--spacing-l) / 2);
  }
}

article .title-wrapper .return-arrow {
  height: 1.4rem;
  width: auto;
  object-fit: contain;
  margin-top: calc(var(--spacing-l));
}

@media only screen and (min-width: 768px) {
  article .title-wrapper .return-arrow {
    margin-top: calc(var(--spacing-text-y) * 1.9);
  }
}

article .title-wrapper .return-arrow:hover {
  cursor: pointer;
}

article .title-wrapper h1 {
  text-decoration: underline;
}

article .matrix-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-l);
}

article .matrix-container p img {
  width: inherit;
  max-width: 100%;
  margin: var(--spacing) 0 var(--spacing-text-y) 0;
}

article .matrix-container p figcaption {
  font-size: var(--font-size-s);
  margin-top: var(--spacing);
}

article .matrix-container .matrix-item {
  box-sizing: border-box;
}

article .matrix-container .matrix-item figure {
  margin-top: var(--spacing-l);
}

@media only screen and (min-width: 768px) {
  article .matrix-container .matrix-item figure {
    margin-top: 0;
  }
}

article .matrix-container .matrix-item.matrix-textarea-full, article .matrix-container .matrix-item.matrix-image-full, article .matrix-container .matrix-item.matrix-blank-full {
  width: 100%;
}

article .matrix-container .matrix-item.matrix-textarea-half, article .matrix-container .matrix-item.matrix-image-half, article .matrix-container .matrix-item.matrix-blank-half {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  article .matrix-container .matrix-item.matrix-textarea-half, article .matrix-container .matrix-item.matrix-image-half, article .matrix-container .matrix-item.matrix-blank-half {
    width: calc(50% - var(--spacing-l) / 2);
  }
}

article .matrix-container .matrix-item.matrix-textarea-full + .matrix-image-full, article .matrix-container .matrix-item.matrix-textarea-full + .matrix-image-half, article .matrix-container .matrix-item.matrix-textarea-half + .matrix-image-full, article .matrix-container .matrix-item.matrix-textarea-half + .matrix-image-half {
  margin-top: var(--spacing-l);
}

@media only screen and (min-width: 768px) {
  article .matrix-container .matrix-item.matrix-textarea-full + .matrix-image-full, article .matrix-container .matrix-item.matrix-textarea-full + .matrix-image-half, article .matrix-container .matrix-item.matrix-textarea-half + .matrix-image-full, article .matrix-container .matrix-item.matrix-textarea-half + .matrix-image-half {
    margin-top: 0;
  }
}

article .matrix-container .matrix-item.matrix-image-full + .matrix-textarea-full, article .matrix-container .matrix-item.matrix-image-full + .matrix-textarea-half, article .matrix-container .matrix-item.matrix-image-half + .matrix-textarea-full, article .matrix-container .matrix-item.matrix-image-half + .matrix-textarea-half {
  margin-top: var(--spacing-l);
}

@media only screen and (min-width: 768px) {
  article .matrix-container .matrix-item.matrix-image-full + .matrix-textarea-full, article .matrix-container .matrix-item.matrix-image-full + .matrix-textarea-half, article .matrix-container .matrix-item.matrix-image-half + .matrix-textarea-full, article .matrix-container .matrix-item.matrix-image-half + .matrix-textarea-half {
    margin-top: 0;
  }
}

article .matrix-container .matrix-item.matrix-blank-half, article .matrix-container .matrix-item.matrix-blank-full {
  min-height: var(--spacing-l);
}

article .matrix-container .matrix-item .matrix-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

article .matrix-container .matrix-item.matrix-textarea-full, article .matrix-container .matrix-item.matrix-textarea-half {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-text-y);
}

footer {
  position: relative;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, var(--main-color) 70%, var(--main-color) 100%);
  padding: var(--spacing-xl);
  box-sizing: border-box;
  border-top: var(--timeline-bar-thickness) solid var(--white);
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spacing-l);
  width: 100%;
}

footer .footer-grid .footer-logo {
  grid-column: 1 / span 12;
  grid-row: 1;
}

footer .footer-grid .footer-logo img {
  width: 100%;
  max-width: 15rem;
  object-fit: contain;
}

footer .footer-grid .footer-subscribe {
  grid-column: 1 / span 12;
  grid-row: 2;
}

footer .footer-grid .footer-subscribe .subscribe {
  padding: var(--spacing);
  border: 1px solid var(--white);
  box-sizing: border-box;
  width: 100%;
  background: transparent;
  text-align: center;
  color: var(--white);
  cursor: pointer;
}

footer .footer-grid .footer-contact {
  grid-column: 1 / span 12;
  grid-row: 3;
}

footer .footer-grid .footer-contact address {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-text-y);
  font-style: normal;
}

footer .footer-grid .footer-social {
  grid-column: 1 / span 12;
  grid-row: 4;
  white-space: nowrap;
}

footer .footer-grid .footer-social ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-text-y);
  list-style: none;
}

@media only screen and (min-width: 768px) {
  footer .footer-grid .footer-logo {
    grid-column: 1 / span 6;
    grid-row: 1;
  }
  footer .footer-grid .footer-subscribe {
    grid-column: 7 / span 6;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }
  footer .footer-grid .footer-contact {
    grid-column: 1 / span 6;
    grid-row: 2;
  }
  footer .footer-grid .footer-social {
    grid-column: 7 / span 6;
    grid-row: 2;
  }
}

@media only screen and (min-width: 1280px) {
  footer .footer-grid .footer-logo {
    grid-column: 1 / span 3;
    grid-row: 1;
  }
  footer .footer-grid .footer-subscribe {
    grid-column: 4 / span 6;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  footer .footer-grid .footer-subscribe .subscribe {
    width: auto;
  }
  footer .footer-grid .footer-social {
    grid-column: 11 / span 2;
    grid-row: 1;
  }
  footer .footer-grid .footer-contact {
    grid-column: 6 / span 3;
    grid-row: 1;
  }
}

.construction-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--main-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  box-sizing: border-box;
}

.construction-overlay .construction-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spacing-l);
  width: 100%;
  max-width: 1200px;
  font-size: var(--font-size);
}

.construction-overlay .construction-grid .construction-logo {
  grid-column: 1 / span 12;
  grid-row: 1;
}

.construction-overlay .construction-grid .construction-logo img {
  width: 100%;
  max-width: 20rem;
  object-fit: contain;
}

.construction-overlay .construction-grid .construction-title {
  grid-column: 1 / span 12;
  grid-row: 2;
  text-transform: uppercase;
  font-weight: bold;
}

.construction-overlay .construction-grid .construction-contact {
  grid-column: 1 / span 12;
  grid-row: 3;
}

.construction-overlay .construction-grid .construction-email {
  grid-column: 1 / span 12;
  grid-row: 4;
}

.construction-overlay .construction-grid .construction-phone {
  grid-column: 1 / span 12;
  grid-row: 5;
}

.construction-overlay .construction-grid p {
  font-size: var(--font-size);
  line-height: var(--line-height);
  margin: 0;
}

.construction-overlay .construction-grid a {
  color: var(--white);
  text-decoration: none;
}

.construction-overlay .construction-grid a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .construction-overlay .construction-grid .construction-logo {
    grid-column: 1 / span 6;
    grid-row: 1 / span 2;
  }
  .construction-overlay .construction-grid .construction-title {
    grid-column: 7 / span 6;
    grid-row: 1;
  }
  .construction-overlay .construction-grid .construction-contact {
    grid-column: 7 / span 6;
    grid-row: 2;
  }
  .construction-overlay .construction-grid .construction-email {
    grid-column: 1 / span 6;
    grid-row: 3;
  }
  .construction-overlay .construction-grid .construction-phone {
    grid-column: 7 / span 6;
    grid-row: 3;
  }
}

@media only screen and (min-width: 1280px) {
  .construction-overlay .construction-grid .construction-logo {
    grid-column: 1 / span 4;
    grid-row: 1 / span 3;
  }
  .construction-overlay .construction-grid .construction-title {
    grid-column: 5 / span 8;
    grid-row: 1;
  }
  .construction-overlay .construction-grid .construction-contact {
    grid-column: 5 / span 4;
    grid-row: 2;
  }
  .construction-overlay .construction-grid .construction-email {
    grid-column: 9 / span 4;
    grid-row: 2;
  }
  .construction-overlay .construction-grid .construction-phone {
    grid-column: 5 / span 4;
    grid-row: 3;
  }
}
