:root {
  font-family: 'GuerlainSans', sans-serif;
  line-height: 1.5 !important;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --dd-white: white;
  --dd-black: #020202;
  --dd-grey: #F5F5F5;
  --dd-dark-grey: #686868;
  --dd-schema-grey: #979797;
  --dd-beige: #F3E3DA;
  --dd-max-width: 1400px;

  --font-size-xs-desktop: clamp(8px, 0.833vw, 12px);
  --font-size-l-desktop: clamp(16px, 1vw, 20px);
  --font-size-h2-desktop: clamp(30px, 1.8vw, 48px);
  --font-size-h2-s: clamp(26px, 2.2vw, 32px);
  --font-size-h3-desktop: clamp(18px, 1.25vw, 24px);
  --font-size-article-title: clamp(1vw, 1.25vw, 24px);
  --font-size-h6: clamp(12px, 0.8vw, 16px);
  --font-size-subtitle: clamp(28px, 2.5vw, 30px);
  --font-size-body: clamp(18px, 1.25vw, 18px);
  --font-size-14: clamp(13px, 0.972vw, 14px);
  --font-size-16: clamp(15px, 1.111vw, 16px);

  --dd-padding-80: 4.167vw;

}

@font-face {
  font-family: 'GuerlainSans';
  src: url('./assets/fonts/GuerlainSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GuerlainSans';
  src: url('./assets/fonts/GuerlainSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GuerlainSans';
  src: url('./assets/fonts/GuerlainSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:focus {
  outline: none; /* Si tu veux enlever l'outline par défaut */
  border: 2px solid #f90 !important; /* Ajoute une bordure alternative */
  box-shadow: 0 0 5px rgba(255, 165, 0, 0.6) !important; /* Ombre pour la visibilité */
}
:focus:not(:focus-visible) {
  outline: none !important; /* Enlève le focus lorsqu'on utilise la souris */
  border: none !important; /* Ajoute une bordure alternative */
  box-shadow:inherit !important; /* Ombre pour la visibilité */
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.article-container ul {
  list-style: disc !important;
  padding-inline-start: 30px !important;
  margin: 10px 0 !important;
}

html {
  box-sizing: border-box;
}

body {
  overflow: visible;
}

#app {
  position: relative;
  margin: 0 auto;
  text-align: center;
  background: white;
  min-height: 100dvh;
  width: 100%;
  max-width: 100vw;
}

#app a {
  text-decoration: none !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'GuerlainSans', 'GuerlainSans-fallback', sans-serif;
}

p {
  margin-top: 0px;
  margin-bottom: 0px;
}

h2.dd-h2,
.dd-h2 {
  font-size: var(--font-size-h2-desktop);
  letter-spacing: 0.02em;
  line-height: 120% !important;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
}

h3.dd-h3,
.dd-h3 {
  font-size: var(--font-size-h3-desktop);
  letter-spacing: 0;
  line-height: 130% !important;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
}

.time-infinite .dd-article-content .dd-h3 {
  /* font-size: clamp(14px, 1.25vw, 22px); */
  font-size: clamp(10px,0.8vw,16px);
  letter-spacing: 0;
  line-height: 130% !important;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
  word-break: break-word;
}

.dd-time-selector h2 {
  /* max-width: 30vw; */
  font-size: 2.5vw;
}

.dd-max-width {
  max-width: var(--dd-max-width);
  margin: 0 auto;
}

.dd-image-cpt .dd-max-width {
  height: 100%;
}

a {
  font-weight: 500;
  text-decoration: inherit;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: white;
}

h1 {
  line-height: 1.1 !important;
}

*[appear=zoom] {
  transform: scale(1.1);
  opacity: .8;
}


*[appear=fade] {
  transform: translateY(40px);
  opacity: 0;
}

*[appear-anim][appear=fade] {
  transform: translateY(0);
  transition: all 1s;
  opacity: 1;
}

*[appear=grow] .dd-schema-media-gauge-fill {
  width: 0%;
}

*[appear=grow][appear-anim] .dd-schema-media-gauge-fill {
  width: 100%;
}

*[appear=grow] .dd-schema-sbti-gauge-fill {
  height: 0%;
}

*[appear=grow][appear-anim] .dd-schema-sbti-gauge-fill {
  height: 100%;
  transition-delay: 0.2s;
}

*[appear-anim][appear=zoom] {
  transform: scale(1);
  transition: all 3s;
  opacity: 1;
}


.dd-foreground-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dd-grey);
  z-index: 5;
  pointer-events: none;
}


.dd-key-figures-swiper-wrapper[appear=counter] .dd-foreground-overlay {
  opacity: 1;
}


.dd-key-figures-swiper-wrapper[appear=counter][appear-anim] .dd-foreground-overlay {
  opacity: 0;
  transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}



/* Système de visibilité des articles */
.dd-articles-list {
  max-width: 1430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0px;
  width: 100%;
  transition: all .5s ease-in-out;
}

.dd-articles-list.change {
  opacity: 0;
  transform: translateY(10px);
}

.dd-articles-section {
  display: flex;
  flex-direction: column;
  gap: 4.167vw;
  padding: 4.167vw 7vw;
  width: 100%;
  box-sizing: border-box;
}

.time-2 .dd-articles-section {
  display: none;
}

.time-5 .dd-articles-list {
  grid-template-columns: 1fr;
  width: 100%;
  justify-content: center;
}


.dd-push-article-item {
  width: 100%;
  height: 100%;
}


.time-15 .dd-articles-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.042vw;
}

.time-5 .dd-push-15min-only,
.time-15 .dd-push-5min-only,
.time-15 .dd-push-infinite-only,
.time-infinite .dd-push-5min-only,
.time-infinite .dd-push-15min-only,
.time-2 .dd-push-15min-only {
  display: none;
}

.time-infinite .dd-push-5min-only+.dd-push-15min-only {
  display: block;
}

.time-15 .dd-article-preview a {
  gap: 2.604vw;
}

.time-infinite .dd-article-preview a {
  gap: 2.083vw;
}

.time-infinite .dd-articles-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.042vw;
}


.time-5 .dd-key-figures,
.time-15 .dd-key-figures,
.time-infinite .dd-key-figures {
  background-color: var(--dd-grey);
  padding: 4vw 0px;
}

.dd-article-preview {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 5vw;
  align-items: center;
  justify-content: center;
}

.time-15 .dd-article-preview {
  gap: 2.604vw;
  justify-content: flex-start;
}

.time-infinite .dd-article-preview {
  gap: 2.083vw;
  justify-content: flex-start;
}

.time-15 .dd-articles-list,
.time-infinite .dd-articles-list {
  column-gap: 1.042vw;
  row-gap: 4.167vw;
}

.dd-article-link {
  text-transform: uppercase;
  position: relative;
  font-size: var(--font-size-xs-desktop);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.time-5 .dd-article-content-wrapper {
  width: 36.823vw;
}

.time-infinite .dd-excerpt,
.time-infinite .dd-article-link {
  display: none;
}

.time-5 .dd-article-preview {
  flex-direction: row;
  gap: 8.333vw;
}

.dd-article-preview a {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 5vw;
  align-items: center;
  gap: 8.333vw;
  justify-content: center;
  color: black;
  max-width: 100%;
}

.time-5 .dd-article-preview a {
  transition: all 0.3s ease;
  display: flex;
  gap: 5vw;
  align-items: center;
  flex-direction: row;
  gap: 8.333vw;
}

.time-5 .dd-articles-list {
  gap: 4.167vw;
}

.time-5 .dd-article-cover {
  aspect-ratio: 464 / 557;
  width: 24.167vw;
  max-width: 464px;
}

/* PAR DÉFAUT : Tous les articles au-delà des 4 premiers sont cachés */
.article-15min,
.article-infinite {
  display: none;
}

.time-5 .article-15min,
.time-5 .article-infinite {
  display: none;
  /* Masquer articles 5-10 et 11+ */
}

.time-15 .article-15min {
  display: flex;
  flex-direction: column;
}

.time-15 .article-infinite {
  display: none;
}

/* AVEC TEMPS INFINI : Afficher tous les articles */
.time-infinite .article-15min,
.time-infinite .article-infinite {
  display: flex;
}

/* Styles pour le sélecteur de temps */
.dd-time-selector {
  text-align: center;
  color: var(--dd-black);
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-top: 3vw;
  gap: 4vw;
  position: absolute;
  z-index: 2;
  transition: all 1s ease-in-out;
  top: 0;
  position: absolute;
}

.dd-time-selector.off {

  opacity: 0;
  pointer-events: none;
}


.dd-time-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  grid-column: 2 / 4;
  align-items: flex-end;
}

.dd-time-btn {
  color: var(--dd-black);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-align: right;
  line-height: normal;
  border: none;
  background-color: transparent;
}

.dd-time-btn span {
  text-transform: uppercase;
  font-size: 2vw;
  font-weight: 400;
  transition: all 600ms ease;
  position: relative;
}

.dd-time-btn .dd-fr-sup {
    position: absolute;
    top: .3vw;
    right: -.8vw;
    font-size: 0.7vw;
}

.dd-time-btn .height-p {
  font-size: 0.94vw;
  height: 0px;
  visibility: hidden;
  pointer-events: none;
  transition: height 600ms ease;
}

.dd-time-btn p {
  opacity: 0;
  transform: translateY(20px);
}

.dd-time-btn.active span {
  font-size: 3vw;
  font-weight: 500;
}

.dd-time-btn.active .height-p {
  height: auto;
  visibility: visible;
}

.dd-time-btn.active p {
  opacity: 1;
  transform: translateY(0px);
  transition: all 600ms ease;
}

.dd-article-cover {
  position: relative;
  aspect-ratio: 344 / 412;
  overflow: hidden;
}

.time-15 .dd-article-cover,
.time-infinite .dd-article-cover {
  width: 100%;
}

.dd-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s ease;
}

.dd-article-preview:hover .article-cover img {
  transform: scale(1.05);
}

.dd-article-tag {
  font-size: clamp(10px,0.8vw,16px);
  color: var(--dd-dark-grey);
  text-transform: uppercase;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .dd-article-tag {
    font-size: clamp(12px,0.85rem, 16px);
  }
}

.dd-article-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  gap: 10px;
}

.dd-article-content h3 {
  letter-spacing: .5px;
  line-height: 110% !important;
}

.dd-article-content h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
}

.dd-article-content a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.dd-category {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0.5rem 0;
}

.dd-excerpt {
  line-height: 1.5 !important;
  font-size: var(--font-size-l-desktop);
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 400;
}

.time-15 .dd-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5 !important;
  max-height: 4.5em;
}

.dd-article-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.125vw;
}

.time-15 .dd-article-content-wrapper,
.time-infinite .dd-article-content-wrapper {
  width: 100%;
}

/* Filtres de catégories */
.dd-category-filters {
  display: flex;
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
}

.time-2 .dd-category-filters,
.time-5 .dd-category-filters,
.time-15 .dd-category-filters,
.time-2 .visible-15min,
.time-5 .visible-15min,
.time-2 .visible-infinite,
.time-5 .visible-infinite,
.time-15 .visible-infinite {
  display: none;
}

.dd-filter-btn {
  color: var(--dd-black) !important;
  padding: 0px 1rem 0.5rem 1rem;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--font-size-h6);
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  position: relative;
}

.dd-filter-btn.active {
  font-weight: 600;
}

.dd-filter-btn::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--dd-black);
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.2;
}

.dd-filter-btn.active::before {
  opacity: 1;
}

.dd-btn-black {
  text-transform: uppercase;
  font-size: .8vw;
  font-weight: 500;
  color: var(--dd-white);
  background-color: var(--dd-black);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--dd-black);
  padding: .75vw 3vw .75vw;
  border-radius: 50px;
  font-family: 'GuerlainSans', sans-serif;
  margin-top: 2vw;
  transition: all .4s ease-in-out;
}

.dd-btn-black:hover,
.dd-btn-black.is-white:hover,
.dd-push-article-link:hover .dd-btn-black.is-white {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(40px);
  color: var(--dd-black);
}

.dd-btn-black:hover svg {
  stroke: white;
}


.dd-btn-black.is-white:hover,
.dd-push-article-link:hover .dd-btn-black.is-white {
  color: var(--dd-white);
}

.dd-btn-black.is-grey {
  background-color: #E8E8E8;
  border-color: #E8E8E8;
  color: var(--dd-black);
}

.dd-btn-black.is-grey:hover,
.dd-btn-black.is-border:hover {
  background-color: #000000;
  color: white;
}


.dd-btn-black.is-white {
  background-color: white;
  border-color: white;
  color: var(--dd-black);
}

.dd-btn-black.is-border {
    background-color: white;
    border-color: black;
    color: var(--dd-black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .75vw 1.5vw;
}

.dd-cta-section {
  padding: var(--dd-padding-80) 0px;
}

.dd-cta-section svg {
  width: 1.3vw;
  vertical-align: middle;
  stroke: black;
  fill: none;
  transition: stroke .4s ease-in-out;
  margin-right: .25vw;
}

.dd-start-reading-btn {
  margin-top: 0px;
}

.dd-start-reading-btn:hover {
  transform: translateY(-2px);
}

.dd-start-reading-btn:active {
  transform: translateY(0);
}

.dd-homepage-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3vw;
  height: 0px;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;

}


.dd-homepage-content.active {
  height: auto;
  visibility: visible;
  pointer-events: auto;
  overflow: unset;
  padding-top: 3vw;
}

.dd-homepage-content .dd-homepage-title {
  width: 60%;
}

.bee-icon-wrapper {
  height: 110px;
  margin: 2vw 0px 4vw;
}

.bee-icon-wrapper img {
  height: 100%;
}

.dd-homepage-video {
  width: 100%;
}

video {
  width: 100%;
  background-color: grey;
  height: 100dvh;
  object-fit: cover;
}

.dd-homepage-video video {
  width: 100%;
  background-color: grey;
}

.dd-homepage-paragraph {
  max-width: 60%;
  margin: 4vw 0 6vw;
}

.dd-homepage-paragraph .dd-homepage-paragraph__content {
  font-size: 1.6vw;
  line-height: 125% !important;
}

/* anim scroll */
.bee-icon-wrapper {
  opacity: 0;
  transform: translateY(30px) scale(0.5);
  transition-property: opacity, transform;
  transition: 800ms ease-in-out;
}
.bee-icon-wrapper svg {
  width: 4vw;
  min-width: 70px;
}

.dd-homepage-paragraph .dd-homepage-paragraph__content {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform;
  transition: 800ms ease-in-out;
}

.dd-homepage-paragraph.dd-anim .bee-icon-wrapper {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dd-homepage-paragraph.dd-anim .dd-homepage-paragraph__content {
  opacity: 1;
  transform: translateY(0);
}


.dd-key-figures-slide {
  aspect-ratio: 344 / 494;
  height: 25.7vw;
  border-radius: 20px;
  width: 17.9vw;
  min-height: 380px;
}
@media screen and (min-width:1920px) {
  .dd-key-figures-slide {
      height: auto;
      max-width: 15vw !important;
  }
  .dd-figure-title {
    font-size: 1vw !important;
  }

}
@media screen and (max-width:1024px) {
  .dd-key-figures-slide {
    height: 60vw;
    max-width: none;
  }

  .dd-mobile-swiper-container {
    margin-top: -33vw;
  }

  .dd-mobile-map-container {
    overflow: hidden;
  }

  .dd-mobile-map-container img {
    width: 120%;
    transform: translateX(-16vw);
  }

  .dd-schema-mobile-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .dd-schema-country {
    margin-bottom: 40px;
  }
}

@media screen and (min-width:1025px) {
  .dd-key-figures-slide {
    max-width: 20vw;
  }

  .time-2 #keyFiguresSwiper .swiper-wrapper {
    justify-content: center;
  }
}

.dd-key-figure-item {
  position: relative;
  color: var(--dd-white);
  overflow: hidden;
  height: 100%;
  width: 100%;
  border-radius: 20px;
}

.dd-figure-background,
.dd-figure-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.dd-figure-front {
  z-index: 3;
}

.dd-figure-background img,
.dd-figure-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.dd-figure-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: space-between;
}

.dd-figure-top,
.dd-figure-bottom {
  padding: 20px;
}

.dd-figure-bottom {
  position: absolute;
  z-index: 4;
  bottom: 0;
}

.dd-figure-details {
  font-size: 1vw;
}

.dd-figure-number {
  font-size: 5.208vw;
  font-weight: 700;
  line-height: 1.2 !important;
}

.dd-figure-tag {
  position: relative;
  z-index: 4;
  font-size: 0.9vw;
  text-transform: uppercase;
}

.dd-figure-title {
  font-size: 1.25vw;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 4;
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.3 !important;
}

.dd-key-figures {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 4vw;
  padding-bottom: 4vw;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.dd-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 4vw;
  padding-bottom: 4vw;
  overflow: hidden;
  max-width: 100vw;
  box-sizing: border-box;
  display: none;
}

.time-infinite .dd-timeline {
  display: flex;
}

.dd-key-figures-swiper,
#timelineSwiper {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

#timelineSwiper {
  padding-bottom: 3vw;
}

#timelineSwiper .swiper-slide {
  width: 37.083vw;
}

.dd-timeline {
  background-color: var(--dd-grey);
  padding: 4vw 0px;
}

.dd-timeline-title {
  font-size: clamp(12px, 1vw, 24px);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3 !important;
  margin-top: 0px;
  margin-bottom: 1em;
}

.dd-timeline-description:lang(de) {
  font-size: clamp(12px, 1vw, 24px);
}

.dd-timeline-content span {
  font-size: var(--font-size-14);
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.5);
}

.dd-timeline-item {
  display: flex;
  gap: 33px;
  align-items: flex-end;
  width: 37.083vw;
}

.dd-timeline-content {
  flex-shrink: 0;
  width: 12.24vw;
  text-align: left;
}

.dd-timeline-image {
  width: 23.125vw;
  aspect-ratio: 444 / 592;
  flex-shrink: 1;
  overflow: hidden;
  border-radius: 20px;
  max-width: 420px;
}

.dd-timeline-image img {
  width: 100%;
}

.dd-unit {
  font-size: 3vw;
}

.dd-key-figures-swiper-wrapper,
.dd-timeline-swiper {
  /* padding-left:200px; */
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;

  backdrop-filter: blur(40px);

  background-color: rgba(255, 255, 255, 0.50);
  color: var(--dd-black);
  border-radius: 50%;
  box-sizing: border-box;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all .4s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: black;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  color: black;
  transition: all .4s ease-in-out;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: white;
}


.swiper-pagination.dd-swiper-pagination,
.swiper-pagination,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.dd-pagination-container .swiper-pagination,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  position: relative;
  top: unset;
  bottom: unset;
  width: 9.531vw;
  height: 1px;
  margin-top: 2vw;
}

.dd-pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dd-timeline-dates-container {
  width: 16.51vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-direction: column;
}

.dd-timeline-main-dates-container {
  width: 30vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.dd-gradient-left {
  pointer-events: none;
  background-image: linear-gradient(270deg, #f5f5f500, #f5f5f587 35%, #F5F5F5);
  width: 12.819vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.dd-gradient-right {
  pointer-events: none;
  background-image: linear-gradient(90deg, #f5f5f500, #f5f5f587 35%, #F5F5F5);
  width: 12.819vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 1);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.dd-swiper-scrollbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: .2rem;
}

.dd-slider-navigation {
  display: flex;
  gap: 24px;
  align-items: center;
}

.dd-slider-buttons {
  display: flex;
  gap: 10px;
  margin: 0 8px;
}

.dd-slider-button-prev,
.dd-slider-button-next {
  height: 38px;
  width: 38px;
  border: 2px solid rgba(0, 0, 0, .4);
  border-radius: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .4s ease-in-out;
  opacity: .4;
  cursor: pointer;
}

.dd-slider-button-next:hover,
.dd-slider-button-prev:hover {
  border: 2px solid rgba(0, 0, 0, .4);
  opacity: 1;
  transform: scale(.95);
}

.dd-slider-button-next:after {
  content: 'next';
}

.dd-slider-button-prev:after {
  content: 'prev';
}

.dd-slider-button-prev:after,
.dd-slider-button-next:after {
  font-family: swiper-icons;
  font-size: 14px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;

}

.dd-beige-bkg-mask {
  background-color: var(--dd-beige);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 38.125vw;
  z-index: 1;
}

.dd-slider-navigation .dd-slider-pagination {
  flex-shrink: 1;
  width: auto !important;
  white-space: nowrap;
  width: 34px;
}

.dd-slider-navigation .swiper-pagination-current {
  font-weight: bolder;
}

.dd-slider-navigation .dd-swiper-scrollbar-wrapper {
  justify-content: flex-start;
}

.dd-slider-scrollbar {
  background-color: rgba(0, 0, 0, 0.2);
}

.swiper-scrollbar,
.dd-slider-scrollbar {
  position: relative !important;
  left: unset !important;
  bottom: unset !important;
  z-index: 50;
  height: 2px !important;
  width: 200px !important;
}

.dd-timeline-dates-container .swiper {
  width: 1.927vw;
  margin-left: unset;
  margin-right: unset;
  overflow: visible;
}

.dd-timeline-dates-container .swiper-slide {
  max-width: 150px;
  cursor: pointer;
  opacity: 0.3;
}

.dd-timeline-dates-container .swiper-slide.swiper-slide-next {
  opacity: 0.7;
}

.dd-timeline-dates-container .swiper-slide.swiper-slide-next+.swiper-slide {
  opacity: 0.5;
}


.dd-timeline-dates-container .swiper-slide.swiper-slide-active {
  opacity: 1;
}


.swiper-pagination.dd-swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--dd-black);
}

.time-2 .swiper-slide[data-type="5"],
.time-2 .swiper-slide[data-type="15"],
.time-2 .swiper-slide[data-type="infinite"] {
  display: none;
}

.time-5 .swiper-slide[data-type="15"],
.time-5 .swiper-slide[data-type="infinite"] {
  display: none;
}

.time-15 .swiper-slide[data-type="infinite"] {
  display: none;
}

.dd-key-figures-swiper-wrapper.no-swiper .swiper-wrapper.dd-key-figures-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.042vw;
}

.dd-hp-hero {
  z-index: 2;
  position: relative;
}

.dd-hp-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dd-hp-hero-top {
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 1s ease-in-out;
}

.dd-hp-hero-top.off {
  opacity: 0;
  pointer-events: none;
}


.dd-hp-hero-title {
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
  font-size: 7.292vw !important;
  line-height: 1 !important;
  font-weight: 600;
}

.dd-hp-hero-title span {
  position: relative;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dd-hp-hero-title span::before {
  content: '';
  position: absolute;
  top: 2vw;
  left: -0.5vw;
  width: 6.948vw;
  object-fit: contain;
  /* background-image: url(/public/images/bee-logo.png); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: auto;
  height: 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dd-hp-hero-title span svg {
  width: 6vw;
  height: 6vw;
  transform: translateY(.4vw);
}

.dd-txt-abs {
  position: absolute;
  bottom: 1.563vw;
  right: 1.563vw;
  display: block !important;
}

.dd-circle-progress-container {
  width: 8.073vw;
  height: 8.073vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border-radius: 100%;
  overflow: hidden;
}

.dd-circle-inner {
  width: 8.073vw;
  height: 8.073vw;
  position: relative;
}


.dd-time-txt-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.dd-time-txt p {
  display: flex;
  flex-direction: column;
  font-size: 0.833vw;
}

.dd-time-txt span {
  font-size: 1.667vw;
  line-height: 1.1 !important;
}

.dd-circle-progress-wrapper {
  grid-column: 4 / 6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}



.dd-time-wrapper {
  position: relative;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  width: 100%;
  direction: ltr;
}

.dd-circle-track {
  fill: none;
  stroke: #D9D9D9;
  stroke-width: 2;
}

.dd-time-txt {
  position: absolute;
  top: auto;
  left: auto;
}

.dd-circle-progress {
  fill: none;
  stroke: #020202;
  stroke-width: 2;
  transform: rotate(-90deg);
  transform-origin: center;
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
  transition: all 600ms ease;
}

.time-2 .dd-circle-progress {
  stroke-dashoffset: 79;
}

.time-5 .dd-circle-progress {
  stroke-dashoffset: 64;
}

.time-15 .dd-circle-progress {
  stroke-dashoffset: 37;
}

.time-infinite .dd-circle-progress {
  stroke-dashoffset: 0;
}

.dd-time-txt-infinite {
  width: 4.219vw;
  height: 4.219vw;
}


.dd-time-txt-5,
.dd-time-txt-15,
.dd-time-txt-infinite,
.dd-time-txt-2 {
  opacity: 0;
  transform: translateY(10px);
}


.time-2 .dd-preloader .dd-time-txt-2,
.time-2 .dd-hp-hero .dd-time-txt-2,
.time-2 .dd-push-next .dd-time-txt-5,
.time-5 .dd-preloader .dd-time-txt-5,
.time-5 .dd-hp-hero .dd-time-txt-5,
.time-5 .dd-push-next .dd-time-txt-15,
.time-15 .dd-preloader .dd-time-txt-15,
.time-15 .dd-hp-hero .dd-time-txt-15,
.time-15 .dd-push-next .dd-time-txt-infinite,
.time-infinite .dd-time-txt-infinite {
  transform: translateY(0px);
  opacity: 1;
  transition: all 600ms ease;
}

/* Article */

/*Hero*/

.dd-breadcrumb-wrapper {
  position: absolute;
  top: 2.431vw;
  left: 0;
  color: white;
  z-index: 3;
  padding: 0px 5.556vw;
  font-size: 0.833vw;
  font-weight: 400;
}

.dd-breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dd-breadcrumb-separator {
  width: 3px;
  height: 3px;
  background-color: #D19B8D;
  border-radius: 50%;
}

.dd-breadcrumb a {
  color: white;
  font-weight: 400;
}

.dd-breadcrumb-category {
  text-transform: capitalize;
}

.article-container {
  width: 100%;
}

.dd-article-hero-banner {
  background-color: white;
  padding: 4.44vw 4.44vw 3.333vw;
  position: relative;
}

.dd-article-hero-bottom .dd-article-hero-banner {
  padding-top: 0px;
}

.dd-article-intro {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: var(--font-size-h3-desktop);
  font-weight: 500;
  line-height: 120% !important;
}

.dd-article-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dd-article-hero-top {
  position: relative;
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dd-article-hero-img-wrapper {
  height: 100dvh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: #000;
}

.dd-article-hero-img-wrapper .img-hero-mobile {
  display: none;
}

.dd-article-hero-img-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, 0.0) 32.94%, rgba(0, 0, 0, 0.40) 66.54%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.dd-article-hero-content {
  position: relative;
  z-index: 2;
  padding: 0px 5.556vw;
}

.dd-article-hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1.dd-article-title {
  font-weight: 500;
  color: white;
  font-size: var(--font-size-h2-desktop);
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 110% !important;
}

.dd-article-title-wrapper {
  margin-bottom: 2.708vw;
  gap: 4px;
  display: flex;
  flex-direction: column;
}

.dd-article-subtitle {
  font-weight: 400;
  color: white;
  font-size: var(--font-size-subtitle);
  text-transform: uppercase;
  display: block;
  line-height: 110% !important;
}

.dd-back-wrapper {
  width: 8.333vw;
  height: 8.333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 48px;
  bottom: 85px;
  z-index: 8;
  max-width: 120px;
  max-height: 120px;
}

.dd-back-inner {
  background-image: url('../../../images/back-home.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.back-svg-wrapper {
  width: 4.861vw;
  height: 4.861vw;
  background-color: #F3E3DA;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 70px;
  max-height: 70px;
}

.back-svg-wrapper svg {
  width: 2.431vw;
  max-width: 34.5px;
}

.dd-article-hero-bottom {
  padding: 0px 5.556vw;
}

.article-container p:not(.dd-article-intro, .dd-article-subtitle),
.article-container ul,
.dd-txt-text {
  font-size: var(--font-size-body);
  line-height: 150% !important;
  margin-top: 0px;
}


/* Text Image CPT */

/* .article-container ul li {
  margin-bottom: 1vw;
} */

.dd-txt-image-cpt {
  padding: 0px 5.556vw;
  width: 100%;
  box-sizing: border-box;
}

.dd-global-padding-80 {
  padding: 4.444vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4.444vw;
}

.dd-txt-image-cpt .dd-global-padding-80 {
  grid-gap: 9.792vw;
}

.dd-video-container {
  position: relative;
}

.dd-txt-image-cpt .dd-video-container {
  aspect-ratio: 534 / 644;
}

.dd-txt-image-cpt .dd-video-container.no-aspect-ratio {
  aspect-ratio: unset;
}



.dd-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.dd-video-container {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 100%;
}

.dd-video-container .dd-video-poster {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.dd-video-container .dd-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50%;
  padding: 0;
  /* Le clic passe à travers vers le container */
}

.dd-video-container:hover .dd-play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.dd-video-container.dd-video-loaded .dd-play-button,
.dd-video-container.dd-video-loaded .dd-video-poster {
  display: none !important;
}

.dd-video-placeholder {
  width: 100%;
  height: 100%;
  z-index: 3;
}

.dd-txt-image-cpt .dd-video-placeholder {
  aspect-ratio: 534 / 644;
}


.dd-txt-image-cpt .dd-video-container.no-aspect-ratio.dd-video-loaded .dd-video-placeholder {
  aspect-ratio: unset;
  max-width: 70%;
  margin: 0 auto;
}

.dd-video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.dd-video-container video {
  width: 100%;
  height: 100%;
  z-index: 4;
}

/*Slider*/
.dd-slider-cpt {
  background-color: var(--dd-beige);
  overflow: hidden;
  padding: 0px 5.556vw;
  position: relative;
}

.dd-slider-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  /* min-height: 400px; */
  width: 100%;
  padding: 4.444vw 0vw 4.444vw 4.444vw;
  align-items: stretch;
}


.dd-slider-text {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 38.125vw;
  position: relative;
  z-index: 1;
  background-color: var(--dd-beige);
  align-items: flex-start;
  justify-content: center;
  padding-right: 10vw;
}

.dd-swiper-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.dd-swiper-text .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
}

.dd-slide-content {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 3.333vw;
}

.dd-slide-title {
  font-size: clamp(22px, 2.222vw, 32px);
  font-weight: 400;
  margin: 0;
  line-height: 120% !important;
  text-transform: uppercase;
}

.dd-slide-text {
  font-size: 16px;
  line-height: 1.6 !important;
}

.dd-slider-images {
  max-width: 100%;
  position: relative;
  z-index: 0;
}

.dd-slider-text .swiper,
.dd-slider-images .swiper {
  width: 100%;
  max-width: 100%;
}


.dd-slider-images .swiper {
  overflow: visible;
}


/* Navigation */
.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 0 20px;
}

.slider-pagination {
  display: flex;
  gap: 8px;
}

.slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-pagination .swiper-pagination-bullet-active {
  background: #000;
}


.dd-swiper-images {
  height: 100%;
  width: 100%;
}

.dd-swiper-images .swiper-slide {
  height: 100%;
  /* max-width: 35.764vw; */
  max-width: 515px;
}

.dd-slide-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 103 / 120;
}

.dd-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}


/*Text image*/
.dd-txt-image-cpt img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 520/605;
}

.dd-txt-image-cpt .dd-video-container img {
  height: 100%;
  aspect-ratio: unset;
}

.dd-txt-image-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.667vw;
}

.dd-txt-image-img-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.dd-txt-image-content-wrapper h2 {
  font-size: var(--font-size-h2-s);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 120% !important;
}

.dd-global-padding-80.reverse {
  grid-template-columns: 1fr 1fr;
}

.dd-global-padding-80.reverse .dd-txt-image-content-wrapper {
  order: 2;
}

.dd-global-padding-80.reverse .dd-txt-image-img-wrapper {
  order: 1;
}

.dd-video-cpt .dd-video-wrapper {
  /* aspect-ratio: 1152 / 597; */
  position: relative;
}


.dd-video-cpt .dd-max-width {
  padding: 4.44vw;
}


.dd-video-cpt .dd-video-container {
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 1152 / 597;

}

.dd-video-cpt .no-aspect-ratio .dd-video-container.dd-video-loaded {
  aspect-ratio: unset;
}

.dd-video-container.dd-video-loaded .dd-video-placeholder video {
  z-index: 2;
  position: relative;
}


.dd-video-cpt .dd-video-placeholder video {
  position: relative;
}

[data-article-id="natural-raw-materials"] .dd-video-cpt .no-aspect-ratio .dd-video-container.dd-video-loaded,
[data-article-id="natural-raw-materials"] .dd-video-cpt .no-aspect-ratio .dd-video-container {
  aspect-ratio: 21 / 9;
}

/**/

.dd-sticky-slider-section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 350vh;
  position: relative;
}


.dd-sticky-slider {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: black;
}

.dd-sticky-slider-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-slide-img-0 {
  z-index: 4;
}

.dd-slide-img-1 {
  z-index: 3;
}

.dd-slide-img-2 {
  z-index: 2;
}

.dd-slide-img-3 {
  z-index: 1;
}


.dd-sticky-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  transform: scale(.9);
  transition: all 1s ease-in-out;
}

.dd-sticky-slide.dd-small {
  transform: scale(.8);

}

.dd-sticky-slide.in-view {
  opacity: 1;
}


.dd-sticky-slider-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  color: white;
  padding-top: 3.597vw;
}

.dd-sticky-slide-title {
  font-size: 2.1vw;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0.6vw;
  text-transform: uppercase;
}

.dd-sticky-slide-text {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5vw;
  line-height: 120% !important;
  max-width: 20vw;
}

.dd-sticky-slide-image {
  height: 100%;
  width: 100%;
  overflow: hidden;
  opacity: .5;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


.dd-sticky-slide-image img {
  transition: opacity 1s ease-in-out;
  position: absolute;
}

.dd-sticky-slide-image img.slide-off {
  opacity: 0;
}

.dd-card-pilier-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 10;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  color: var(--dd-white);
  transition: all 1s ease-in-out;
  background-color: #00000050;
}

.dd-card-pilier-wrapper.visible {
  opacity: 1;
  pointer-events: auto;
}

.dd-card-pilier {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 1s ease-in-out;
  transform: scale(.9);

}

.dd-card-pilier.active {
  opacity: 1;
  transform: scale(1);
}

.dd-close-modal {
  position: absolute;
  bottom: 20%;
  left: 50%;
  padding: 0;
  border: 0;
  transform: translateX(-50%) scale(1);
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all .4s ease-in-out;
}

.dd-close-modal:hover {
  transform: translateX(-50%) scale(0.9);
}

.dd-card-pilier-bkg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.dd-card-pilier-header {
  text-transform: uppercase;
}

.dd-card-pilier-header h2 {
  margin: 0px;
  font-weight: 600;
  font-size: clamp(32px, 2.083vw, 40px);
}

.dd-card-pilier-header .dd-pilier-subtitle {
  font-weight: 500;
  font-size: var(--font-size-h3-desktop);
}

.dd-card-pilier-padding {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 3.125vw 8.333vw;
  z-index: 1;
}

.dd-card-pilier-content p {
  padding-bottom: 20px;
}


/*

.dd-sticky-slide-image img {
  transform: scale(1.1);
}

.dd-sticky-slide.in-view .dd-sticky-slide-image img {
  transform: scale(1);
  transition: transform 1.5s cubic-bezier(0.35, 1, 0.45, 1);
}

*/

.dd-sticky-slide-content {
  position: absolute;
  z-index: 1;
  top: auto;
  left: auto;
  width: 25.417vw;
  height: 25.417vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  cursor: pointer;
  opacity: 0;
  transform: scale(.95);
  transition: opacity .4s ease-in-out, transform .4s ease-in-out;
}

.dd-sticky-slide-content.in-view {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
  transition: opacity .8s .4s ease-in-out, transform .8s .4s ease-in-out;
}

.dd-time-more {
  margin-top: 2vw;
  border-radius: 50%;
  background-color: white;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .4s ease-in-out;
}

.dd-time-more:hover {
  opacity: .8;
  transform: scale(.9);
}

.dd-sticky-slide-fraction {
  margin: 1vw 0;
  position: absolute;
  bottom: 1vw;
}

.dd-circle-progress-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  z-index: 0;
}


.dd-circle-progress-4 {
  width: 38.021vw;
  height: 38.021vw;
  border: 2px solid rgba(250, 250, 250, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.dd-circle-progress-3 {
  width: 33.646vw;
  height: 33.646vw;
  border: 2px solid rgba(250, 250, 250, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.dd-circle-progress-2 {
  width: 29.479vw;
  height: 29.479vw;
  border: 2px solid rgba(250, 250, 250, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.dd-circle-progress-1 {
  width: 25.417vw;
  height: 25.417vw;
  border: 2px solid rgba(250, 250, 250, 0.4);
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 5;
  backdrop-filter: blur(10px);

}

.dd-circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.10);
  border: none;
  transition: none;
  aspect-ratio: 1/1;
  transition: all .8s ease-in-out;
}

.dd-circle.circle-small {
  transform: scale(.92);
  opacity: 0;
}

.dd-sticky-cards {
  width: 25.417vw;
  height: 25.417vw;
  position: relative;
}


/* Highlight Component Styles */

.dd-highlight-grid {
  display: grid;
  gap: 64px;
}

.dd-highlight-grid--1-cols {
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
}

.dd-highlight-grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.dd-highlight-grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.dd-highlight-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.dd-highlight-cpt+.dd-push-article-cpt {
  margin-top: 4.444vw;
}


.dd-highlight-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.dd-highlight-header {
  display: flex;
  gap: 3vw;
  text-transform: uppercase;
}


.dd-highlight-description {
  line-height: 1.6 !important;
}

/*Highlight Component*/

.dd-highlight-cpt {
  padding: 0px 5.556vw;
  width: 100%;
  box-sizing: border-box;
}

.dd-highlight-cpt+.dd-slider-cpt {
  margin-top: 4.44vw;
}

.dd-highlight-content-wrapper {
  background-color: var(--dd-beige);
  padding: 4.444vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4.028vw;
}

.dd-highlight-content-wrapper h2 {
  font-size: clamp(22px, 2.222vw, 32px);
  font-weight: 400;
  margin: 0;
  line-height: 120% !important;
}

.dd-highlight-content-wrapper h2>span {
  font-size: 1.4rem;
}

.dd-highlight-content-wrapper img {
  width: 6.597vw;
}

.dd-highlight-bee {
  width: 40px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/*cpt logos*/

.dd-logos-columns.dd-logos-columns--1-cols {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dd-logos-columns-wrapper {
  width: 100%;
}

.dd-logos-image-container {
  max-height: 189px;
  height: 13.125vw;
}

.dd-logos-image {
  object-fit: contain;
  width: auto;
  max-height: 100%;
}

[data-article-id=montreal-insectarium] .dd-logos-image-container {
  max-height: 300px;
  height: 20.125vw;
}

/*Image cpt */

.dd-image-cpt {
  padding: 4.444vw 5.556vw;
  width: 100%;
  box-sizing: border-box;
  /* aspect-ratio: 64 / 35; */
}

.dd-image-wrapper {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 64 / 35;
}

.dd-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*Text Cpt*/

.dd-global-padding-80.dd-flex-vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 4.444vw;
}

.dd-text-cpt {
  padding: 0px 5.556vw;
  width: 100%;
  box-sizing: border-box;
}

.dd-text-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.dd-text-title {
  font-size: clamp(22px, 2.222vw, 32px);
  font-weight: 400;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
  line-height: 120% !important;
}

.dd-text-single-content {
  margin: 0 auto;
}

.dd-text-columns {
  display: grid;
  gap: 4.444vw;
}

.dd-text-columns--1-cols {
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
}

.dd-text-columns--2-cols {
  grid-template-columns: repeat(2, 1fr);
  margin-left: auto;
  margin-right: auto;
}

.dd-text-columns--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.dd-text-column,
.dd-text-content {
  display: flex;
  flex-direction: column;
}

.dd-text-content ol {
  font-size: var(--font-size-14);
}

/*Push Article*/

.dd-push-article-cpt {
  width: 100%;
  height: 100dvh;
  min-height: 550px;
}

.dd-push-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.dd-push-article-card {
  background: white;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.dd-push-article-card:hover {
  transform: translateY(-4px);
}

.dd-push-article-cpt .dd-padding-horizontal {
  height: 100%;
}

.dd-push-article-link {
  display: flex;
  text-decoration: none;
  color: inherit;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none !important;
}

.dd-push-article-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.dd-push-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s ease;
}

.dd-push-article-card:hover .dd-push-article-image img {
  transform: scale(1.05);
}

.dd-push-article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  text-align: center;
}

.dd-push-article-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 0.1) 32.94%, rgba(0, 0, 0, 0.5) 66.54%);
}

.dd-push-article-title {
  font-size: var(--font-size-h2-desktop);
  font-weight: 500;
  line-height: 1.3 !important;
  margin-bottom: 15px;
  color: white;
  text-transform: uppercase;
  text-decoration: none !important;
}

.dd-push-article-cta {
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}


.dd-preloader {
  position: fixed;
  opacity: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .4s 1s ease-in-out;
}

.dd-preloader.show {
  opacity: 1;
  transition: all .4s ease-in-out;
}


.dd-preloader-grid {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3vw;
  width: 21vw;
  height: 21vw;
  transition: all 1s ease-in-out;
  opacity: 0;
}

.show .dd-preloader-grid {
  opacity: 1;
  gap: 1vw;
  width: 17vw;
  height: 17vw;
  transition: all 1s ease-in-out;
}

.dd-preloader-img {
  background: grey;
  width: 5vw;
  height: 5vw;
  transition: all .2s ease-in-out;
  object-fit: cover;
}

.dd-preloader-img.hide {
  opacity: 0;
  display: flex !important;
}

.dd-preloader-grid-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}


.dd-preloader .dd-circle-inner {
  position: absolute;
  bottom: 4vw;
  transform: scale(.6);
  opacity: 0;
  transition: all .4s ease-in-out;
}

.dd-preloader.show .dd-circle-inner {
  opacity: 1;
  transform: scale(.7);
  transition: all 1s .4s ease-in-out;
}


.dd-push-next {
  width: 100%;
  height: 30vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.dd-canvas-next {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dd-push-next-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.dd-push-next-text {
  font-size: 1.5vw;
  letter-spacing: .1vw;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 1vw;
}

.time-infinite .dd-push-next {
  display: none;
}

/* canvas */

.dd-main-canvas {
  position: absolute;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
  z-index: 1;
  transition: all 1s ease-in-out;
}

.dd-main-canvas.off {
  opacity: 0;
}


/* debug */

/*
.header {
  width: 100%;
  height: 140px;
  background: white;
  border-bottom: 1px solid grey;
}

.footer {
  width: 100%;
  height: 600px;
  background: rgb(0, 0, 0);
}
*/


/*schemas*/

.dd-schema-map-cpt,
.dd-schema-sbti-cpt,
.dd-schema-sbti-percent-cpt {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.dd-schema-mobile.dd-is-mobile {
  display: none;
}


.dd-schema-banner,
.dd-schema-sbti-banner,
.dd-schema-sbti-percent-banner,
.dd-schema-media-banner,
.dd-schema-ecodesign-banner {
  background-color: var(--dd-grey);
  border-radius: 17px;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4.444vw;
  overflow: hidden;
}

.dd-schema-ecodesign-banner {
  gap: 1vw;
}

.dd-schema-banner {
  gap: 6vw;
}

.dd-schema-sbti-banner {
  gap: 2.444vw;
}

.dd-schema-ecodesign-banner {
  margin-bottom: 4.444vw;
}

.dd-schema-media-img,
.dd-title-scheme-container {
  position: relative;
}

.dd-title-subtitle {
  font-size: var(--font-size-16);
  text-transform: uppercase;
  padding-top: 20px;
}

.dd-schema-media-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4.444vw;
  margin-bottom: 4.444vw;
  overflow: hidden;
  position: relative;
}

.dd-title-scheme-container .dd-title-2 span {
  text-transform: lowercase;
}


.dd-schema-img {
  position: absolute;
  width: 100%;
  height: 65.833vw;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  max-height: 948px;
  z-index: 0;
}

.dd-schema-markers {
  position: absolute;
  height: 47.778vw;
  max-height: 688px;
  right: 0vw;
  top: 50%;
  transform: translateY(-54%);
  z-index: 1;
}

.dd-title-scheme-container {
  text-align: center;
  width: 100%;
  padding: 6vw 4.444vw 0vw;
  z-index: 1;
}

.dd-schema-sbti-percent-wrapper {
  position: relative;
  z-index: 1;
}

.dd-schema-media-banner .dd-title-scheme-container {
  padding-top: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dd-schema-sbti-scopes {
  display: flex;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(50px, 9.722vw, 140px);
  margin-bottom: 60px;
}

.dd-main-title-schema-sbti {
  text-transform: uppercase;
  font-size: clamp(26px, 3.125vw, 28px);
}

.dd-schema-map-bkg {
  background-image: url('/images/articles/responsible-communication/responsible-communication-schema.png');
  width: 100%;
  height: 100%;
  position: absolute;
  top: 3px;
  left: 0;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.dd-schema-ecodesign-bkg {
  background-image: url('/images/articles/product-end-of-life/schema-eco-design-min.png');
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.dd-schema-ecodesign-mobile.dd-is-mobile {
  width: 100%;
  box-sizing: border-box;
  display: none;
}
@media screen and (max-width: 991px) {
    .dd-schema-ecodesign-slider .dd-slider-buttons {
      justify-content: center;
      gap: 110px;
      position: relative;
      top: 5px;
    }
}

.swiper-pagination.dd-ecodesign-pagination {
  margin: 0 auto;
  font-weight: 700;
  font-size: 3.32vw;
  margin-top: 10vw;
}

.dd-ecodesign-text-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  margin: 7vw auto 2vw;
  text-align: center;
  font-size: 2.35vw;
  min-height: 120px;
}

.swiper-slide.dd-ecodesign-slide {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('/images/polygon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.swiper-slide.dd-ecodesign-slide.swiper-slide-active {
  background-image: url('/images/polygon-hover.svg');
}

.dd-ecodesign-slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dd-schema-sbti-bkg {
  background-image: url('/images/articles/carbon-footprint/sbti-percent-schema.png');
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.dd-schema-sbti-percent-bkg {
  background-image: url('/images/articles/carbon-footprint/sbti-scope-schema.png');
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.dd-schema-ecodesign-img {
  position: relative;
  z-index: 1;
  margin-bottom: 4vw;
}

.dd-scheme-sbti-labels {
  padding-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: var(--font-size-14);
}

.dd-label-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #020202;
}

.dd-label-color-2 {
  background-color: #AB6755;
}

.dd-label-color-3 {
  background-color: #D19B8D;
}

.dd-title-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

[data-article-id="women-for-bees"] .dd-title-icon img {
  width: 80px;
  height: 80px;
}

.dd-scheme-sbti-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dd-title-1 {
  font-size: clamp(150px, 13.542vw, 160px);
  font-weight: 700;
  margin: 0px;
  line-height: 1 !important;
  text-transform: uppercase;
}

.dd-schema-sbti-number {
  font-size: clamp(120px, 13.542vw, 120px);
  font-weight: 700;
  margin: 0px;
  line-height: 1 !important;
  text-transform: uppercase;
}

.dd-schema-sbti-number sup {
  font-size: clamp(60px, 8vw, 80px);
}

.dd-schema-sbti-scope-title {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
}

.dd-title-2 {
  font-size: clamp(26px, 3.125vw, 45px);
  ;
  font-weight: 700;
  line-height: 1 !important;
  margin: 0px;
  text-transform: uppercase;
}

.dd-scheme-wrapper {
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem; */
  position: relative;
  height: 93.611vw;
  max-height: 1350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4.444vw;
  padding-right: 4.444vw;
}

.dd-scheme-sbti-wrapper {
  padding: 2vw 4.444vw 5.333vw;
  position: relative;
  z-index: 1;
}

.dd-scheme-sbti-columns,
.dd-scheme-sbti-columns.dd-desktop-only {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12.5vw;
}

.dd-schema-sbti-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.dd-schema-sbti-column-title {
  text-align: center;
}

.dd-schema-sbti-subtitle {
  max-width: 320px;
  padding-top: 20px;
}

.dd-schema-sbti-scope {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.dd-scheme-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* grid-row-gap: 35vw; */
  grid-row-gap: 277px;
  grid-column-gap: 1.181vw;
  position: relative;
  z-index: 2;
  margin-top: -100px;
}

.dd-schema-item-bottom {
  margin-top: 10px;
}

.dd-schema-item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.181vw;
}

.dd-schema-item {
  background: #fff;
  border-radius: 15px;
  padding: clamp(28px, 3.611vw, 36px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  max-height: 326px;
}


/* .dd-schema-item[data-item="3"] {
    position: absolute;
    bottom: -77%;
    left:0%;
} */



.dd-schema-item-wrapper:nth-child(2) {
  transform: translateY(-150px);
}

.dd-schema-item-wrapper:nth-child(5) {
  transform: translateY(50px);
}

/* .dd-schema-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
} */


.dd-schema-item-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

.dd-schema-country {
  background-color: var(--dd-beige);
  color: var(--dd-black);
  padding: 0.5rem 1rem;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dd-schema-country-text {
  display: inline-block;
  font-weight: 400;
  text-transform: uppercase;
  font-size: var(--font-size-14);
}

.dd-schema-text {
  margin-bottom: 17px;
}

.dd-schema-text p {
  font-size: var(--font-size-16);
  line-height: 150% !important;
}

.dd-schema-logos {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  height: 49px;
  max-width: 100px;
}

[data-item="4"] .dd-schema-logos {
  max-width: unset;
}

.dd-schema-logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.dd-schema-media-mobile {
  display: none;
}

.dd-schema-sbti-gauge {
  width: 4.514vw;
  max-width: 65px;
  height: 24.931vw;
  max-height: 300px;
  background: var(--dd-beige);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.dd-schema-sbti-gauge-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #D19B8D;
  border-radius: 0 0 15px 15px;
  transition: height 1.5s ease-out;
  animation: fillGauge 2s ease-out;
  border-top-left-radius: 12.75px;
  border-top-right-radius: 12.75px;
}

.dd-schema-sbti-gauge-label {
  font-weight: 600;
  white-space: nowrap;
  margin-top: 35px;
}

.dd-schema-sbti-item-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: var(--font-size-14);
  margin: 8px 0px 0px;
}

.dd-schema-sbti-items {
  padding: 2vw 4.444vw;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2.431vw;
}

.dd-schema-sbti-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 480px) {
  .dd-title-icon img {
    width: 45px;
    height: 45px;
  }

  .dd-title-1 {
    font-size: 1.75rem;
  }

  .dd-title-2 {
    font-size: 1.1rem;
  }

  .dd-schema-item {
    padding: 1.25rem;
  }

  .dd-schema-text p {
    font-size: 0.95rem;
  }
}

/* .dd-schema-map-cpt[appear-anim="true"] .dd-schema-item {
  animation: schemaItemAppear 0.6s ease forwards;
} */

/* .dd-schema-item {
  opacity: 0;
  transform: translateY(30px);
} */

.dd-schema-map-cpt[appear-anim="true"] .dd-schema-item:nth-child(1) {
  animation-delay: 0.1s;
}

.dd-schema-map-cpt[appear-anim="true"] .dd-schema-item:nth-child(2) {
  animation-delay: 0.2s;
}

.dd-schema-map-cpt[appear-anim="true"] .dd-schema-item:nth-child(3) {
  animation-delay: 0.3s;
}

.dd-schema-map-cpt[appear-anim="true"] .dd-schema-item:nth-child(4) {
  animation-delay: 0.4s;
}

.dd-schema-map-cpt[appear-anim="true"] .dd-schema-item:nth-child(5) {
  animation-delay: 0.5s;
}

.dd-schema-map-cpt[appear-anim="true"] .dd-schema-item:nth-child(6) {
  animation-delay: 0.6s;
}


.dd-mobile-only,
.dd-schema-sbti-mobile.dd-mobile-only {
  display: none;
}



.dd-schema-sbti-mobile-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dd-schema-sbti-mobile-slide .dd-schema-sbti-column-title {
  margin-bottom: 20px;
}

.dd-schema-sbti-mobile-slide .dd-schema-sbti-column-svg {
  width: 100%;
  max-width: 400px;
}

.dd-sbti-pagination {
  margin-top: 20px;
}

.dd-landmark {
  width: 18.385vw;
  height: 18.385vw;
  /* background-color: red; */
  background-image: url('/images/polygon.svg');
  max-width: 260px;
  max-height: 260px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  opacity: 0;
  visibility: hidden;
}

.dd-schema-ecodesign-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 900px;
  margin: 0vw 0px 3vw;
}

.dd-schema-hexagon-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dd-schema-hexagon-item {
  position: absolute;
  max-width: 260px;
  max-height: 260px;
  width: 18.385vw;
  height: 18.385vw;
  cursor: pointer;
}

.dd-schema-hexagon-shape {
  width: 100%;
  height: 100%;
  background-image: url('/images/polygon.svg');
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  transition: all .4s ease-in-out;
}



/* Positionnement circulaire des 6 hexagones */
.dd-hexagon-1 {
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
}

.dd-hexagon-2 {
  top: 0;
  right: -100%;
  transform: translate(-15%, -50%);
}

.dd-hexagon-3 {
  bottom: 0%;
  right: -100%;
  transform: translate(-15%, 50%);
}

.dd-hexagon-4 {
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
}

.dd-hexagon-5 {
  bottom: 0%;
  left: -100%;
  transform: translate(15%, 50%);
}

.dd-hexagon-6 {
  top: 0;
  left: -100%;
  transform: translate(15%, -50%);
}

.dd-schema-content-front {
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease-in;
  transition-delay: 100ms;
}

.dd-schema-icon {
  margin-bottom: 10px;
}

.dd-schema-icon svg {
  width: 40px;
  height: 40px;
  fill: #020202;
}

.dd-schema-hexagon-title {
  font-size: var(--font-size-16);
  font-weight: 400;
  text-transform: uppercase;
  color: #020202;
  margin: 0;
  line-height: 1.2;
  max-width: 89%;
}
.dd-schema-hexagon-title:lang(de) {
      font-size: clamp(10px, 1vw, 15px);
}

.dd-schema-content-bottom {
  text-align: center;
  z-index: 2;
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;


}

.dd-schema-hexagon-text {
  color: #020202;
  margin: 0;
  line-height: 1.5;
  font-size: var(--font-size-16);
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  transition: all 200ms ease-out;
  transition-delay: none;
}

.dd-schema-number {
  position: absolute;
  bottom: -15%;
  left: 50%;
  font-size: 1.4vw;
  color: #D0D0D0;
  z-index: 1;
  font-weight: 700;
  transform: translateX(-50%);
  transition: color 400ms ease-in;
}

.dd-schema-hexagon-item.dd-hexagon-4 .dd-schema-number {
  top: -15%;
  bottom: unset;
}

.dd-schema-hexagon-item.dd-hexagon-2 .dd-schema-number {
  top: 73%;
  left: -10%;
  transform: unset;
  bottom: unset;
}

.dd-schema-hexagon-item.dd-hexagon-6 .dd-schema-number {
  top: 73%;
  right: -10%;
  transform: unset;
  left: unset;
  bottom: unset;
}

.dd-schema-hexagon-item.dd-hexagon-3 .dd-schema-number {
  bottom: unset;
  top: 12%;
  left: -10%;
  transform: unset;
}


.dd-schema-hexagon-item.dd-hexagon-5 .dd-schema-number {
  bottom: unset;
  top: 12%;
  right: -10%;
  transform: unset;
  left: unset;
}

.dd-schema-hexagon-item:hover .dd-schema-number {
  color: black;
}

.dd-schema-hexagon-item:hover .dd-schema-content-front {
  opacity: 0;
  transition-delay: 0ms;
}

.dd-schema-hexagon-item:hover .dd-schema-hexagon-text {
  opacity: 1;
  transform: translateY(0);
  transition: all 600ms ease-out;
  transition-delay: 200ms;
}

.dd-schema-hexagon-item:hover .dd-schema-hexagon-shape {
  background-image: url('/images/polygon-hover.svg');
}



@keyframes schemaItemAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dd-swiper-map-cards {
  overflow: hidden;
}

.dd-swiper-map-cards .dd-slider-buttons {
  position: absolute;
  top: 5vw;
  right: 10.433vw;
  z-index: 3;
}

.dd-slider-button-prev,
.dd-slider-button-next {
  opacity: 1;
}

.dd-slider-button-prev.swiper-button-disabled,
.dd-slider-button-next.swiper-button-disabled {
  opacity: 0.4;
}

/* 
responsive
*/

@media (min-width: 1025px) {

  .dd-article-preview .dd-article-cover,
  .dd-article-preview .dd-article-cover img,
  .dd-article-preview .dd-article-content-wrapper {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .time-5 .dd-article-preview a:hover .dd-article-cover img {
    /* transform: translateX(-2vw); */
    transform: scale(1.1);
  }

  .time-5 .dd-article-preview a:hover .dd-article-content-wrapper {
    transform: translateX(2vw);
  }


  .time-15 .dd-article-preview a:hover .dd-article-cover img,
  .time-infinite .dd-article-preview a:hover .dd-article-cover img {
    transform: scale(1.1);
  }

  .time-15 .dd-article-preview a:hover .dd-article-content-wrapper,
  .time-infinite .dd-article-preview a:hover .dd-article-content-wrapper {
    transform: translateY(-1vw);
  }

  .dd-back-wrapper .dd-back-inner {
    animation: rotate 8s linear infinite;
    animation-play-state: paused;
  }

  .dd-back-wrapper:hover .dd-back-inner {
    animation-play-state: running;
  }

  .dd-push-article-link:hover .dd-push-article-image img {
    transform: scale(1.1);
    transition: all 3s;
  }
}

.dd-schema-mobile-map-image {
  /* aspect-ratio: 393 / 505; */
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.dd-mobile-slider-controller {
  background-color: white;
  border-radius: 17px 17px 0px 0px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding: 5vw 10.433vw;
}

@media (max-width: 1024px) {
  .dd-schema-map-cpt .dd-is-desktop {
    display: none;
  }

  .dd-schema-mobile.dd-is-mobile {
    display: flex;
    flex-direction: column;
    background-color: var(--dd-grey);
  }


}


@media (max-width: 1024px) and (min-width: 769px) {
  .dd-highlight-grid--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .dd-text-columns--3-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .dd-text-columns--3-cols .dd-text-column:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {


  .dd-card-pilier-wrapper{
    position: fixed;
    overflow-y: scroll;
    max-height: 100vh;
    top: 0;
    justify-content: flex-start;
}

.dd-card-pilier{
    padding: 10vw 0;
    height: auto;

}

  .dd-global-padding-80,
  .dd-global-padding-80.reverse {
    grid-template-columns: 1fr;
  }

  .dd-global-padding-80.reverse .dd-txt-image-content-wrapper,
  .dd-global-padding-80.reverse .dd-txt-image-img-wrapper {
    order: unset;
  }

  .dd-hp-hero-title {
    font-size: 15vw !important;
  }

  .dd-btn-black {
    font-size: 18px;
    margin-top: 6vw;
    padding: 16px 34px;
  }

  .dd-cta-section svg {
    width: 28px;
  }

  .dd-time-selector h2 {
    max-width: 90%;
  }

  .dd-circle-inner,
  .dd-circle-progress-container {
    width: 19.53vw;
    /* 150px */
    height: 19.53vw;
    /* 150px */
  }

  .dd-time-txt p {
    font-size: 2.08vw;
    /* 16px */
  }

  .dd-time-txt span {
    font-size: 3.65vw;
    /* 28px */
  }

  .dd-time-btn span {
    font-size: 3.13vw;
  }
  
   .dd-time-btn .dd-fr-sup {
    top: 2px;
    right: -10px;
    font-size: 2vw;
  }

  .dd-time-btn.active span {
    font-size: 3.65vw;
    /* 28px */
  }

  .dd-time-btn .height-p {
    font-size: 2.21vw;
    /* 17px */
  }

  .dd-time-txt-infinite {
    width: 7.81vw;
    /* 60px */
    height: 7.81vw;
    /* 60px */
  }

  .dd-homepage-content .dd-homepage-title {
    width: 90%;
  }

  .h2.dd-h2,
  .dd-h2 {
    font-size: 4.17vw;
    /* 32px */
  }

  .dd-homepage-video video {
    height: auto;
  }

  .dd-homepage-paragraph {
    max-width: 90%;
    margin: 4vw 0 6vw;
  }

  .dd-homepage-paragraph .dd-homepage-paragraph__content {
    font-size: 2.86vw;
    /* 22px */
  }

  .dd-push-article-content {
    padding: 0px 5vw;
  }

  .dd-push-article-title {
    text-align: center;
  }

  .dd-breadcrumb-wrapper {
    font-size: 1.82vw;
    /* 14px */
  }

  .dd-article-hero-img-wrapper .img-hero-mobile {
    display: block;
    aspect-ratio: 690 / 828;
    width: 100%;
  }

  .dd-article-hero-img-wrapper .img-hero-desktop {
    display: none;
  }

  .dd-key-figures-slide {
    height: 60vw;
    max-width: none;
  }

  .dd-figure-number {
    font-size: 100px;
  }

  .dd-unit {
    font-size: 58px;
  }

  .dd-figure-title {
    font-size: 20px;
  }

  .dd-figure-tag {
    font-size: 14px;
  }

  .dd-figure-details {
    font-size: 15px;
  }

  .time-5 .dd-key-figures,
  .time-15 .dd-key-figures,
  .time-infinite .dd-key-figures,
  .dd-timeline {
    padding: 8vw 0px;
  }

  .dd-key-figures,
  .dd-timeline {
    gap: 8vw;
  }

  .time-5 .dd-articles-list {
    display: grid;
  }

  .time-5 .dd-article-preview,
  .time-5 .dd-article-preview a {
    flex-direction: column;
    justify-content: stretch;
  }

  .time-infinite .dd-articles-list,
  .time-15 .dd-articles-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2vw;
  }

  .time-5 .dd-articles-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2vw;
  }

  .time-5 .dd-article-cover {
    width: 100%;
    max-width: none;
  }

  .time-5 .dd-article-preview a {
    gap: 4vw;
  }

  .time-5 .dd-article-content-wrapper {
    width: 100%;
  }

  .time-15 .dd-excerpt,
  .time-15 .dd-article-link,
  .time-5 .dd-excerpt,
  .time-5 .dd-article-link {
    display: none;
  }

  .dd-articles-section {
    gap: 8vw;
  }

  .dd-article-cover {
    height: auto;
  }

  .dd-timeline-item {
    width: 100%;
  }

  .dd-timeline-image {
    width: 60%;
    flex-shrink: 0;
  }

  .dd-timeline-content {
    width: 39%;
  }

  .dd-timeline-main-dates-container {
    width: 60vw;
  }

  .dd-timeline-dates-container {
    width: 60vw;
  }

  #timelineSwiper {
    padding-bottom: 0;
  }

  .dd-timeline-dates-container .swiper {
    width: 9vw;
  }

  .swiper-scrollbar,
  .dd-slider-scrollbar {
    width: 400px !important;
  }

  .dd-swiper-scrollbar-wrapper {
    padding-top: 2vw;
  }

  .dd-article-hero-top {
    height: auto;
    justify-content: flex-start;
  }

  .dd-article-hero-img-wrapper {
    height: auto;
    position: relative;
  }

  h1.dd-article-title {
    font-size: 4.2vw;
  }

  .dd-article-subtitle {
    font-size: 3.2vw;
  }

  .dd-schema-sbti-items {
    padding-bottom: 6vw;
  }

  .dd-text-columns--2-cols,
  .dd-text-columns--3-cols {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dd-article-hero-content {
    position: absolute;
    bottom: 0vh;
  }

  .dd-push-article-cpt {
    aspect-ratio: 690 / 828;
    height: auto;
  }

  .dd-back-wrapper {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 13px;
    bottom: 67px;
    z-index: 8;
    max-width: 120px;
    max-height: 120px;
  }

  .back-svg-wrapper {
    width: 20px;
    height: 20px;
  }


  .back-svg-wrapper svg {
    width: 34.5px;
  }

  .dd-schema-sbti-number {
    font-size: 15.267vw;
  }


  .dd-schema-sbti-items {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 0vw 5vw 5vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .dd-schema-sbti-item {
    width: 32.57vw;
    flex-shrink: 0;
    max-width: 130px;
  }

  .dd-schema-sbti-item-title {
    font-size: 2.083vw;
  }

  .dd-schema-sbti-gauge {
    width: 13.995vw;
    max-width: 60px;
    height: 76.845vw;
    max-height: 300px;
  }

  .dd-schema-sbti-gauge-label {
    font-size: 2.604vw;
  }

  .dd-title-1 {
    font-size: 10.417vw;
  }

  [data-article-id="women-for-bees"] .dd-title-1 {
    font-size: 16.417vw;
  }

  .dd-title-2 {
    font-size: 3.906vw;
  }

  .dd-label-color {
    flex-shrink: 0;
  }

  .dd-desktop-only,
  .dd-scheme-sbti-columns.dd-desktop-only {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dd-scheme-sbti-wrapper {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .dd-mobile-only {
    display: block;
  }

  .dd-scheme-sbti-columns {
    display: none;
  }

  .dd-push-article-cpt .dd-article-subtitle {
    font-size: 4vw;
  }

  .dd-schema-sbti-mobile-slide .dd-schema-sbti-column-svg {
    max-width: 80%;
  }

  .dd-schema-sbti-column-svg {
    transform: scale(.9);
  }

  .dd-schema-logos {
    max-width: unset;
  }


  .dd-schema-media-banner {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 0px;
    margin-bottom: 0px;
    padding: 10vw 5vw;
  }

  .dd-schema-hexagon-container {
    display: none;
  }

  .dd-schema-ecodesign-banner {
    margin-bottom: 0px;
  }

  .dd-schema-ecodesign-wrapper {
    min-height: auto;
  }

  .dd-schema-ecodesign-mobile.dd-is-mobile {
    display: block;
  }

  .dd-ecodesign-slide-title {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2.344vw;
    margin-top: 0px;
    max-width: 98%;
    margin-bottom: 0px;
    line-height: 1.3 !important;
  }

  .dd-ecodesign-swiper {
    margin-top: 5vw;
  }

  .dd-ecodesign-slide-icon {
    width: 50px;
    height: 50px;
  }

  .dd-schema-ecodesign-bkg {
    width: 140%;
    height: 140%;
    right: 0;
    left: unset;
  }

  .swiper-slide.dd-ecodesign-slide {
    transition-property: all;
  }

  .dd-schema-media-img {
    display: none;
  }

  .dd-schema-media-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 4vw;
    margin-top: 5vw;
    align-items: center;
  }

  .dd-schema-media-gauge {
    width: 70vw;
    max-width: 500px;
    height: 6.5vw;
    background: var(--dd-beige);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
  }

  .dd-schema-media-gauge-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    background-color: #D19B8D;
    border-radius: 0 0 15px 15px;
    transition: width 1.5s ease-out;
    animation: fillGauge 2s ease-out;
    border-top-left-radius: 12.75px;
    border-top-right-radius: 12.75px;
  }

  .dd-schema-media-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 150px;
  }

  .dd-schema-media-gauge-label {
    font-weight: 600;
    white-space: nowrap;
    font-size: 2.7vw;
  }

  .dd-schema-media-item-title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 2.1vw;
    margin: 0px;
  }

  .dd-schema-media-items {
    padding: 2vw 4.444vw;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2.431vw;
  }

  .dd-schema-media-item {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 5vw;
  }


  .dd-schema-map-bkg {
    transform: scale(-1, 1) translate(8vw, -11vw);
    width: 160%;
  }


}

@media (max-width: 767px) {
  *[appear=fade] {
    transform: translateY(0px);
    opacity: 0;
  }

  .dd-time-more {
    transform: scale(.9);
  }


  .dd-breadcrumb {
    display: none;
  }

  .dd-schema-map-wrapper {
    padding: 2rem 1rem;
  }


  .dd-scheme-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dd-schema-item {
    padding: 1.5rem;
  }

  .dd-schema-logos {
    justify-content: center;
  }

  .dd-schema-logo {
    max-width: 60px;
    max-height: 45px;
  }

  .dd-text-content {
    display: flex;
    flex-direction: column;
  }

  .dd-articles-list {
    grid-template-columns: 1fr;
  }

  .time-buttons {
    flex-direction: column;
    align-items: center;
  }

  .dd-txt-image-content-wrapper h2 {
    font-size: 5.8vw;
  }

  .dd-article-hero-bottom {
    padding: 0px 2.5vw;
  }

  .dd-txt-image-cpt .dd-global-padding-80 {
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    flex-direction: column-reverse;
  }

  .dd-text-columns--2-cols,
  .dd-text-columns--3-cols {
    grid-template-columns: 1fr;
  }

  .dd-text-content ol {
    font-size: 3.5vw;
    padding-left: 20px;
  }

  .dd-push-article-title {
    font-size: 7vw;
  }

  .dd-btn-black {
    margin-top: 10vw;
    padding: 8px 34px;
  }
  .dd-btn-black.is-border {
    padding: 1.5vw 4vw;
    gap: 5px;
  }

  .dd-hp-hero .h2.dd-h2,
  .dd-hp-hero .h2.dd-h2 .dd-h2 {
    font-size: 8vw !important;
  }

  .h2.dd-h2,
  .dd-h2 {
    font-size: 6vw !important;
  }

  .dd-homepage-paragraph .dd-homepage-paragraph__content {
    font-size: 5vw;
  }

  .time-infinite .dd-articles-list,
  .time-15 .dd-articles-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2vw;
  }

  .dd-key-figures-slide {
    height: auto;
  }

  .dd-article-hero-content {
    padding: 0px 2.5vw;
  }

  h1.dd-article-title {
    font-size: 7vw;
  }

  .dd-article-subtitle {
    font-size: 5vw;
    line-height: 140% !important;
  }

  .dd-article-hero-banner {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .dd-text-cpt {
    padding: 0px 5vw;
  }

  .dd-global-padding-80.dd-flex-vertical {
    padding: 6vw 0px;
  }

  .dd-scheme-sbti-label {
    gap: 3px;
  }

  /* .dd-article-hero-top {
    height: 100dvh;
  } */

  .dd-scheme-sbti-label {
    font-size: 2.4vw;
  }

  .dd-scheme-sbti-labels {
    gap: 8px;
  }

  .dd-schema-sbti-gauge {
    flex-shrink: 0;
  }

  .dd-schema-sbti-gauge-label {
    font-size: 5.089vw;
  }

  .dd-schema-sbti-number sup {
    font-size: 8.267vw;
  }

  .dd-schema-sbti-scope-title {
    font-size: 3.817vw;
  }

  .dd-title-scheme-container {
    padding-top: 10vw;
    padding-bottom: 5vw;
    z-index: 2;
  }

  .dd-schema-sbti-items {
    padding-bottom: 12vw;
  }

  .dd-schema-sbti-item-title {
    font-size: 3.3vw;
  }


  .dd-breadcrumb-wrapper {
    font-size: 3vw;
  }

  .dd-scheme-sbti-labels {
    padding-top: 12vw;
  }

  .dd-main-title-schema-sbti {
    font-size: clamp(24px, 3.125vw, 28px);
  }

  .dd-schema-sbti-scopes {
    gap: 20px;
  }

  .dd-schema-sbti-number {
    font-size: 12.267vw;
  }

  .dd-schema-sbti-subtitle {
    max-width: 320px;
    padding-top: 10px;
    font-size: 14px;
  }



  [data-article-id="carbon-footprint"] .dd-article-hero-top {
    height: 100dvh;
  }

  [data-article-id="natural-raw-materials"] .dd-article-hero-top {
    height: 66dvh;
  }

  [data-article-id="carbon-footprint"] .img-hero-mobile {
    opacity: .6;
  }


  .dd-article-intro {
    line-height: 24px !important;
  }

  .article-container p:not(.dd-article-intro, .dd-article-subtitle),
  .article-container ul,
  .dd-txt-text {
    line-height: 24px !important;
  }

  .dd-highlight-header {
    flex-direction: column;
  }

  .dd-highlight-content-wrapper h2>span {
    font-size: .9rem;
  }

  .dd-highlight-content-wrapper h2 {

    line-height: 180% !important;
  }


  .dd-video-cpt .dd-video-container {
    aspect-ratio: 4/5;
  }

  .dd-video-container .dd-video-poster {
    height: 100%;
    object-fit: cover;
  }

  .dd-schema-mobile-map-image {
    aspect-ratio: 393 / 505;
  }

  .dd-mobile-swiper-container {
    margin-top: -65vw;
  }

  .dd-schema-sbti-mobile.dd-mobile-only {
    display: none;
  }

  .dd-schema-ecodesign-cpt .dd-title-scheme-container {
    padding-top: 15vw;
  }

  .dd-schema-ecodesign-wrapper {
    margin-bottom: 8vw;
  }

  .dd-ecodesign-slide-title,
  .dd-ecodesign-text-content {
    font-size: 4.58vw !important;
  }

  .dd-schema-ecodesign-bkg {
    width: 200%;
    height: 200%;
    right: 0;
    left: unset;
  }

  .dd-ecodesign-slide-title {
    max-width: 98%;

  }

  .swiper-pagination.dd-ecodesign-pagination {
    font-size: 6.361vw;
    width: 100%;
    line-height: 50px;
  }

  .dd-schema-media-item-title {
    font-size: 4vw;
  }

  .dd-mobile-map-container img {
    width: 200%;
    transform: translateX(-88vw);
  }

  .dd-mobile-slider-controller {
    padding: 5vw;
  }

  .dd-swiper-map-cards .dd-slider-buttons {
    right: 5vw;
  }

  .dd-schema-media-mobile {
    gap: 6vw;
    margin-top: 0px;
  }

  .dd-schema-media-gauge-label {
    font-size: 5.2vw;
  }

  .dd-schema-map-bkg {
    transform: scale(-1, 1) translate(8vw, -11vw);
    width: 200%;
  }

  .dd-schema-media-gauge {
    width: 50vw;
  }

  .dd-schema-media-gauge {
    height: 11.5vw;
  }

  .dd-schema-media-item-content {
    width: 30vw;
  }
}

@media (min-width: 1800px) {
  .dd-sticky-slider-header {
    padding-top: 50px;
  }
}




@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


*[appear-delay="1"] {
  transition-delay: .1s;
}

*[appear-delay="2"] {
  transition-delay: .2s;
}

*[appear-delay="3"] {
  transition-delay: .3s;
}

*[appear-delay="4"] {
  transition-delay: .4s;
}

*[appear-delay="5"] {
  transition-delay: .5s;
}

*[appear-delay="6"] {
  transition-delay: .6s;
}

*[appear-delay="7"] {
  transition-delay: .7s;
}

*[appear-delay="8"] {
  transition-delay: .8s;
}

*[appear-delay="9"] {
  transition-delay: .9s;
}

*[appear-delay="10"] {
  transition-delay: 1s;
}

*[appear-delay="11"] {
  transition-delay: 1.1s;
}

*[appear-delay="12"] {
  transition-delay: 1.2s;
}

*[appear-delay="13"] {
  transition-delay: 1.3s;
}

*[appear-delay="14"] {
  transition-delay: 1.4s;
}

*[appear-delay="15"] {
  transition-delay: 1.5s;
}

*[appear-delay="16"] {
  transition-delay: 1.6s;
}

*[appear-delay="17"] {
  transition-delay: 1.7s;
}

*[appear-delay="18"] {
  transition-delay: 1.8s;
}

*[appear-delay="19"] {
  transition-delay: 1.9s;
}

*[appear-delay="20"] {
  transition-delay: 2s;
}

*[appear-delay="21"] {
  transition-delay: 2.1s;
}

*[appear-delay="22"] {
  transition-delay: 2.2s;
}

*[appear-delay="23"] {
  transition-delay: 2.3s;
}

*[appear-delay="24"] {
  transition-delay: 2.4s;
}

*[appear-delay="25"] {
  transition-delay: 2.5s;
}

*[appear-delay="26"] {
  transition-delay: 2.6s;
}

*[appear-delay="27"] {
  transition-delay: 2.7s;
}

*[appear-delay="28"] {
  transition-delay: 2.8s;
}

*[appear-delay="29"] {
  transition-delay: 2.9s;
}

/* TABLET */
@media screen and (max-width: 991px) {
  .dd-hp-hero-title span svg {
    width: 11vw;
    height: 11vw;
    transform: translateY(0.4vw);
  }

  .dd-slider-wrapper {
    flex-direction: column;
  }
  .dd-slider-text {
    width: 100%;
  }
  .dd-beige-bkg-mask {
    opacity: 0;
  }
  .dd-slider-cpt .dd-slider-scrollbar {
    width: 150px !important;
  }
}
/* MOBILE */
/* ----- HOMEPAGE ----- */
@media screen and (max-width: 767px) {

  .dd-txt-abs {
    right: inherit;
  }

  .dd-preloader-grid-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(2.8);
  }

  /* TIME SELECTOR */

  .dd-time-selector {

    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, .75);
  }

  .dd-time-buttons {
    grid-column: 2/8;
  }

  .dd-time-btn {
    text-align: center;
  }

  .dd-time-btn span {
    font-size: 7vw;
  }

  .dd-time-btn.active span {
    font-weight: 900;
    font-size: 7vw;
  }

  .dd-time-btn .height-p {
    font-size: 4vw;
  }

  .height-p br {
    display: none;
  }

  .dd-time-selector .dd-circle-progress-wrapper {
    position: absolute;
    top: -40vw;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 0;
  }

  /* HOMEPAGE PARAGRAPH */
  .bee-icon-wrapper {
    height: 60px;
    margin: 2vw 0px 4vw;
  }

  .dd-homepage-paragraph .dd-homepage-paragraph__content {
    font-size: 4.5vw;
    margin: 4vw 0 9vw;
  }

  /* STICKY SLIDER */
  .dd-sticky-slider-header {
    padding-top: 13.597vw;
  }

  .dd-circle-progress-4 {
    width: 95vw;
    height: 95vw;
  }

  .dd-circle-progress-3 {
    width: 85vw;
    height: 85vw;
  }

  .dd-circle-progress-2 {
    width: 75vw;
    height: 75vw;
  }

  .dd-circle-progress-1 {
    width: 65vw;
    height: 65vw;
  }

  .dd-sticky-cards {
    width: 80vw;
    height: 60vw;
  }

  .dd-sticky-slide-content {
    width: 100%;
    height: 100%;
  }

  .dd-sticky-slide-title {
    font-size: 20px;
  }

  .dd-sticky-slide-text {
    font-size: 15px;
    max-width: 75%;
  }

  .dd-close-modal {
    bottom: inherit;
    width: 30px;
    height: 30px;
    left: auto;
    top: 15px;
    right: 15px;
    transform: translateX(0) scale(1);
  }

  .dd-close-modal:hover {
    transform: translateX(0) scale(0.9);
  }

  /* CTA SECTION */
  .dd-homepage-content .dd-cta-section {
    margin: 30px 0;
  }

  .dd-btn-black {
    font-size: 15px;
  }

  /* TIMELINE */
  .dd-timeline {
    gap: 6vw;
  }

  #timelineSwiper {
    padding-bottom: 8vw;
    padding-top: 82px;
  }

  .dd-timeline-main-dates-container {
    width: 100%;
    position: absolute;
    top: 0;
  }

  .dd-timeline-dates-container {
    width: 70%;
  }

  .dd-timeline-dates-container .swiper {
    width: 17vw;
  }

  .dd-timeline-dates-container .swiper-scrollbar,
  .dd-timeline-dates-container .dd-slider-scrollbar {
    width: 100% !important;
  }

  .dd-timeline-date-item {
    font-size: 5vw;
  }

  .dd-timeline-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .dd-timeline-image {
    width: 100%;
    aspect-ratio: 445 / 500;
  }

  .dd-timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dd-timeline-content {
    width: 95%;
  }

  /* GRID ARTICLES */
  .dd-filter-btn {
    padding: 0px 7px 0.5rem 7px;
  }

  .time-infinite .dd-articles-list,
  .time-15 .dd-articles-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dd-article-content .dd-h3 {
    font-size: clamp(14px, 3vw, 22px);
  }

  #timelineSwiper .swiper-button-prev,
  #timelineSwiper .swiper-button-next {
    width: 30px;
    height: 30px;
    bottom: 17px !important;
  }

  #timelineSwiper .swiper-button-prev::after,
  #timelineSwiper .swiper-button-next::after {
    font-size: 13px;
  }

  /* KEY FIGURES */
  .dd-key-figures-wrapper .swiper-slide {
    height: auto;
  }

  .dd-key-figures-swiper {
    padding-bottom: 60px;
  }

  .dd-pagination-container {
    justify-content: flex-start;
    padding-left: 12vw;
  }

  .dd-key-figures .dd-swiper-pagination {
    width: 40%;
    bottom: -30px;
  }

  #keyFiguresSwiper .swiper-button-prev,
  #keyFiguresSwiper .swiper-button-next {
    width: 30px;
    height: 30px;
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: 17px !important;
    left: 70%;
    border: 1px solid black;
  }

  .dd-figure-title {
    font-size: 5vw;
  }

  #keyFiguresSwiper .swiper-button-next {
    left: 82%;
  }

  #keyFiguresSwiper .swiper-button-prev::after,
  #keyFiguresSwiper .swiper-button-next::after {
    font-size: 13px;
  }

  /* PUSH NEXT */
  .dd-push-next {
    height: 100vw;
  }

  .dd-push-next-text {
    font-size: 5vw;
    margin-top: 7vw;
  }
}