@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "Gobold Extra2";
  src: url("../fonts/Gobold-Extra2.woff2") format("woff2"), url("../fonts/Gobold-Extra2.woff") format("woff"), url("../fonts/Gobold-Extra2.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

html {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  scroll-behavior: smooth;
  font-smooth: antialiased;
}

body {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
body.no-scroll {
  overflow-y: hidden;
}
body.modal-open {
  overflow: hidden;
  height: 100vh; /* optionnel : bloque le scroll mobile */
}

a {
  text-decoration: none !important;
  color: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
a:hover {
  color: #393BCD;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: "Montserrat", sans-serif;
}

.container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: calc(100% - 110px);
  max-width: 1400px;
}

.toHide {
  display: none !important;
}

main {
  padding-top: 140px;
  overflow: hidden;
}

.section {
  position: relative;
  width: 100%;
}
.section .container .section-hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
.section .container .section-hero-content .section-hero-subtitle {
  display: block;
  font-family: "Caveat", cursive;
  color: #A6CD39;
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
}
.section .container .section-hero-content .section-hero-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  font-family: "Gobold Extra2";
  color: #712d67;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.section .container .section-hero-content p {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  max-width: 830px;
  width: 100%;
  margin-bottom: 8px;
}

svg {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
svg path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.grid-list {
  display: grid;
  width: 100%;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 586px) {
  .grid-list {
    gap: 1rem;
  }
}
.grid-list.actus-list.is-4-cols {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1124px) {
  .grid-list.actus-list.is-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 858px) {
  .grid-list.actus-list.is-4-cols {
    grid-template-columns: 1fr;
  }
}
.grid-list .grid-list-item {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.grid-list .grid-list-item::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -100px;
  border-radius: 50%;
  left: -10px;
  width: 100%;
  height: 100%;
  background: #A6CD39;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  opacity: 1;
  -webkit-transform: scale(1) translateX(-100%);
          transform: scale(1) translateX(-100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.grid-list .grid-list-item .grid-list-item-img {
  z-index: 2;
  width: 100%;
  height: 270px;
  border-radius: 24px;
}
.grid-list .grid-list-item .grid-list-item-img img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.grid-list .grid-list-item .grid-list-item-info {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem;
  gap: 1rem;
  background-color: transparent;
}
.grid-list .grid-list-item .grid-list-item-info .grid-list-item-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 400;
}
.grid-list .grid-list-item .grid-list-item-info .grid-list-item-desc {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.grid-list .grid-list-item .grid-list-item-info .grid-list-item-desc p {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0;
}
.grid-list .grid-list-item .grid-list-item-info .btn {
  background: transparent;
  color: #712d67;
  border: 1px solid #A6CD39;
  font-weight: bold;
  position: relative;
}
.grid-list .grid-list-item .grid-list-item-info .btn span {
  z-index: 5;
}
.grid-list .grid-list-item .grid-list-item-info .btn::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
  background: #F1EAF0;
  border-radius: 0;
  vertical-align: middle;
  z-index: 1;
}
.grid-list .grid-list-item:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.grid-list .grid-list-item:hover::after {
  height: 100%;
  -webkit-transform: scale(2);
          transform: scale(2);
}
.grid-list .grid-list-item:hover .grid-list-item-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.grid-list .grid-list-item:hover .grid-list-item-info .grid-list-item-title {
  color: #FFFFFF;
}
.grid-list .grid-list-item:hover .grid-list-item-info .grid-list-item-desc p {
  color: #FFFFFF;
}
.grid-list .grid-list-item:hover .grid-list-item-info .btn {
  background: #FFFFFF;
  color: #712d67;
}
.grid-list .grid-list-item:hover .grid-list-item-info .btn::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.grid-list .grid-list-item:hover .grid-list-item-info .btn svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-img {
  position: relative;
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-img .chantier-img-logo {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 5;
  position: absolute;
  bottom: -32px;
  left: 0;
  -webkit-transform: translateX(32px);
          transform: translateX(32px);
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #FFFFFF;
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  padding: 8px;
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-img .chantier-img-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-info {
  padding: 1.5rem;
  padding-top: 2.5rem;
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-info .grid-list-item-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-weight: 600;
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-info .grid-list-item-desc {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-info .grid-list-item-desc p {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0;
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-info .btn {
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  color: #712d67;
  border: 1px solid #A6CD39;
  font-weight: bold;
  position: relative;
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-info .btn span {
  z-index: 5;
  line-height: 1.5;
}
.grid-list.chantiers-list .grid-list-item .grid-list-item-info .btn::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
  background: #F1EAF0;
  border-radius: 0;
  vertical-align: middle;
  z-index: 1;
}
.grid-list.chantiers-list .grid-list-item:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.grid-list.chantiers-list .grid-list-item:hover::after {
  height: 100%;
  -webkit-transform: scale(2);
          transform: scale(2);
}
.grid-list.chantiers-list .grid-list-item:hover .grid-list-item-img .img.chantier-img-prim {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.grid-list.chantiers-list .grid-list-item:hover .grid-list-item-img .chantier-img-logo {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.grid-list.chantiers-list .grid-list-item:hover .grid-list-item-info .grid-list-item-title {
  color: #FFFFFF;
}
.grid-list.chantiers-list .grid-list-item:hover .grid-list-item-info .grid-list-item-desc p {
  color: #FFFFFF;
}
.grid-list.chantiers-list .grid-list-item:hover .grid-list-item-info .btn::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.grid-list.chantiers-list .grid-list-item:hover .grid-list-item-info .btn svg {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 1280px) {
  .grid-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 1124px) {
  .grid-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 858px) {
  .grid-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .grid-list .grid-list-item .grid-list-item-info {
    padding: 30px 16px 16px 16px;
  }
}

.gv-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
.gv-list .gv-list-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 1.5rem;
  overflow: hidden;
  border-radius: 16px;
}
.gv-list .gv-list-title h3 {
  word-wrap: break-word;
  font-family: "Gobold Extra2";
  color: #FFFFFF;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.gv-list .gv-list-grid {
  display: grid;
  grid-template-columns: repeat(5, 1FR);
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gv-list .gv-list-grid .gv-member-list-grid {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem 0.5rem 1rem;
  gap: 0.5rem;
  border-radius: 8px 8px 0 0;
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  position: relative;
}
.gv-list .gv-list-grid .gv-member-list-grid::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  border-radius: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  opacity: 1;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.gv-list .gv-list-grid .gv-member-list-grid:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.gv-list .gv-list-grid .gv-member-list-grid:hover .gv-member-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.gv-list .gv-list-grid .gv-member-list-grid:hover .gv-member-name h4 {
  color: #F1EAF0;
}
.gv-list .gv-list-grid .gv-member-list-grid:hover .gv-member-name .gv-member-role {
  color: #712d67;
}
.gv-list .gv-list-grid .gv-member-list-grid .gv-member-img {
  width: 100%;
  z-index: 4;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.gv-list .gv-list-grid .gv-member-list-grid .gv-member-img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gv-list .gv-list-grid .gv-member-list-grid .gv-member-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 4;
  gap: 0.25rem;
}
.gv-list .gv-list-grid .gv-member-list-grid .gv-member-name h4 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.gv-list .gv-list-grid .gv-member-list-grid .gv-member-name .gv-member-role {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #F1EAF0;
  text-transform: uppercase;
  font-size: 16px;
}
.gv-list.list-fondateurs .gv-list-title {
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
}
.gv-list.list-equipe .gv-list-title {
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
}
.gv-list.list-equipe .list-grid-equipe .gv-member-list-grid {
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
}
.gv-list.list-equipe .list-grid-equipe .gv-member-list-grid::after {
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
}
.gv-list.list-equipe .list-grid-equipe .gv-member-list-grid .gv-member-name h4 {
  color: #FFFFFF;
}
.gv-list.list-equipe .list-grid-equipe .gv-member-list-grid:hover .gv-member-name h4 {
  color: #000000;
}
.gv-list.list-ambassadeurs .gv-list-title {
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
}
.gv-list.list-ambassadeurs .gv-list-grid.list-ambassadeurs {
  grid-template-columns: 1FR;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  overflow: hidden;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  max-width: 550px;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  position: relative;
  width: 100%;
  max-width: 550px;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .cta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .cta-wrapper a {
  font-weight: 600;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .cta-wrapper a-primary:hover {
  color: red;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .cta-wrapper .btn-secondary {
  color: #712d67;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows {
  position: absolute;
  right: 0px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 32px;
  width: 100px;
  background: #fff;
  z-index: 5;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows .splide__arrow {
  background: #712d67;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 0;
  opacity: 1;
  width: 32px;
  height: 32px;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows .splide__arrow svg path {
  fill: #FFFFFF;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows .splide__arrow--next {
  border: 1px solid #712d67;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows .splide__arrow--next:hover {
  background: #FFFFFF;
  border-color: #712d67;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows .splide__arrow--next:hover svg path {
  fill: #712d67;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows .splide__arrow--prev {
  background: #FFFFFF;
  border: 1px solid #712d67;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows .splide__arrow--prev svg path {
  fill: #712d67;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows .splide__arrow--prev:hover {
  background: #712d67;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__arrows .splide__arrow--prev:hover svg path {
  fill: #FFFFFF;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .splide__list {
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider {
  /* Slides */
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-region-name {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 2;
  padding-left: 50px;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-region-name::after {
  content: "";
  background: url('data:image/svg+xml,<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="48" height="48" fill="white"/><path d="M28.3504 20.3749C28.3504 22.7774 26.4029 24.7249 24.0004 24.7249C21.5979 24.7249 19.6504 22.7774 19.6504 20.3749C19.6504 17.9725 21.5979 16.0249 24.0004 16.0249C26.4029 16.0249 28.3504 17.9725 28.3504 20.3749Z" stroke="%23712D67" stroke-width="3"/><path d="M24 9.5C29.8853 9.5 34.875 14.4706 34.875 20.501C34.875 26.6274 29.8041 30.9266 25.1201 33.8501C24.7788 34.0466 24.3928 34.15 24 34.15C23.6072 34.15 23.2212 34.0466 22.8799 33.8501C18.2047 30.8981 13.125 26.6486 13.125 20.501C13.125 14.4706 18.1147 9.5 24 9.5Z" stroke="%23712D67" stroke-width="3"/><path d="M32.6988 35.6001C32.6988 37.2018 28.8037 38.5001 23.9988 38.5001C19.1939 38.5001 15.2988 37.2018 15.2988 35.6001" stroke="%23712D67" stroke-width="3" stroke-linecap="round"/></svg>') no-repeat center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 2px;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-region-name::before {
  content: "";
  background: #D9D9D9;
  opacity: 0.4;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-region-name span {
  font-size: 24px;
  color: #712d67;
  font-weight: 700;
  text-transform: uppercase;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-slide-info p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #000000;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-slide-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 95%;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-slide-count .team-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-slide-count .team-count .team-count-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-slide-count .team-count .team-count-number span {
  font-size: 1.5rem;
  color: #712d67;
  line-height: 1.5;
  font-weight: 700;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-slide-count .team-count .team-count-region-name span {
  font-size: 1.25rem;
  color: #000000;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-slide-count .team-count.team-cities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-slide-count .team-count.team-cities span.team-city-name {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 1px solid #712d67;
  background: transparent;
  color: #712d67;
  border-radius: 8px;
  padding: 4px 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .team-slider-wrapper #team-slider .team-slide-content .team-slide-count .team-count.team-cities span.team-city-name:hover {
  background: #712d67;
  color: #FFFFFF;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  padding: 12px;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container .map-pin {
  position: absolute;
  width: 16px;
  height: 47px;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  pointer-events: none;
  z-index: 10;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container svg path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  fill: #f1eaf0;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container svg path:hover {
  fill: #c8e6c9;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container svg path.active {
  fill: #A6CD39;
  stroke: #712d67;
  stroke-width: 1;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container .map-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  left: 0;
  top: 0;
  padding: 6px 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #A6CD39;
  opacity: 0;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container .map-tooltip span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  color: #712d67;
  text-align: center;
  display: block;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container .map-tooltip.hidden {
  opacity: 0;
}
.gv-list.list-ambassadeurs .ambassadeurs-map-and-slider .maroc-map-container .map-tooltip.visible {
  opacity: 1;
}

.sondage-section .grid-list-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}
.sondage-section .grid-list-item-img img {
  width: 100%;
  height: auto;
  display: block;
}
.sondage-section .grid-list-item-info {
  padding: 20px;
}
.sondage-section .grid-list-item-sondage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  position: relative;
  border: 1px solid #E2DCE1;
  border-radius: 24px;
  padding: 200px 24px 52px;
  overflow: hidden;
  cursor: pointer;
}
.sondage-section .grid-list-item-sondage::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  display: inline-block;
  width: 100%;
  height: 110%;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
  background: #F1EAF0;
  border-radius: 0;
  vertical-align: middle;
  z-index: -2;
}
.sondage-section .grid-list-item-sondage .grid-list-item-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.sondage-section .grid-list-item-sondage .grid-list-item-sondage-info {
  background: #F9F9F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  -webkit-box-shadow: 0px 16px 24px -20px #BFBFBF;
          box-shadow: 0px 16px 24px -20px #BFBFBF;
  z-index: 4;
}
.sondage-section .grid-list-item-sondage .grid-list-item-sondage-info .sondage-choices {
  display: grid;
  gap: 12px;
}
.sondage-section .grid-list-item-sondage .grid-list-item-sondage-info .sondage-choices .sondage-choice {
  padding: 12px 16px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sondage-section .grid-list-item-sondage .grid-list-item-sondage-info .sondage-choices .sondage-choice:hover {
  border-color: #7a2b6c;
  color: #7a2b6c;
}
.sondage-section .grid-list-item-sondage .grid-list-item-sondage-info .sondage-choices .sondage-choice.is-selected {
  background: #7a2b6c;
  border-color: #7a2b6c;
  color: #ffffff;
}
.sondage-section .grid-list-item-sondage .grid-list-item-img {
  height: 320px;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  background: green;
  overflow: hidden;
}
.sondage-section .grid-list-item-sondage .grid-list-item-img img {
  height: 100%;
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.sondage-section .grid-list-item-sondage .grid-list-item-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 400;
}
.sondage-section .grid-list-item-sondage .grid-list-item-desc {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.sondage-section .grid-list-item-sondage .grid-list-item-desc p {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0;
}
.sondage-section .grid-list-item-sondage .grid-list-item-results-bloc {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 24px;
  padding: 56px 20px 20px 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  overflow: auto;
  border: 1px solid #712d67;
}
.sondage-section .grid-list-item-sondage .grid-list-item-results-bloc .results-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  gap: 12px;
}
.sondage-section .grid-list-item-sondage.is-results-open .grid-list-item-results-bloc {
  opacity: 1;
  visibility: visible;
}
.sondage-section .grid-list-item-sondage.is-results-open .sondage-choices,
.sondage-section .grid-list-item-sondage.is-results-open .sondage-cta {
  visibility: hidden;
}
.sondage-section .grid-list-item-sondage.sondage-type-1 {
  padding-top: 272px;
}
.sondage-section .grid-list-item-sondage.sondage-type-1 .grid-list-item-sondage-info {
  gap: 40px;
}
.sondage-section .grid-list-item-sondage.sondage-type-1 .sondage-choices {
  grid-template-columns: repeat(2, 1fr);
}
.sondage-section .grid-list-item-sondage.sondage-type-1 .sondage-choices .is-false {
  background: #FFDEE0;
  border-color: #F8D3D5;
}
.sondage-section .grid-list-item-sondage.sondage-type-1 .sondage-choices .is-true {
  background: #E5FDEF;
  border-color: #DEF2E6;
}
.sondage-section .grid-list-item-sondage.sondage-type-2 .sondage-choices {
  grid-template-columns: 1fr;
}
.sondage-section .grid-list-item-sondage.sondage-type-3 {
  padding-top: 372px;
}
.sondage-section .grid-list-item-sondage.sondage-type-3 .sondage-choices {
  grid-template-columns: 1fr;
}
.sondage-section .grid-list-item-sondage .sondage-cta {
  margin-top: 12px;
  text-align: center;
}
.sondage-section .grid-list-item-sondage .sondage-cta a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #7a2b6c;
  text-decoration: none;
}
.sondage-section .grid-list-item-sondage .sondage-cta a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sondage-section .grid-list-item-sondage .sondage-external-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #7a2b6c;
  text-decoration: none;
  margin-top: 8px;
}

.sondage-section .grid-list-item-sondage .sondage-external-cta span {
  display:flex;
  justify-content: center;
  align-items: center;
}

.grid-list-item-sondage-question {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sondage-section .grid-list-item-sondage .results-close {
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  top: 12px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 12px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 12px;
  background: rgba(122, 43, 108, 0.431372549);
  border-radius: 50px;
}
.sondage-section .grid-list-item-sondage .results-close:hover {
  background: #000;
  color: #fff;
}
.sondage-section .grid-list-item-sondage .results-title {
  font-weight: 700;
  margin: 6px 0 14px;
}
.sondage-section .grid-list-item-sondage .results-row {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sondage-section .grid-list-item-sondage .results-bar {
  height: 10px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}
.sondage-section .grid-list-item-sondage .results-bar > span {
  display: block;
  height: 100%;
  width: 0%;
  background: #7a2b6c;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
.sondage-section .grid-list-item-sondage .results-pct {
  text-align: right;
  font-weight: 600;
  color: #333;
}
.sondage-section .grid-list-item-sondage:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sondage-section .grid-list-item-sondage .poll-message {
  color: #712d67;
  text-transform: uppercase;
  padding: 6px;
  background: #94fb6f;
  text-align: center;
  border-radius: 12px;
}

.tooltip {
  position: absolute;
  background: #712d67;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.1;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  white-space: nowrap;
  z-index: 1000;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tooltip.visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.tooltip.hidden {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.fancy-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.popup-img {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.top-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #F6EDF4;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.top-banner .top-shape {
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 4;
}
.top-banner .top-shape-right {
  right: 0;
}
.top-banner .top-shape-right img {
  width: 475px;
  max-width: 475px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-banner .top-shape-left {
  left: 0;
}
.top-banner .top-shape-left img {
  width: 200px;
  max-width: 180px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-banner .top-banner-title {
  z-index: 4;
  position: relative;
}
.top-banner .top-banner-title h1 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  word-wrap: break-word;
  font-family: "Gobold Extra2";
  font-size: 40px;
  font-weight: 700;
  color: #712d67;
  text-transform: uppercase;
  line-height: 1.5;
}

.top-banner-bg {
  width: 100%;
  height: 510px;
  z-index: 4;
  position: relative;
}
.top-banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: 4;
}

.sgch-video-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
.sgch-video-wrapper .video-container {
  width: 100%;
  margin: 0 auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.sgch-video-wrapper .video-wrapper {
  position: relative;
  width: 100%;
  height: 560px;
  background: transparent;
}
.sgch-video-wrapper video {
  width: 100%;
  display: block;
  cursor: pointer;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sgch-video-wrapper {
  /* Overlay de lecture */
}
.sgch-video-wrapper .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.sgch-video-wrapper .video-wrapper:hover .play-overlay,
.sgch-video-wrapper .video-wrapper.paused .play-overlay {
  opacity: 1;
}
.sgch-video-wrapper .play-btn-overlay {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.sgch-video-wrapper .play-btn-overlay:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sgch-video-wrapper .play-btn-overlay svg {
  width: 35px;
  height: 35px;
  fill: #A6CD39;
  margin-left: 4px;
}
.sgch-video-wrapper .play-btn-overlay.playing svg {
  margin-left: 0;
}
.sgch-video-wrapper {
  /* Contrôles personnalisés */
}
.sgch-video-wrapper .video-controls {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.sgch-video-wrapper {
  /* Barre de progression */
}
.sgch-video-wrapper .progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}
.sgch-video-wrapper .progress-container:hover {
  height: 8px;
}
.sgch-video-wrapper .progress-bar {
  height: 100%;
  background: #667eea;
  border-radius: 3px;
  width: 0%;
  position: relative;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}
.sgch-video-wrapper .progress-bar::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #667eea;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.sgch-video-wrapper .progress-container:hover .progress-bar::after {
  opacity: 1;
}
.sgch-video-wrapper {
  /* Contrôles du bas */
}
.sgch-video-wrapper .controls-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.sgch-video-wrapper .controls-left,
.sgch-video-wrapper .controls-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.sgch-video-wrapper {
  /* Boutons */
}
.sgch-video-wrapper .control-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.sgch-video-wrapper .control-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sgch-video-wrapper .control-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}
.sgch-video-wrapper {
  /* Temps */
}
.sgch-video-wrapper .time-display {
  color: white;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.sgch-video-wrapper {
  /* Volume */
}
.sgch-video-wrapper .volume-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.sgch-video-wrapper .volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.sgch-video-wrapper .volume-bar {
  height: 100%;
  background: white;
  border-radius: 2px;
  width: 100%;
  -webkit-transition: width 0.1s ease;
  transition: width 0.1s ease;
}
.sgch-video-wrapper {
  /* Vitesse de lecture */
}
.sgch-video-wrapper .speed-control {
  position: relative;
}
.sgch-video-wrapper .speed-btn {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.sgch-video-wrapper .speed-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.sgch-video-wrapper .speed-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  padding: 8px 0;
  margin-bottom: 8px;
  display: none;
  min-width: 80px;
}
.sgch-video-wrapper .speed-menu.active {
  display: block;
}
.sgch-video-wrapper .speed-option {
  color: white;
  padding: 6px 16px;
  cursor: pointer;
  font-size: 13px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.sgch-video-wrapper .speed-option:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sgch-video-wrapper .speed-option.selected {
  color: #667eea;
  font-weight: 600;
}
.sgch-video-wrapper {
  /* Responsive */
}
@media (max-width: 640px) {
  .sgch-video-wrapper .video-controls {
    padding: 15px 15px 12px;
  }
  .sgch-video-wrapper .controls-bottom {
    gap: 10px;
  }
  .sgch-video-wrapper .controls-left,
  .sgch-video-wrapper .controls-right {
    gap: 10px;
  }
  .sgch-video-wrapper .control-btn svg {
    width: 20px;
    height: 20px;
  }
  .sgch-video-wrapper .time-display {
    font-size: 12px;
  }
  .sgch-video-wrapper .volume-slider {
    width: 60px;
  }
  .sgch-video-wrapper .play-btn-overlay {
    width: 60px;
    height: 60px;
  }
  .sgch-video-wrapper .play-btn-overlay svg {
    width: 28px;
    height: 28px;
  }
}

.pdf-modal {
  position: fixed;
  inset: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

.pdf-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.pdf-dialog {
  position: relative;
  width: min(95vw, 1100px);
  height: 90vh;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pdf-dialog iframe {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  border: none;
  background: #111;
}

.pdf-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: #A6CD39;
  border: 0;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

.header {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #FFFFFF;
  z-index: 800;
  display: grid;
  grid-template-rows: auto 1fr;
}
.header .top {
  position: relative;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  background: #F6EDF4;
  overflow: hidden;
  padding: 14px 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .top .content {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 24px;
}
@media (max-width: 1124px) {
  .header .top {
    display: none;
  }
}
.header .bottom {
  background: #FFFFFF;
  will-change: padding;
  padding: 5px 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .bottom .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.header.scrolled {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  height: 80px;
}
.header.scrolled .top {
  display: none;
}
.header.is-elevated {
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.top-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.top-nav a {
  font-size: 0.75rem;
  font-weight: 600;
  color: #712d67;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}
.top-nav a:hover {
  color: #393BCD;
}

.btn-emergences {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #712d67;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  font-size: 16px;
  line-height: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  gap: 4px;
}
.btn-emergences span {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn-emergences:hover {
  color: #712d67;
  background: #FFFFFF;
}
.btn-emergences:hover span svg, .btn-emergences:hover span path {
  stroke: #712d67;
}

.mobile-top-nav {
  display: none;
  width: 100%;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #EEEEEE;
}
@media (max-width: 1124px) {
  .mobile-top-nav {
    display: block;
  }
}
.mobile-top-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.mobile-top-nav ul a:not(.btn-emergences-mobile) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 4px;
  color: #712d67;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1124px) {
  main {
    padding-top: 80px;
  }
}

.btn-emergences-mobile {
  background: #712d67;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.4s ease-in-out;
  transition: background 0.4s ease-in-out;
}
.logo img {
  height: 70px;
  width: auto;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.logo img:hover {
  opacity: 0.9;
}
@media (max-width: 1124px) {
  .logo img {
    height: 70px;
  }
}

.burger-menu {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1000;
  border-radius: 24px;
  background: transparent;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1124px) {
  .burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.burger-menu span {
  width: 25px;
  height: 3px;
  background: #333333;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.burger-menu.active {
  background: #a6cd39;
}
.burger-menu.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(8px, 8px);
          transform: rotate(45deg) translate(8px, 8px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
          transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1124px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 380px;
    height: 100vh;
    background: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 80px 2rem 2rem;
    -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    gap: 0;
  }
  .main-nav::-webkit-scrollbar {
    width: 8px;
  }
  .main-nav::-webkit-scrollbar-track {
    background: #E5E5E5;
  }
  .main-nav::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 40px;
  }
  .main-nav.active {
    right: 0;
  }
}

.mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 1124px) {
  .mega-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 0;
  }
}
.mega-menu > li {
  position: relative;
}
@media (max-width: 1124px) {
  .mega-menu > li {
    width: 100%;
  }
}
.mega-menu > li > a {
  color: #712d67;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0.5rem 0;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}
@media (max-width: 1124px) {
  .mega-menu > li > a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #EEEEEE;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.mega-menu > li > a:hover {
  color: #A6CD39;
}

.arrow {
  font-size: 10px;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

@media (min-width: 1125px) {
  .has-dropdown:hover .arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 1124px) {
  .has-dropdown.active .arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .has-dropdown.active .dropdown-menu {
    max-height: 600px;
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  -webkit-box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 1.5rem 0 0;
  z-index: 100;
}
@media (max-width: 1124px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0 0 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease-in-out;
    transition: max-height 0.4s ease-in-out;
    border-radius: 0;
  }
}

.dropdown-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media (max-width: 1124px) {
  .dropdown-content {
    gap: 0.5rem;
    padding: 1rem 0;
  }
}

.menu-column {
  padding: 0;
  border-bottom: 1px solid #EEE1EC;
}
@media (max-width: 1124px) {
  .menu-column {
    padding: 0;
  }
}
.menu-column.has-submenu .submenu {
  margin-top: 0.25rem;
}
@media (max-width: 1124px) {
  .menu-column.has-submenu .submenu {
    margin-top: 0.5rem;
  }
}

.menu-item {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
  display: block;
  padding: 1rem 1rem;
  color: #712d67;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: none;
  position: relative;
}
.menu-item::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  background: url('data:image/svg+xml,<svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.7501 0.75005C12.7501 0.75005 8.33116 6.75 6.75006 6.75C5.16886 6.75 0.750061 0.75 0.750061 0.75" stroke="%23712D67" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  width: 12px;
  height: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1124px) {
  .menu-item {
    padding: 0.5rem 0;
    border-radius: 0;
    font-size: 16px;
  }
}
@media (min-width: 1125px) {
  .menu-item:hover {
    background: #A6CD39;
    color: #FFFFFF;
  }
  .menu-item:hover::after {
    right: 10px;
  }
}
@media (max-width: 1124px) {
  .menu-item:hover {
    color: #393BCD;
  }
}

.submenu {
  padding-left: 1.5rem;
}
@media (max-width: 1124px) {
  .submenu {
    padding-left: 1rem;
  }
}
.submenu li {
  margin: 0;
}
@media (max-width: 1124px) {
  .submenu li {
    margin: 0.25rem 0;
  }
}
.submenu a {
  display: block;
  padding: 0.5rem 0.5rem;
  color: #666666;
  font-size: 0.75rem;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1124px) {
  .submenu a {
    padding: 0.5rem 0;
    font-size: 0.875rem;
  }
}
.submenu a:hover {
  color: #393BCD;
}
@media (min-width: 1125px) {
  .submenu a:hover {
    padding-left: 1rem;
  }
}

.cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (max-width: 1124px) {
  .cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

.btn {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 16px;
  line-height: 1.1;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  gap: 4px;
}
.btn span {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 4;
}
.btn svg, .btn path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1124px) {
  .btn {
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
  }
}
.btn-footer {
  width: 100%;
}
.btn-white {
  margin-top: 12px;
  background: #FFFFFF;
  color: #712d67;
  border: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  will-change: transform;
}
.btn-white span {
  color: #712d67;
  z-index: 4;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.1;
  display: block;
}
.btn-white:hover {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.btn-white:hover:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-white:hover {
  background: #712d67;
}
.btn-white:hover span {
  color: #FFFFFF;
}
.btn-primary {
  background: #712d67;
  color: #FFFFFF;
}
.btn-primary:hover {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.btn-primary:hover:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-primary:hover {
  color: #FFFFFF;
}
.btn-menu-green {
  background: #A6CD39;
  color: #FFFFFF;
  font-weight: 500;
}
.btn-menu-green::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  border-radius: 0;
  vertical-align: middle;
  z-index: 1;
}
.btn-menu-green:hover {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.btn-menu-green:hover:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-menu-green:hover {
  color: #FFFFFF;
}
.btn-menu-green:hover svg {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.btn-menu-green:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn-secondary {
  background: #A6CD39;
  color: #FFFFFF;
  border: 1px solid transparent;
}
.btn-secondary:hover {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.btn-secondary:hover:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-secondary:hover {
  border-color: #A6CD39;
  color: #FFFFFF;
}
.btn-nav {
  color: #712d67;
  border: 1px solid #712d67;
  border-radius: 0;
}
.btn-nav::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  border-radius: 0;
  vertical-align: middle;
  z-index: 1;
}
.btn-nav:hover, .btn-nav.active {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.btn-nav:hover:hover, .btn-nav.active:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn-nav:hover, .btn-nav.active {
  border-color: transparent;
  color: #FFFFFF;
}
.btn-nav:hover::after, .btn-nav.active::after {
  width: 100%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.btn-nav:hover svg path, .btn-nav.active svg path {
  stroke: #FFFFFF;
}
.btn-nav.active {
  pointer-events: none;
}

@media (max-width: 480px) {
  .main-nav {
    width: 100%;
    padding: 70px 1.5rem 1.5rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .logo img {
    height: 75px;
  }
}
footer {
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  position: relative;
}
footer .footer-shape {
  position: absolute;
  width: 110px;
  height: 100%;
  left: -20px;
  top: 0;
  z-index: 1;
}
footer .footer-shape img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
footer .container {
  padding: 2.5rem 0;
  width: calc(100% - 150px);
}
footer .container .content .footer-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1FR);
  gap: 1rem;
}
footer .container .content .footer-boxes .footer-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: transparent;
  gap: 16px;
}
footer .container .content .footer-boxes .footer-boxe h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #FFFFFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
footer .container .content .footer-boxes .footer-boxe .btn-ctas ul, footer .container .content .footer-boxes .footer-boxe .btn-ctas li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
footer .container .content .footer-boxes .footer-boxe .btn-ctas ul li a, footer .container .content .footer-boxes .footer-boxe .btn-ctas li li a {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 16px;
  max-width: 290px;
  line-height: 1.1;
  word-wrap: break-word;
  text-wrap: auto;
  background: #FFFFFF;
  color: #095F30;
}
footer .container .content .footer-boxes .footer-boxe .btn-ctas ul li a span, footer .container .content .footer-boxes .footer-boxe .btn-ctas li li a span {
  display: block;
}
footer .container .content .footer-boxes .footer-boxe .btn-ctas ul li a span img, footer .container .content .footer-boxes .footer-boxe .btn-ctas li li a span img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  min-width: 16px;
  width: 16px;
}
footer .container .content .footer-boxes .footer-boxe .btn-ctas ul li a:hover, footer .container .content .footer-boxes .footer-boxe .btn-ctas li li a:hover {
  background: #A6CD39;
  color: #FFFFFF;
}
footer .container .content .footer-boxes .footer-boxe .btn-ctas ul li a:hover img, footer .container .content .footer-boxes .footer-boxe .btn-ctas li li a:hover img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
footer .container .content .footer-boxes .footer-boxe .footer-logo {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5rem 1rem;
}
footer .container .content .footer-boxes .footer-boxe .footer-logo img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  width: 156px;
  z-index: 4;
}
footer .container .content .footer-boxes .footer-boxe .footer-address a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.1;
  color: #FFFFFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
footer .container .content .footer-boxes .footer-boxe .footer-address a:hover {
  color: #712d67;
}
footer .container .content .footer-boxes .footer-boxe .footer-boxe-ctc a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.1;
  color: #FFFFFF;
}
footer .container .content .footer-boxes .footer-boxe .footer-boxe-ctc a img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
footer .container .content .footer-boxes .footer-boxe .footer-boxe-ctc a:hover {
  color: #712d67;
}
footer .container .content .footer-boxes .footer-boxe .footer-boxe-ctc a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
footer .container .content .footer-boxes .footer-boxe .footer-rs-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1rem;
}
footer .container .content .footer-boxes .footer-boxe .footer-rs-links ul li a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
footer .container .content .footer-boxes .footer-boxe .footer-rs-links ul li a img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-filter: invert(0);
          filter: invert(0);
}
footer .container .content .footer-boxes .footer-boxe .footer-rs-links ul li a:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
footer .container .content .footer-boxes .footer-boxe .footer-menu-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
footer .container .content .footer-boxes .footer-boxe .footer-menu-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #095F30;
  gap: 0.5rem;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
footer .container .content .footer-boxes .footer-boxe .footer-menu-list ul li a img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
footer .container .content .footer-boxes .footer-boxe .footer-menu-list ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0px;
  height: 4px;
  background: #FFFFFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
footer .container .content .footer-boxes .footer-boxe .footer-menu-list ul li a:hover {
  color: #FFFFFF;
}
footer .container .content .footer-boxes .footer-boxe .footer-menu-list ul li a:hover::after {
  width: 60px;
}
footer .container .content .footer-boxes .footer-boxe .footer-menu-list ul li a:hover img {
  -webkit-transform: scale(1.1) rotate(-180deg);
          transform: scale(1.1) rotate(-180deg);
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  background: transparent;
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box .footer-rapport-icon {
  background: #FFFFFF;
  padding: 0.5rem;
  border-radius: 8px;
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box .footer-rapport-icon img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box .footer-rapport-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box .footer-rapport-info .rapport-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.1;
  color: #FFFFFF;
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box .footer-rapport-info .rapport-year {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.1;
  color: #095F30;
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box:hover .footer-rapport-info .rapport-year {
  color: #FFFFFF;
}
footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box:hover .footer-rapport-info .rapport-title {
  color: #095F30;
}

main .home-hero-section {
  width: 100%;
  background: #FFFFFF;
  padding-top: 60px;
}
main .home-hero-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}
main .home-hero-section .container .content .home-hero-image {
  position: relative;
  width: 100%;
}
main .home-hero-section .container .content .home-hero-image .home-hero-image-layout {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
main .home-hero-section .container .content .home-hero-image .home-hero-image-layout img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .home-hero-section .container .content .home-hero-image .home-hero-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
main .home-hero-section .container .content .home-hero-boxe {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
main .home-hero-section .container .content .home-hero-boxe .home-hero-title {
  width: 80%;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  color: #000;
}
main .home-hero-section .container .content .home-hero-boxe .home-hero-title span {
  color: #712d67;
  font-weight: 700;
  text-transform: uppercase;
}
main .home-hero-section .container .content .home-hero-boxe .home-hero-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 50%;
  -ms-flex-item-align: center;
      align-self: center;
}
main .home-hero-section .container .content .home-hero-boxe .home-hero-cta .btn {
  font-size: 16px;
  padding: 1.5rem 5rem;
  line-height: 1.1;
}
main .home-hero-section .container .content .home-hero-boxe .home-hero-cta .btn span {
  margin-left: 0.5rem;
}
main .home-hero-section .container .content .home-hero-boxe .home-hero-cta .btn span img {
  width: 16px;
  height: 16px;
}
main .home-hero-section .container .content .home-hero-keys {
  padding: 3rem 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  position: relative;
}
main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list {
  width: 100%;
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list .home-hero-key-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list .home-hero-key-item .home-hero-key-value {
  position: relative;
  font-size: 3.75rem;
  font-weight: 900;
  color: #712d67;
  z-index: 5;
}
main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list .home-hero-key-item .home-hero-key-value::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: inline-block;
  width: 69px;
  height: 63px;
  margin-left: 10px;
  background-color: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: -1;
}
main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list .home-hero-key-item .home-hero-key-label {
  font-size: 1.125rem;
  color: #666666;
  text-transform: uppercase;
  color: #712d67;
}
main .home-intro-section {
  width: 100%;
  padding: 40px 0 110px;
  background: #FFFFFF;
  overflow: hidden;
}
main .home-intro-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
}
main .home-intro-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1.5rem;
  text-align: left;
}
main .home-intro-section .container .content .top .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
}
main .home-intro-section .container .content .top .left .home-intro-img {
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  max-width: 500px;
}
main .home-intro-section .container .content .top .left .home-intro-img img.img-main {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
  max-width: 490px;
  overflow: hidden;
  border-radius: 83% 74% 54% 46%/55% 48% 52% 45%;
}
main .home-intro-section .container .content .top .left .home-intro-img .shape-green {
  position: absolute;
  top: 51%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 100%;
}
main .home-intro-section .container .content .top .left .home-intro-img .triangle-boxe {
  position: absolute;
  z-index: 4;
}
main .home-intro-section .container .content .top .left .home-intro-img .triangle-boxe.purple {
  bottom: 25px;
  left: 130px;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}
main .home-intro-section .container .content .top .left .home-intro-img .triangle-boxe.green {
  top: 60px;
  right: 16px;
  -webkit-transform: rotate(-6deg);
  transform: rotate(3deg);
}
main .home-intro-section .container .content .top .left .home-intro-img::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 90px;
  width: 0%;
  height: 96%;
  background: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  z-index: 1;
}
main .home-intro-section .container .content .top .right {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: start;
  gap: 1rem;
}
main .home-intro-section .container .content .top .right .home-intro-subtitle {
  font-family: "Caveat", cursive;
  color: #A6CD39;
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 700;
}
main .home-intro-section .container .content .top .right .home-intro-title {
  font-family: "Gobold Extra2";
  color: #712d67;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 400;
}
main .home-intro-section .container .content .top .right .home-intro-text {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 500px;
}
main .home-intro-section .container .content .bottom .our-values-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1FR);
  gap: 1.5rem;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item {
  padding: 1.5rem;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item:first-of-type {
  background-color: #F1EAF0;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item:first-of-type .our-values-title {
  color: #712d67;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item:first-of-type .our-values-title svg path {
  fill: #712d67;
  stroke: #FFFFFF;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item:nth-of-type(2) {
  background-color: #EDF5D7;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item:nth-of-type(2) .our-values-title {
  color: #A6CD39;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item:nth-of-type(2) .our-values-title svg path {
  fill: #A6CD39;
  stroke: #FFFFFF;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item:last-of-type {
  background-color: #FFF3D5;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item:last-of-type .our-values-title {
  color: #FDBD1A;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item:last-of-type .our-values-title svg path {
  fill: #FDBD1A;
  stroke: #FFFFFF;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item .our-values-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  gap: 3rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
}
main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item .our-values-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #000000;
}
main .home-projects-section {
  overflow: hidden;
}
main .home-projects-section .home-projects-title {
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  padding: 2.5rem 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
main .home-projects-section .home-projects-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background: #712d67;
  bottom: -80%;
  left: 0;
}
main .home-projects-section .home-projects-title span {
  font-family: "Gobold Extra2";
  font-size: 1.875rem;
  font-weight: 700;
  color: #F1EAF0;
  line-height: 1.1;
}
main .home-projects-section .container {
  width: calc(100% - 80px);
}
main .home-projects-section .container .content .home-projects-slider {
  width: 100%;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
main .home-projects-section .container .content .home-projects-slider .splide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .home-projects-section .container .content .home-projects-slider .splide__arrow--next {
  right: -1em;
  display: none;
}
main .home-projects-section .container .content .home-projects-slider .splide__arrow--prev {
  left: -1em;
  display: none;
}
main .home-projects-section .container .content .home-projects-slider .splide__list {
  gap: 16px;
}
main .home-projects-section .container .content .home-projects-slider {
  /* Styles du Slider (Tabs) */
}
main .home-projects-section .container .content .home-projects-slider .splide__slide {
  position: relative;
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 20px;
  background: white;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 150px;
  border: 3px solid transparent;
}
main .home-projects-section .container .content .home-projects-slider .splide__slide::after {
  content: "";
  position: absolute;
  background: #712d67;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 5px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .home-projects-section .container .content .home-projects-slider {
  /* Boutons de navigation personnalisés */
}
main .home-projects-section .container .content .home-projects-slider .custom-nav-btn-wrap {
  width: 32px;
  min-width: 32px;
  height: 200px;
  background: white;
}
main .home-projects-section .container .content .home-projects-slider .custom-nav-btn {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0%;
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
main .home-projects-section .container .content .home-projects-slider .custom-nav-btn:hover {
  background: #A6CD39;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
main .home-projects-section .container .content .home-projects-slider .custom-nav-btn:hover::before {
  border-color: white;
}
main .home-projects-section .container .content .home-projects-slider .custom-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
main .home-projects-section .container .content .home-projects-slider .custom-prev {
  left: 0;
}
main .home-projects-section .container .content .home-projects-slider .custom-next {
  right: 0;
}
main .home-projects-section .container .content .home-projects-slider .splide__slide.is-active {
  -webkit-box-shadow: 0 8px 24px rgba(166, 205, 57, 0.2);
          box-shadow: 0 8px 24px rgba(166, 205, 57, 0.2);
}
main .home-projects-section .container .content .home-projects-slider .splide__slide.is-active::after {
  opacity: 1;
  width: 100%;
}
main .home-projects-section .container .content .home-projects-slider .tab-header {
  text-align: center;
}
main .home-projects-section .container .content .home-projects-slider .tab-header .tab-header-img img {
  width: 100%;
  height: 160px;
  max-width: 256px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .home-projects-section .container .content .home-projects-slider .tab-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 10px;
}
main .home-projects-section .container .content .home-projects-slider .tab-title {
  color: #6B2D5C;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}
main .home-projects-section .container .content .home-projects-slider {
  /* Personnalisation des flèches Splide */
}
main .home-projects-section .container .content .home-projects-slider .splide__arrow {
  background: #6B2D5C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 1;
}
main .home-projects-section .container .content .home-projects-slider .splide__arrow:hover {
  background: #A6CD39;
}
main .home-projects-section .container .content .home-projects-slider .splide__arrow svg {
  fill: white;
}
main .home-projects-section .container .content .home-projects-slider {
  /* Contenu des Tabs */
}
main .home-projects-section .container .content .home-projects-slider .tab-content-wrapper {
  margin-top: 40px;
}
main .home-projects-section .container .content .home-projects-slider .tab-content {
  display: none;
  background: white;
  padding: 32px;
  border-radius: 12px;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .home-projects-section .container .content .home-projects-slider .tab-content .tab-content-boxe {
  display: grid;
  grid-template-columns: repeat(2, 1FR);
  gap: 1.5rem;
}
main .home-projects-section .container .content .home-projects-slider .tab-content.active {
  display: block;
}
main .home-projects-section .container .content .home-projects-slider .tab-content.fade-out {
  opacity: 0;
}
main .home-projects-section .container .content .home-projects-slider .tab-content.fade-in {
  opacity: 1;
}
main .home-projects-section .container .content .home-projects-slider .content-header {
  color: #6B2D5C;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
main .home-projects-section .container .content .home-projects-slider .content-description {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
main .home-projects-section .container .content .home-projects-slider .event-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
main .home-projects-section .container .content .home-projects-slider .event-item {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  margin-bottom: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #A6CD39;
  cursor: pointer;
}
main .home-projects-section .container .content .home-projects-slider .event-item.active {
  background: #f0f7e6;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
main .home-projects-section .container .content .home-projects-slider .event-item:hover {
  background: #f0f7e6;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
main .home-projects-section .container .content .home-projects-slider .event-icon {
  width: 40px;
  height: 40px;
  background: #A6CD39;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
main .home-projects-section .container .content .home-projects-slider .event-icon::after {
  content: "📅";
  font-size: 20px;
}
main .home-projects-section .container .content .home-projects-slider .event-name {
  font-weight: 600;
  color: #6B2D5C;
  font-size: 18px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main .home-projects-section .container .content .home-projects-slider .event-date {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}
main .home-projects-section .container .content .home-projects-slider .cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #6B2D5C;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
main .home-projects-section .container .content .home-projects-slider .cta-button:hover {
  background: #A6CD39;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
main .home-projects-section .container .content .home-projects-slider .cta-button::after {
  content: "→";
  font-size: 20px;
}
main .home-projects-section .container .content .home-projects-slider .content-visual {
  width: 100%;
  background: linear-gradient(135deg, #f0f7e6 0%, #e8f5d6 100%);
  border-radius: 12px;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
}
main .home-projects-section .container .content .home-projects-slider .content-visual .map-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 12px;
  width: 75%;
  border-radius: 12px;
}
main .home-projects-section .container .content .home-projects-slider .content-visual .map-controls .map-reset-btn {
  background: #712d67;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
main .home-projects-section .container .content .home-projects-slider .content-visual .map-controls .map-reset-btn:not(:disabled):hover {
  background: #FDBD1A;
  color: #000;
  letter-spacing: 0.1px;
}
main .home-projects-section .container .content .home-projects-slider .content-visual .map-controls .map-reset-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
main .home-projects-section .container .content .home-projects-slider .content-visual .map-controls .btn-shake {
  -webkit-animation: shake 0.3s ease;
          animation: shake 0.3s ease;
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  75% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  75% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
main .home-projects-section .container .content .home-projects-slider .content-visual svg, main .home-projects-section .container .content .home-projects-slider .content-visual path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
main .home-projects-section .container .content .home-projects-slider .content-visual svg {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  fill: #F1EAF0;
  stroke: rgba(0, 0, 0, 0.1098039216);
}
main .home-projects-section .container .content .home-projects-slider .content-visual svg path {
  cursor: pointer;
}
main .home-projects-section .container .content .home-projects-slider .content-visual svg path:hover {
  fill: #712d67;
}
main .home-projects-section .container .content .home-projects-slider .map-pin {
  width: 30px;
  height: 30px;
  background: #6B2D5C;
  border-radius: 50% 50% 50% 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}
main .home-projects-section .container .content .home-projects-slider .map-pin::after {
  content: "";
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: rotate(-45deg) translateY(0);
            transform: rotate(-45deg) translateY(0);
  }
  50% {
    -webkit-transform: rotate(-45deg) translateY(-10px);
            transform: rotate(-45deg) translateY(-10px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: rotate(-45deg) translateY(0);
            transform: rotate(-45deg) translateY(0);
  }
  50% {
    -webkit-transform: rotate(-45deg) translateY(-10px);
            transform: rotate(-45deg) translateY(-10px);
  }
}
main .home-projects-section .container .content .home-projects-slider {
  /* Responsive */
}
@media (max-width: 768px) {
  main .home-projects-section .container .content .home-projects-slider .tab-content {
    padding: 30px 20px;
  }
  main .home-projects-section .container .content .home-projects-slider .content-header {
    font-size: 20px;
  }
  main .home-projects-section .container .content .home-projects-slider .event-name,
  main .home-projects-section .container .content .home-projects-slider .content-description {
    font-size: 15px;
  }
  main .home-projects-section .container .content .home-projects-slider .event-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
main .home-sondage-section {
  width: 100%;
  background: #FFFFFF;
  padding: 110px 0;
  overflow-x: hidden;
}
main .home-sondage-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(121px);
          filter: blur(121px);
}
main .home-sondage-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -200px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #F1EAF0;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(110px);
          filter: blur(110px);
}
main .home-sondage-section .container {
  z-index: 2;
}
main .home-sondage-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 2.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main .home-sondage-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  text-align: left;
}
main .home-sondage-section .container .content .top .left {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: start;
  gap: 0.5rem;
}
main .home-sondage-section .container .content .top .left .sondage-section-title {
  font-family: "Caveat", cursive;
  color: #A6CD39;
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 700;
}
main .home-sondage-section .container .content .top .left .sondage-section-text {
  font-family: "Gobold Extra2";
  color: #712d67;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 400;
}
main .home-sondage-section .container .content .top .left p {
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-size: 0.875rem;
  line-height: 1.1;
  font-weight: 400;
}
main .home-sondage-section .container .content .top .right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
main .home-sondage-section .container .content .top .right .home-sondage-cta .btn {
  font-size: 16px;
  padding: 1.5rem 5rem;
  background: #712d67;
  line-height: 1.1;
  max-width: 260px;
}
main .home-sondage-section .container .content .top .right .home-sondage-cta .btn span {
  margin-left: 0.5rem;
}
main .home-sondage-section .container .content .top .right .home-sondage-cta .btn span img {
  width: 16px;
  height: 16px;
}
main .home-sondage-section .container .content .bottom {
  width: 100%;
}
main .home-sondage-section .container .content .bottom .sondages-list {
  width: 100%;
  height: auto;
  min-height: 200px;
  background: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #666666;
  font-size: 1.25rem;
}
main .home-sondage-section .container .content .candidature-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  padding: 3rem 2.5rem;
  width: 100%;
  border-radius: 40px;
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
main .home-sondage-section .container .content .candidature-section .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
main .home-sondage-section .container .content .candidature-section .left .candidate-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1.5rem;
  background-color: transparent;
}
main .home-sondage-section .container .content .candidature-section .left .candidate-boxe .candidate-boxe-icon {
  height: 72px;
  width: 72px;
}
main .home-sondage-section .container .content .candidature-section .left .candidate-boxe .candidate-boxe-ctc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
main .home-sondage-section .container .content .candidature-section .left .candidate-boxe .candidate-boxe-ctc .candidate-boxe-title {
  font-family: "Gobold Extra2";
  font-size: 1.875rem;
  line-height: 1.5;
  color: #000000;
}
main .home-sondage-section .container .content .candidature-section .left .candidate-boxe .candidate-boxe-ctc .candidate-boxe-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1;
  color: #000000;
}
main .home-sondage-section .container .content .candidature-section .left .candidate-boxe .candidate-boxe-ctc .candidate-boxe-cta span {
  position: relative;
  display: block;
}
main .home-sondage-section .container .content .candidature-section .right .candidate-img {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  overflow: visible;
}
main .home-sondage-section .container .content .candidature-section .right .candidate-img img {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  will-change: transform;
  /* On s'assure que l'image est nette même pendant l'anim */
  -webkit-font-smoothing: antialiased;
}
main .home-media-section {
  overflow: hidden;
  padding: 1.5rem 0 4rem;
}
main .home-media-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  opacity: 0.2;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(121px);
          filter: blur(121px);
}
main .home-media-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -200px;
  opacity: 0.9;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #F1EAF0;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(110px);
          filter: blur(110px);
}
main .home-media-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
main .home-media-section .container .content .actus-section-title,
main .home-media-section .container .content .partenaires-section-subtitle {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.1;
  color: #A6CD39;
}
main .home-media-section .container .content .actus-section-subtitle,
main .home-media-section .container .content .gallerie-section-subtitle,
main .home-media-section .container .content .publications-section-subtitle,
main .home-media-section .container .content .partenaires-section-title {
  font-family: "Gobold Extra2";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
}
main .home-media-section .container .content .actus-section-subtitle,
main .home-media-section .container .content .gallerie-section-subtitle,
main .home-media-section .container .content .partenaires-section-title {
  color: #712d67;
}
main .home-media-section .container .content .publications-section-subtitle {
  color: #A6CD39;
}
main .home-media-section .container .content .actus-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
main .home-media-section .container .content .actus-section .actus-section-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
main .home-media-section .container .content .actus-section .actus-section-intro p.actus-section-desc {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  width: 75%;
}
main .home-media-section .container .content .actus-section .grid-list {
  border-radius: 24px;
  background: #FFFFFF;
  display: grid;
  grid-template-columns: repeat(3, 1FR);
  gap: 1.5rem;
}
main .home-media-section .container .content .gallerie-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
main .home-media-section .container .content .gallerie-section .gallerie-section-text {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
main .home-media-section .container .content .gallerie-section .gallerie-section-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 15px;
}
main .home-media-section .container .content .gallerie-section .gallerie-section-grid .gallerie-section-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
}
main .home-media-section .container .content .gallerie-section .gallerie-section-grid .gallerie-section-item:last-of-type img {
  cursor: none;
  pointer-events: none;
}
main .home-media-section .container .content .gallerie-section .gallerie-section-grid .gallerie-section-item:last-of-type:hover .album-overlay {
  background: rgba(166, 205, 57, 0.9215686275);
}
main .home-media-section .container .content .gallerie-section .gallerie-section-grid .gallerie-section-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
main .home-media-section .container .content .gallerie-section .gallerie-section-grid .gallerie-section-item:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
main .home-media-section .container .content .gallerie-section .gallerie-section-grid .gallerie-section-item.wide {
  grid-row: 1/span 2;
}
main .home-media-section .container .content .gallerie-section .album-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  inset: 0;
  background: rgba(106, 27, 154, 0.75);
  z-index: 2;
}
main .home-media-section .container .content .gallerie-section .album-overlay span {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
}
main .home-media-section .container .content .gallerie-section .album-overlay span.text {
  color: #FFFFFF;
  font-size: 1.25rem;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  width: 50%;
  text-align: center;
}
main .home-media-section .container .content .gallerie-section .album-overlay span.icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
  color: #712d67;
  background: #FFFFFF;
  border-radius: 50%;
}
main .home-media-section .container .content .publications-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
main .home-media-section .container .content .publications-section .publications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1124px) {
  main .home-media-section .container .content .publications-section .publications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 858px) {
  main .home-media-section .container .content .publications-section .publications-grid {
    grid-template-columns: 1fr;
  }
}
main .home-media-section .container .content .publications-section .publication-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .home-media-section .container .content .publications-section .publication-card .pub-image img {
  width: 100%;
  border-radius: 4px;
  -webkit-box-shadow: 5px 5px 0px #A6CD39;
          box-shadow: 5px 5px 0px #A6CD39;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-date {
  color: #757575;
  font-size: 0.9rem;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-download {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #A6CD39;
  border-radius: 8px;
  padding: 10px 15px;
  color: #A6CD39;
  text-decoration: none;
  font-weight: 600;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-download svg {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-download svg path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  stroke: #FFFFFF;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-download:hover {
  background: #A6CD39;
  color: #FFFFFF;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-download:hover svg path {
  stroke: #FFFFFF;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-view {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #A6CD39;
  border: 1px solid transparent;
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-view svg {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-view svg path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  stroke: #FFFFFF;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-view:hover {
  opacity: 0.8;
  background: #FFFFFF;
  color: #A6CD39;
  border-color: #A6CD39;
}
main .home-media-section .container .content .publications-section .publication-card .pub-content .pub-actions .btn-view:hover svg path {
  stroke: #A6CD39;
}
main .home-media-section .container .content .nl-section {
  background-image: url("../imgs/bg-newsletter.jpg");
  background-color: #6a1b9a;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  padding: 40px 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
main .home-media-section .container .content .nl-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  z-index: 1;
  opacity: 1;
}
main .home-media-section .container .content .nl-section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  z-index: 2;
  width: 100%;
}
main .home-media-section .container .content .nl-section-content .nl-section-subtitle {
  font-family: "Caveat", cursive;
  font-style: italic;
  color: #A6CD39;
  font-size: 40px;
  text-align: center;
}
main .home-media-section .container .content .nl-section-content .nl-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
main .home-media-section .container .content .nl-section-content .nl-section-desc {
  font-size: 1.1rem;
  opacity: 0.9;
}
main .home-media-section .container .content .nl-section-form {
  width: 100%;
  max-width: 600px;
  z-index: 2;
}
main .home-media-section .container .content .nl-section-form .form-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 0.5rem;
  border-radius: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
}
@media (max-width: 576px) {
  main .home-media-section .container .content .nl-section-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
    border: none;
    gap: 15px;
    padding: 0;
  }
}
main .home-media-section .container .content .nl-section-form .form-group .input.nl-mail {
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  padding: 20px 20px;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
}
main .home-media-section .container .content .nl-section-form .form-group .input.nl-mail::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
main .home-media-section .container .content .nl-section-form .form-group .input.nl-mail::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
main .home-media-section .container .content .nl-section-form .form-group .input.nl-mail:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
main .home-media-section .container .content .nl-section-form .form-group .input.nl-mail::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
main .home-media-section .container .content .nl-section-form .form-group .input.nl-mail::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 576px) {
  main .home-media-section .container .content .nl-section-form .form-group .input.nl-mail {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}
main .home-media-section .container .content .nl-section-form .form-group .send-btn {
  width: 150px;
  background-color: #a3cf24;
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  white-space: nowrap;
  position: absolute;
  right: -62px;
}
main .home-media-section .container .content .nl-section-form .form-group .send-btn:hover {
  background-color: #8eb51f;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 576px) {
  main .home-media-section .container .content .nl-section-form .form-group .send-btn {
    width: 100%;
    padding: 15px;
  }
}
main .home-media-section .container .content .partenaires-section {
  background: transparent;
}
main .home-media-section .container .content .partenaires-section .partenaires-section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
}
main .home-media-section .container .content .partenaires-section .partenaires-section-slider {
  padding: 2rem 0;
}
main .partenaires-section-slider .splide__slide {
        cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}
main .home-media-section .container .content .partenaires-section .partenaires-section-slider ul li .partenaire-card {
	display:flex;
	align-items:center;
	justify-content:center;
}

main .home-media-section .container .content .partenaires-section .partenaires-section-slider .splide__slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
main .home-media-section .container .content .partenaires-section .partenaires-section-slider .splide__slide:hover img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
main .home-media-section .container .content .partenaires-section .partenaires-section-slider .splide__arrow {
  background: #A6CD39;
}
main .home-media-section .container .content .partenaires-section .partenaires-section-slider .splide__arrow svg {
  fill: #FFFFFF;
}
main .home-media-section .container .content .partenaires-section .partenaires-section-slider .splide__arrow:hover {
  background: #712d67;
}
main .home-media-section .container .content .partenaires-section .partenaires-section-slider ul {
	align-items:center;
	justify-content:center;
}
.actualites main {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
.actualites main::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(121px);
          filter: blur(121px);
}
.actualites main::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(110px);
          filter: blur(110px);
}
.actualites .actualites-hero-section {
  overflow-x: hidden;
  padding: 3rem 0 6rem;
}
.actualites .actualites-hero-section .actualites-hero-intro .container .content {
  padding-top: 0;
  gap: 3rem;
}
.actualites .actualites-hero-section .actualites-hero-intro .container .content .actualites-section .grid-list {
  border-radius: 24px;
  background: #FFFFFF;
}

.nos-chantiers main {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
.nos-chantiers main::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(121px);
          filter: blur(121px);
}
.nos-chantiers main::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(110px);
          filter: blur(110px);
}
.nos-chantiers .nos-chantiers-section {
  overflow-x: hidden;
  padding: 3rem 0 6rem;
}
.nos-chantiers .nos-chantiers-section .nos-chantiers-intro .container .content {
  padding-top: 0;
  gap: 3rem;
}
.nos-chantiers .nos-chantiers-section .nos-chantiers-intro .container .content .nos-chantiers-section .grid-list {
  border-radius: 24px;
  background: #FFFFFF;
}

.nos-enquetes .nos-enquetes-hero-section::after {
  content: "";
  position: absolute;
  top: 200px;
  right: -200px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(121px);
  filter: blur(121px);
}
.nos-enquetes .nos-enquetes-hero-section {
  padding: 3rem 0 6rem;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publications-grid.enquetes-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1124px) {
  .nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publications-grid.enquetes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 858px) {
  .nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publications-grid.enquetes-grid {
    grid-template-columns: 1fr;
  }
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1rem;
  align-items: start;
  position: relative;
  border-radius: 8px;
  border-radius: 40px;
  -webkit-box-shadow: 1px 1px 2px #A6CD39;
          box-shadow: 1px 1px 2px #A6CD39;
  padding: 40px;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card .publication-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card .publication-image img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-box-shadow: 5px 5px 0px transparent;
          box-shadow: 5px 5px 0px transparent;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card .publication-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  gap: 1.5rem;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card .publication-content h3 {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card .publication-content p {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card .publication-content .btn {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card:hover {
  -webkit-box-shadow: 1px 1px 2px #712d67;
          box-shadow: 1px 1px 2px #712d67;
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card:hover .publication-image img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
.nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card:hover .btn {
  background: #A6CD39;
}
@media (max-width: 858px) {
  .nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    border-radius: 30px;
    padding: 24px;
  }
}
@media (max-width: 586px) {
  .nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card {
    gap: 1rem;
    border-radius: 12px;
    padding: 24px 16px;
  }
  .nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card .publication-content h3 {
    font-size: 1.5rem;
  }
  .nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card .publication-content p {
    font-size: 0.875rem;
  }
  .nos-enquetes .nos-enquetes-hero-section .nos-enquetes-hero-intro .container .publications-section .publication-card .publication-content .btn {
    font-size: 0.75rem;
  }
}

.essc-hero-section .essc-hero-intro .container .content.section-hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
.essc-hero-section .essc-hero-intro .container .content.section-hero-content .essc-hero-subtitle {
  display: block;
  font-family: "Caveat", cursive;
  color: #A6CD39;
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
}
.essc-hero-section .essc-hero-intro .container .content.section-hero-content .essc-hero-title {
  font-family: "Gobold Extra2";
  color: #712d67;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.essc-hero-section .essc-hero-intro .container .content.section-hero-content p {
  margin: 0 auto;
  max-width: 830px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.essc-hero-section .essc-hero-image {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 560px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.essc-hero-section .essc-hero-image img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.essc-hero-section .essc-mv {
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  z-index: 6;
}
.essc-hero-section .essc-mv .white-vector {
  position: absolute;
}
.essc-hero-section .essc-mv .white-vector-left {
  left: 0;
  bottom: 0;
}
.essc-hero-section .essc-mv .white-vector-right {
  right: 0;
  top: 0;
}
.essc-hero-section .essc-mv .container .content .essc-mv-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(500px, 1FR));
  gap: 2.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe .essc-mv-boxe-img img {
  width: 74px;
  height: 90px;
}
.essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe .essc-mv-boxe-title {
  font-family: "Gobold Extra2";
  color: #FFFFFF;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
}
.essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe .essc-mv-boxe-desc {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
}
.essc-hero-section .essc-impact {
  padding: 5rem 0;
}
.essc-hero-section .essc-impact .container .content .essc-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(300px, 1fr));
  grid-template-rows: repeat(3, 120px);
  gap: 15px;
}
.essc-hero-section .essc-impact .container .content .impact-title {
  grid-column: 1/2;
  grid-row: 1/2;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
.essc-hero-section .essc-impact .container .content .impact-title h4 {
  font-size: 40px;
  color: #712d67;
  font-family: "Gobold Extra2";
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.1;
}
.essc-hero-section .essc-impact .container .content .empty-space {
  background: transparent;
}
.essc-hero-section .essc-impact .container .content .stat-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1rem;
  padding: 10px;
  border-radius: 0;
  color: white;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.essc-hero-section .essc-impact .container .content .stat-card img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.essc-hero-section .essc-impact .container .content .stat-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.essc-hero-section .essc-impact .container .content .stat-card:hover .stat-info .stat-number {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.essc-hero-section .essc-impact .container .content .stat-card:hover .stat-info .stat-label {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.essc-hero-section .essc-impact .container .content .stat-card:hover .stat-icon img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.essc-hero-section .essc-impact .container .content .stat-card .stat-info {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0.25rem;
}
.essc-hero-section .essc-impact .container .content .stat-card .stat-info .stat-number {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 32px;
  font-weight: 800;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.essc-hero-section .essc-impact .container .content .stat-card .stat-info .stat-label {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: right;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.essc-hero-section .essc-impact .container .content .stat-card .stat-icon {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.essc-hero-section .essc-impact .container .content .stat-card .stat-icon img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 55px;
  height: 55px;
}
.essc-hero-section .essc-impact .container .content .stat-card {
  /* Couleurs des cartes */
}
.essc-hero-section .essc-impact .container .content .stat-card.purple {
  background: #712d67;
}
.essc-hero-section .essc-impact .container .content .stat-card.green {
  background: #A6CD39;
}
.essc-hero-section .essc-impact .container .content .stat-card.green .stat-info .stat-label {
  color: #000000;
}
.essc-hero-section .essc-impact .container .content .stat-card.light-green {
  background: #2FD67A;
}
.essc-hero-section .essc-impact .container .content .stat-card.light-green .stat-info .stat-label {
  color: #000000;
}

.terrains-section .terrains-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  padding: 4rem 0 3rem;
  width: 100%;
  position: relative;
}
.terrains-section .terrains-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 150px;
  background: #712d67;
  bottom: -120px;
  left: 0;
}
.terrains-section .terrains-title span {
  font-family: "Gobold Extra2";
  font-size: 40px;
  font-weight: 700;
  color: #F1EAF0;
  line-height: 1.5;
  text-transform: uppercase;
}
.terrains-section .terrains-title p {
  text-transform: initial;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.5;
  width: 75%;
  max-width: 850px;
  margin: 0 auto;
}
.terrains-section .container {
  position: relative;
  z-index: 3;
  background-color: #FFFFFF;
  width: calc(100% - 100px);
}
.terrains-section .container .content {
  padding: 5rem 2.5rem;
}
.terrains-section .container .content .terrains-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  -webkit-transform-origin: center;
          transform-origin: center;
  position: absolute;
  width: 4px;
  height: 0%;
  background: #712d67;
  top: 0;
  left: -19px;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content h5 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-size: 1.875rem;
  line-height: 1.5;
  font-weight: 700;
  color: #712d67;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content ul li, .terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content p {
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  width: 40%;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-img img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe:hover::after {
  height: 100%;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe:hover .terrains-boxe-content h5 {
  color: #A6CD39;
}
.terrains-section .container .content .terrains-boxes .terrains-boxe:hover .terrains-boxe-img img {
  -webkit-transform: translateX(-12px) rotate(4deg);
          transform: translateX(-12px) rotate(4deg);
}

.partenaires-section {
  padding: 3rem 0 6rem;
}
.partenaires-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.partenaires-section .container .content .partenaires-section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.partenaires-section .container .content .partenaires-section-content .partenaires-section-subtitle {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.1;
  color: #A6CD39;
}
.partenaires-section .container .content .partenaires-section-content .partenaires-section-title {
  font-family: "Gobold Extra2";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: #712d67;
}
.partenaires-section .container .content .partenaires-grid-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1FR));
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1280px) {
  .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(4, minmax(180px, 1FR));
  }
}
@media (max-width: 858px) {
  .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(3, minmax(180px, 1FR));
  }
}
@media (max-width: 586px) {
  .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(2, minmax(130px, 1FR));
  }
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  justify-content: center;
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  -webkit-transform-origin: center;
          transform-origin: center;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #712d67;
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item:hover::after {
  height: 6px;
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.capsules-citoyennes .capsules-citoyennes-hero-section {
  padding: 3rem 0 6rem;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1124px) {
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 858px) {
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsules-grid {
    grid-template-columns: 1fr;
  }
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 8px;
  -webkit-box-shadow: 5px 5px 0px transparent;
          box-shadow: 5px 5px 0px transparent;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  border: 12px solid #A6CD39;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 5px 5px 0px transparent;
          box-shadow: 5px 5px 0px transparent;
  -o-object-fit: cover;
     object-fit: cover;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image .play-btn {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image .play-btn svg {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image .play-btn svg circle {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image .play-btn svg path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  fill: #FFFFFF;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content {
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-desc {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  color: #712d67;
  font-weight: 700;
  overflow: hidden;
  z-index: 4;
  border-radius: 8px;
  position: relative;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  vertical-align: middle;
  z-index: 1;
  opacity: 1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn span {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  z-index: 4;
  line-height: 1;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn span svg {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn span svg circle {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn span svg path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn span img {
  width: 20px;
  height: 20px;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover::after {
  opacity: 1;
  visibility: visible;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-image {
  border-color: #712d67;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-image img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-image .play-btn svg path {
  fill: #712d67;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-image .play-btn svg circle {
  fill: #FFFFFF;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-content .capsule-title, .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-content .capsule-desc {
  color: #F1EAF0;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-btn {
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-btn::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-btn span {
  color: #FFFFFF;
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-btn span svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-btn span svg path {
  stroke: #FFFFFF;
}

.gv-hero-section .gv-hero-intro .container .content {
  padding: 3rem 0 6rem;
}

.equipe-section {
  padding-top: 1rem;
  padding-bottom: 5rem;
}
.equipe-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}

.sgch-hero-section {
  padding-bottom: 5rem;
}
.sgch-hero-section .container .content {
  max-width: 850px;
  margin: 0 auto;
}
.sgch-hero-section .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.sgch-hero-section .container .content .top .top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.sgch-hero-section .container .content .top .top-right .sgch-hero-nav {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
}
.sgch-hero-section .container .content .top .top-right .sgch-hero-nav span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 4;
}
.sgch-hero-section .container .content .top .top-right .sgch-hero-nav.hero-nav-prev {
  background: #FFFFFF;
  border: 1px solid #712d67;
}
.sgch-hero-section .container .content .top .top-right .sgch-hero-nav.hero-nav-next {
  background: #712d67;
  border: 1px solid #712d67;
}
.sgch-hero-section .container .content .top .top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.sgch-hero-section .sgch-hero-intro .container .content.section-hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
.sgch-hero-section .sgch-hero-intro .container .content.section-hero-content .sgch-hero-subtitle {
  display: block;
  font-family: "Caveat", cursive;
  color: #A6CD39;
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
}
.sgch-hero-section .sgch-hero-intro .container .content.section-hero-content .sgch-hero-title {
  font-family: "Gobold Extra2";
  color: #712d67;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
}
.sgch-hero-section .sgch-hero-intro .container .content.section-hero-content p {
  margin: 0 auto;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 8px;
}
.sgch-hero-section .sgch-hero-image {
  height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
}
.sgch-hero-section .sgch-hero-image.white-bg {
  background: #F1EAF0;
}
.sgch-hero-section .sgch-hero-image.white-bg .vector-icon.vector-icon-right svg path {
  fill: #A6CD39;
}
.sgch-hero-section .sgch-hero-image.white-bg .vector-icon.vector-icon-left svg path {
  fill: #712d67;
}
.sgch-hero-section .sgch-hero-image .vector-icon {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  max-width: 100%;
}
.sgch-hero-section .sgch-hero-image .vector-icon svg, .sgch-hero-section .sgch-hero-image .vector-icon path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.sgch-hero-section .sgch-hero-image .vector-icon svg {
  width: 100%;
  height: 100%;
}
.sgch-hero-section .sgch-hero-image .vector-icon.vector-icon-right {
  right: -5px;
  top: -5px;
}
.sgch-hero-section .sgch-hero-image .vector-icon.vector-icon-left {
  left: -5px;
  bottom: -10px;
}
.sgch-hero-section .sgch-hero-image .sgch-hero-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-content: center;
  max-width: 420px;
  height: 420px;
  width: 100%;
}
.sgch-hero-section .sgch-hero-image .sgch-hero-image-wrapper img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sgch-hero-section .sgch-hero-image .sgch-hero-image-wrapper img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.sgch-hero-section .sgch-hero-image:has(.sgch-hero-image-wrapper:hover) .vector-icon-left svg path {
  fill: #2FD67A;
}
.sgch-hero-section .sgch-hero-image:has(.sgch-hero-image-wrapper:hover) .vector-icon-right svg path {
  fill: #712d67;
}
.sgch-hero-section .sgch-impact {
  padding: 5rem 0;
}
.sgch-hero-section .sgch-impact .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
}
.sgch-hero-section .sgch-impact .container .content .sgch-impact-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 300px));
  grid-template-rows: repeat(2, 100px);
  gap: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sgch-hero-section .sgch-impact .container .content .impact-title {
  grid-column: 1/2;
  grid-row: 1/2;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}
.sgch-hero-section .sgch-impact .container .content .impact-title h3 {
  font-size: 40px;
  color: #712d67;
  font-family: "Gobold Extra2";
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.1;
}
.sgch-hero-section .sgch-impact .container .content .stat-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1rem;
  padding: 10px;
  border-radius: 0;
  color: white;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.sgch-hero-section .sgch-impact .container .content .stat-card img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.sgch-hero-section .sgch-impact .container .content .stat-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.sgch-hero-section .sgch-impact .container .content .stat-card:hover .stat-icon img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sgch-hero-section .sgch-impact .container .content .stat-card .stat-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0.25rem;
}
.sgch-hero-section .sgch-impact .container .content .stat-card .stat-info .stat-number {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 32px;
  font-weight: 800;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.sgch-hero-section .sgch-impact .container .content .stat-card .stat-info .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: right;
}
.sgch-hero-section .sgch-impact .container .content .stat-card .stat-icon {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sgch-hero-section .sgch-impact .container .content .stat-card .stat-icon img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 55px;
  height: 55px;
}
.sgch-hero-section .sgch-impact .container .content .stat-card {
  /* Couleurs des cartes */
}
.sgch-hero-section .sgch-impact .container .content .stat-card.purple {
  background: #712d67;
}
.sgch-hero-section .sgch-impact .container .content .stat-card.green {
  background: #A6CD39;
}
.sgch-hero-section .sgch-impact .container .content .stat-card.green .stat-info .stat-label {
  color: #000000;
}
.sgch-hero-section .sgch-impact .container .content .stat-card.light-green {
  background: #2FD67A;
}
.sgch-hero-section .sgch-impact .container .content .stat-card.light-green .stat-info .stat-label {
  color: #000000;
}
.sgch-hero-section .sgch-goals {
  padding: 5rem 0;
}
.sgch-hero-section .sgch-goals .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  max-width: initial;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-subtitle {
  display: block;
  font-family: "Gobold Extra2";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: #712d67;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list {
  display: grid;
  grid-template-columns: repeat(3, 1FR);
  gap: 1rem;
  justify-items: center;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item {
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  padding: 1rem;
  overflow: hidden;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item span, .sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item p {
  position: relative;
  z-index: 2;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center;
          transform-origin: center;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
  background: #712d67;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item:nth-child(2n) .sgch-goal-number {
  color: #A6CD39;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item .sgch-goal-arrow {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 26px;
  right: 20px;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item .sgch-goal-number {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translate(0);
          transform: translate(0);
  display: block;
  font-family: "Gobold Extra2";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: left;
  color: #712d67;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item .sgch-goal-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #000000;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item .sgch-goal-desc {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #000000;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item:hover .sgch-goal-arrow svg {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(1.5) translateX(10px);
          transform: scale(1.5) translateX(10px);
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item:hover .sgch-goal-arrow svg path {
  stroke: #fff;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item:hover .sgch-goal-number,
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item:hover .sgch-goal-title,
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item:hover .sgch-goal-desc {
  color: #FFFFFF;
}
.sgch-hero-section .sgch-goals .container .content .sgch-goals-list .sgch-goal-item:hover .sgch-goal-number {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
.sgch-hero-section .sgch-video-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.sgch-hero-section .sgch-video-wrapper .sgch-video-title-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sgch-hero-section .sgch-video-wrapper .sgch-video-title-boxe span {
  font-family: "Gobold Extra2";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: #712d67;
}
.sgch-hero-section .sgch-video-wrapper .video-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0 auto;
  max-width: 750px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.sgch-hero-section .sgch-video-wrapper .video-container .splide {
  width: 100%;
  height: 100%;
}
.sgch-hero-section .sgch-video-wrapper .video-container .splide .splide__track {
  width: 100%;
  height: 100%;
}
.sgch-hero-section .sgch-video-wrapper .video-container .splide .splide__track .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sgch-hero-section .sgch-video-wrapper .video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
}
.sgch-hero-section .sgch-video-wrapper video {
  width: 100%;
  display: block;
  cursor: pointer;
}
.sgch-hero-section .sgch-video-wrapper {
  /* Overlay de lecture */
}
.sgch-hero-section .sgch-video-wrapper .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.sgch-hero-section .sgch-video-wrapper .video-wrapper:hover .play-overlay,
.sgch-hero-section .sgch-video-wrapper .video-wrapper.paused .play-overlay {
  opacity: 1;
}
.sgch-hero-section .sgch-video-wrapper .play-btn-overlay {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.sgch-hero-section .sgch-video-wrapper .play-btn-overlay:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sgch-hero-section .sgch-video-wrapper .play-btn-overlay svg {
  width: 35px;
  height: 35px;
  fill: #A6CD39;
  margin-left: 4px;
}
.sgch-hero-section .sgch-video-wrapper .play-btn-overlay.playing svg {
  margin-left: 0;
}
.sgch-hero-section .sgch-video-wrapper {
  /* Contrôles personnalisés */
}
.sgch-hero-section .sgch-video-wrapper .video-controls {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.sgch-hero-section .sgch-video-wrapper {
  /* Barre de progression */
}
.sgch-hero-section .sgch-video-wrapper .progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}
.sgch-hero-section .sgch-video-wrapper .progress-container:hover {
  height: 8px;
}
.sgch-hero-section .sgch-video-wrapper .progress-bar {
  height: 100%;
  background: #667eea;
  border-radius: 3px;
  width: 0%;
  position: relative;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}
.sgch-hero-section .sgch-video-wrapper .progress-bar::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #667eea;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.sgch-hero-section .sgch-video-wrapper .progress-container:hover .progress-bar::after {
  opacity: 1;
}
.sgch-hero-section .sgch-video-wrapper {
  /* Contrôles du bas */
}
.sgch-hero-section .sgch-video-wrapper .controls-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.sgch-hero-section .sgch-video-wrapper .controls-left,
.sgch-hero-section .sgch-video-wrapper .controls-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.sgch-hero-section .sgch-video-wrapper {
  /* Boutons */
}
.sgch-hero-section .sgch-video-wrapper .control-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.sgch-hero-section .sgch-video-wrapper .control-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.sgch-hero-section .sgch-video-wrapper .control-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}
.sgch-hero-section .sgch-video-wrapper {
  /* Temps */
}
.sgch-hero-section .sgch-video-wrapper .time-display {
  color: white;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.sgch-hero-section .sgch-video-wrapper {
  /* Volume */
}
.sgch-hero-section .sgch-video-wrapper .volume-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.sgch-hero-section .sgch-video-wrapper .volume-slider {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.sgch-hero-section .sgch-video-wrapper .volume-bar {
  height: 100%;
  background: white;
  border-radius: 2px;
  width: 100%;
  -webkit-transition: width 0.1s ease;
  transition: width 0.1s ease;
}
.sgch-hero-section .sgch-video-wrapper {
  /* Vitesse de lecture */
}
.sgch-hero-section .sgch-video-wrapper .speed-control {
  position: relative;
}
.sgch-hero-section .sgch-video-wrapper .speed-btn {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.sgch-hero-section .sgch-video-wrapper .speed-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.sgch-hero-section .sgch-video-wrapper .speed-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  padding: 8px 0;
  margin-bottom: 8px;
  display: none;
  min-width: 80px;
}
.sgch-hero-section .sgch-video-wrapper .speed-menu.active {
  display: block;
}
.sgch-hero-section .sgch-video-wrapper .speed-option {
  color: white;
  padding: 6px 16px;
  cursor: pointer;
  font-size: 13px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.sgch-hero-section .sgch-video-wrapper .speed-option:hover {
  background: rgba(255, 255, 255, 0.1);
}
.sgch-hero-section .sgch-video-wrapper .speed-option.selected {
  color: #667eea;
  font-weight: 600;
}
.sgch-hero-section .sgch-video-wrapper {
  /* Responsive */
}
@media (max-width: 640px) {
  .sgch-hero-section .sgch-video-wrapper .video-controls {
    padding: 15px 15px 12px;
  }
  .sgch-hero-section .sgch-video-wrapper .controls-bottom {
    gap: 10px;
  }
  .sgch-hero-section .sgch-video-wrapper .controls-left,
  .sgch-hero-section .sgch-video-wrapper .controls-right {
    gap: 10px;
  }
  .sgch-hero-section .sgch-video-wrapper .control-btn svg {
    width: 20px;
    height: 20px;
  }
  .sgch-hero-section .sgch-video-wrapper .time-display {
    font-size: 12px;
  }
  .sgch-hero-section .sgch-video-wrapper .volume-slider {
    width: 60px;
  }
  .sgch-hero-section .sgch-video-wrapper .play-btn-overlay {
    width: 60px;
    height: 60px;
  }
  .sgch-hero-section .sgch-video-wrapper .play-btn-overlay svg {
    width: 28px;
    height: 28px;
  }
}

.partenaires-section {
  background: #F1EAF0;
  padding: 3rem 0 6rem;
}
.partenaires-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.partenaires-section .container .content .partenaires-section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.partenaires-section .container .content .partenaires-section-content .partenaires-section-subtitle {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.1;
  color: #A6CD39;
}
.partenaires-section .container .content .partenaires-section-content .partenaires-section-title {
  font-family: "Gobold Extra2";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: #712d67;
}
.partenaires-section .container .content .partenaires-grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 250px));
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1280px) {
  .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1FR));
  }
}
@media (max-width: 858px) {
  .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1FR));
  }
}
@media (max-width: 586px) {
  .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1FR));
  }
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  justify-content: center;
  background: #FFFFFF;
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  -webkit-transform-origin: center;
          transform-origin: center;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #712d67;
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item:hover::after {
  height: 6px;
}
.partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.sgch-gallerie-section {
  padding: 5rem 0;
}
.sgch-gallerie-section .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.sgch-gallerie-section .container .content .gallerie-section-title {
  font-family: "Gobold Extra2";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: #712d67;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .main-slider .splide__arrow {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #FFFFFF;
  font-size: 16px;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .main-slider .splide__track .splide__list .splide__slide {
  border-radius: 16px;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem auto 0;
  gap: 0.5rem;
  padding: 0 0 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #712d67 transparent;
  max-width: 100%;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnails::-webkit-scrollbar {
  height: 4px;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnails::-webkit-scrollbar-track {
  background: transparent;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnails::-webkit-scrollbar-thumb {
  background-color: #712d67;
  border-radius: 2px;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  height: 64px;
  overflow: hidden;
  list-style: none;
  opacity: 0.5;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnail:hover {
  opacity: 0.8;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnail img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnail.is-active {
  opacity: 1;
  border-color: #712d67;
}

.chantier-green .sgch-hero-section .sgch-hero-image {
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
}

.chantier-purple .sgch-hero-section .sgch-hero-image {
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
}
.chantier-purple .sgch-hero-section .sgch-hero-image:has(.sgch-hero-image-wrapper:hover) .vector-icon-left svg path {
  fill: #2FD67A;
}
.chantier-purple .sgch-hero-section .sgch-hero-image:has(.sgch-hero-image-wrapper:hover) .vector-icon-right svg path {
  fill: #A6CD39;
}

.chantier-white .sgch-hero-section .sgch-hero-image {
  background: #F1EAF0;
}

.single-actualite main {
  position: relative;
  overflow: hidden;
}
.single-actualite .single-actu-section .single-actu-intro .single-actu-title {
  margin-bottom: 12px;
}
.single-actualite .single-actu-section .single-actu-intro p {
  margin-bottom: 0;
}
.single-actualite .single-actu-section .single-actu-intro ul {
  padding-left: 20px;
}
.single-actualite .single-actu-section .single-actu-intro h3 {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: left;
}
.single-actualite .single-actu-section .single-actu-intro h4 {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 500;
  text-align: left;
}
.single-actualite .single-actu-section .single-actu-intro h5 {
  display: block;
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-size: 1.125rem;
  line-height: 1.1;
  font-weight: 500;
  text-align: left;
}
.single-actualite .single-actu-section .single-actu-intro ul li {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
}
.single-actualite .single-actu-section .single-actu-intro ul li::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  top: 50%;
  border-radius: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #712d67;
}
.single-actualite .single-actu-section.single-actu-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(121px);
          filter: blur(121px);
}
.single-actualite .single-actu-section.single-actu-top .single-actu-intro {
  z-index: 4;
}
.single-actualite .single-actu-section.single-actu-top .single-actu-intro .container .content {
  max-width: 930px;
  margin: 0 auto;
  padding: 5rem 0;
}
.single-actualite .single-actu-section.single-actu-top .single-actu-intro .container .content p {
  max-width: initial;
}
.single-actualite .single-actu-section.single-actu-bottom::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0px;
  opacity: 0.13;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(110px);
          filter: blur(110px);
}

.regards-idees .regards-idees-hero-section {
  padding: 3rem 0 6rem;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1124px) {
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 858px) {
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publications-grid {
    grid-template-columns: 1fr;
  }
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 8px;
  -webkit-box-shadow: 5px 5px 0px transparent;
          box-shadow: 5px 5px 0px transparent;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 100%;
  height: 80%;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-image img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-box-shadow: 5px 5px 0px transparent;
          box-shadow: 5px 5px 0px transparent;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  gap: 0.5rem;
  position: absolute;
  bottom: 26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #FFFFFF;
  border: none;
  color: #712d67;
  font-weight: 700;
  overflow: hidden;
  z-index: 8;
  border-radius: 8px;
  cursor: pointer;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn span {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  z-index: 4;
  line-height: 1;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn span svg {
  z-index: 4;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn span svg path {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn span img {
  width: 20px;
  height: 20px;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.visualiser::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  vertical-align: middle;
  z-index: -1;
  opacity: 1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.visualiser svg path {
  stroke: #712d67;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.visualiser:hover {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.visualiser:hover span {
  color: #FFFFFF;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.visualiser:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.visualiser:hover svg path {
  stroke: #FFFFFF;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.download::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  vertical-align: middle;
  z-index: -1;
  opacity: 1;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.download svg path {
  stroke: #712d67;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.download:hover svg path {
  stroke: #FFFFFF;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card:hover::after {
  right: -15px;
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card:hover .publication-image img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card:hover .publication-btn svg {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card:hover .publication-btn.visualiser::after {
  background: -webkit-gradient(linear, left top, right top, from(#A6CD39), to(#7EDB9D));
  background: linear-gradient(90deg, #A6CD39, #7EDB9D);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card:hover .publication-btn.visualiser svg path {
  stroke: #712d67;
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card:hover .publication-btn.download::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card:hover .publication-btn.download svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card:hover .publication-btn.download svg path {
  stroke: #FFFFFF;
}

.tribune-libre .tribune-libre-hero-section {
  padding: 3rem 0 6rem;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-width: 830px;
  margin: 0 auto;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .form-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #712d67;
  margin-bottom: 1.5rem;
  padding-bottom: 0.25rem;
  position: relative;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .form-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: #A6CD39;
  border-radius: 2px;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .form-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #A6CD39;
  opacity: 0.13;
  border-radius: 2px;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form {
  width: 100%;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-label span {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select option {
  color: #280222;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:focus {
  background: #FFFFFF;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:disabled {
  background: #EAEAEA;
  color: rgba(40, 2, 34, 0.4);
  cursor: not-allowed;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: none;
          transform: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input {
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #F3F3F3;
  padding: 12px 1rem;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #280222;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select::-webkit-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea::-webkit-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input::-webkit-input-placeholder {
  color: rgba(40, 2, 34, 0.5);
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select::-moz-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea::-moz-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input::-moz-placeholder {
  color: rgba(40, 2, 34, 0.5);
  -moz-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:-ms-input-placeholder {
  color: rgba(40, 2, 34, 0.5);
  -ms-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select::-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea::-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input::-ms-input-placeholder {
  color: rgba(40, 2, 34, 0.5);
  -ms-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select::placeholder,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea::placeholder,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input::placeholder {
  color: rgba(40, 2, 34, 0.5);
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:focus, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:active,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:active,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:focus,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:active {
  outline: none;
  background: #FFFFFF;
  border-color: #712d67;
  -webkit-box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
          box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:focus::-webkit-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:active::-webkit-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus::-webkit-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:active::-webkit-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:focus::-webkit-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:active::-webkit-input-placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:focus::-moz-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:active::-moz-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus::-moz-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:active::-moz-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:focus::-moz-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:active::-moz-placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:focus:-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:active:-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus:-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:active:-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:focus:-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:active:-ms-input-placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:focus::-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:active::-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus::-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:active::-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:focus::-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:active::-ms-input-placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:focus::placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:active::placeholder,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus::placeholder,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:active::placeholder,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:focus::placeholder,
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:active::placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus {
  border-color: #A6CD39;
  -webkit-box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
          box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group .btn {
  border-color: #712d67;
  cursor: pointer;
  z-index: 4;
  position: relative;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group .btn span {
  z-index: 4;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group .btn::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  background-color: #A6CD39;
  position: absolute;
  right: 0;
  top: 0;
  width: 200%;
  height: 0%;
  border-radius: 8px;
}
.tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group .btn:hover::after {
  height: 100%;
}

.dvn-parten .dvn-parten-hero-section {
  padding: 3rem 0 6rem;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-width: 830px;
  margin: 0 auto;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .form-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #712d67;
  margin-bottom: 1.5rem;
  padding-bottom: 0.25rem;
  position: relative;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .form-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: #A6CD39;
  border-radius: 2px;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .form-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #A6CD39;
  opacity: 0.13;
  border-radius: 2px;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form {
  width: 100%;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-section.motiv .form-duo-boxe .form-group {
  gap: 1.5rem;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-error {
  margin-top: 6px;
  font-size: 12px;
  color: #ff5a65;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group.has-error input, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group.has-error textarea, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group.has-error select {
  border-color: #ff5a65;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-label span {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Montserrat", sans-serif;
  color: #712d67;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input.is-error,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea.is-error,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select.is-error {
  border-color: #C0392B;
  -webkit-box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
          box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input.is-valid,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea.is-valid,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select.is-valid {
  border-color: #A6CD39;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select option {
  color: #280222;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:focus {
  background: #FFFFFF;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:disabled {
  background: #EAEAEA;
  color: rgba(40, 2, 34, 0.4);
  cursor: not-allowed;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: none;
          transform: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input {
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #F3F3F3;
  padding: 12px 1rem;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #280222;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select::-webkit-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea::-webkit-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input::-webkit-input-placeholder {
  color: rgba(40, 2, 34, 0.5);
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select::-moz-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea::-moz-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input::-moz-placeholder {
  color: rgba(40, 2, 34, 0.5);
  -moz-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:-ms-input-placeholder {
  color: rgba(40, 2, 34, 0.5);
  -ms-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select::-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea::-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input::-ms-input-placeholder {
  color: rgba(40, 2, 34, 0.5);
  -ms-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select::placeholder,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea::placeholder,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input::placeholder {
  color: rgba(40, 2, 34, 0.5);
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:focus, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:active,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:active,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:focus,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:active {
  outline: none;
  background: #FFFFFF;
  border-color: #712d67;
  -webkit-box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
          box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:focus::-webkit-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:active::-webkit-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus::-webkit-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:active::-webkit-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:focus::-webkit-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:active::-webkit-input-placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:focus::-moz-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:active::-moz-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus::-moz-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:active::-moz-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:focus::-moz-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:active::-moz-placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:focus:-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:active:-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus:-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:active:-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:focus:-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:active:-ms-input-placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:focus::-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:active::-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus::-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:active::-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:focus::-ms-input-placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:active::-ms-input-placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:focus::placeholder, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field select:active::placeholder,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus::placeholder,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:active::placeholder,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:focus::placeholder,
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field input:active::placeholder {
  color: rgba(40, 2, 34, 0.3);
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus {
  border-color: #A6CD39;
  -webkit-box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
          box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group {
  display: grid;
  grid-template-columns: repeat(4, 1FR);
  gap: 1rem;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group label {
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  border: 1px solid #A6CD39;
  background-color: transparent;
  border-radius: 24px;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group label input {
  width: 16px;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group label span {
  display: inline-block;
  font-size: 12px;
  line-height: 1.1;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group.limit-reached label {
  opacity: 0.6;
  pointer-events: none;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group.limit-reached input:not(:checked) + span {
  cursor: not-allowed;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group label {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 999px;
  background: #F3F3F3;
  border: 1px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group label input {
  display: none;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group label:hover {
  background: #fff;
  border-color: #712d67;
}
input:checked + .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group label, .dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe .form-group .form-field .checkbox-group label:has(input:checked) {
  background: #712d67;
  color: #fff;
  border-color: #712d67;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe.send .form-group {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe.send .form-group .btn {
  border-color: transparent;
  cursor: pointer;
  z-index: 4;
  position: relative;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe.send .form-group .btn span {
  z-index: 4;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe.send .form-group .btn::after {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  background-color: #A6CD39;
  position: absolute;
  right: 0;
  top: 0;
  width: 200%;
  height: 0%;
  border-radius: 8px;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe.send .form-group .btn:hover {
  color: #EDF5D7;
}
.dvn-parten .dvn-parten-hero-section .dvn-parten-hero-intro .container .dvn-parten-form-section .dvn-parten-form .form-tag .form-duo-boxe.send .form-group .btn:hover::after {
  height: 100%;
}

.ambassadeurs-mentors .ambassadeurs-mentors-hero-section {
  overflow: hidden;
  padding: 2rem 0 6rem;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content {
  gap: 4rem;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .btn {
  -ms-flex-item-align: center;
      align-self: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .subsec-hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .subsec-hero-content p {
  text-align: center;
  margin-bottom: 0;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .subsec-hero-content.ambassadeur-section .btn {
  border: 1px solid #712d67;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .subsec-hero-content.ambassadeur-section .btn:hover {
  background: transparent;
  color: #712d67;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .subsec-hero-content.ambassadeur-section .btn:hover svg path {
  stroke: #712d67;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .subsec-hero-content.mentor-section .mentor-hero-title {
  color: #A6CD39;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .subsec-hero-content.mentor-section .btn {
  background: #A6CD39;
  border: 1px solid #A6CD39;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .subsec-hero-content.mentor-section .btn:hover {
  background: transparent;
  color: #A6CD39;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .subsec-hero-content.mentor-section .btn:hover svg path {
  stroke: #A6CD39;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .bg-wrapper {
  height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content .bg-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200px;
  opacity: 0.53;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #F1EAF0;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(121px);
          filter: blur(121px);
}
.ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -200px;
  opacity: 0.23;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(110px);
          filter: blur(110px);
}

.mediatheques main {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}
.mediatheques main::after {
  content: "";
  position: absolute;
  top: 300px;
  right: -160px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background-color: #A6CD39;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(121px);
          filter: blur(121px);
}
.mediatheques main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  opacity: 0.3;
  display: inline-block;
  width: 609px;
  height: 643px;
  margin-left: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  vertical-align: middle;
  z-index: 1;
  -webkit-filter: blur(110px);
          filter: blur(110px);
}
.mediatheques .mediatheques-hero-section {
  overflow-x: hidden;
  padding: 3rem 0 6rem;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content {
  padding-top: 0;
  gap: 3rem;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1124px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .mediatheques-hero-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  position: relative;
  font-size: 1.875rem;
  text-align: left;
  -webkit-box-flex: 45%;
      -ms-flex: 45%;
          flex: 45%;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .mediatheques-hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  opacity: 1;
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #A6CD39;
  border-radius: 4px;
  vertical-align: middle;
  z-index: 1;
}
@media (max-width: 858px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .mediatheques-hero-title {
    width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    font-size: 1.5rem;
  }
}
@media (max-width: 586px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .mediatheques-hero-title {
    width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    font-size: 1.25rem;
  }
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list {
  display: grid;
  grid-template-columns: repeat(4, 1FR);
  gap: 1rem;
  -webkit-box-flex: 55%;
      -ms-flex: 55%;
          flex: 55%;
  grid-template-rows: 60px;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list .filter-categ-item {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  border: 1px solid #DCDCDC;
  background-color: transparent;
  border-radius: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list .filter-categ-item::before {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  opacity: 1;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#712d67), to(#712d67));
  background: linear-gradient(90deg, #712d67, #712d67);
  vertical-align: middle;
  z-index: 1;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list .filter-categ-item span {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #712d67;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 4;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.1;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list .filter-categ-item.active span, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list .filter-categ-item:hover span {
  color: #FFF;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list .filter-categ-item.active::before, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list .filter-categ-item:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 1124px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list {
    width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}
@media (max-width: 858px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list {
    grid-template-columns: repeat(3, 1FR);
    grid-template-rows: initial;
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list .filter-categ-item {
    padding: 8px;
  }
}
@media (max-width: 586px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list {
    grid-template-columns: repeat(2, 1FR);
  }
}
@media (max-width: 480px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list {
    grid-template-columns: repeat(2, 1FR);
  }
}
@media (max-width: 370px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .top .filter-categ-list {
    grid-template-columns: repeat(1, 1FR);
  }
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  grid-auto-rows: 200px;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.14s ease;
  transition: all 0.14s ease;
}
html.js .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list {
  opacity: 0;
}
html.js .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list.is-ready {
  opacity: 1;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background-color: #DCDCDC;
  overflow: hidden;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.hidden {
  display: none !important;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-1 {
  grid-column: span 8;
  grid-row: span 2;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-2, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-3 {
  grid-column: span 4;
  grid-row: span 1;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-4, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-5, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-6, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-7, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-8, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-9, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-13, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-14, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-15 {
  grid-column: span 3;
  grid-row: span 1;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-10 {
  grid-column: span 6;
  grid-row: span 2;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-11 {
  grid-column: span 6;
  grid-row: span 1;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-12 {
  grid-column: span 3;
  grid-row: span 1;
}
@media (max-width: 1124px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list {
    grid-template-columns: repeat(6, 1fr);
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-1 {
    grid-column: span 6;
    grid-row: span 2;
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-2, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-3 {
    grid-column: span 3;
    grid-row: span 1;
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-4, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-5, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-6, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-7, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-8, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-9, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-12, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-13, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-14, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-15 {
    grid-column: span 2;
    grid-row: span 1;
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-10, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-11 {
    grid-column: span 3;
    grid-row: span 1;
  }
}
@media (max-width: 858px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-1 {
    grid-column: span 4;
    grid-row: span 2;
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-2, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-3, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-10, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-11 {
    grid-column: span 2;
    grid-row: span 1;
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-4, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-5, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-6, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-7, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-8, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-9, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-12, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-13, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-14, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-15 {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 586px) {
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 250px;
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-1 {
    grid-column: initial;
    grid-row: initial;
  }
  .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-2, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-3, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-4, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-5, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-6, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-7, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-8, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-9, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-10, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-11, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-12, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-13, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-14, .mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .mediatheque-item.layout-15 {
    grid-column: initial;
    grid-row: initial;
  }
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: var(--spacing-3xl);
  font-size: var(--font-size-lg);
  color: #999;
  display: none;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-list .no-results.show {
  display: block;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-pagination .btn-nav {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-pagination .btn-nav span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-pagination .btn-nav--prev {
  background: #FFFFFF;
  border: 1px solid #712d67;
}
.mediatheques .mediatheques-hero-section .mediatheques-hero-intro .container .content .bottom .mediatheques-pagination .btn-nav--next {
  background: #712d67;
  border: 1px solid #712d67;
}

.not-found-section .not-found-intro .container .content.section-hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0 2.5rem;
}
.not-found-section .not-found-intro .container .content.section-hero-content .not-found-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  cursor: pointer;
  -webkit-transition: opacity 0.16s ease, -webkit-transform 0.06s ease;
  transition: opacity 0.16s ease, -webkit-transform 0.06s ease;
  transition: opacity 0.16s ease, transform 0.06s ease;
  transition: opacity 0.16s ease, transform 0.06s ease, -webkit-transform 0.06s ease;
}
.not-found-section .not-found-intro .container .content.section-hero-content .not-found-img.fade-in {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 586px) {
  .not-found-section .not-found-intro .container .content.section-hero-content .not-found-img svg {
    width: 240px;
  }
}
@media (max-width: 370px) {
  .not-found-section .not-found-intro .container .content.section-hero-content .not-found-img svg {
    width: 220px;
  }
}
.not-found-section .not-found-intro .container .content.section-hero-content .not-found-subtitle {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: block;
  font-family: "Caveat", cursive;
  color: #A6CD39;
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
}
.not-found-section .not-found-intro .container .content.section-hero-content .not-found-title {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Gobold Extra2";
  color: #712d67;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}
.not-found-section .not-found-intro .container .content.section-hero-content .not-found-desc p {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 auto;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
}

/* ===== LG and below ===== */
@media (max-width: 1124px) {
  .top-banner-title h1 {
    padding-left: 0;
    line-height: 1.5;
    text-align: center;
    background: #F6EDF4;
    padding: 8px 12px;
    width: 100%;
    font-size: 1.25rem;
  }
  footer .container {
    width: calc(100% - 80px);
  }
  footer .container .footer-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
/* ===== MD and below ===== */
@media (max-width: 858px) {
  .container {
    width: calc(100% - 42px);
  }
  main {
    padding-top: 90px;
    padding-bottom: 80px;
  }
  .section .container .section-hero-content {
    padding: 2rem 0;
    gap: 1.5rem;
  }
  .section .container .section-hero-content .section-hero-subtitle {
    font-size: 1.5rem;
  }
  .section .container .section-hero-content .section-hero-title {
    font-size: 1.875rem;
  }
  .section .container .section-hero-content ul li,
  .section .container .section-hero-content p {
    width: 100%;
    font-size: 0.875rem;
    text-align: left;
  }
  .top-banner {
    padding: 2rem 0;
  }
  .top-banner .top-banner-title h1 {
    font-size: 1.5rem;
    word-wrap: break-word;
  }
  .top-banner .top-shape-right img {
    width: 360px;
    max-width: 360px;
  }
  .top-banner .top-shape-left img {
    width: 180px;
    max-width: 180px;
  }
  .top-banner-bg {
    height: 320px;
  }
  footer .footer-shape {
    display: none;
  }
  footer .container {
    padding: 2rem 0;
  }
  footer .container .content .footer-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  footer .container .content .footer-boxes .footer-boxe .footer-logo img {
    width: 140px;
  }
}
/* ===== SM and below ===== */
@media (max-width: 586px) {
  main {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .section .container .section-hero-content {
    padding: 1.5rem 0;
  }
  .section .container .section-hero-content .section-hero-subtitle {
    font-size: 1.25rem;
  }
  .section .container .section-hero-content .section-hero-title {
    font-size: 1.5rem;
  }
  .section .container .section-hero-content p {
    width: 100%;
    font-size: 0.875rem;
  }
  .top-banner {
    padding: 1.5rem 0;
  }
  .top-banner .top-shape {
    width: 100%;
  }
  .top-banner .top-shape-right img {
    width: 100%;
    max-width: 100%;
  }
  .top-banner .top-shape-left img {
    display: none;
  }
  .top-banner-bg {
    height: 250px;
  }
  footer .container {
    padding: 1.5rem 0;
  }
  footer .container .content .footer-boxes {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  footer .container .content .footer-boxes .footer-boxe h6 {
    font-size: 0.875rem;
  }
  footer .container .content .footer-boxes .footer-boxe .footer-menu-list ul li a {
    font-size: 0.875rem;
  }
  footer .container .content .footer-boxes .footer-boxe .footer-address a,
  footer .container .content .footer-boxes .footer-boxe .footer-boxe-ctc a {
    font-size: 0.875rem;
  }
  footer .container .content .footer-boxes .footer-boxe .footer-rs-links ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer .container .content .footer-boxes .footer-boxe .footer-rapports-boxes .footer-rapport-box .footer-rapport-info {
    gap: 0.25rem;
  }
}
/* ===== XS ===== */
@media (max-width: 480px) {
  .top-banner-bg {
    height: 195px;
  }
  .section .container .section-hero-content {
    gap: 1rem;
  }
  .section .container .section-hero-content .section-hero-subtitle {
    font-size: 1.125rem;
  }
  .section .container .section-hero-content .section-hero-title {
    font-size: 1.25rem;
  }
  .tooltip {
    font-size: 12px;
    padding: 6px 12px;
  }
  footer .content .footer-boxes .footer-boxe {
    gap: 0.5rem;
  }
  footer .content .footer-boxes .footer-boxe .btn-ctas ul li a {
    padding: 16px;
  }
  footer .content .footer-boxes .footer-boxe .footer-logo img {
    width: 120px;
  }
}
/* ===== Small Mobile and below ===== */
/* ===== LG and below ===== */
@media (max-width: 1124px) {
  main .home-hero-section {
    padding-top: 60px;
  }
  main .home-hero-section .container .content .home-hero-boxe .home-hero-title {
    font-size: 1.875rem;
  }
  main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  main .home-intro-section .container .content .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .home-intro-section .container .content .bottom .our-values-list {
    grid-template-columns: repeat(2, 1fr);
  }
  main .home-projects-section .container {
    width: calc(100% - 40px);
  }
  main .home-projects-section .container .content .home-projects-slider .tab-content .tab-content-boxe {
    grid-template-columns: 1fr;
  }
  main .home-media-section .container .content .actus-section .grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
  main .home-media-section .container .content .gallerie-section .gallerie-section-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
/* ===== MD and below ===== */
@media (max-width: 858px) {
  main .home-hero-section {
    padding-top: 50px;
  }
  main .home-hero-section .container .content .home-hero-boxe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
  main .home-hero-section .container .content .home-hero-boxe .home-hero-title,
  main .home-hero-section .container .content .home-hero-boxe .home-hero-cta {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main .home-hero-section .container .content .home-hero-keys {
    padding: 2rem 0;
  }
  main .home-intro-section {
    padding-bottom: 80px;
  }
  main .home-intro-section .container .content {
    gap: 1.5rem;
  }
  main .home-intro-section .container .content .top {
    gap: 2rem;
  }
  main .home-intro-section .container .content .top .right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  main .home-intro-section .container .content .top .right .home-intro-subtitle {
    font-size: 1.5rem;
  }
  main .home-intro-section .container .content .top .right .home-intro-title {
    font-size: 2rem;
  }
  main .home-intro-section .container .content .top .right .home-intro-text {
    max-width: 100%;
    font-size: 1.125rem;
  }
  main .home-intro-section .container .content .bottom .our-values-list {
    grid-template-columns: 1fr;
  }
  main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item {
    gap: 1rem;
    overflow: hidden;
  }
  main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item .our-values-title {
    gap: 1rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 858px) and (max-width: 370px) {
  main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item .our-values-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 858px) {
  main .home-intro-section .container .content .bottom .our-values-list .our-values-list-item .our-values-text {
    line-height: 1.5;
  }
  main .home-projects-section .container .content .home-projects-slider .tab-content-wrapper {
    margin-top: 0;
  }
  main .home-sondage-section {
    padding: 80px 0;
  }
  main .home-sondage-section .container .content .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  main .home-sondage-section .container .content .top .right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main .home-sondage-section .container .content .candidature-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.5rem 1.5rem;
  }
  main .home-sondage-section .container .content .candidature-section .left {
    width: 100%;
    gap: 1.5rem;
  }
  main .home-sondage-section .container .content .candidature-section .left .candidate-boxe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main .home-sondage-section .container .content .candidature-section .left .candidate-boxe .candidate-boxe-ctc {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main .home-sondage-section .container .content .candidature-section .left .candidate-boxe .candidate-boxe-ctc a {
    -ms-flex-item-align: center;
        align-self: center;
  }
  main .home-sondage-section .container .content .candidature-section .left .candidate-boxe .candidate-boxe-ctc p,
  main .home-sondage-section .container .content .candidature-section .left .candidate-boxe .candidate-boxe-ctc .candidate-boxe-title {
    text-align: center;
  }
  main .home-sondage-section .container .content .candidature-section .right .candidate-img img {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  main .home-media-section .container .content .actus-section .actus-section-intro p.actus-section-desc {
    width: 100%;
    font-size: 0.875rem;
  }
  main .home-media-section .container .content .actus-section .grid-list {
    grid-template-columns: 1fr;
  }
  main .home-media-section .container .content .actus-section .grid-list .grid-list-item .grid-list-item-info .grid-list-item-title {
    font-size: 1.25rem;
  }
  main .home-media-section .container .content .actus-section .grid-list .grid-list-item .grid-list-item-info .grid-list-item-desc p {
    font-size: 16px;
  }
  main .home-media-section .container .content .gallerie-section .gallerie-section-grid {
    grid-template-columns: 1fr;
  }
  main .home-media-section .container .content .nl-section .nl-section-form {
    max-width: 100%;
  }
  main .home-media-section .container .content .nl-section .nl-section-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .home-media-section .container .content .nl-section .nl-section-form .form-group .send-btn {
    position: relative;
    right: initial;
  }
}
/* ===== SM and below ===== */
@media (max-width: 586px) {
  main .home-hero-section {
    padding-top: 80px;
  }
  main .home-hero-section .container .content .home-hero-boxe .home-hero-title {
    font-size: 1.5rem;
  }
  main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list .home-hero-key-item .home-hero-key-value {
    font-size: 1.875rem;
  }
  main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list .home-hero-key-item .home-hero-key-value::after {
    top: -16px;
    right: initial;
    left: 0;
  }
  main .home-hero-section .container .content .home-hero-keys .home-hero-keys-list .home-hero-key-item .home-hero-key-label {
    z-index: 5;
    font-size: 1.25rem;
  }
  main .home-projects-section .home-projects-title span {
    font-size: 1.5rem;
  }
  main .home-projects-section .container .content .home-projects-slider .splide__arrow {
    display: none;
  }
  main .home-projects-section .container .content .home-projects-slider .tab-content {
    padding: 16px;
  }
  main .home-media-section {
    padding-bottom: 3rem;
  }
  main .home-media-section .container .content {
    gap: 24px;
  }
  main .home-media-section .container .content .actus-section-title,
  main .home-media-section .container .content .partenaires-section-subtitle {
    font-size: 1.875rem;
  }
  main .home-media-section .container .content .actus-section-subtitle,
  main .home-media-section .container .content .gallerie-section-subtitle,
  main .home-media-section .container .content .partenaires-section-title,
  main .home-media-section .container .content .publications-section-subtitle {
    font-size: 1.5rem;
  }
  main .home-media-section .container .content .partenaires-section {
    padding: 1rem 0;
  }
  main .home-sondage-section {
    padding: 40px 0;
  }
  main .nl-section {
    border-radius: 24px;
  }
  main .nl-section .nl-section-form {
    max-width: 100%;
  }
  main .nl-section .nl-section-form .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main .nl-section .nl-section-form .form-group .send-btn {
    position: relative;
    right: initial;
  }
}
/* ===== XS ===== */
@media (max-width: 480px) {
  main .home-hero-section .container .content .home-hero-boxe .home-hero-title {
    font-size: 1.25rem;
  }
  main .home-hero-section .container .content .home-hero-boxe .home-hero-cta .btn {
    padding: 1rem 2rem;
  }
  main .home-intro-section .container .content .right .home-intro-title {
    font-size: 1.5rem;
  }
  main .home-intro-section .container .content .right .home-intro-subtitle {
    font-size: 1.25rem;
  }
  main .home-sondage-section .container .content .top .left .sondage-section-text {
    font-size: 1.5rem;
  }
  main .home-media-section .container .content .publications-section .publications-grid .publication-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  main .home-media-section .container .content .publications-section .publications-grid .publication-card .pub-image {
    max-width: 200px;
    margin: 0 auto;
  }
  main .home-media-section .container .content .publications-section .publications-grid .publication-card .pub-content .pub-title {
    font-size: 1.125rem;
  }
  main .home-media-section .container .content .publications-section .publications-grid .publication-card .pub-content .pub-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .close-btn {
    font-size: 32px;
    right: 20px;
  }
}
/* ---------- XL ---------- */
@media (max-width: 1280px) {
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content {
    padding: 1.5rem 0;
    gap: 1rem;
  }
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content .essc-hero-subtitle {
    font-size: 1.5rem;
  }
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content .essc-hero-title {
    font-size: 1.875rem;
  }
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content p {
    width: 70%;
  }
  .notre-essence .essc-hero-section .essc-hero-image {
    height: 480px;
  }
  .notre-essence .essc-hero-section .essc-mv {
    padding: 2rem 0;
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes {
    grid-template-columns: repeat(2, minmax(350px, 500px));
    gap: 2rem;
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe {
    gap: 1rem;
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe .essc-mv-boxe-title {
    font-size: 1.875rem;
  }
  .notre-essence .essc-hero-section .essc-impact {
    padding: 4rem 0;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .essc-impact-grid {
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    grid-template-rows: repeat(3, 120px);
    gap: 12px;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .impact-title h4 {
    font-size: 1.875rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-info .stat-number {
    font-size: 1.5rem;
  }
  .notre-essence .terrains-section .terrains-title {
    padding: 3rem 0 2.5rem;
  }
  .notre-essence .terrains-section .terrains-title span {
    font-size: 1.875rem;
  }
  .notre-essence .terrains-section .terrains-title p {
    width: 80%;
  }
  .notre-essence .terrains-section .container {
    width: calc(100% - 80px);
  }
  .notre-essence .terrains-section .container .content {
    padding: 4rem 2rem;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes {
    gap: 2.5rem;
  }
  .notre-essence .partenaires-section {
    padding: 2.5rem 0 5rem;
  }
  .notre-essence .partenaires-section .container .content .partenaires-section-content .partenaires-section-subtitle,
  .notre-essence .partenaires-section .container .content .partenaires-section-content .partenaires-section-title {
    font-size: 1.875rem;
  }
  .notre-essence .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
}
/* ---------- LG ---------- */
@media (max-width: 1124px) {
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content {
    padding: 1.5rem 0;
  }
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content p {
    width: 80%;
    font-size: 0.875rem;
  }
  .notre-essence .essc-hero-section .essc-hero-image {
    height: 400px;
  }
  .notre-essence .essc-hero-section .essc-mv .white-vector {
    max-width: 140px;
  }
  .notre-essence .essc-hero-section .essc-mv .white-vector-left {
    left: -10px;
    top: -10px;
    -webkit-transform: rotate(180deg);
    transform: rotate(90deg);
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
  }
  .notre-essence .essc-hero-section .essc-impact {
    padding: 3rem 0;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .essc-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 15px;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .impact-title {
    grid-column: 1/3;
    padding: 15px;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .empty-space {
    display: none;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card {
    grid-column: auto;
    grid-row: auto;
  }
  .notre-essence .terrains-section .terrains-title {
    padding: 2.5rem 0 2rem;
  }
  .notre-essence .terrains-section .terrains-title::after {
    height: 120px;
    bottom: -100px;
  }
  .notre-essence .terrains-section .terrains-title p {
    width: 85%;
    font-size: 0.875rem;
  }
  .notre-essence .terrains-section .container {
    width: calc(100% - 60px);
  }
  .notre-essence .terrains-section .container .content {
    padding: 3rem 1.5rem;
  }
  .notre-essence .terrains-section .container .content .terrains-boxe .terrains-boxe-content {
    width: 65%;
  }
  .notre-essence .terrains-section .container .content .terrains-boxe .terrains-boxe-img {
    width: 35%;
  }
  .notre-essence .partenaires-section {
    padding: 2rem 0 4rem;
  }
  .notre-essence .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
/* ---------- MD ---------- */
@media (max-width: 858px) {
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content {
    gap: 1rem;
  }
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content .essc-hero-subtitle {
    font-size: 1.25rem;
  }
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content .essc-hero-title {
    font-size: 1.5rem;
  }
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content p {
    width: 90%;
  }
  .notre-essence .essc-hero-section .essc-hero-image {
    height: 350px;
  }
  .notre-essence .essc-hero-section .essc-impact {
    padding: 2.5rem 0;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .essc-impact-grid {
    grid-template-columns: repeat(2, 1FR);
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .impact-title {
    grid-column: 1;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .impact-title h4 {
    font-size: 1.5rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card {
    padding: 15px;
    gap: 0.5rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-info {
    gap: 4px;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-info .stat-number {
    font-size: 1.25rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-info .stat-label {
    font-size: 0.875rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-icon {
    padding: 10px;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-icon img {
    width: 45px;
    height: 45px;
  }
  .notre-essence .essc-hero-section .essc-mv .white-vector {
    max-width: 140px;
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .notre-essence .terrains-section .terrains-title {
    padding: 2rem 0 1.5rem;
  }
  .notre-essence .terrains-section .terrains-title::after {
    height: 100px;
    bottom: -80px;
  }
  .notre-essence .terrains-section .terrains-title span {
    font-size: 1.5rem;
  }
  .notre-essence .terrains-section .terrains-title p {
    width: 90%;
  }
  .notre-essence .terrains-section .container {
    width: calc(100% - 40px);
  }
  .notre-essence .terrains-section .container .content {
    padding: 2.5rem 1rem;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes {
    gap: 2.5rem;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 2rem;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe::after {
    width: 100%;
    height: 3px;
    left: 0;
    top: auto;
    bottom: -10px;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content {
    width: 100%;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content h5 {
    font-size: 1.25rem;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content ul {
    padding-left: 1rem;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content ul li,
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-content p {
    font-size: 0.875rem;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe .terrains-boxe-img img {
    max-width: 100%;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe:hover::after {
    height: 3px;
  }
  .notre-essence .terrains-section .container .content .terrains-boxes .terrains-boxe:hover .terrains-boxe-img img {
    -webkit-transform: translateY(-8px) rotate(2deg);
            transform: translateY(-8px) rotate(2deg);
  }
  .notre-essence .partenaires-section {
    padding: 1.5rem 0 3rem;
  }
  .notre-essence .partenaires-section .container .content {
    gap: 1rem;
  }
  .notre-essence .partenaires-section .container .content .partenaires-section-content {
    gap: 0.25rem;
  }
  .notre-essence .partenaires-section .container .content .partenaires-section-content .partenaires-section-subtitle,
  .notre-essence .partenaires-section .container .content .partenaires-section-content .partenaires-section-title {
    font-size: 1.5rem;
  }
  .notre-essence .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
  }
}
/* ---------- SM ---------- */
@media (max-width: 586px) {
  .notre-essence .essc-hero-section .essc-hero-image {
    height: 280px;
  }
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content .essc-hero-title {
    font-size: 1.5rem;
  }
  .notre-essence .essc-hero-section .essc-hero-intro .container .content.section-hero-content p {
    width: 100%;
    font-size: 0.875rem;
  }
  .notre-essence .essc-hero-section .essc-impact {
    padding: 2.5rem 0;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .essc-impact-grid {
    grid-template-columns: auto;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card {
    padding: 15px;
    gap: 0.5rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-info {
    gap: 4px;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-info .stat-number {
    font-size: 1.5rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-info .stat-label {
    font-size: 0.875rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-icon {
    padding: 10px;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-icon img {
    width: 45px;
    height: 45px;
  }
  .notre-essence .essc-hero-section .essc-mv .white-vector-left {
    display: none;
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe .essc-mv-boxe-img img {
    width: 74px;
    height: 90px;
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe .essc-mv-boxe-title {
    font-size: 1.875rem;
    padding: 12px;
    background: #712d67;
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe .essc-mv-boxe-desc {
    font-size: 0.875rem;
  }
  .notre-essence .terrains-section .terrains-title::after {
    height: 80px;
    bottom: -60px;
  }
  .notre-essence .terrains-section .terrains-title span {
    font-size: 1.5rem;
  }
  .notre-essence .terrains-section .terrains-title p {
    width: 90%;
    font-size: 0.875rem;
  }
  .notre-essence .terrains-section .container {
    width: calc(100% - 20px);
  }
  .notre-essence .partenaires-section .container .content .partenaires-section-content .partenaires-section-subtitle,
  .notre-essence .partenaires-section .container .content .partenaires-section-content .partenaires-section-title {
    font-size: 1.5rem;
  }
  .notre-essence .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
/* ---------- XS ---------- */
@media (max-width: 480px) {
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-info .stat-number {
    font-size: 1.125rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-info .stat-label {
    font-size: 0.875rem;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-icon {
    padding: 8px;
  }
  .notre-essence .essc-hero-section .essc-impact .container .content .stat-card .stat-icon img {
    width: 38px;
    height: 38px;
  }
  .notre-essence .essc-hero-section .essc-mv .white-vector {
    max-width: 80px;
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .notre-essence .essc-hero-section .essc-mv .container .content .essc-mv-boxes .essc-mv-boxe .essc-mv-boxe-title {
    font-size: 1.25rem;
  }
  .notre-essence .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section {
    padding-bottom: 4rem;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section {
    padding-bottom: 3rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section {
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section .container .content {
    max-width: 700px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .container .content {
    max-width: 100%;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .container .content .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.5rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .container .content .top .top-right {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .container .content .top .top-right {
    gap: 0.25rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .container .content .top .top-right .sgch-hero-nav {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .container .content .top .top-left {
    gap: 0.25rem;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content {
    padding: 2rem 0;
    gap: 1rem;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content {
    padding: 1.5rem 0;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content .sgch-hero-subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content .sgch-hero-subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content .sgch-hero-subtitle {
    font-size: 1.125rem;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content .sgch-hero-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content .sgch-hero-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content .sgch-hero-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content p {
    font-size: 1.125rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-hero-intro .container .content.section-hero-content p {
    font-size: 0.875rem;
    margin-bottom: 12px;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section .sgch-hero-image {
    height: 520px;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section .sgch-hero-image {
    height: 500px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-hero-image {
    height: 480px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-hero-image {
    height: 450px;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section .sgch-hero-image .vector-icon {
    max-width: 120px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-hero-image .vector-icon {
    max-width: 60px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-hero-image .vector-icon {
    max-width: 45px;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section .sgch-hero-image .sgch-hero-image-wrapper {
    max-width: 360px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-hero-image .sgch-hero-image-wrapper {
    max-width: 330px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-hero-image .sgch-hero-image-wrapper {
    max-width: 60%;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section .sgch-impact {
    padding: 4rem 0;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section .sgch-impact {
    padding: 3rem 0;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-impact {
    padding: 2.5rem 0;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .sgch-impact-grid {
    grid-template-columns: repeat(2, minmax(220px, 340px));
    grid-template-rows: repeat(2, 90px);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .sgch-impact-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .impact-title {
    padding: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .impact-title h3 {
    font-size: 1.875rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .impact-title h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .impact-title h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card {
    padding: 15px;
    gap: 0.5rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card {
    padding: 12px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card .stat-info {
    gap: 4px;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card .stat-info .stat-number {
    font-size: 1.875rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card .stat-info .stat-number {
    font-size: 1.5rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card .stat-info .stat-number {
    font-size: 1.5rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card .stat-info .stat-label {
    font-size: 16px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card .stat-icon {
    padding: 10px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card .stat-icon {
    padding: 8px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card .stat-icon img {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-impact .container .content .stat-card .stat-icon img {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .sgch-video-title {
    padding: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .sgch-video-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .sgch-video-title {
    font-size: 1.5rem;
    text-align: center;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .sgch-video-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .video-container {
    max-width: 700px;
    border-radius: 8px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .video-container {
    max-width: 100%;
    border-radius: 6px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .video-container {
    border-radius: 0;
    max-width: 90%;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .play-btn-overlay {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .play-btn-overlay {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .play-btn-overlay svg {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .play-btn-overlay svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .video-controls {
    padding: 15px 15px 12px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .video-controls {
    padding: 12px 12px 10px;
    gap: 10px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .progress-container {
    height: 5px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .progress-container:hover {
    height: 6px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .controls-bottom {
    gap: 12px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .controls-bottom {
    gap: 8px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .controls-left,
  .single-chantier .sgch-hero-section .sgch-video-wrapper .controls-right {
    gap: 12px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .controls-left,
  .single-chantier .sgch-hero-section .sgch-video-wrapper .controls-right {
    gap: 8px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .control-btn svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .control-btn svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .time-display {
    font-size: 13px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .time-display {
    font-size: 12px;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .volume-slider {
    width: 70px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .volume-slider {
    width: 60px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .volume-slider {
    display: none;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-hero-section .sgch-video-wrapper .speed-control {
    display: none;
  }
}
@media (max-width: 1280px) {
  .single-chantier .partenaires-section {
    padding: 2.5rem 0 5rem;
  }
}
@media (max-width: 1124px) {
  .single-chantier .partenaires-section {
    padding: 2rem 0 4rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .partenaires-section {
    padding: 1.5rem 0 3rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .partenaires-section {
    padding: 1rem 0 2.5rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .partenaires-section .container .content {
    gap: 1rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .partenaires-section .container .content .partenaires-section-content {
    gap: 0.25rem;
  }
}
@media (max-width: 1280px) {
  .single-chantier .partenaires-section .container .content .partenaires-section-content .partenaires-section-subtitle {
    font-size: 1.875rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .partenaires-section .container .content .partenaires-section-content .partenaires-section-subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .partenaires-section .container .content .partenaires-section-content .partenaires-section-subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 1280px) {
  .single-chantier .partenaires-section .container .content .partenaires-section-content .partenaires-section-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .partenaires-section .container .content .partenaires-section-content .partenaires-section-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .partenaires-section .container .content .partenaires-section-content .partenaires-section-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 1280px) {
  .single-chantier .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 1124px) {
  .single-chantier .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
@media (max-width: 858px) {
  .single-chantier .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
@media (max-width: 480px) {
  .single-chantier .partenaires-section .container .content .partenaires-grid-list {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.25rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item img {
    max-width: 90%;
  }
}
@media (max-width: 586px) {
  .single-chantier .partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item img {
    max-width: 85%;
  }
}
@media (max-width: 858px) {
  .single-chantier .partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item::after {
    height: 4px;
  }
}
@media (max-width: 586px) {
  .single-chantier .partenaires-section .container .content .partenaires-grid-list .partenaires-grid-list-item::after {
    height: 3px;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-gallerie-section {
    padding: 4rem 0;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-gallerie-section {
    padding: 3rem 0;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-gallerie-section {
    padding: 2.5rem 0;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-gallerie-section .container .content {
    gap: 1rem;
  }
}
@media (max-width: 1280px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-section-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-section-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-section-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-slider-wrapper .main-slider .splide__arrow {
    width: 2.5em;
    height: 2.5em;
    font-size: 14px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-slider-wrapper .main-slider .splide__arrow {
    width: 2em;
    height: 2em;
    font-size: 12px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-slider-wrapper .main-slider .splide__track .splide__list .splide__slide {
    border-radius: 12px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-slider-wrapper .main-slider .splide__track .splide__list .splide__slide {
    border-radius: 8px;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnails {
    gap: 0.5rem;
    margin-top: 0.8rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnails {
    gap: 0.25rem;
    margin-top: 0.6rem;
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 72px;
            flex: 0 0 72px;
    height: 52px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
            flex: 0 0 60px;
    height: 44px;
  }
}
@media (max-width: 480px) {
  .single-chantier .sgch-gallerie-section .container .content .gallerie-slider-wrapper .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 52px;
            flex: 0 0 52px;
    height: 38px;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-goals {
    padding-top: 1.5rem;
  }
}
@media (max-width: 1124px) {
  .single-chantier .sgch-goals .container .content .sgch-goals-list {
    grid-template-columns: repeat(2, 1FR);
  }
}
@media (max-width: 858px) {
  .single-chantier .sgch-goals .container .content .sgch-goals-subtitle {
    padding: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media (max-width: 858px) and (max-width: 1280px) {
  .single-chantier .sgch-goals .container .content .sgch-goals-subtitle {
    font-size: 1.875rem;
  }
}
@media (max-width: 858px) and (max-width: 858px) {
  .single-chantier .sgch-goals .container .content .sgch-goals-subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 858px) and (max-width: 586px) {
  .single-chantier .sgch-goals .container .content .sgch-goals-subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 586px) {
  .single-chantier .sgch-goals .container .content .sgch-goals-list {
    grid-template-columns: 1FR;
  }
  .single-chantier .sgch-goals .container .content .sgch-goals-list .sgch-goal-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    cursor: help;
  }
}

/* ---------- XL ---------- */
@media (max-width: 1280px) {
  .gv-hero-section .gv-hero-intro .container .content {
    padding: 2.5rem 0 4rem;
  }
  .equipe-section .container .content {
    gap: 4rem;
  }
  .equipe-section .container .content .gv-list .gv-list-title h3 {
    font-size: 1.875rem;
  }
  .equipe-section .container .content .gv-list .gv-list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ---------- LG ---------- */
@media (max-width: 1124px) {
  .gv-hero-section .gv-hero-intro .container .content {
    padding: 2rem 0 3rem;
  }
  .equipe-section .container .content .gv-list .gv-list-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .equipe-section .container .content .gv-list .gv-member-list-grid .gv-member-img img {
    height: 290px;
  }
}
/* ---------- MD ---------- */
@media (max-width: 858px) {
  .gv-hero-section .gv-hero-intro .container .content {
    padding: 1.5rem 0 2.5rem;
  }
  .equipe-section .container .content {
    gap: 3rem;
  }
  .equipe-section .container .content .gv-list .gv-list-title {
    padding: 1rem 0;
  }
  .equipe-section .container .content .gv-list .gv-list-title h3 {
    font-size: 1.5rem;
  }
  .equipe-section .container .content .gv-list .gv-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .equipe-section .container .content .gv-list .gv-member-list-grid .gv-member-img img {
    height: 370px;
  }
  .equipe-section .container .content .gv-list .gv-member-list-grid .gv-member-name h4 {
    font-size: 20px;
  }
}
/* ---------- SM ---------- */
@media (max-width: 586px) {
  .equipe-section .container .content .gv-list .gv-list-title h3 {
    font-size: 1.5rem;
  }
  .equipe-section .container .content .gv-list .gv-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .equipe-section .container .content .gv-list .gv-member-list-grid {
    padding: 0.5rem;
  }
  .equipe-section .container .content .gv-list .gv-member-list-grid .gv-member-img img {
    height: 280px;
  }
}
/* ---------- XS ---------- */
@media (max-width: 480px) {
  .equipe-section .container .content .gv-list .gv-list-grid {
    grid-template-columns: 1fr;
  }
  .equipe-section .container .content .gv-list .gv-member-list-grid .gv-member-img img {
    height: 360px;
  }
  .equipe-section .container .content .gv-list .gv-member-list-grid .gv-member-name h4 {
    font-size: 18px;
  }
}
/* ======================================
   REGARDS ET IDEES RESPONSIVE
   ====================================== */
/* ---------- XL ---------- */
@media (max-width: 1280px) {
  .regards-idees .regards-idees-hero-section {
    padding: 2.5rem 0 4rem;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publications-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content {
    bottom: 22px;
  }
}
/* ---------- LG ---------- */
@media (max-width: 1124px) {
  .regards-idees .regards-idees-hero-section {
    padding: 2rem 0 3rem;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content {
    bottom: 20px;
  }
}
/* ---------- MD ---------- */
@media (max-width: 858px) {
  .regards-idees .regards-idees-hero-section {
    padding: 1.5rem 0 2.5rem;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .content {
    position: relative;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card {
    gap: 0.5rem;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card::after {
    display: none;
    opacity: 0;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content {
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    background: #712d67;
    padding: 12px;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn {
    width: 100%;
    text-align: center;
    border: 1px solid #712d67;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn.download::after {
    background: #A6CD39;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ---------- SM ---------- */
@media (max-width: 586px) {
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publications-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn {
    width: 100%;
    text-align: center;
    border-color: #712d67;
    padding: 0.5rem;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content .publication-btn span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ---------- XS ---------- */
@media (max-width: 480px) {
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card .publication-image img {
    -webkit-transform: none;
            transform: none;
  }
  .regards-idees .regards-idees-hero-section .regards-idees-hero-intro .container .publications-section .publication-card:hover .publication-image img {
    -webkit-transform: none;
            transform: none;
  }
}
/* ---------- XL ---------- */
@media (max-width: 1280px) {
  .capsules-citoyennes .capsules-citoyennes-hero-section {
    padding: 2.5rem 0 4rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .content {
    position: relative;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image {
    height: 380px;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content {
    gap: 1rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-title {
    font-size: 1.25rem;
  }
}
/* ---------- LG ---------- */
@media (max-width: 1124px) {
  .capsules-citoyennes .capsules-citoyennes-hero-section {
    padding: 2rem 0 3rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image {
    height: 340px;
    border-width: 10px;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-title {
    font-size: 1.125rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-desc {
    font-size: 0.875rem;
  }
}
/* ---------- MD ---------- */
@media (max-width: 858px) {
  .capsules-citoyennes .capsules-citoyennes-hero-section {
    padding: 1.5rem 0 2.5rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsules-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image {
    height: 300px;
    border-width: 8px;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content {
    gap: 0.5rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-title {
    font-size: 1.125rem;
    text-align: left;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-desc {
    font-size: 0.875rem;
    text-align: left;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn {
    text-align: center;
    padding: 12px;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ---------- SM ---------- */
@media (max-width: 586px) {
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image {
    height: 260px;
    border-width: 6px;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-title {
    font-size: 0.875rem;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-desc {
    font-size: 0.75rem;
  }
}
/* ---------- XS ---------- */
@media (max-width: 480px) {
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-image {
    height: 220px;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card .capsule-content .capsule-btn span svg {
    -webkit-transform: none;
            transform: none;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-image img {
    -webkit-transform: none;
            transform: none;
  }
  .capsules-citoyennes .capsules-citoyennes-hero-section .capsules-citoyennes-hero-intro .container .capsules-section .capsule-card:hover .capsule-btn span svg {
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 1124px) {
  .actualites main .actualites-hero-section .actualites-hero-intro .container .content .actualites-section .grid-list {
    grid-template-columns: repeat(2, 1FR);
  }
  .actualites main .actualites-hero-section .actualites-hero-intro .container .content .actualites-section .grid-list .actu-list-item .actu-list-item-info {
    gap: 0.5rem;
  }
  .actualites main .actualites-hero-section .actualites-hero-intro .container .content .actualites-section .grid-list .actu-list-item .actu-list-item-info .actu-list-item-title {
    font-size: 1.5rem;
  }
  .actualites main .actualites-hero-section .actualites-hero-intro .container .content .actualites-section .grid-list .actu-list-item .actu-list-item-info .actu-list-item-desc {
    font-size: 1.125rem;
  }
}
@media (max-width: 858px) {
  .actualites main .actualites-hero-section .actualites-hero-intro .container .content .actualites-section .grid-list {
    grid-template-columns: 1fr;
  }
  .actualites main .actualites-hero-section .actualites-hero-intro .container .content .actualites-section .grid-list .actu-list-item .actu-list-item-info {
    gap: 0.5rem;
    padding: 1rem;
  }
  .actualites main .actualites-hero-section .actualites-hero-intro .container .content .actualites-section .grid-list .actu-list-item .actu-list-item-info .actu-list-item-title {
    font-size: 1.25rem;
  }
  .actualites main .actualites-hero-section .actualites-hero-intro .container .content .actualites-section .grid-list .actu-list-item .actu-list-item-info .actu-list-item-desc {
    font-size: 1.125rem;
  }
}
@media (max-width: 1124px) {
  .single-actualite .single-actu-section.single-actu-top .single-actu-intro .container .content {
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 0;
  }
  .single-actualite .single-actu-section.single-actu-top .single-actu-intro .container .content p {
    max-width: initial;
  }
}
/* ---------- LG ---------- */
@media (max-width: 1124px) {
  .ambassadeurs-mentors .ambassadeurs-mentors-hero-section .ambassadeurs-mentors-hero-intro .container .content {
    padding: 0;
  }
}
@media (max-width: 1124px) {
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-title h3 {
    font-size: 1.5rem;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2rem;
    overflow: visible;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider .team-slider-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider {
    width: 100%;
    max-width: 550px;
    gap: 2rem;
  }
}
@media (max-width: 586px) {
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider {
    max-width: calc(100vw - 42px);
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .splide__arrows {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem;
    background: transparent;
    margin-bottom: 0.5rem;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content {
    gap: 1.5rem;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content .team-region-name {
    padding-left: 40px;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content .team-region-name::after {
    width: 36px;
    height: 36px;
    background-size: 36px 36px;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content .team-region-name span {
    font-size: 1.125rem;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content .team-slide-info p {
    font-size: 0.875rem;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content .team-slide-count {
    width: 100%;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content .team-slide-count .team-count {
    padding: 12px;
    gap: 0.5rem;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content .team-slide-count .team-count .team-count-number span {
    font-size: 1.25rem;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content .team-slide-count .team-count .team-count-region-name span {
    font-size: 16px;
    display: block;
    text-align: right;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider #team-slider .team-slide-content .team-slide-count .team-count.team-cities span.team-city-name {
    font-size: 0.75rem;
    padding: 3px 8px;
  }
}
@media (max-width: 1124px) {
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider .maroc-map-container {
    -webkit-box-flex: 0;
    display: flex;
    justify-content: center;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider .maroc-map-container svg {
    width: 85%;
    height: auto;
    max-width: 100%;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider .cta-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-list-grid .ambassadeurs-map-and-slider .cta-wrapper a {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-member-list-grid {
    padding: 0.5rem;
  }
  .ambassadeurs-mentors-hero-section .container .content .gv-list .gv-member-list-grid .gv-member-img img {
    height: 240px;
  }
}
@media (max-width: 1124px) {
  .tribune-libre .tribune-libre-hero-section {
    padding: 2rem 0 2.5rem;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .content {
    padding-top: 0;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    max-width: 830px;
    margin: 0 auto;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .form-section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #712d67;
    margin-bottom: 1.5rem;
    padding-bottom: 0.25rem;
    position: relative;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .form-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: #A6CD39;
    border-radius: 2px;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .form-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #A6CD39;
    opacity: 0.13;
    border-radius: 2px;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form {
    width: 100%;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25rem;
    width: 100%;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-label span {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-family: "Montserrat", sans-serif;
    color: #712d67;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 400;
    color: #000000;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select option {
    color: #280222;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:focus {
    background: #FFFFFF;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:disabled {
    background: #EAEAEA;
    color: rgba(40, 2, 34, 0.4);
    cursor: not-allowed;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: none;
            transform: none;
    opacity: 0.6;
    cursor: not-allowed;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select,
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea,
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input {
    font-size: 16px;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select::-webkit-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea::-webkit-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input::-webkit-input-placeholder {
    color: rgba(40, 2, 34, 0.5);
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select::-moz-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea::-moz-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input::-moz-placeholder {
    color: rgba(40, 2, 34, 0.5);
    -moz-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select:-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input:-ms-input-placeholder {
    color: rgba(40, 2, 34, 0.5);
    -ms-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select::-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea::-ms-input-placeholder, .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input::-ms-input-placeholder {
    color: rgba(40, 2, 34, 0.5);
    -ms-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field select::placeholder,
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea::placeholder,
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field input::placeholder {
    color: rgba(40, 2, 34, 0.5);
    -webkit-transition: color 0.25s ease;
    transition: color 0.25s ease;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea {
    resize: vertical;
    min-height: 140px;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe .form-group .form-field textarea:focus {
    border-color: #A6CD39;
    -webkit-box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
            box-shadow: 0 0 0 1px #EDF5D7, 0 2px 20px #EDF5D7;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group .btn {
    border-color: #712d67;
    cursor: pointer;
    z-index: 4;
    position: relative;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group .btn span {
    z-index: 4;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group .btn::after {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    content: "";
    background-color: #A6CD39;
    position: absolute;
    right: 0;
    top: 0;
    width: 200%;
    height: 0%;
    border-radius: 8px;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group .btn:hover {
    color: #712d67;
    border-color: #A6CD39;
    letter-spacing: 0.2px;
  }
  .tribune-libre .tribune-libre-hero-section .tribune-libre-hero-intro .container .tribune-libre-form-section .tribune-libre-form .form-tag .form-duo-boxe.send .form-group .btn:hover::after {
    height: 100%;
  }
}
@media (max-width: 1124px) {
  .form-duo-boxe {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 858px) {
  .nos-chantiers .nos-chantiers-section .nos-chantiers-intro .container .content {
    padding-top: 0;
    gap: 3rem;
  }
  .nos-chantiers .nos-chantiers-section .nos-chantiers-intro .container .content .nos-chantiers-section .grid-list .grid-list-item-info {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}