@charset "UTF-8";
/* PSEUDO ELEMENTS */
/* SPACING */
/* ALIGNMENT */
/* BREAKING PAGE RULES */
/* MEDIA MANAGEMENT */
/* SHAPES */
/* VENDOR PREFIXES */
:root {
  --black: black;
  --white: white;
  --color-primary: #591868;
  --color-secondary: #8b066f;
  --color-tertiary: #d1cd00;
  --color-quaternary: #a2ab00;
  --color-quinary: #00112f;
  /*
   Quinary (5)
   Senary (6)
  Septenary (7)
  Octonary (8)
  Nonary (9)
  Denary (10)  
   */
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
}

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

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

html,
body {
  overflow-x: clip;
}

figure {
  margin: 0;
  display: block;
}

html {
  font-size: 16px;
}

body {
  font-family: "neue-haas-grotesk-display", "Helvetica", "Arial", sans-serif;
  color: var(--black);
  background-color: var(--white);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.25;
}

h1 {
  font-family: "unbounded";
  font-weight: 100;
  line-height: 1.2;
}

h2 {
  font-family: "neue-haas-grotesk-display";
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.26;
}

h3 {
  font-family: "neue-haas-grotesk-display";
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.37;
}

p {
  font-family: "neue-haas-grotesk-display";
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.37;
}

/* TYPOGRAPHY */
/* font-weigh */
/* 
  font-weight: 100; Thin
  font-weight: 200; Extra Light
  font-weight: 300; Light
  font-weight: 400; Normal
  font-weight: 500; Medium
  font-weight: 600; Semi Bold
  font-weight: 700; Bold
  font-weight: 800; Extra Bold
  font-weight: 900; Black
  */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
}
html.no-scroll {
  overflow-y: clip;
}

body {
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.no-scroll {
  overflow-y: clip;
}

img {
  max-width: 100%;
}

.main {
  overflow: clip;
  width: 100%;
  max-width: 100vw;
  margin-inline: auto;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.container-large,
.container-small {
  margin-inline: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 1040px) {
  .container-large,
  .container-small {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.container-large {
  max-width: 1580px;
  width: 100%;
}

.container-small {
  max-width: 1246px;
  width: 100%;
}

.btn-primary__cta {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(6px, 1vw, 8px) clamp(6px, 1vw, 8px) clamp(6px, 1vw, 8px) clamp(16px, 3vw, 28px);
  border-radius: 50px;
  border: 1px solid var(--color-secondary);
  width: fit-content;
}
.btn-primary__cta__txt {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 300;
  position: relative;
  display: inline-block;
}
.btn-primary__cta__txt::before {
  content: attr(data-text);
  font-weight: 600;
  visibility: hidden;
  display: block;
  height: 0;
  overflow: hidden;
}
.btn-primary__cta img {
  width: clamp(20px, 3vw, 28px);
  height: clamp(20px, 3vw, 28px);
}
.btn-primary__cta--portfolio {
  padding: 10px 36px;
}
.btn-primary__cta--variant {
  border: 2px solid var(--color-tertiary);
  color: var(--color-tertiary);
  width: 100%;
}
.btn-primary__cta--variant img {
  margin-left: auto;
}
@media screen and (min-width: 1040px) {
  .btn-primary__cta--variant {
    width: fit-content;
  }
}
.btn-primary__cta--news {
  margin-top: 102px;
  gap: 38px;
}
@media screen and (min-width: 1040px) {
  .btn-primary__cta--news {
    margin-top: 52px;
  }
}
.btn-primary__cta--article {
  background-color: var(--white);
}

.btn-primary__cta--secondary {
  color: var(--color-tertiary);
  border: 1px solid var(--white);
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: clamp(6px, 1vw, 7px) clamp(8px, 1vw, 8px) clamp(6px, 1vw, 7px) clamp(16px, 3vw, 28px);
  border-radius: 50px;
  width: fit-content;
}
.btn-primary__cta--secondary__txt {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 300;
}
.btn-primary__cta--secondary__txt--green {
  color: var(--color-quaternary);
}
.btn-primary__cta--secondary__txt--purple {
  color: var(--color-secondary);
}
.btn-primary__cta--secondary img {
  width: clamp(24px, 4vw, 40px);
  height: clamp(24px, 4vw, 40px);
}
.btn-primary__cta--secondary--variant {
  color: var(--color-secondary);
}

.btn-animate {
  display: inline-flex;
  align-items: center;
  font-weight: 300;
  transition: font-weight 0.2s ease;
  gap: 8px;
}
.btn-animate--secondary {
  gap: 18px;
}
.btn-animate__text {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  font-weight: 300;
  transition: font-weight 0.2s ease;
}
.btn-animate__text::before {
  content: attr(data-text);
  font-weight: 600;
  visibility: hidden;
  display: block;
  height: 0;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .btn-animate:hover .btn-animate__text {
    font-weight: 600;
  }
}
.btn-animate:focus-visible .btn-animate__text {
  font-weight: 600;
}
.btn-animate img {
  transition: transform 0.2s ease;
}

.font-black {
  font-weight: 900;
}

.green-arrow-link img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn-animate:hover img {
    transform: rotate(45deg);
  }
  .green-arrow-link:hover img {
    transform: rotate(45deg);
  }
}
.hidden {
  display: none;
}

.heading__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  overflow: hidden;
  margin-bottom: 48px;
}
.heading__container--article {
  margin-top: 88px;
}
@media screen and (min-width: 1040px) {
  .heading__container {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .heading__container--article {
    margin-top: 105px;
  }
}

.heading__title {
  font-family: "unbounded";
  font-size: clamp(1.875rem, 1.5678rem + 1.2605vw, 2.8125rem);
  margin-bottom: 19px;
  font-weight: 200;
  width: 100vw;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.heading__title--rse {
  width: 100%;
}
.heading__title--actus {
  width: fit-content;
}
.heading__title--article {
  width: fit-content;
}

.btn-primary__cta--actus {
  align-self: start;
}
@media screen and (min-width: 1040px) {
  .btn-primary__cta--actus {
    align-self: center;
  }
}

.sub-heading {
  margin-top: 60px;
  color: var(--color-primary);
  width: 100%;
}

.sub-heading > p {
  font-family: "unbounded";
  line-height: 1.3;
  letter-spacing: -1.5px;
}

.sub-heading p:first-child {
  font-size: clamp(1.875rem, 0.4464rem + 7.1429vw, 7.5rem);
  text-align: left;
  align-self: flex-start;
  font-weight: 200;
}

.sub-heading p:last-child {
  font-size: clamp(1.5625rem, 0.5308rem + 5.1587vw, 5.625rem);
  text-align: left;
  font-weight: 800;
  align-self: flex-start;
}

.sub-heading__dynamic-txt {
  display: block;
  width: 90vw;
  max-width: 90vw;
  min-height: 1.3em;
  white-space: nowrap;
  overflow: hidden;
}

.maincard__img {
  position: relative;
  flex: 0 1 70%;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  transition: border-radius 0.2s ease;
}
@media screen and (max-width: 480px) {
  .maincard__img {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .maincard__img--portfolio {
    display: block;
    height: 258px;
  }
}
.maincard__img--product-showcase {
  max-width: 992px;
  margin-top: -288px;
}
@media screen and (max-width: 1240px) {
  .maincard__img--product-showcase {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .maincard__img--product-showcase:hover {
    border-radius: 0;
  }
  .maincard__img--product-showcase:hover .product-showcase__main-img {
    transform: scale(1.1);
  }
  .maincard__img--product-showcase:hover .maincard__stand-name img {
    transform: rotate(45deg);
  }
}
.maincard__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maincard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(25deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.1) 80%);
}

.maincard__stand-name {
  color: var(--white);
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  bottom: 72px;
  left: 26px;
}
@media screen and (min-width: 720px) {
  .maincard__stand-name {
    bottom: 14px;
    gap: 24px;
  }
}

.maincard__stand-name span {
  font-size: 1.875rem;
  text-transform: uppercase;
}
@media screen and (min-width: 720px) {
  .maincard__stand-name span {
    font-size: 3.1rem;
  }
}

.maincard__stand-name a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.maincard__stand-name img {
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 720px) {
  .maincard__stand-name img {
    width: 40px;
    height: 40px;
  }
}

.maincard__tags {
  position: absolute;
  bottom: 23px;
  right: 0;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 720px) {
  .maincard__tags {
    right: 26px;
    left: auto;
  }
}

.maincard__tags a {
  background-color: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: clamp(8px, 1vw, 12px) clamp(16px, 3vw, 24px);
  font-size: 1.1rem;
}

.btn-tag {
  font-size: clamp(1rem, 0.959rem + 0.1681vw, 1.125rem);
  font-weight: 300;
  padding: clamp(8px, 1vw, 12px) clamp(18px, 3vw, 25px);
  border: 1px solid var(--black);
  border-radius: 50px;
}

.story-introduction {
  margin-top: 89px;
  overflow: visible;
}
@media screen and (min-width: 1240px) {
  .story-introduction {
    margin-top: 89px;
  }
}

.story-introduction__grp-logo {
  position: relative;
  z-index: 2;
  margin-bottom: 127px;
}
@media screen and (min-width: 1240px) {
  .story-introduction__grp-logo {
    margin-bottom: 0;
  }
}
.story-introduction__grp-logo::after {
  content: "";
  position: absolute;
  bottom: -127px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 127px;
  background-color: var(--color-tertiary);
}
@media screen and (min-width: 1240px) {
  .story-introduction__grp-logo::after {
    height: 645px;
    bottom: -645px;
  }
}

.story-introduction__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  width: clamp(220px, 70vw, 290px);
  height: clamp(220px, 70vw, 290px);
  border-radius: 1000px;
  background-color: transparent;
  position: relative;
}
.story-introduction__logo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1000px;
  background-color: var(--color-tertiary);
  transform-origin: 50% 0%;
  transition: transform 0.3s ease;
  z-index: 0;
}
.story-introduction__logo__txt-1 {
  font-family: "unbounded";
  font-size: 1.875rem;
  font-weight: 200;
  line-height: 0.54;
  transform: translateY(0) translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.story-introduction__logo__txt-2 {
  color: var(--white);
  font-family: "unbounded";
  font-size: clamp(3.125rem, 1.9531rem + 3.75vw, 4.0625rem);
  font-weight: 900;
  line-height: 1.18;
  transform: translateY(0) translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .story-introduction__logo:hover::before {
    transform: scale(1.1);
  }
  .story-introduction__logo:hover .story-introduction__logo__txt-1 {
    transform: translateY(10px);
  }
  .story-introduction__logo:hover .story-introduction__logo__txt-2 {
    transform: translateY(10px);
  }
}
.story-introduction__grp-presentation {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  gap: 43px;
}
@media screen and (min-width: 1240px) {
  .story-introduction__grp-presentation {
    flex-direction: row;
    justify-content: space-between;
  }
}
.story-introduction__grp-presentation .story-introduction__presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 186px;
}
.story-introduction__grp-presentation .story-introduction__presentation__bloc-txt--bloc2, .story-introduction__grp-presentation .story-introduction__presentation__bloc-txt {
  font-size: 1.06rem;
}
.story-introduction__grp-presentation .story-introduction__presentation--bloc2 {
  position: relative;
}
.story-introduction__grp-presentation .story-introduction__presentation--bloc2::before {
  content: "";
  position: absolute;
  top: -127px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 127px;
  background-color: var(--color-tertiary);
}
@media screen and (min-width: 1240px) {
  .story-introduction__grp-presentation .story-introduction__presentation--bloc2::before {
    display: none;
  }
}
.story-introduction__grp-presentation .story-introduction__presentation--bloc2::after {
  content: "";
  position: absolute;
  top: -127px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 1000px;
  background-color: var(--color-tertiary);
}
@media screen and (min-width: 1240px) {
  .story-introduction__grp-presentation .story-introduction__presentation--bloc2::after {
    display: none;
  }
}
.story-introduction__grp-presentation .story-introduction__presentation__bloc-identity {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1240px) {
  .story-introduction__grp-presentation .story-introduction__presentation__bloc-identity {
    flex-direction: row;
    align-items: flex-end;
  }
  .story-introduction__grp-presentation .story-introduction__presentation__bloc-identity--bloc2 {
    flex-direction: row-reverse;
  }
}
.story-introduction__grp-presentation .story-introduction__presentation__bloc-identity .story-introduction__grp-img {
  margin-bottom: 20px;
}
.story-introduction__grp-presentation .story-introduction__presentation__bloc-identity .story-introduction__grp-img .story-introduction__grp-img__wrapper {
  width: 194px;
  height: 194px;
  border-radius: 1000px;
  overflow: hidden;
}
.story-introduction__grp-presentation .story-introduction__presentation__bloc-identity .story-introduction__grp-img .story-introduction__grp-img__wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.story-introduction__grp-presentation .story-introduction__presentation__bloc-identity .story-introduction__grp-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1240px) {
  .story-introduction__grp-presentation .story-introduction__presentation__bloc-identity .story-introduction__grp-social {
    flex-direction: row-reverse;
  }
  .story-introduction__grp-presentation .story-introduction__presentation__bloc-identity .story-introduction__grp-social--bloc2 {
    flex-direction: row;
  }
}
.story-introduction__grp-presentation .story-introduction__presentation__bloc-identity .story-introduction__grp-social .story-introduction__presentation__social-link {
  width: 32px;
  height: 32px;
}
.story-introduction__grp-presentation .story-introduction__presentation__bloc-identity .story-introduction__grp-social__name {
  font-family: "unbounded";
  font-size: 1.875rem;
  width: 100%;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}
.story-introduction__grp-presentation .story-introduction__presentation__bloc-txt {
  text-align: center;
  max-width: 550px;
}
@media screen and (min-width: 1240px) {
  .story-introduction__grp-presentation .story-introduction__presentation__bloc-txt {
    text-align: right;
  }
  .story-introduction__grp-presentation .story-introduction__presentation__bloc-txt--bloc2 {
    text-align: left;
    width: 100%;
  }
}

.story-timeline--desktop {
  background-color: var(--color-tertiary);
  display: none;
}
.story-timeline--desktop__bottom-spacing {
  height: 170px;
}
@media screen and (min-width: 1240px) {
  .story-timeline--desktop {
    display: block;
  }
}

.story-timeline__container--desktop {
  position: relative;
  margin-inline: auto;
  z-index: 2;
}

.story-timeline__line {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: var(--white);
  left: 50%;
  transform: translateX(-50%);
}

.story-timeline__bloc {
  position: relative;
}
.story-timeline__bloc--mobile {
  margin-bottom: 32px;
  width: 100%;
}
.story-timeline__bloc--variant-2 {
  margin-top: 158px;
  width: 50%;
  margin-left: auto;
}
.story-timeline__bloc--variant-3 {
  margin-top: 120px;
  width: 50%;
  margin-right: auto;
}
.story-timeline__bloc--variant-4 {
  margin-top: 60px;
}
.story-timeline__bloc .gallery__item .maincard__img--portfolio-img {
  transition: transform 0.2s ease;
}
.story-timeline__bloc .gallery__item .maincard__stand-name img {
  transition: transform 0.2s ease;
}
.story-timeline__bloc .gallery__item:hover .maincard__img--portfolio-img {
  transform: scale(1.1);
}
.story-timeline__bloc .gallery__item:hover .maincard__stand-name img {
  transform: rotate(45deg);
}

.story-timeline__bloc__date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 55px;
  color: var(--white);
}
.story-timeline__bloc__date--mobile {
  position: static;
  margin-top: 20px;
  transform: unset;
}
.story-timeline__bloc__date p {
  font-size: 5rem;
  font-weight: 100;
  line-height: 1.1;
}
.story-timeline__bloc__date--right {
  left: 50%;
  transform: translateX(-50%);
  padding-left: 250px;
}
.story-timeline__bloc__date--right::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 1000px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.story-timeline__bloc__date--left {
  left: 50%;
  transform: translateX(-50%);
  padding-right: 250px;
}
.story-timeline__bloc__date--left::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 1000px;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.story-timeline__bloc__infos {
  width: 80%;
  max-width: 1246px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  padding-top: 183px;
  margin-inline: auto;
}
.story-timeline__bloc__infos > * {
  opacity: 0;
}
.story-timeline__bloc__infos--mobile {
  padding-top: 0;
  width: 100%;
  flex-direction: column;
  gap: 32px;
}
.story-timeline__bloc__infos--mobile > * {
  opacity: 1;
}
.story-timeline__bloc__infos--variant {
  flex-direction: row-reverse;
}
.story-timeline__bloc__infos--variant .footer__leads__img {
  max-width: 300px;
  margin-right: auto;
}
.story-timeline__bloc__infos--variant .story-timeline__bloc__infos__video {
  height: 355px;
  width: 276px;
  margin-top: -154px;
  margin-right: auto;
}
.story-timeline__bloc__infos--variant .story-timeline__bloc__infos__video .video__cards__label {
  background-color: var(--color-quaternary);
  height: 52px;
}
.story-timeline__bloc__infos--variant .story-timeline__bloc__infos__video .video__cards__label .video__cards__label__btn--rse {
  left: 32%;
  padding: 12px;
  width: fit-content;
}
.story-timeline__bloc__infos--variant-2 {
  padding-top: 0;
  margin-inline: unset;
  max-width: 623px;
  width: 100%;
  gap: 25px;
}
.story-timeline__bloc__infos--variant-3 {
  padding-top: 0;
  margin-inline: unset;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.story-timeline__bloc__infos__logo-grp {
  display: flex;
  width: 100%;
  align-items: center;
  padding-top: 12px;
  flex: 0 0 calc((100% - 90px) / 2);
}
@media screen and (min-width: 1040px) {
  .story-timeline__bloc__infos__logo-grp {
    max-width: calc((100% - 90px) / 2);
    align-items: start;
  }
}
.story-timeline__bloc__infos__logo-grp--mobile {
  max-width: 252px;
}
.story-timeline__bloc__infos__logo-grp .story-timeline__bloc__infos__logo--variant-2 {
  margin-inline: auto;
}

.story-timeline__bloc__infos__logo {
  max-width: 221px;
  height: auto;
  margin-left: auto;
}
.story-timeline__bloc__infos__logo--variant {
  margin-right: auto;
  margin-left: 0;
}
.story-timeline__bloc__infos__logo--variant-2 {
  max-width: 252px;
}
.story-timeline__bloc__infos__logo--mobile {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.story-timeline__bloc__infos__img-grp {
  display: flex;
  width: 100%;
  flex: 0 1 calc((100% - 90px) / 2);
  max-width: 373px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.story-timeline__bloc__infos__img-grp--left {
  margin-right: auto;
}
.story-timeline__bloc__infos__img-grp--right {
  margin-left: auto;
}

.story-timeline__bloc__infos__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  aspect-ratio: 16/9;
}

.story-timeline__bloc__infos__txt-grp {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 511px;
  flex: 0 0 calc((100% - 90px) / 2);
  max-width: calc((100% - 90px) / 2);
}
.story-timeline__bloc__infos__txt-grp--variant h3,
.story-timeline__bloc__infos__txt-grp--variant p {
  text-align: right;
  margin-left: auto;
}
.story-timeline__bloc__infos__txt-grp--mobile {
  max-width: 100%;
}

.story-timeline__bloc__infos__txt-grp__title {
  font-family: "unbounded";
  font-size: clamp(1.5rem, 0.25rem + 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--black);
}
.story-timeline__bloc__infos__txt-grp__title--variant-2 {
  position: relative;
  width: 100%;
  text-align: left;
  margin-left: 40px;
  margin-bottom: 6px;
}
.story-timeline__bloc__infos__txt-grp__title--variant-2::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 1000px;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
}
.story-timeline__bloc__infos__txt-grp__title--variant-3 {
  position: relative;
  text-align: left;
  width: 100%;
  max-width: 355px;
  margin-left: auto;
  margin-right: 40px;
}
.story-timeline__bloc__infos__txt-grp__title--variant-3::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 1000px;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
}
.story-timeline__bloc__infos__txt-grp__title--mobile {
  text-align: center;
}

.story-timeline__bloc__infos__txt-grp__txt {
  font-size: 1.0625rem;
  max-width: 511px;
  text-align: right;
}
.story-timeline__bloc__infos__txt-grp__txt--left {
  text-align: left;
}
.story-timeline__bloc__infos__txt-grp__txt--variant-3 {
  width: 100%;
  margin-left: auto;
  text-align: right;
  margin-right: 40px;
}
.story-timeline__bloc__infos__txt-grp__txt--mobile {
  text-align: center;
  max-width: 100%;
}

.story-timeline__bloc .story-timeline__bloc__infos .video.story-timeline__bloc__infos__video--right {
  margin-left: auto;
}

.story-timeline--mobile {
  background-color: var(--color-tertiary);
}
@media screen and (min-width: 1240px) {
  .story-timeline--mobile {
    display: none;
  }
}

.decorativ-element__main-body {
  position: relative;
  z-index: 1;
}
.decorativ-element__main-body::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: var(--color-tertiary);
  height: 100px;
  z-index: 2;
}
.decorativ-element__main-body--variant::after {
  background-color: var(--white);
}
.decorativ-element__main-body .decorativ-element__main-head {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 1000px;
  background-color: var(--color-tertiary);
  left: 50%;
  transform: translateX(-50%);
  top: -120px;
  z-index: 2;
}
.decorativ-element__main-body .decorativ-element__main-head--variant {
  background-color: var(--white);
}

.decorativ-element__secondary-body {
  position: relative;
  z-index: 1;
}
.decorativ-element__secondary-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: var(--white);
  height: 100px;
  z-index: 2;
}
.decorativ-element__secondary-body .decorativ-element__secondary-head {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-radius: 1000px;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  z-index: 2;
}
.decorativ-element__secondary-body--bottom::after {
  bottom: 0px;
}

.decorativ-element__secondary-body--bottom {
  position: relative;
  z-index: 1;
}
.decorativ-element__secondary-body--bottom::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: var(--white);
  height: 100px;
  z-index: 2;
}
.decorativ-element__secondary-body--bottom .decorativ-element__secondary-head--bottom {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-radius: 1000px;
  left: 50%;
  transform: translateX(-50%);
  top: -100px;
  z-index: 2;
}

.story-timeline--mobile__main-container {
  padding: 140px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-timeline--mobile__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.story-timeline--mobile__wrapper--top {
  margin-top: 160px;
}

.white-decorativ-element {
  margin-block: 40px;
}
.white-decorativ-element__circle {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 1000px;
  background-color: var(--white);
  margin-inline: auto;
}
.white-decorativ-element__body {
  display: block;
  width: 2px;
  background-color: var(--white);
  height: 100px;
  margin-inline: auto;
}

.video__container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
  transition: border-radius 0.2s ease;
}
.video__container .video__container__primary-img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.video__container--story {
  max-width: 493px;
  width: 100%;
}
.video__container--story img {
  transform: scale(1.2);
}
@media screen and (min-width: 1040px) {
  .video__container {
    height: 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .video__container:hover {
    border-radius: 0px;
  }
  .video__container:hover .video__container__primary-img {
    transform: scale(1.15);
  }
  .video__container:hover .video__cards__label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .video__container:hover .video__cards__label__btn__txt,
  .video__container:hover .video__cards__label__btn p {
    font-weight: 600;
  }
  .video__cards__label__btn:hover .video__cards__label__btn__txt,
  .video__cards__label__btn:hover p {
    font-weight: 600;
  }
  .video-modal__close:hover {
    opacity: 1;
    transform: scale(1.1);
  }
}
.video__cards__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 24px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background: var(--color-tertiary);
  color: var(--black);
  z-index: 2;
  transition: border-radius 0.2s ease;
}
.video__cards__label--story {
  background: var(--color-quaternary);
  height: 47px;
}
.video__cards__label--rse {
  height: 59px;
}
@media screen and (min-width: 1040px) {
  .video__cards__label--rse {
    height: 84px;
  }
}

.video__cards__label__title--primary {
  font-family: "unbounded";
  font-size: clamp(0.75rem, 0.1738rem + 2.7439vw, 1.875rem);
  font-weight: 300;
}

.video__cards__label__btn {
  position: absolute;
  top: -20px;
  right: 5%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 32px 10px 12px;
  border-radius: 1000px;
  border: none;
  background-color: var(--white);
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: clamp(8px, 1vw, 12px) clamp(24px, 4vw, 32px) clamp(8px, 1vw, 12px) clamp(12px, 2.5vw, 20px);
}
.video__cards__label__btn img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1040px) {
  .video__cards__label__btn img {
    height: 30px;
    width: 30px;
  }
}
.video__cards__label__btn p {
  font-size: clamp(0.875rem, 0.7931rem + 0.3361vw, 1.125rem);
  font-weight: 300;
  transition: font-weight 0.2s ease;
}
.video__cards__label__btn--rse {
  left: 10%;
  width: fit-content;
  padding: clamp(8px, 1vw, 12px) clamp(14px, 3vw, 20px) clamp(8px, 1vw, 12px) clamp(8px, 2vw, 12px);
}
.video__cards__label__btn--rse img {
  width: 28px;
  height: 28px;
}
.video__cards__label__btn--rse .video__cards__label__btn__txt {
  font-size: clamp(0.875rem, 0.7931rem + 0.3361vw, 1.125rem);
}
@media screen and (min-width: 1040px) {
  .video__cards__label__btn--rse {
    padding: 12px 32px 12px 12px;
  }
}
.video__cards__label__btn--story {
  padding: clamp(8px, 1vw, 12px) clamp(14px, 3vw, 20px) clamp(8px, 1vw, 12px) clamp(8px, 2vw, 12px);
}
.video__cards__label__btn--story img {
  width: 20px;
  height: 20px;
}
.video__cards__label__btn--story .video__cards__label__btn__txt {
  font-size: clamp(0.875rem, 0.7931rem + 0.3361vw, 1.125rem);
}
@media screen and (min-width: 1040px) {
  .video__cards__label__btn--story {
    padding: 12px 32px 12px 12px;
    gap: 16px;
  }
  .video__cards__label__btn--story img {
    width: 28px;
    height: 28px;
  }
}
.video__cards__label__btn--news {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  width: 180px;
}
.video__cards__label__btn .video__cards__label__btn__txt {
  font-size: clamp(0.875rem, 0.7931rem + 0.3361vw, 1.125rem);
  transition: font-weight 0.2s ease;
}
.video__cards__label__btn__secondary--news {
  color: var(--color-primary);
  font-size: clamp(0.875rem, 0.7521rem + 0.5042vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal.is-active {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
  animation: modalFadeIn 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .video-modal__content {
    width: 95%;
  }
}

.video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.8;
}
.video-modal__close:focus {
  outline: none;
}
.video-modal__close:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}
@media screen and (max-width: 768px) {
  .video-modal__close {
    top: -45px;
    right: -5px;
  }
}

.video-modal__iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
.video-modal__iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
body.modal-open {
  overflow: hidden;
}

.article-index {
  display: none;
  flex-direction: column;
  background-color: #f4f4f4;
  align-items: center;
  border-top-right-radius: 30px;
  padding-bottom: 25px;
}
@media screen and (min-width: 1040px) {
  .article-index {
    display: flex;
    flex: 0 1 40%;
  }
}
@media screen and (min-width: 1220px) {
  .article-index {
    flex: 0 1 25%;
  }
}

.article-index__title {
  background-color: var(--color-quaternary);
  color: var(--white);
  padding-block: 25px;
  padding-right: 90px;
  border-top-right-radius: 30px;
  width: 100%;
  align-self: center;
  margin-inline: auto;
  text-align: center;
}

.article-index__container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.article-index__item {
  width: 100%;
  cursor: pointer;
  margin-bottom: 16px;
}

.article-main ol.article-index__index-list {
  margin-top: 60px;
  margin-bottom: 50px;
  width: 100%;
  max-width: 280px;
  align-self: center;
  margin-left: 0;
}
.article-main ol.article-index__index-list li {
  counter-increment: item;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "marker heading" "marker sublist";
  column-gap: 6px;
  row-gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.article-main ol.article-index__index-list ol {
  counter-reset: item;
  list-style: none;
  padding-left: 1.5rem;
}
.article-main ol.article-index__index-list li::before {
  content: counters(item, ".") ". ";
  font-size: 1rem;
  font-weight: 700;
  grid-area: marker;
}

.article-main ol.article-index__index-sublist li::before {
  font-weight: 300;
}

.article-index__chapter {
  display: inline-block;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  grid-area: heading;
  cursor: pointer;
}

.article-index__subchapter {
  display: inline-block;
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
}

.article-index__index-sublist-container {
  grid-area: sublist;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  width: 100%;
}

.article-index__index-sublist {
  margin-top: 8px;
  margin-left: 1.25rem;
  overflow: hidden;
}

.article-index__item.is-open > .article-index__index-sublist-container {
  grid-template-rows: 1fr;
}

.article-index__subchapter.active {
  color: var(--color-quaternary);
  font-weight: 700;
}

.article-main ol.article-index__index-sublist li:has(> .article-index__subchapter.active)::before {
  font-weight: 700;
  color: var(--color-quaternary);
}

.article-main ol.article-index__index-sublist li.is-active::before {
  font-weight: 700;
  color: var(--color-quaternary);
}

.article-infos {
  flex: 0 1 100%;
  max-width: 280px;
}
@media screen and (min-width: 1220px) {
  .article-infos {
    flex: 0 1 30%;
  }
}

.article-infos__author {
  margin-bottom: 86px;
}

.article-infos__author__img-container {
  border-radius: 1000px;
  overflow: hidden;
  width: 100px;
  height: 100px;
  margin-bottom: 18px;
}
.article-infos__author__img-container img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.article-infos__author__presentation {
  max-width: 252px;
}
.article-infos__author__presentation h3 {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 700;
}
.article-infos__author__presentation h4 {
  color: var(--color-quaternary);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 21px;
}
.article-infos__author__presentation p {
  font-size: 0.9375rem;
  margin-bottom: 21px;
}

.article-infos__category__heading {
  margin-bottom: 32px;
}

.article-infos__category,
.article-infos__recent {
  margin-bottom: 86px;
}
.article-infos__category__title,
.article-infos__recent__title {
  color: var(--color-secondary);
  font-family: "unbounded";
  font-size: 1.125rem;
  font-weight: 300;
}
.article-infos__category__line,
.article-infos__recent__line {
  position: relative;
  top: -4px;
  border-bottom: 1px solid var(--color-secondary);
  height: 1px;
  width: 150px;
  display: block;
  margin-left: auto;
}
.article-infos__category__line--seo,
.article-infos__recent__line--seo {
  width: 120px;
}

.article-infos__category__items .article-infos__category__items__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.article-infos__recent .article-infos__recent__line {
  width: 100px;
}

.article-infos__recent__heading {
  margin-bottom: 32px;
}

.article-infos__recent__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-infos__recent__list__item {
  font-size: 0.9375rem;
  font-weight: 700;
}

.seo-article__aside__pages-list > li {
  list-style-type: none;
}
.seo-article__aside__pages-list > li:not(:last-child) {
  margin-bottom: 16px;
}

.navigation {
  position: relative;
  margin-inline: auto;
  font-family: "unbounded";
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (min-width: 920px) {
  .navigation {
    padding-inline: 40px;
    max-width: 1580px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 920px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 300;
    background-color: var(--white);
    transition: background-color 0.18s ease;
  }
}

.navigation__link a {
  display: inline-block;
  font-weight: 300;
  transition: font-weight 0.15s ease;
}
.navigation__link a::after {
  content: attr(data-text);
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
}
.navigation__link a:hover, .navigation__link a:focus-visible {
  font-weight: 600;
}
.navigation__link a[data-lang-toggle] {
  font-weight: 300;
}
.navigation__link a[data-lang-toggle]:hover, .navigation__link a[data-lang-toggle]:focus-visible {
  font-weight: 300;
}

.navigation__contact-btn::before {
  content: attr(data-text);
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  display: block;
}

.navigation__contact-btn {
  position: relative;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-weight: 300;
  background-color: var(--color-secondary);
  transition: background-color 0.15s ease, color 0.15s ease;
  padding: 10px 25px;
  border-radius: 50px;
  overflow: hidden;
}
.navigation__contact-btn::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.15s ease;
}
.navigation__contact-btn:hover, .navigation__contact-btn:focus-visible {
  color: var(--white);
  background-color: var(--color-primary);
}
.navigation__contact-btn:hover::after, .navigation__contact-btn:focus-visible::after {
  opacity: 1;
}

.navigation-mobile {
  display: block;
  position: relative;
}
@media screen and (min-width: 920px) {
  .navigation-mobile {
    display: none;
  }
}

.navigation-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 24px;
  background-color: var(--white);
}

.navigation-mobile--sticky .navigation-mobile__header {
  position: sticky;
  top: 0;
}

.navigation-mobile__btnGrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 100;
}

.navigation-mobile__lang {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.25s ease;
}

.navigation-mobile--open .navigation-mobile__lang {
  color: var(--white);
  transition-delay: 0.25s;
}

.navigation-mobile--ready .clip-class {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(110%, 0, 0);
}

.navigation-mobile--ready.navigation-mobile--open .clip-class {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  z-index: 60;
}

.navigation-mobile__logo-container {
  width: fit-content;
  display: inline-block;
}

.navigation-mobile__btn {
  border: none;
  border-radius: 50%;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.navigation-mobile__btn:active {
  transform: scale(0.95);
}
.navigation-mobile__btn img[data-icon=close] {
  display: none;
}

.navigation-mobile--open .navigation-mobile__btn img[data-icon=open] {
  display: none;
}

.navigation-mobile--open .navigation-mobile__btn img[data-icon=close] {
  display: block;
}

.navigation-mobile__main {
  position: relative;
  height: 100dvh;
  background-color: var(--color-secondary);
  color: var(--white);
  margin-inline-start: -24px;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.navigation-mobile__links {
  margin-block-start: -24px;
  padding-top: 134px;
  padding-left: 64px;
}

.navigation-mobile__link {
  margin-bottom: 38px;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
}

.navigation__contact-btn--mobile {
  display: inline-flex;
  background-color: var(--white);
  color: var(--color-secondary);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 50px;
}

.navigation-mobile__footer {
  margin-top: 160px;
  margin-left: auto;
  padding-right: 40px;
  width: fit-content;
}

.navigation-mobile__footer__txt {
  font-size: 1.6rem;
  font-weight: 300;
  text-align: right;
  margin-bottom: 16px;
}

.clip-class {
  position: fixed;
  top: 135px;
  right: -24px;
  width: calc(100vw + 24px);
  height: calc(100dvh - 48px);
  z-index: 30;
  background-color: var(--color-secondary);
  color: var(--white);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.45s ease, opacity 0.45s ease, visibility 0.45s ease;
  will-change: transform, opacity;
}

.clip-class::after {
  content: "";
  position: absolute;
  top: -185px;
  right: -10px;
  width: 145px;
  height: 210px;
  z-index: 10;
  clip-path: inset(30% 0 0 0 round 30px 0 0 0);
  background-color: var(--color-secondary);
}

.clip-class::before {
  content: "";
  position: absolute;
  top: -29px;
  right: 125px;
  width: 40px;
  height: 50px;
  background-color: var(--color-secondary);
  mask: radial-gradient(circle at 0 0%, transparent 40px, var(--color-secondary) 40px);
  -webkit-mask: radial-gradient(circle at 0 0%, transparent 30px, var(--color-secondary) 30px);
}

.navigation__logo-container--desktop {
  width: 155px;
  height: 76px;
}

.navigation__logo--desktop {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.footer__socials {
  display: flex;
  gap: 8px;
}

.navigation-desktop {
  display: none;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 920px) {
  .navigation-desktop {
    display: flex;
    position: relative;
    z-index: 200;
    padding-block: 16px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: -40px;
    margin-right: -40px;
    background-color: var(--white);
  }
}

.navigation__links--desktop ul {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

.footer {
  position: relative;
  background-color: var(--black);
  color: var(--white);
  padding: 275px 29px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1040px) {
  .footer {
    padding: 50px 44px 59px;
  }
}

.footer__leads {
  position: absolute;
  max-width: 662px;
  width: 90%;
  left: 50%;
  top: -305px;
  transform: translateX(-50%);
  margin-inline: auto;
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 20px;
  display: grid;
}
@media screen and (min-width: 640px) {
  .footer__leads {
    grid-template-columns: 2fr 1fr;
    top: -205px;
  }
}
@media screen and (min-width: 1040px) {
  .footer__leads {
    right: 40px;
    left: auto;
    transform: none;
    top: -145px;
    width: 100%;
  }
}

.footer__leads__intro {
  display: flex;
  flex-direction: row-reverse;
  grid-column: 1/-1;
  padding-inline: 34px;
}
.footer__leads__intro .footer__leads__img {
  width: 100%;
  flex: 0 0 50%;
  display: inline-block;
  padding-top: 32px;
  max-width: 260px;
}
.footer__leads__intro .footer__leads__txt__heading {
  flex: 1 0 50%;
  max-width: 337px;
}
@media screen and (max-width: 640px) {
  .footer__leads__intro {
    flex-direction: column;
  }
  .footer__leads__intro .footer__leads__img {
    margin-bottom: 32px;
  }
}

.footer__leads__txt__grp {
  line-height: 1.16;
  padding: 14px 27px 33px;
}
@media screen and (min-width: 640px) {
  .footer__leads__txt__grp {
    grid-row: 2;
    grid-column: 1/-1;
    padding-left: 34px;
  }
}

.footer__leads__txt__heading {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05;
}
@media screen and (min-width: 640px) {
  .footer__leads__txt__heading {
    grid-row: 1;
    grid-column: 1;
    padding-top: 68px;
  }
}

.footer__leads__txt__subHeading {
  font-size: 0.9375rem;
  font-weight: 600;
}

.footer__leads__txt__description {
  font-size: 0.9375rem;
  font-weight: 300;
}

.footer__grp {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1260px) {
  .footer__grp {
    flex-direction: row;
  }
}

.footer__contact {
  width: 100%;
  text-align: left;
}
.footer__contact h4 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05;
  margin-bottom: 18px;
}
.footer__contact .footer__contact_infos {
  margin-bottom: 58px;
}
.footer__contact .footer__contact_infos p {
  font-size: 1.125rem;
  font-weight: 300;
}
.footer__contact .footer__contact_infos span {
  font-size: 1.125rem;
  font-weight: 700;
}
.footer__contact .footer__contact_infos--form {
  margin-bottom: 16px;
}
.footer__contact .footer__contact_adress {
  font-size: 1rem;
  margin-bottom: 22px;
}
.footer__contact .footer__contact__activities {
  margin-bottom: 57px;
}
.footer__contact .footer__contact__activities h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}
.footer__contact .footer__contact__activities .footer__seo-link__container > .footer__seo-link {
  font-size: 1.125rem;
  font-weight: 300;
}
@media screen and (min-width: 1260px) {
  .footer__contact .footer__contact__activities {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1260px) {
  .footer__contact {
    order: 2;
    flex-basis: 65%;
  }
}

.footer__main-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.footer__main-logo img {
  width: 100%;
  height: auto;
  max-width: 343px;
  max-height: 361px;
  display: block;
}
@media screen and (min-width: 1260px) {
  .footer__main-logo {
    order: 1;
    align-self: flex-start;
    flex-basis: 20%;
    margin-right: 53px;
    margin-bottom: 0;
  }
}

.footer__socials-container {
  width: 100%;
}
.footer__socials-container .footer__socials__title {
  width: 100%;
  display: block;
  text-align: right;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 16px;
}
.footer__socials-container .footer__socials__title--form {
  text-align: left;
}
.footer__socials-container .footer__socials--secondary {
  justify-content: end;
}
@media screen and (min-width: 1260px) {
  .footer__socials-container {
    order: 3;
    flex-basis: 15%;
    align-self: flex-end;
  }
}

.presentation--hero {
  margin-top: 68px;
}
@media screen and (min-width: 1040px) {
  .presentation--hero {
    margin-top: 147px;
  }
}

.presentation__container {
  margin-bottom: 82px;
}
@media screen and (min-width: 1040px) {
  .presentation__container {
    margin-bottom: 124px;
  }
}
@media screen and (min-width: 1040px) {
  .presentation__container--rse {
    margin-bottom: 62px;
  }
}
@media screen and (min-width: 1040px) {
  .presentation__container--news {
    margin-bottom: 120px;
  }
}

.presentation__intro {
  font-family: "unbounded";
  font-weight: 300;
  line-height: 1.2;
  font-size: clamp(0.9375rem, 0.5688rem + 1.5126vw, 2.0625rem);
  color: var(--color-secondary);
  margin-bottom: 10px;
}
@media screen and (min-width: 1040px) {
  .presentation__intro {
    margin-bottom: 16px;
  }
}

.presentation__txt {
  font-size: clamp(1.25rem, 0.9008rem + 1.746vw, 2.625rem);
  line-height: 1.1;
  margin-bottom: 29px;
  font-weight: 300;
  position: relative;
}
@media screen and (min-width: 1040px) {
  .presentation__txt {
    margin-bottom: 10px;
  }
}
.presentation__txt .presentation__txt__letter {
  display: inline;
}

.presentation__txt__presentation {
  font-family: "unbounded";
  font-size: clamp(1rem, 0.2969rem + 2.25vw, 1.5625rem);
  line-height: 1.4;
  font-weight: 300;
  margin-top: 49px;
}

.filters__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: var(--color-secondary);
  margin-block: 37px;
  margin-bottom: 69px;
}
@media screen and (min-width: 1040px) {
  .filters__container {
    flex-direction: row;
    align-items: center;
    margin-bottom: 52px;
  }
}

.filters__title {
  font-family: "unbounded";
  font-size: 1.125rem;
  font-weight: 300;
}

.filters__grp {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.filters__btn {
  position: relative;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-size: 1.125rem;
  font-weight: 300;
  background-color: var(--white);
  transition: background-color 0.15s ease, color 0.15s ease;
  padding: 10px 25px;
  border: 1px solid var(--color-secondary);
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (min-width: 1040px) {
  .filters__btn {
    padding: 10px 45px;
  }
}
.filters__btn:hover, .filters__btn:focus-visible {
  color: var(--white);
  background-color: var(--color-secondary);
}
.filters__btn:hover::after, .filters__btn:focus-visible::after {
  opacity: 1;
}
.filters__btn--article-category {
  padding: 10px 15px;
  width: 100%;
}

.filters__btn.active {
  background-color: var(--color-secondary);
  color: var(--white);
}

.gallery {
  display: grid;
  margin-bottom: 78px;
}

.gallery--portfolio {
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 1090px) {
  .gallery--portfolio {
    grid-template-columns: 1fr 1fr;
  }
}

.gallery .gallery__item .maincard__img--portfolio-img {
  transition: transform 0.2s ease;
}
.gallery .maincard__stand-name img {
  transition: transform 0.2s ease;
}
.gallery .gallery__item:hover .maincard__img--portfolio-img {
  transform: scale(1.1);
}
.gallery .gallery__item:hover .maincard__stand-name img {
  transform: rotate(45deg);
}

.gallery__toggle {
  grid-column: 1/-1;
  justify-self: center;
  margin-top: 8px;
}

.maincard--secondary {
  color: var(--white);
  width: 100vw;
  background-color: var(--color-quaternary);
  margin-bottom: 88px;
}
@media screen and (min-width: 1040px) {
  .maincard--secondary {
    margin-bottom: 114px;
  }
}
.maincard--secondary .btn-primary__cta--secondary {
  margin-inline: auto;
}

.maincard--secondary__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 118px;
  padding-inline: 28px;
}
@media screen and (min-width: 1040px) {
  .maincard--secondary__container {
    padding-block: 78px;
  }
}

.maincard__txt--secondary {
  width: 100%;
  max-width: 990px;
  margin-inline: auto;
  margin-bottom: 18px;
}
.maincard__txt--secondary h2 {
  text-align: center;
  font-family: "unbounded";
  font-size: clamp(2.375rem, 1.5147rem + 3.5294vw, 5rem);
  font-weight: 200;
  line-height: 1;
}
@media screen and (min-width: 640px) {
  .maincard__txt--secondary h2 {
    text-align: left;
  }
}
.maincard__txt--secondary h2 strong {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-bottom: 1rem;
  font-weight: 900;
}
@media screen and (min-width: 640px) {
  .maincard__txt--secondary h2 strong {
    text-align: right;
  }
}
.maincard__txt--secondary--seo h2 {
  font-size: 1.875rem;
}
@media screen and (min-width: 670px) {
  .maincard__txt--secondary--seo h2 {
    font-size: 3.4rem;
  }
}

.maincard--secondary--extend {
  padding-bottom: 442px;
  margin-bottom: 0;
}
@media screen and (min-width: 1040px) {
  .maincard--secondary--extend {
    margin-bottom: 0;
    padding-bottom: 242px;
  }
}

.maincard__txt--secondary {
  margin-bottom: 0;
}

.maincard--secondary--variant-color {
  background-color: var(--color-secondary);
}

.maincard--secondary--seo {
  background-color: var(--color-secondary);
  max-width: 862px;
  margin-bottom: 59px;
  width: 100%;
}
.maincard--secondary--seo .maincard--secondary__container {
  padding-top: 27px;
  padding-bottom: 41px;
}
.maincard--secondary--seo .maincard__txt--secondary {
  max-width: 548px;
}
.maincard--secondary--seo .maincard__txt--secondary h2 {
  margin-bottom: 0;
}

.product-heading {
  width: 100%;
  margin-top: 45px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1040px) {
  .product-heading {
    margin-top: 147px;
    margin-bottom: 11px;
  }
}

.product-heading__title {
  font-family: "unbounded";
  font-size: clamp(3.125rem, 2.3057rem + 3.3613vw, 5.625rem);
  font-weight: 200;
  margin-bottom: 8px;
}
@media screen and (min-width: 1040px) {
  .product-heading__title {
    margin-bottom: 0;
  }
}

.product-heading__subtitle {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 44px;
}
.product-heading__subtitle h3 {
  font-size: clamp(1.875rem, 1.4653rem + 1.6807vw, 3.125rem);
  font-weight: 300;
}
.product-heading__subtitle img {
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
}
@media screen and (min-width: 920px) {
  .product-heading__subtitle {
    flex-direction: row;
    align-items: stretch;
  }
}

.product-heading__subtitle__grp {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-heading__grp {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 920px) {
  .product-heading__grp {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: center;
    width: 100%;
    height: 100%;
  }
}

.product-heading__location {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}
@media screen and (min-width: 390px) {
  .product-heading__location {
    align-items: center;
    flex-direction: row;
  }
}
.product-heading__location .product-heading__location__grp {
  display: inline-flex;
  align-items: center;
}
.product-heading__location p:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  margin-left: 12px;
  background-color: var(--black);
}
.product-heading__location .product-heading__location__title {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 300;
}
.product-heading__location .product-heading__location__txt {
  font-size: 1.125rem;
  font-weight: 600;
  padding-left: 8px;
}
@media screen and (min-width: 920px) {
  .product-heading__location {
    margin-bottom: 0;
  }
}

.product-heading__tags {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 920px) {
  .product-heading__tags {
    margin-left: auto;
  }
}

.hero {
  padding: 0 40px;
  position: relative;
  min-height: 707px;
}
@media screen and (max-width: 600px) {
  .hero + article.sub-heading {
    margin-top: 120px;
  }
}

@media screen and (max-width: 1090px) {
  .hero.container-large {
    margin-inline: -24px;
    padding: 0;
  }
}
.hero-container {
  display: block;
  position: relative;
  min-height: 707px;
}

.hero__img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  min-height: 707px;
  aspect-ratio: 16/9;
}

.hero__img img {
  width: 100%;
  height: 100%;
  min-height: 707px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__txt {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-top: -85px;
  padding: 16px 16px 0 0;
  border-top-right-radius: 20px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.1;
  background-color: var(--white);
  width: 47%;
}
@media screen and (max-width: 1090px) {
  .hero__txt {
    width: 50%;
    height: 150px;
    margin-top: -150px;
    padding-top: 16px;
    padding-left: 16px;
    margin-left: 24px;
    background-color: var(--white);
  }
}

.hero__txt__primary,
.hero__txt__secondary {
  font-size: clamp(1.125rem, 0.8792rem + 1.0084vw, 1.875rem);
}

.hero__txt::after {
  position: absolute;
  content: "";
  top: 51px;
  right: -25px;
  background-color: var(--white);
  width: 40px;
  height: 50px;
  mask: radial-gradient(circle at 0 0%, transparent 30px, black 30px);
  -webkit-mask: radial-gradient(circle at 0 0%, transparent 30px, black 30px);
  transform: rotate(90deg);
}
@media screen and (max-width: 1090px) {
  .hero__txt::after {
    top: 116px;
  }
}

.hero__stand-name {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  bottom: 2%;
  left: 50%;
  font-size: 3.1rem;
  font-weight: 300;
  color: var(--white);
}
.hero__stand-name span {
  text-transform: uppercase;
  font-size: 2.77rem;
  font-weight: 300;
  line-height: 1;
  vertical-align: middle;
}
@media screen and (max-width: 1090px) {
  .hero__stand-name {
    left: 5%;
    bottom: 180px;
    padding-left: 16px;
  }
}

.hero__tags {
  display: flex;
  align-items: center;
  position: absolute;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  right: 12px;
  bottom: 2%;
  z-index: 2;
  margin-right: 18px;
}
@media screen and (min-width: 700px) {
  .hero__tags {
    flex-direction: row;
    align-items: center;
    right: 18px;
  }
}

.hero__tags a {
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: clamp(8px, 1vw, 12px) clamp(16px, 3vw, 24px);
  font-size: clamp(1rem, 0.959rem + 0.1681vw, 1.125rem);
  font-weight: 300;
}

.spacing {
  height: 600px;
}

.home-maincard {
  margin-top: 121px;
  display: flex;
  gap: 24px;
  color: var(--white);
}
@media screen and (max-width: 1090px) {
  .home-maincard {
    margin-top: 60px;
  }
}

.home-maincard__txt {
  max-height: 484px;
  max-width: 484px;
  padding: 193px 40px 43px;
  background-color: var(--color-primary);
  margin-top: auto;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1090px) {
  .home-maincard__txt {
    flex-basis: auto;
    margin-top: 0;
    margin-inline: auto;
    padding: 134px 27px 35px;
    height: 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-maincard__txt:hover {
    background-color: var(--color-secondary);
    border-radius: 30px;
  }
}
.home-maincard__txt h2 {
  font-size: clamp(2.125rem, 1.7973rem + 1.3445vw, 3.125rem);
  font-family: "unbounded";
  font-weight: 200;
}

.home-cards {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-bottom: 82px;
  max-height: 992px;
}
@media screen and (min-width: 1332px) {
  .home-cards {
    flex-direction: row;
    align-items: end;
    margin-bottom: 134px;
  }
}

.home-cards__primary {
  flex-basis: 70%;
  max-width: 684px;
  align-self: center;
}
@media screen and (min-width: 1332px) {
  .home-cards__primary {
    align-self: unset;
    max-width: unset;
  }
}

.home-cards__secondary {
  position: relative;
  width: 100%;
  flex-basis: 30%;
  max-width: 684px;
  min-height: 484px;
  margin-top: auto;
  align-self: center;
  overflow: hidden;
  transition: border-radius 0.2s ease;
}
.home-cards__secondary:hover {
  border-radius: 30px;
}
.home-cards__secondary:hover .home-cards__secondary__img {
  transform: scale(1.1);
}
@media screen and (min-width: 1332px) {
  .home-cards__secondary {
    align-self: stretch;
    max-width: unset;
  }
}

.home-cards__secondary__img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.home-cards__secondary__bloc-text {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
@media screen and (min-width: 640px) {
  .home-cards__secondary__bloc-text {
    padding: 0 24px 42px 42px;
  }
}

.home-cards__label__title--secondary {
  font-family: "unbounded";
  font-size: 3.5rem;
  margin-bottom: 11px;
  color: var(--white);
}

.home-cards__label__txt--secondary {
  font-size: clamp(1rem, 0.9181rem + 0.3361vw, 1.25rem);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}

.home-cards__label__btn--secondary {
  border: 1px solid var(--white);
  border-radius: 1000px;
  display: inline-flex;
  padding: 10px 10px 10px 24px;
  gap: 16px;
  width: fit-content;
}

.home-cards__label__btn--secondary span {
  font-size: 1.125rem;
  color: var(--white);
}

.home-cards__label__btn--secondary img {
  width: 25px;
  height: 25px;
}

.home-cards__secondary:hover .btn-animate__text {
  font-weight: 700;
}

.home-cards__secondary:hover .btn-animate img {
  transform: rotate(45deg);
}

.heading-avis__container {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-bottom: 48px;
}
@media screen and (min-width: 1040px) {
  .heading-avis__container {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
}

.heading-avis__title {
  font-family: "unbounded";
  font-size: clamp(1.875rem, 1.5678rem + 1.2605vw, 2.8125rem);
  margin-bottom: 19px;
  width: 100vw;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media screen and (min-width: 640px) {
  .heading-avis__title {
    width: fit-content;
  }
}

.btn-primary__cta--avis {
  align-self: start;
}
@media screen and (min-width: 1040px) {
  .btn-primary__cta--avis {
    align-self: center;
  }
}

.product-bento {
  margin-bottom: 110px;
  height: 100%;
}
@media screen and (min-width: 1180px) {
  .product-bento {
    margin-bottom: 350px;
  }
}

.product-bento__fullcard {
  height: 100%;
  margin-bottom: 25px;
}
.product-bento__fullcard .product-bento__fullcard__img-container {
  max-width: 1246px;
  margin-inline: auto;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}
.product-bento__fullcard .product-bento__fullcard__img-container img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.product-bento__container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 25px;
}
@media screen and (min-width: 920px) {
  .product-bento__container {
    flex-direction: row;
  }
  .product-bento__container--variant {
    flex-direction: row-reverse;
  }
}
.product-bento__container--variant-5 {
  display: grid;
  gap: 24px;
  grid-template-columns: 60% 40%;
  grid-template-areas: "text video" "image video";
  align-items: stretch;
}
.product-bento__container--variant-5__bloc1 {
  grid-area: text;
  align-self: center;
  width: 100%;
}
.product-bento__container--variant-5__bloc2 {
  grid-area: video;
  width: 100%;
  height: 840px;
}
.product-bento__container--variant-5__bloc3 {
  grid-area: image;
  height: 100%;
  width: 100%;
}

.product-bento__bloc-1 {
  flex: 1 1 100%;
  align-self: center;
}
.product-bento__bloc-1__heading {
  font-family: "unbounded";
  font-size: clamp(1.5625rem, 1.2553rem + 1.2605vw, 2.5rem);
  font-weight: 200;
  margin-bottom: 8px;
}
.product-bento__bloc-1__txt {
  font-size: clamp(1.0625rem, 1.042rem + 0.084vw, 1.125rem);
  font-weight: 200;
  max-width: 381px;
}
@media screen and (min-width: 920px) {
  .product-bento__bloc-1 {
    flex: 1 1 40%;
    padding-right: 102px;
  }
}
.product-bento__bloc-1--variant {
  flex: 1 1 40%;
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 920px) {
  .product-bento__bloc-1--variant {
    padding-left: 102px;
  }
}

.product-bento__bloc-2 {
  flex: 1 1 100%;
}
.product-bento__bloc-2__img-container {
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 920px) {
  .product-bento__bloc-2__img-container {
    max-width: 738px;
  }
}
.product-bento__bloc-2__img-container img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-bento__bloc-2--variant {
  flex: 1 1 60%;
}
@media screen and (min-width: 920px) {
  .product-bento__bloc-2 {
    flex: 1 1 60%;
  }
}

.product-bento__bloc-3 {
  flex: 1 1 100%;
}
.product-bento__bloc-3__img-container {
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 920px) {
  .product-bento__bloc-3__img-container {
    max-width: 738px;
  }
}
.product-bento__bloc-3__img-container img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-bento__bloc-3--variant {
  flex: 1 1 40%;
}
@media screen and (min-width: 920px) {
  .product-bento__bloc-3--variant {
    flex: 1 1 100%;
  }
}
@media screen and (min-width: 920px) {
  .product-bento__bloc-3 {
    flex: 1 1 60%;
  }
}

.product-bento__bloc-4 {
  flex: 1 1 40%;
}
.product-bento__bloc-4__img-container {
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 920px) {
  .product-bento__bloc-4__img-container {
    max-width: 738px;
  }
}
.product-bento__bloc-4__img-container img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-bento__bloc-4--variant {
  flex: 1 1 40%;
}

.product-bento__bloc-5 {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-bento__bloc-5__img-container {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.product-bento__bloc-5__img-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-bento__bloc-5__img-container .maincard__overlay {
  border-radius: 30px;
}
.product-bento__bloc-5 .video__cards__label__btn {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 22px;
  right: 22px;
}

.product-showcase {
  background-color: var(--color-quaternary);
  color: var(--white);
  padding: 88px 53px;
}
.product-showcase .carousel.container-large {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  margin-bottom: 0;
  margin-top: 29px;
}
.product-showcase .carousel.container-large .swiper-slide {
  justify-content: flex-start;
}
.product-showcase .carousel.container-large .swiper-scrollbar {
  --swiper-scrollbar-drag-bg-color: var(--white);
}

.product-showcase__grp {
  display: flex;
  gap: 80px;
}

.product-showcase__grp .product-showcase__main-img {
  transition: transform 0.2s ease;
}

.product-showcase__grp .maincard__stand-name img {
  transition: transform 0.2s ease;
}

.product-showcase__title {
  font-family: "unbounded";
  font-size: clamp(2.125rem, 1.7973rem + 1.3445vw, 3.125rem);
  font-weight: 200;
  margin-bottom: 31px;
}
.product-showcase__title span {
  font-weight: 800;
}

.story-faq {
  padding-top: 105px;
  padding-bottom: 135px;
}
.story-faq h2 {
  font-family: "unbounded";
  font-size: clamp(1.875rem, 1.5678rem + 1.2605vw, 2.8125rem);
  font-weight: 900;
  margin-bottom: 46px;
}
@media screen and (min-width: 1040px) {
  .story-faq h2 {
    margin-bottom: 60px;
  }
}

.accordion__title {
  color: var(--color-quaternary);
  display: flex;
  gap: 26px;
  align-items: center;
  padding-block: 20px;
  cursor: pointer;
}
.accordion__title h4 {
  font-size: clamp(1.3125rem, 1.0257rem + 1.1765vw, 2.1875rem);
  font-weight: 300;
}
@media screen and (min-width: 1040px) {
  .accordion__title {
    padding-block: 30px;
  }
}
.accordion__chevron {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
  fill: none;
  stroke: #a2ab00;
  stroke-width: 2px;
}
@media screen and (min-width: 1040px) {
  .accordion__chevron {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms;
  padding-left: 66px;
}
.accordion__grp.is-open .accordion__txt {
  padding-bottom: 20px;
}
.accordion__content[aria-hidden=false] {
  grid-template-rows: 1fr;
}
.accordion__content-inner {
  overflow: hidden;
}
.accordion__content-inner .accordion__txt {
  font-size: clamp(1.0625rem, 0.9806rem + 0.3361vw, 1.3125rem);
  font-weight: 200;
}
.accordion__grp:last-child {
  border-bottom: none;
}
.accordion__grp.is-open .accordion__chevron {
  transform: rotate(0deg);
}

.rse-infos-blocs__main-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.rse-infos-blocs__secondary__container {
  background-color: var(--color-tertiary);
  padding-bottom: 32px;
  margin-top: 180px;
}
@media screen and (min-width: 1040px) {
  .rse-infos-blocs__secondary__container {
    margin-top: 0;
  }
}

.rse-infos-blocs .btn-primary__cta {
  margin-right: auto;
  display: flex;
  margin-bottom: 48px;
  margin-inline: auto;
}
@media screen and (min-width: 1040px) {
  .rse-infos-blocs .btn-primary__cta {
    margin-left: 45vw;
  }
}

.rse-infos-blocs__container {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1040px) {
  .rse-infos-blocs__container {
    flex-direction: row;
    padding-bottom: 130px;
  }
}

.rse-infos-blocs__primary {
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%), url("/assets/media/img/home-cards-2.webp") center/cover no-repeat;
  color: var(--white);
  padding: clamp(64px, 12vw, 168px) clamp(36px, 9vw, 90px) clamp(32px, 10vw, 168px) clamp(20px, 14vw, 168px);
  max-height: 611px;
  width: 80%;
  border-top-right-radius: 29px;
  border-bottom-right-radius: 29px;
}
.rse-infos-blocs__primary__txt {
  font-family: "unbounded";
  font-size: clamp(0.9375rem, 0.7327rem + 0.8403vw, 1.5625rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 1040px) {
  .rse-infos-blocs__primary {
    margin-top: -60px;
    width: 40%;
  }
  .rse-infos-blocs__primary__txt {
    max-width: 400px;
  }
}

.rse-infos-blocs__secondary {
  position: relative;
  background-color: var(--color-quaternary);
  color: var(--white);
  padding: clamp(72px, 9vw, 150px) clamp(48px, 11vw, 195px) clamp(64px, 9vw, 120px) clamp(28px, 13vw, 173px);
  margin-left: 32px;
  border-top-left-radius: 29px;
  border-bottom-left-radius: 29px;
  padding-top: 200px;
}
.rse-infos-blocs__secondary__txt {
  font-family: "unbounded";
  font-size: clamp(0.9375rem, 0.7327rem + 0.8403vw, 1.5625rem);
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 50px;
}
.rse-infos-blocs__secondary__tagname {
  font-size: 1.25rem;
  font-weight: 700;
}
.rse-infos-blocs__secondary__tagname cite {
  font-weight: 300;
  font-style: normal;
}
@media screen and (min-width: 1040px) {
  .rse-infos-blocs__secondary {
    border-top-left-radius: 0;
    margin-left: auto;
    width: 65%;
    padding-top: 82px;
  }
}

.rse-topics {
  padding-top: 48px;
  padding-bottom: 110px;
  padding-inline: 25px;
  background-color: var(--color-tertiary);
}
@media screen and (min-width: 1250px) {
  .rse-topics {
    display: none;
  }
}

.rse-topics__main-heading {
  font-family: "unbounded";
  font-size: clamp(1.875rem, 1.5678rem + 1.2605vw, 2.8125rem);
  padding-inline: -25px;
  font-weight: 300;
  margin-left: auto;
  margin-bottom: 37px;
}
.rse-topics__main-heading span {
  width: 700px;
  height: 1px;
  background-color: var(--black);
  margin-bottom: 12px;
}
.rse-topics__main-heading h3 {
  margin-bottom: 0px;
}
@media screen and (min-width: 1250px) {
  .rse-topics__main-heading {
    width: 95%;
    padding-inline: 25px;
  }
}

.rse-topics {
  margin-bottom: 0;
}

.rse-topics__bloc-container {
  margin-bottom: 37px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.rse-topics__heading {
  font-family: "unbounded";
  font-size: clamp(4.375rem, 3.2031rem + 3.75vw, 5.3125rem);
  font-weight: 200;
  margin-bottom: 16px;
}
@media screen and (min-width: 360px) {
  .rse-topics__heading {
    margin-inline: auto;
  }
}
.rse-topics__heading--desktop {
  opacity: 0.2;
}
.rse-topics__heading--desktop.active {
  opacity: 1;
}
.rse-topics__heading--desktop:hover {
  cursor: pointer;
}

.rse-topics__subheading {
  font-family: "unbounded";
  font-size: clamp(1.75rem, 1.6066rem + 0.5882vw, 2.1875rem);
  font-weight: 200;
  margin-bottom: 24px;
}

.rse-topics__list-item {
  margin-bottom: 22px;
  padding-left: 10px;
}
.rse-topics__list-item h6 {
  position: relative;
  font-size: clamp(1.0625rem, 0.8986rem + 0.6723vw, 1.5625rem);
  font-weight: 600;
  line-height: 1.28;
}
.rse-topics__list-item h6::before {
  content: "•";
  position: absolute;
  left: -10px;
}
.rse-topics__list-item h6 span {
  font-weight: 300;
}
.rse-topics__list-item p {
  font-size: clamp(1.0625rem, 0.8986rem + 0.6723vw, 1.5625rem);
  font-weight: 300;
  line-height: 1.28;
}

.rse-topics--desktop {
  display: none;
  background-color: var(--color-tertiary);
  margin-top: -200px;
  padding-bottom: 125px;
  padding-top: 260px;
}
@media screen and (min-width: 1250px) {
  .rse-topics--desktop {
    display: block;
  }
}

.rse-topics--desktop__container {
  max-width: 1246px;
  padding-inline: 25px;
  width: 100%;
  margin-inline: auto;
}
.rse-topics--desktop__container .wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.rse-topics--desktop__container .wrapper .left.col {
  flex: 0 0 178px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: var(--rse-pin-top, 0px);
  align-self: flex-start;
  flex: 0 1 35%;
}
.rse-topics--desktop__container .wrapper .left.col a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.rse-topics--desktop__container .wrapper .right.col {
  flex: 1 1 65%;
  padding-top: var(--rse-right-top, 8px);
}

.rse-topics__heading--desktop {
  font-size: 5.3125rem;
  font-family: "unbounded";
  font-weight: 200;
  opacity: 0.2;
  margin: 0;
}
.rse-topics__heading--desktop.active {
  opacity: 1;
}

.rse-topics--desktop__main-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 40px;
}
.rse-topics--desktop__main-heading span {
  width: 700px;
  height: 1px;
  background-color: var(--black);
  margin-bottom: 12px;
  flex: 1 1 35%;
}
.rse-topics--desktop__main-heading h3 {
  margin-bottom: 0px;
  flex: 1 1 65%;
}

.anchor-wrapper {
  margin-top: 120px;
  margin-bottom: 200px;
}

.rse-culture {
  padding-top: 90px;
  padding-bottom: 200px;
  display: flex;
  flex-direction: column;
  gap: 74px;
}
@media screen and (min-width: 1040px) {
  .rse-culture {
    flex-direction: row;
  }
}

.rse-culture__grp-bloc1 {
  display: flex;
  flex-direction: column;
  gap: 65px;
  width: 100%;
}
@media screen and (min-width: 1040px) {
  .rse-culture__grp-bloc1 {
    width: 50%;
  }
}

.rse-culture__infos p {
  max-width: 442px;
}

.rse-culture__infos__valeurs {
  width: 100%;
}
@media screen and (min-width: 1040px) {
  .rse-culture__infos__valeurs {
    width: 50%;
  }
}
.rse-culture__infos__valeurs p {
  font-size: clamp(1.0625rem, 0.8562rem + 1.0317vw, 1.875rem);
  font-weight: 300;
  line-height: 1.33;
  max-width: 649px;
}

.rse-culture__infos__list {
  width: 100%;
}

.rse-culture__infos__list li {
  margin-bottom: 16px;
}

.rse-culture__infos__list li:last-child {
  margin-bottom: 0;
}

.rse-culture__infos__list__item {
  font-size: clamp(1.0625rem, 0.9355rem + 0.6349vw, 1.5625rem);
  font-weight: 300;
}
.rse-culture__infos__list__item p {
  width: 100%;
}
.rse-culture__infos__list__item span {
  font-size: clamp(1.375rem, 1.2111rem + 0.6723vw, 1.875rem);
  color: var(--color-quaternary);
  font-weight: 600;
}

.rse-politic {
  display: flex;
  background-color: var(--color-secondary);
  color: var(--white);
  padding-block: 142px;
}

.rse-politic__container {
  max-width: 1246px;
  padding-inline: 25px;
  margin-inline: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 56px;
}
@media screen and (min-width: 1040px) {
  .rse-politic__container {
    flex-direction: row;
    gap: 180px;
  }
}

.rse-politic__infos {
  width: 100%;
  max-width: 484px;
}
.rse-politic__infos h3 {
  font-family: "unbounded";
  font-size: clamp(1.875rem, 1.5678rem + 1.2605vw, 2.8125rem);
  font-weight: 300;
  margin-bottom: 26px;
}
.rse-politic__infos p {
  font-family: "unbounded";
  font-size: clamp(0.9375rem, 0.7327rem + 0.8403vw, 1.5625rem);
  max-width: 680px;
  margin-bottom: 70px;
}
@media screen and (min-width: 1040px) {
  .rse-politic__infos {
    width: 60%;
  }
  .rse-politic__infos p {
    margin-bottom: 54px;
  }
}

.rse-politic__video {
  max-width: 484px;
  margin-top: -230px;
}
@media screen and (min-width: 1040px) {
  .rse-politic__video {
    margin-top: -330px;
  }
}

.news-gallery {
  margin-bottom: 22px;
}
@media screen and (min-width: 1040px) {
  .news-gallery {
    margin-bottom: 130px;
  }
}

.news-gallery__container {
  display: grid;
  justify-content: center;
  grid-template-columns: minmax(0, 370px);
  gap: 40px 25px;
}
@media screen and (min-width: 820px) {
  .news-gallery__container {
    grid-template-columns: repeat(2, minmax(0, 370px));
  }
}
@media screen and (min-width: 1240px) {
  .news-gallery__container {
    grid-template-columns: repeat(3, minmax(0, 370px));
  }
}

.news__gallery__card figure {
  min-height: 540px;
}

.news__gallery__card--hidden {
  display: none;
}

.news-gallery__toggle {
  margin: 32px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.news__gallery__card__media {
  height: 60%;
}

.news__gallery__card__media__txt-container {
  height: 40%;
  text-align: center;
}

.news__gallery__card__video-img {
  height: 70%;
}

.news__gallery__card__video-txt {
  height: 30%;
}

.article-hero {
  position: relative;
  margin-top: 60px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1040px) {
  .article-hero {
    margin-top: 120px;
    margin-bottom: 80px;
  }
}

.article-hero__title {
  display: flex;
  align-items: center;
  min-height: 60px;
}

.article-hero__title__line {
  position: absolute;
  width: 100%;
  background: var(--black);
  height: 1px;
  top: 30px;
  z-index: 1;
}

.article-hero__title__heading {
  position: relative;
  background: var(--white);
  display: flex;
  align-items: center;
  border: 1px solid var(--black);
  width: fit-content;
  padding: 12px 20px;
  border-radius: 1000px;
  z-index: 2;
}
.article-hero__title__heading strong {
  font-size: clamp(0.875rem, 0.7931rem + 0.3361vw, 1.125rem);
  font-weight: 700;
}
.article-hero__title__heading span {
  font-size: clamp(0.875rem, 0.7931rem + 0.3361vw, 1.125rem);
  margin-inline: 8px;
}
.article-hero__title__heading p {
  font-size: clamp(0.875rem, 0.7931rem + 0.3361vw, 1.125rem);
  font-weight: 300;
}

.article-hero__main-title {
  font-size: clamp(1.875rem, 1.4653rem + 1.6807vw, 3.125rem);
  font-family: "unbounded";
  font-weight: 200;
  line-height: 1.2;
  margin-top: 70px;
}

.article-hero__img-container {
  margin-top: 18px;
  border-radius: 30px;
  overflow: hidden;
  display: block;
}
.article-hero__img-container .article-hero__img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: inherit;
}

.article-main {
  display: flex;
  gap: 26px;
  height: auto;
  border-bottom: 1px solid var(--black);
}

.article-main__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 1 100%;
  padding-inline: 25px;
}
@media screen and (min-width: 1040px) {
  .article-main__container {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1220px) {
  .article-main__container {
    flex-direction: row;
    flex: 0 1 75%;
  }
}

.article-section {
  display: block;
  flex: 0 1 100%;
  padding-right: 26px;
}
@media screen and (min-width: 1220px) {
  .article-section {
    flex: 0 1 60%;
  }
}

.article-section__intro {
  margin-bottom: 64px;
}

.article-section__main__bloc {
  margin-bottom: 64px;
}

.article-section__main__title {
  margin-bottom: 32px;
}

.article-section__main__article {
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  margin-top: 98px;
  margin-bottom: 37px;
  gap: 48px;
}
@media screen and (min-width: 1040px) {
  .contact-form {
    flex-direction: row;
  }
}

.contact-form__main {
  flex: 0 1 70%;
}

.contact-form__main__heading {
  color: var(--color-quaternary);
  font-size: clamp(1.875rem, 1.5678rem + 1.2605vw, 2.8125rem);
  font-family: "unbounded";
  font-weight: 200;
  margin-bottom: 47px;
}

.form {
  display: grid;
  grid-template-areas: "fullname" "company" "email" "phone" "subject" "stand" "squaremeter" "budget" "message" "file";
  gap: 14px;
}
@media screen and (min-width: 740px) {
  .form {
    grid-template-areas: "fullname fullname company company" "email email email email" "phone phone phone phone" "subject subject subject subject" "stand squaremeter squaremeter budget" "message message message message" "file file file file";
  }
}

.fullname {
  grid-area: fullname;
}

.company {
  grid-area: company;
}

.email {
  grid-area: email;
}

.phone {
  grid-area: phone;
}

.subject {
  grid-area: subject;
}

.stand {
  grid-area: stand;
}

.squaremeter {
  grid-area: squaremeter;
}

.budget {
  grid-area: budget;
}

.message {
  grid-area: message;
}

.file {
  grid-area: file;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 13px 29px;
  border: 1px solid var(--black);
  border-radius: 30px;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #c9c9c9;
}

.form__group input[type=file] {
  padding: 13px 29px;
  border-radius: 30px;
}

.form__group textarea {
  resize: none;
}

button.btn-primary__cta {
  background-color: transparent;
  display: inline-flex;
  grid-column: 1/-1;
  justify-self: start;
  margin-top: 44px;
}
button.btn-primary__cta:hover {
  cursor: pointer;
}

.contact-form__aside {
  flex: 0 1 30%;
  margin-top: auto;
  margin-bottom: 100px;
}

.seo-article {
  margin-top: 121px;
  padding-top: 50px;
  border-top: 1px solid var(--black);
}

.seo-article__container {
  display: flex;
  gap: 100px;
}

.seo-article__main {
  flex: 0 1 80%;
}

.seo-article__aside {
  display: none;
}
@media screen and (min-width: 1040px) {
  .seo-article__aside {
    flex: 0 1 20%;
    display: block;
  }
}

.seo-article__aside__quotation {
  padding: 58px 30px 36px;
  background-color: var(--color-secondary);
  color: var(--white);
  margin-top: -50px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-bottom: 22px;
}
.seo-article__aside__quotation > h3 {
  font-family: "unbounded";
  font-size: 2.375rem;
  margin-bottom: 35px;
}
.seo-article__aside__quotation > p {
  font-family: "unbounded";
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-quaternary);
}

.seo-article__aside__portfolio {
  margin-bottom: 54px;
  background-color: var(--color-quaternary);
  color: var(--white);
  transition: border-radius 0.2s ease;
}
.seo-article__aside__portfolio > h3 {
  padding: 111px 27px 30px;
  font-family: "unbounded";
  font-size: 2.375rem;
  font-weight: 200;
}
.seo-article__aside__portfolio:hover {
  border-radius: 30px;
}

.seo-article__aside__pages-list li {
  font-size: 1rem;
  font-weight: 300;
}

.notfound-main {
  background-color: var(--color-quaternary);
  color: var(--white);
  display: flex;
  flex: 1 0 auto;
  min-height: 0;
  padding-block: clamp(80px, 12vh, 140px);
}
.notfound-main .container-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding-bottom: 220px;
}
@media screen and (min-with: 1260px) {
  .notfound-main .container-large {
    padding-bottom: 0;
  }
}
.notfound-main__heading {
  font-size: clamp(2.375rem, 1.5147rem + 3.5294vw, 5rem);
  text-align: center;
  font-family: "unbounded";
  font-weight: 700;
}
.notfound-main__subheading {
  text-align: center;
  font-size: clamp(1.75rem, 1.5042rem + 1.0084vw, 2.5rem);
  font-weight: 300;
  padding-top: 24px;
}
.notfound-main .btn-primary__cta--secondary {
  margin-top: 24px;
}

.carousel {
  margin-top: 20px;
  color: var(--black);
  margin-bottom: 130px;
}
@media screen and (max-width: 1090px) {
  .carousel {
    margin-bottom: 82px;
  }
}

.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
  overflow: visible;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  width: auto;
  transition: border-radius 0.2s ease;
}
.swiper-slide--product-showcase {
  justify-content: none;
}

.swiper-slide__inner {
  position: relative;
  width: 100%;
  max-width: 484px;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 247/182;
  transition: border-radius 0.2s ease;
}
.swiper-slide__inner .swiper-slide__inner__img {
  transition: transform 0.2s ease;
}
@media screen and (min-width: 1040px) {
  .swiper-slide__inner {
    aspect-ratio: 484/305;
  }
}

@media (hover: hover) and (pointer: fine) {
  .swiper-slide__inner:hover {
    border-radius: 0;
  }
  .swiper-slide__inner:hover .swiper-slide__inner__img {
    transform: scale(1.1);
  }
  .swiper-slide__inner:hover .swiper-slide__inner__icon {
    transform: rotate(45deg);
  }
  .swiper-slide__inner:hover .swiper-slide {
    border-radius: 0;
  }
}
.carousel__stand-name {
  display: flex;
  align-items: center;
  position: absolute;
  gap: 24px;
  left: 16px;
  bottom: 16px;
  padding: 0 12px;
}

.carousel__stand-name span {
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--white);
  text-transform: uppercase;
}

.carousel__stand-name a img {
  width: 30px;
  height: 30px;
  transition: transform 0.2s ease;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.carousel__stand__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(25deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.1) 80%);
}

@media screen and (max-width: 1090px) {
  .swiper-slide {
    justify-content: flex-start;
  }
  .swiper-slide__inner {
    max-width: 100%;
    min-height: 182px;
    max-width: 247px;
  }
}
@media screen and (max-width: 1090px) and (min-width: 1040px) {
  .swiper-slide__inner {
    max-width: 484px;
  }
}
@media screen and (max-width: 1090px) {
  .swiper-slide img {
    height: 100%;
  }
}
.swiper-scrollbar {
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 0px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(89, 24, 104, 0.2);
  --swiper-scrollbar-drag-bg-color: var(--color-primary);
  --swiper-scrollbar-size: 4px;
}

.carousel--secondary__card {
  background-color: rgba(139, 6, 110, 0.16);
  color: var(--color-quinary);
  padding: 18px;
  border-radius: 30px;
  max-width: 247px;
}
@media screen and (min-width: 1040px) {
  .carousel--secondary__card {
    max-width: 300px;
  }
}

.carousel--secondary .swiper-slide {
  justify-content: flex-start;
}

.carousel--secondary__card__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-bottom: 12px;
}

.carousel--secondary__card__icon {
  text-transform: uppercase;
  background-color: var(--black);
  color: var(--white);
  font-weight: 900;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.carousel--secondary__card__name {
  margin-right: auto;
}
.carousel--secondary__card__name h3 {
  font-size: 1.125rem;
  font-size: 800;
  line-height: 1.2;
}
.carousel--secondary__card__name p {
  font-size: 0.9375rem;
  text-align: left;
}

.carousel--secondary__card__social {
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 700;
  align-self: left;
  width: fit-content;
  margin-bottom: 18px;
}

.carousel--secondary__card__stars-container {
  display: flex;
  margin-bottom: 18px;
}
.carousel--secondary__card__stars-container > img {
  width: 128px;
  height: 22px;
}

.carousel--secondary__card__txt {
  font-size: 1.06rem;
  text-align: left;
}

.carousel--tertiary {
  margin-bottom: 458px;
  margin-top: 88px;
}
@media screen and (min-width: 1040px) {
  .carousel--tertiary {
    margin-bottom: 238px;
    margin-top: 114px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .carousel--tertiary__card:hover .carousel--tertiary__card__img {
    border-radius: 0;
  }
  .carousel--tertiary__card:hover .carousel--tertiary__card__txt-container {
    border-radius: 0;
  }
  .carousel--tertiary__card:hover .carousel--tertiary__card__link .cls-2 {
    fill: var(--white);
  }
  .carousel--tertiary__card:hover .carousel--tertiary__card__link .cls-3 {
    stroke: #542566;
  }
}
.swiper-slide--tertiary {
  display: flex;
  height: auto;
}

.carousel--tertiary__card {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 335px;
}

.carousel--tertiary__card figure {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 488px;
  height: auto;
}

.swiper-slide--tertiary img {
  border-radius: 30px 30px 0 0;
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.carousel--tertiary__card__media {
  position: relative;
  min-height: 0;
}

.carousel--tertiary__card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px 30px 0 0;
  transition: border-radius 0.2s ease;
}

.carousel--tertiary__card__txt-container {
  position: relative;
  background-color: var(--color-primary);
  color: var(--white);
  border-radius: 0 0 30px 30px;
  padding: 20px;
  min-height: 0;
  transition: border-radius 0.2s ease;
}
@media screen and (min-width: 360px) {
  .carousel--tertiary__card__txt-container {
    padding: 30px;
  }
}

.carousel--tertiary__card__heading {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  text-align: center;
}

.carousel--tertiary__card__txt {
  font-size: 1.0625rem;
  font-weight: 300;
  height: auto;
}

.carousel--tertiary__card-label {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  color: var(--black);
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 4px 10px;
  border-radius: 30px;
  width: 70%;
}
.carousel--tertiary__card-label strong {
  font-size: 0.8125rem;
  font-weight: 600;
}
.carousel--tertiary__card-label span {
  width: 2px;
  height: 13px;
  margin-inline: 4px;
  background-color: #d1cd00;
}
.carousel--tertiary__card-label .carousel--tertiary__card-label__date {
  font-size: 0.8125rem;
  font-weight: 300;
}

.carousel--tertiary__card__link {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
}
.carousel--tertiary__card__link .cls-1 {
  fill: #fff;
}
.carousel--tertiary__card__link .cls-2 {
  fill: #542566;
}
.carousel--tertiary__card__link .cls-3 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
}

.socials-proof {
  margin-top: 48px;
  margin-bottom: 64px;
}
@media screen and (min-width: 1040px) {
  .socials-proof {
    margin-top: 78px;
    margin-bottom: 120px;
  }
}

.swiper-slide--logos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.carousel--logos__card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.carousel--logos__card__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 120px;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .carousel--logos__card__media {
    width: 180px;
    height: 140px;
  }
}

.swiper-slide--logos .carousel--logos__card__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.swiper-scrollbar--carousel-logos {
  --swiper-scrollbar-bg-color: rgba(89, 24, 104, 0.2);
  --swiper-scrollbar-drag-bg-color: var(--color-primary);
  --swiper-scrollbar-size: 4px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: auto;
  --swiper-scrollbar-left: 0;
  --swiper-scrollbar-right: 0;
  --swiper-scrollbar-sides-offset: 0;
  --swiper-scrollbar-border-radius: 10px;
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  max-width: 100%;
  height: var(--swiper-scrollbar-size);
  margin: 35px 0 78px;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
}

.socials-proof .swiper {
  overflow: hidden;
}

.article-section p {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 300;
}

.article-section h2 {
  font-size: clamp(1.125rem, 0.8792rem + 1.0084vw, 1.875rem);
  line-height: 1.2;
  font-weight: 300;
}

.article-section h3 {
  font-size: 1rem;
  font-weight: 700;
}

.carousel.carousel--tertiary--article {
  margin-bottom: 83px;
}
@media screen and (min-width: 1040px) {
  .carousel.carousel--tertiary--article {
    margin-bottom: 125px;
  }
}

.seo-article__main > h2 {
  font-family: "unbounded";
  font-size: clamp(1.875rem, 1.4653rem + 1.6807vw, 3.125rem);
  font-weight: 200;
  margin-bottom: 60px;
}

.seo-article__main > p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.37;
  margin-bottom: 24px;
  max-width: 862px;
}

.seo-article__main > h3 {
  margin-top: 63px;
  margin-bottom: 26px;
  font-size: clamp(1.25rem, 1.0452rem + 0.8403vw, 1.875rem);
  font-weight: 300;
}

.seo-article__main > figure {
  border-radius: 30px;
  overflow: hidden;
}
.seo-article__main > figure img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.seo-article__main p:last-child {
  color: var(--color-secondary);
  margin-bottom: 163px;
}

.seo-article__main ul {
  list-style-type: disc;
  list-style-position: inside;
  max-width: 862px;
  margin-left: 12px;
}
.seo-article__main ul li {
  font-size: 1rem;
  display: list-item;
}

main.main {
  overflow: visible;
}

/*# sourceMappingURL=style.css.map */
