@charset "UTF-8";
/* Reset CSS - Basé sur Normalize.css avec quelques améliorations */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Supprime les styles de base des listes */
ul, ol {
  list-style: none;
}

/* Suppression de la décoration des liens */
a {
  text-decoration: none;
  color: inherit;
}

/* Supprime la mise en forme des boutons par défaut */
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Correction des styles des boutons */
button {
  cursor: pointer;
}

/* Harmonisation des styles des images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Suppression des espacements des tableaux */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Réinitialisation des titres */
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Ajout d'un style de base pour le HTML */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Ajout d'un style de base pour le body */
body {
  font-family: sans-serif;
  line-height: 1.5;
  background-color: #fff;
  color: #333;
}

:root {
  --primary-color: rgb(3, 45, 175);
  --secondary-color: rgb(100, 120, 245);
  --third-color: rgb(184, 131, 250);
  --accent-color: rgb(254, 173, 56);
  --accent-light: rgb(230, 153, 149);
  --vss-primary: rgb(100, 120, 245);
  --vss-secondary: rgb(136, 124, 248);
  --vss-third: rgb(184, 131, 250);
  --vsv-primary: rgb(184, 131, 250);
  --vsv-secondary: rgb(230, 153, 149);
  --vsv-third: rgb(254, 173, 56);
  --light: #fbf2de;
  --light-alt: #FFFAFA;
  --light-third: #f9f2e0;
  --white: #fff;
  --primary-color-dark: rgb(2.1404494382, 32.106741573, 124.8595505618);
  --link-color: #032DAF;
  --text-color: #252525;
  --black: #252525;
  --grey: #eaeaea;
  --gradientvss: linear-gradient(var(--gradient-angle), rgb(100, 120, 245), rgb(136, 124, 248), rgb(184, 131, 250));
  --gradientvsv: linear-gradient(var(--gradient-angle), rgb(184, 131, 250), rgb(230, 153, 149), rgb(254, 173, 56));
  --gradient-angle: 135deg;
}

.text-primary {
  color: rgb(3, 45, 175) !important;
}

.bg-primary {
  background-color: rgb(3, 45, 175) !important;
}

.btn-primary {
  background-color: rgb(3, 45, 175) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-primary:hover {
  background-color: rgb(1.2808988764, 19.2134831461, 74.7191011236) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-primary {
  border-color: rgb(3, 45, 175) !important;
  color: rgb(3, 45, 175) !important;
  transition: all 0.5s ease;
}
.btn-outline-primary:hover {
  background-color: rgb(3, 45, 175) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-secondary {
  color: rgb(100, 120, 245) !important;
}

.bg-secondary {
  background-color: rgb(100, 120, 245) !important;
}

.btn-secondary {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-secondary:hover {
  background-color: #fff !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-secondary {
  border-color: rgb(100, 120, 245) !important;
  color: rgb(100, 120, 245) !important;
  transition: all 0.5s ease;
}
.btn-outline-secondary:hover {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-third {
  color: rgb(184, 131, 250) !important;
}

.bg-third {
  background-color: rgb(184, 131, 250) !important;
}

.btn-third {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-third:hover {
  background-color: #fff !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-third {
  border-color: rgb(184, 131, 250) !important;
  color: rgb(184, 131, 250) !important;
  transition: all 0.5s ease;
}
.btn-outline-third:hover {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-accent {
  color: rgb(254, 173, 56) !important;
}

.bg-accent {
  background-color: rgb(254, 173, 56) !important;
}

.btn-accent {
  background-color: rgb(254, 173, 56) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-accent:hover {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-accent {
  border-color: rgb(254, 173, 56) !important;
  color: rgb(254, 173, 56) !important;
  transition: all 0.5s ease;
}
.btn-outline-accent:hover {
  background-color: rgb(254, 173, 56) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-accent-light {
  color: rgb(230, 153, 149) !important;
}

.bg-accent-light {
  background-color: rgb(230, 153, 149) !important;
}

.btn-accent-light {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-accent-light:hover {
  background-color: rgb(254, 173, 56) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-accent-light {
  border-color: rgb(230, 153, 149) !important;
  color: rgb(230, 153, 149) !important;
  transition: all 0.5s ease;
}
.btn-outline-accent-light:hover {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.btn-white {
  background-color: #fff !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}
.btn-white:hover {
  background-color: #252525 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.btn-outline-white {
  border-color: #fff !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-outline-white:hover {
  background-color: #fff !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.text-light {
  color: #fbf2de !important;
}

.bg-light {
  background-color: #fbf2de !important;
}

.btn-light {
  background-color: #fbf2de !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}
.btn-light:hover {
  background-color: #252525 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.btn-outline-light {
  border-color: #fbf2de !important;
  color: #fbf2de !important;
  transition: all 0.5s ease;
}
.btn-outline-light:hover {
  background-color: #fbf2de !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.text-light-alt {
  color: #FFFAFA !important;
}

.bg-light-alt {
  background-color: #FFFAFA !important;
}

.btn-light-alt {
  background-color: #FFFAFA !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}
.btn-light-alt:hover {
  background-color: #252525 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.btn-outline-light-alt {
  border-color: #FFFAFA !important;
  color: #FFFAFA !important;
  transition: all 0.5s ease;
}
.btn-outline-light-alt:hover {
  background-color: #FFFAFA !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.text-light-third {
  color: #f9f2e0 !important;
}

.bg-light-third {
  background-color: #f9f2e0 !important;
}

.btn-light-third {
  background-color: #f9f2e0 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}
.btn-light-third:hover {
  background-color: #252525 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.btn-outline-light-third {
  border-color: #f9f2e0 !important;
  color: #f9f2e0 !important;
  transition: all 0.5s ease;
}
.btn-outline-light-third:hover {
  background-color: #f9f2e0 !important;
  color: #252525 !important;
  transition: all 0.5s ease;
}

.text-vss {
  color: rgb(100, 120, 245) !important;
}

.bg-vss {
  background-color: rgb(100, 120, 245) !important;
}

.btn-vss {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-vss:hover {
  background-color: rgb(136, 124, 248) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-vss {
  border-color: rgb(100, 120, 245) !important;
  color: rgb(100, 120, 245) !important;
  transition: all 0.5s ease;
}
.btn-outline-vss:hover {
  background-color: rgb(100, 120, 245) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.text-vsv {
  color: rgb(184, 131, 250) !important;
}

.bg-vsv {
  background-color: rgb(184, 131, 250) !important;
}

.btn-vsv {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}
.btn-vsv:hover {
  background-color: rgb(230, 153, 149) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

.btn-outline-vsv {
  border-color: rgb(184, 131, 250) !important;
  color: rgb(184, 131, 250) !important;
  transition: all 0.5s ease;
}
.btn-outline-vsv:hover {
  background-color: rgb(184, 131, 250) !important;
  color: #fff !important;
  transition: all 0.5s ease;
}

:root {
  --primary-font: futura-pt, sans-serif;
  --title-font: auster, sans-serif;
}

body {
  font-family: futura-pt, sans-serif;
  font-size: 18px;
  line-height: 1.875em;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
}

h1, .h1 {
  font-size: clamp(1.8rem, 6vw + 1rem, 3rem);
}

h2, .h2 {
  font-size: clamp(1.6rem, 5vw + 1rem, 2.5rem);
}

h3, .h3 {
  font-size: clamp(1.6rem, 4vw + 1rem, 2rem);
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: auster, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.text-wrapper p,
.text-wrapper div,
p {
  font-size: 1.25rem;
  line-height: 2rem;
}

a {
  text-decoration: none;
}

.text-wrapper p {
  margin-bottom: 1rem;
}
.text-wrapper h1 {
  margin: 1.5rem 0;
}
.text-wrapper h2 {
  margin: 1.4rem 0;
}
.text-wrapper h3 {
  margin: 1.3rem 0;
}
.text-wrapper h4 {
  margin: 1.2rem 0;
}
.text-wrapper h5 {
  margin: 1.1rem 0;
}
.text-wrapper h6 {
  margin: 1.1rem 0;
}
.text-wrapper a {
  color: var(--accent-light);
  text-decoration: underline;
}
.text-wrapper ul {
  list-style: inside;
}
.text-wrapper ol {
  list-style-type: decimal;
  list-style-position: inside;
}

.uppercase {
  text-transform: uppercase;
}

.text-center, .align-center {
  text-align: center;
}

.text-right, .align-right {
  text-align: right;
}

.text-left, .align-left {
  text-align: left;
}

.wrapper__text h1, .wrapper__text h2, .wrapper__text h3, .wrapper__text h4, .wrapper__text h5, .wrapper__text h6 {
  margin: 1rem 0;
}
.wrapper__text.--txt-white {
  color: var(--white);
}
.wrapper__text.--bg-secondary h1, .wrapper__text.--bg-secondary h2, .wrapper__text.--bg-secondary h3, .wrapper__text.--bg-secondary h4, .wrapper__text.--bg-secondary h5, .wrapper__text.--bg-secondary h6 {
  color: var(--primary-color);
}

:root {
  --text-font: futura-pt, sans-serif;
  --title-font: auster, sans-serif;
}

.btn {
  display: inline-block;
  background-color: #333;
  color: var(--white);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.5s ease;
}

[class*=btn-outline-] {
  background-color: transparent;
  border: 2px solid #333;
  color: #333;
}

.btn-big {
  font-size: 2.5rem;
  padding: 1rem 1.5rem;
  border-radius: 35px;
}

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #f4f4f4;
  margin: 10% auto;
  width: 70%;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  padding: 1.5rem;
}

.is-mobile .modal-content {
  width: 95%;
}

.modal-header {
  padding-bottom: 1.5rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.modal-header .title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}
.modal-header button {
  font-size: 2rem;
}

.modal-footer {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
}

.--border-wave {
  border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
  /*
  Above is shorthand for:
  border-top-left-radius: 255px 15px;
  border-top-right-radius: 15px 225px;
  border-bottom-right-radius: 225px 15px;
  border-bottom-left-radius:15px 255px;
  */
}

/* Waves Animation start*/
.with-waves {
  position: relative;
  padding-top: clamp(100px, 15vh, 150px);
  padding-bottom: 3rem;
  margin-bottom: 4rem;
}
.with-waves:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 6rem;
}
.with-waves.last-section {
  padding-bottom: 6rem;
}
.with-waves.last-section:after {
  height: 8rem;
}
.with-waves.bg-primary:after {
  background-color: var(--primary-color);
}
.with-waves.bg-secondary:after {
  background-color: var(--secondary-color);
}
.with-waves.bg-third:after {
  background-color: var(--third-color);
}
.with-waves.bg-accent:after {
  background-color: var(--accent-color);
}
.with-waves.bg-accent-light:after {
  background-color: var(--accent-light);
}
.with-waves.bg-vss-primary:after {
  background-color: var(--vss-primary);
}
.with-waves.bg-vss-secondary:after {
  background-color: var(--vss-secondary);
}
.with-waves.bg-vss-third:after {
  background-color: var(--vss-third);
}
.with-waves.bg-vsv-primary:after {
  background-color: var(--vsv-primary);
}
.with-waves.bg-vsv-secondary:after {
  background-color: var(--vsv-secondary);
}
.with-waves.bg-vsv-third:after {
  background-color: var(--vsv-third);
}
.with-waves.bg-light:after {
  background-color: var(--light);
}
.with-waves.bg-light-alt:after {
  background-color: var(--light-alt);
}
.with-waves.bg-light-third:after {
  background-color: var(--light-third);
}
.with-waves.bg-white:after {
  background-color: var(--white);
}

footer .with-waves {
  margin-bottom: 0;
  padding-bottom: 2rem;
}
footer .with-waves:after {
  height: 0;
  position: static;
  content: unset;
}

.waves-area {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
}
.waves-area + div {
  margin-top: -120px;
}

.waves {
  position: absolute;
  width: 100%;
  height: clamp(75px, 15vh, 120px);
  min-height: 75px;
  max-height: 120px;
  bottom: 0;
  left: 0;
}

.--animate .parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}
/* Waves Animation end*/
.nav-wrapper {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 10;
  background-image: url("../../violon-2025/images/Mouette_HAUT.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.nav-wrapper .logo-wrapper {
  display: inline-flex;
  width: clamp(100px, 20vw, 200px);
  height: clamp(60px, 10vh, 120px);
  padding: 1rem;
}
.nav-wrapper .logo-wrapper svg {
  max-width: 200px;
  max-height: 120px;
}

.is-mobile .nav-wrapper svg {
  display: none;
}

#page__landing {
  height: clamp(350px, 20vh, 400px);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page__landing .img-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
#page__landing .img-container > img {
  aspect-ratio: 5.4857142857;
  object-fit: cover;
  height: 100%;
}
#page__landing.--small {
  height: clamp(120px, 20vh, 200px);
}

.is-mobile .nav-wrapper .logo-wrapper {
  display: none;
}

.page__landing__title {
  text-align: center;
  color: var(--white);
  font-size: clamp(1.8rem, 6vw + 1rem, 3rem);
  font-family: var(--title-font);
  font-weight: 700;
  line-height: 3.2rem;
}
.page__landing__title sup {
  font-size: 1rem;
  text-transform: lowercase;
}
.page__landing__title span.role {
  text-transform: capitalize;
  font-size: 1.5rem;
}
.page__landing__title small {
  font-family: var(--text-font);
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
}

.section__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  overflow-x: hidden;
}
.section__title .title--icon {
  font-size: 3rem;
}
.section__title .title--icon > span, .section__title .title--icon i {
  font-size: 3rem;
  margin-bottom: 2rem;
}
.section__title > .title {
  display: inline-block;
  position: relative;
  margin: 0 0 2rem;
  padding: 0 1rem;
}
.section__title > .title:before, .section__title > .title:after {
  content: "";
  display: block;
  width: 50%;
  max-width: 100px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-1px);
}
.section__title > .title:before {
  right: 100%;
}
.section__title > .title:after {
  left: 100%;
}
.section__title > .subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: -2rem;
}

.section.section-default.bg-white, .section.section-default.bg-light, .section.section-default.bg-light-alt, .section.section-default.bg-light-third {
  color: #252525;
}
.section.section-default.bg-white .section__title, .section.section-default.bg-white .section__title > *, .section.section-default.bg-light .section__title, .section.section-default.bg-light .section__title > *, .section.section-default.bg-light-alt .section__title, .section.section-default.bg-light-alt .section__title > *, .section.section-default.bg-light-third .section__title, .section.section-default.bg-light-third .section__title > * {
  color: rgb(3, 45, 175);
}
.section.section-default.bg-white .section__title > .title:before,
.section.section-default.bg-white .section__title > .title:after, .section.section-default.bg-light .section__title > .title:before,
.section.section-default.bg-light .section__title > .title:after, .section.section-default.bg-light-alt .section__title > .title:before,
.section.section-default.bg-light-alt .section__title > .title:after, .section.section-default.bg-light-third .section__title > .title:before,
.section.section-default.bg-light-third .section__title > .title:after {
  background-color: rgb(3, 45, 175);
}
.section.section-vss.bg-white, .section.section-vss.bg-light, .section.section-vss.bg-light-alt, .section.section-vss.bg-light-third {
  color: #252525;
}
.section.section-vss.bg-white .section__title, .section.section-vss.bg-white .section__title > *, .section.section-vss.bg-light .section__title, .section.section-vss.bg-light .section__title > *, .section.section-vss.bg-light-alt .section__title, .section.section-vss.bg-light-alt .section__title > *, .section.section-vss.bg-light-third .section__title, .section.section-vss.bg-light-third .section__title > * {
  color: rgb(100, 120, 245);
}
.section.section-vss.bg-white .section__title > .title:before,
.section.section-vss.bg-white .section__title > .title:after, .section.section-vss.bg-light .section__title > .title:before,
.section.section-vss.bg-light .section__title > .title:after, .section.section-vss.bg-light-alt .section__title > .title:before,
.section.section-vss.bg-light-alt .section__title > .title:after, .section.section-vss.bg-light-third .section__title > .title:before,
.section.section-vss.bg-light-third .section__title > .title:after {
  background-color: rgb(100, 120, 245);
}
.section.section-vsv.bg-white, .section.section-vsv.bg-light, .section.section-vsv.bg-light-alt, .section.section-vsv.bg-light-third {
  color: #252525;
}
.section.section-vsv.bg-white .section__title, .section.section-vsv.bg-white .section__title > *, .section.section-vsv.bg-light .section__title, .section.section-vsv.bg-light .section__title > *, .section.section-vsv.bg-light-alt .section__title, .section.section-vsv.bg-light-alt .section__title > *, .section.section-vsv.bg-light-third .section__title, .section.section-vsv.bg-light-third .section__title > * {
  color: rgb(184, 131, 250);
}
.section.section-vsv.bg-white .section__title > .title:before,
.section.section-vsv.bg-white .section__title > .title:after, .section.section-vsv.bg-light .section__title > .title:before,
.section.section-vsv.bg-light .section__title > .title:after, .section.section-vsv.bg-light-alt .section__title > .title:before,
.section.section-vsv.bg-light-alt .section__title > .title:after, .section.section-vsv.bg-light-third .section__title > .title:before,
.section.section-vsv.bg-light-third .section__title > .title:after {
  background-color: rgb(184, 131, 250);
}
.section.bg-primary {
  color: #fff;
}
.section.bg-primary .section__title, .section.bg-primary .section__title > * {
  color: #fff;
}
.section.bg-primary .section__title > .title:before,
.section.bg-primary .section__title > .title:after {
  background-color: #fff;
}
.section.bg-secondary {
  color: #fff;
}
.section.bg-secondary .section__title, .section.bg-secondary .section__title > * {
  color: #fff;
}
.section.bg-secondary .section__title > .title:before,
.section.bg-secondary .section__title > .title:after {
  background-color: #fff;
}
.section.bg-third {
  color: #fff;
}
.section.bg-third .section__title, .section.bg-third .section__title > * {
  color: #fff;
}
.section.bg-third .section__title > .title:before,
.section.bg-third .section__title > .title:after {
  background-color: #fff;
}
.section.bg-accent {
  color: #fff;
}
.section.bg-accent .section__title, .section.bg-accent .section__title > * {
  color: #fff;
}
.section.bg-accent .section__title > .title:before,
.section.bg-accent .section__title > .title:after {
  background-color: #fff;
}
.section.bg-accent-light {
  color: #fff;
}
.section.bg-accent-light .section__title, .section.bg-accent-light .section__title > * {
  color: #fff;
}
.section.bg-accent-light .section__title > .title:before,
.section.bg-accent-light .section__title > .title:after {
  background-color: #fff;
}

.custom-fa, .is-mobile .nav-expand-link::after, .is-mobile .nav-expand-content .nav-back-link::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.is-desktop #ham {
  display: none;
}
.is-desktop #main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: var(--primary-color);
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: auster, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.is-desktop #main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.is-desktop #main-nav .nav-level-1 {
  display: flex;
  height: 100%;
  position: relative;
}
.is-desktop #main-nav .nav-level-1 > .nav-item > .nav-link {
  display: inline-block;
  padding: 1rem;
  color: #fff;
}
.is-desktop #main-nav .nav-level-1 > .nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.is-desktop #main-nav .nav-level-1 > .nav-item.home-link {
  flex: 0 0 auto;
  width: auto;
}
.is-desktop #main-nav .nav-level-1 .nav-expand:hover .nav-expand-content {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.is-desktop #main-nav .nav-level-1 .nav-expand:hover .nav-expand-content .nav-link {
  color: var(--white);
  padding: 2rem;
  display: inline-block;
}
.is-desktop #main-nav .nav-item:hover, .is-desktop #main-nav .nav-item.active, .is-desktop #main-nav .nav-item.selected {
  background: var(--primary-color-dark);
}
.is-desktop #main-nav .nav-item:hover > ul, .is-desktop #main-nav .nav-item.active > ul, .is-desktop #main-nav .nav-item.selected > ul {
  background: var(--primary-color-dark);
}
.is-desktop #main-nav .nav-item.--vss:hover, .is-desktop #main-nav .nav-item.--vss.active, .is-desktop #main-nav .nav-item.--vss.selected {
  background: var(--vss-primary);
}
.is-desktop #main-nav .nav-item.--vss:hover > ul, .is-desktop #main-nav .nav-item.--vss.active > ul, .is-desktop #main-nav .nav-item.--vss.selected > ul {
  background: var(--gradientvss);
}
.is-desktop #main-nav .nav-item.--vsv:hover, .is-desktop #main-nav .nav-item.--vsv.active, .is-desktop #main-nav .nav-item.--vsv.selected {
  background: var(--vsv-primary);
}
.is-desktop #main-nav .nav-item.--vsv:hover > ul, .is-desktop #main-nav .nav-item.--vsv.active > ul, .is-desktop #main-nav .nav-item.--vsv.selected > ul {
  background: var(--gradientvsv);
}
.is-desktop #main-nav .nav-expand-content {
  display: none;
}

/**
 * Navigation Mobile
 * < 768px
 */
.is-mobile #ham {
  display: inline-flex;
  padding: 1em;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgb(2.1404494382, 32.106741573, 124.8595505618);
  color: #fff;
  cursor: pointer;
  height: 50px;
}
.is-mobile .nav-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.is-mobile .mobile-only.nav-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 101;
  width: 100%;
  height: 50px;
  background-color: rgb(2.1404494382, 32.106741573, 124.8595505618);
}
.is-mobile .mobile-only.nav-top .logo-wrapper {
  display: inline-flex;
  height: 100%;
  padding: 0.2rem;
}
.is-mobile .mobile-only.nav-top .hamburger {
  color: #fff;
  cursor: pointer;
}
.is-mobile .nav-drill {
  margin-top: 50px;
  transform: translateX(-100%);
}
.is-mobile.nav-is-toggled .nav-drill {
  transform: translateX(0);
}
.is-mobile.nav-is-toggled::after {
  opacity: 1;
  visibility: visible;
  content: "";
  position: fixed;
  z-index: 0;
  background-color: rgba(2.1404494382, 32.106741573, 124.8595505618, 0.8);
  width: 100%;
  top: 0;
  bottom: 0;
  transition: 0.4s;
}

.is-mobile .nav-drill {
  display: flex;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: 0.45s;
}
.is-mobile .nav-items {
  flex: 0 0 100%;
}
.is-mobile .nav-item:not(:last-child) {
  border-bottom: solid 1px rgb(2.1404494382, 32.106741573, 124.8595505618);
}
.is-mobile .nav-item.bg-accent > .nav-link {
  background-color: var(--accent-color);
  color: var(--white);
}
.is-mobile .nav-item.--vss > .nav-link {
  background-color: var(--vss-primary);
  color: var(--white);
}
.is-mobile .nav-item.--vss .nav-expand-content {
  background: var(--gradientvss);
}
.is-mobile .nav-item.--vss .nav-expand-content .nav-link {
  background: transparent;
  color: var(--white);
}
.is-mobile .nav-item.--vsv > .nav-link {
  background-color: var(--vsv-primary);
  color: var(--white);
}
.is-mobile .nav-item.--vsv .nav-expand-content {
  background: var(--gradientvsv);
}
.is-mobile .nav-item.--vsv .nav-expand-content .nav-link {
  background: transparent;
  color: var(--white);
}
.is-mobile .nav-link {
  display: block;
  padding: 0.875em 1em;
  background-color: #fff;
  color: rgb(3, 45, 175);
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 300;
}
.is-mobile .nav-expand-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background-color: rgb(2.1404494382, 32.106741573, 124.8595505618);
  transition: 0.3s;
  visibility: hidden;
}
.is-mobile .nav-expand-content .nav-item:not(:last-child) {
  border-bottom: solid 1px rgb(3, 45, 175);
}
.is-mobile .nav-expand-content .nav-link {
  background-color: rgb(2.1404494382, 32.106741573, 124.8595505618);
}
.is-mobile .nav-expand-content .nav-back-link {
  display: flex;
  align-items: center;
  background-color: var(--primary-color) !important;
  color: #fff;
}
.is-mobile .nav-expand-content .nav-back-link::before {
  content: "\f053";
  margin-right: 0.5em;
}
.is-mobile .nav-expand-link {
  display: flex;
  justify-content: space-between;
}
.is-mobile .nav-expand-link::after {
  content: "\f054";
  flex: 0 1 auto;
}
.is-mobile .nav-expand.active > .nav-expand-content {
  transform: translateX(0);
  visibility: visible;
}
.is-mobile .nav-expand .nav-expand-content {
  background-color: rgb(2.1404494382, 32.106741573, 124.8595505618);
  color: var(--white);
}
.is-mobile .nav-expand .nav-expand-content .nav-link {
  background-color: rgb(2.1404494382, 32.106741573, 124.8595505618);
  color: var(--white);
}

.content__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.content__img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.grid__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 6rem;
}

.solistes__wrapper .grid__item {
  width: clamp(350px, 20%, 400px);
}
.solistes__wrapper .item__wrapper {
  background-color: var(--vss-primary);
  margin: 1rem;
  padding: 1rem;
  display: block;
}
.solistes__wrapper .item__wrapper .title {
  color: var(--white);
  display: block;
  font-size: 1.5rem;
  font-family: var(--title-font);
  font-weight: 700;
  margin: 1rem 0 0.5rem 0;
}
.solistes__wrapper .item__wrapper .role {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  text-align: right;
}
.solistes__wrapper .wrapper__resa {
  text-align: center;
  margin: 2rem 0;
}
.solistes__wrapper .wrapper__resa .btn i {
  margin-right: 0.5rem;
  transform: rotate(-10deg);
}
.solistes__wrapper .filter-button.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color) !important;
  color: var(--white) !important;
}

.is-mobile .solistes__wrapper .grid__item {
  width: 100%;
}

.events__wrapper .grid__item {
  width: 100%;
}
.events__wrapper .filters-button-group {
  flex-wrap: wrap;
}
.events__wrapper .item__wrapper {
  background: var(--gradientvsv);
  margin: 1rem;
  padding: 1rem;
  display: flex;
}
.events__wrapper .item__wrapper .item__inside {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 2rem;
  background-color: var(--white);
}
.events__wrapper .item__wrapper .item__img {
  width: clamp(200px, 20%, 300px);
}
.events__wrapper .item__wrapper .item__data {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(400px, 60%, 800px);
}
.events__wrapper .item__wrapper .item__name {
  display: flex;
  flex-wrap: wrap;
}
.events__wrapper .item__wrapper .item__name > * {
  flex: 1;
  min-width: 250px;
}
.events__wrapper .item__wrapper .item__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: clamp(200px, 50%, 400px);
}
.events__wrapper .item__wrapper .item__info .title {
  color: var(--vsv-primary);
  display: block;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: var(--title-font);
  font-weight: 700;
  margin: 1rem 0 0.5rem 0;
}
.events__wrapper .item__wrapper .item__info .solistes {
  display: block;
}
.events__wrapper .item__wrapper .item__info .solistes a {
  color: var(--vsv-primary);
  font-size: 1.35rem;
}
.events__wrapper .item__wrapper .description {
  display: block;
  padding-bottom: 1.5rem;
}
.events__wrapper .item__wrapper .item__localisation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.events__wrapper .item__wrapper .item__localisation .date {
  display: block;
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem 0;
  font-weight: bold;
}
.events__wrapper .item__wrapper .item__localisation .hour {
  display: inline-block;
}
.events__wrapper .item__wrapper .item__localisation .address {
  display: block;
}
.events__wrapper .item__wrapper .item__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  justify-content: space-between;
  gap: 1rem;
  min-width: 250px;
}
.events__wrapper .item__wrapper .item__actions .event__status {
  text-align: center;
}
.events__wrapper .item__wrapper .item__actions .event__status > span {
  display: block;
}
.events__wrapper .item__wrapper .item__actions .know-more {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 1rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  transition: all 0.5s ease;
}
.events__wrapper .item__wrapper .item__actions .know-more:hover {
  background-color: var(--accent-light);
  color: var(--white);
  transition: all 0.5s ease;
}

.is-mobile .events__wrapper .item__img {
  width: clamp(300px, 20%, 400px);
}
.is-mobile .events__wrapper .item__data {
  padding: 0 0.5rem;
}
.is-mobile .events__wrapper .item__actions {
  margin-left: 0;
  width: 100%;
}

.soliste__card__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.soliste__card {
  width: clamp(400px, 45%, 600px);
  padding: 1.5rem 1rem;
  display: block;
}
.soliste__card.--vss {
  background: var(--gradientvss);
}
.soliste__card.--vss .event {
  color: var(--vss-primary);
  border-color: var(--vss-primary);
}
.soliste__card.--vsv {
  background: var(--gradientvsv);
}
.soliste__card.--vsv .event {
  color: var(--vsv-primary);
  border-color: var(--vsv-primary);
}
.soliste__card .card-content {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "event date" "name date" "address hour";
  gap: 10px;
  height: 100%;
  border-radius: 20px;
  place-items: center;
  background: var(--white);
  padding: 1rem;
}
.soliste__card .card-content > * {
  display: block;
}
.soliste__card .event {
  grid-area: event;
  text-align: left;
  text-transform: uppercase;
  font-size: clamp(18px, 3vw, 35px);
  white-space: nowrap;
  border-bottom: 1px solid var(--black);
}
.soliste__card .name {
  grid-area: name;
  font-family: var(--title-font);
  font-size: 1.5rem;
}
.soliste__card .date {
  grid-area: date;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.soliste__card .date span {
  display: block;
}
.soliste__card .date .day {
  font-size: 2.5rem;
}
.soliste__card .date .month {
  font-size: 1.5rem;
}
.soliste__card .date .year {
  font-size: 1.5rem;
}
.soliste__card .hour {
  grid-area: hour;
  font-size: 2rem;
  font-weight: 700;
}
.soliste__card .address {
  grid-area: address;
  text-transform: uppercase;
}

.soliste__content {
  margin-top: 4rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.soliste__content .name {
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.soliste__content .type {
  text-transform: capitalize;
  font-size: 1.5rem;
}
.soliste__content .social-media {
  justify-content: start;
  margin: 2rem 0;
}

.event__info.grid__content {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.event__info__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event__detail .title {
  color: var(--vsv-primary);
  margin-bottom: 1rem;
}
.event__detail .solistes {
  font-size: 1.3rem;
}
.event__detail .event__info {
  margin-top: 2rem;
}
.event__detail .event__info__description .dates {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.event__detail .event__info__description .place {
  margin-bottom: 1.5rem;
}
.event__detail .event__status {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.event__detail .event__info__data {
  border-width: 1rem;
  border-style: solid;
  border-image-slice: 1;
  border-image-source: var(--gradientvsv);
  padding: 1rem;
}
.event__detail .event__info__data .data__item {
  display: flex;
  flex-direction: column;
}
.event__detail .event__info__data .data__item + .data__item {
  margin-top: 1rem;
}
.event__detail .event__info__data .data__item.--inline {
  flex-direction: row;
}
.event__detail .event__info__data .data__item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vsv-primary);
  margin-right: 1rem;
}
.event__detail .event__info__map {
  min-height: 300px;
}
.event__detail .event__sponsor {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

.event__back {
  margin-bottom: 2rem;
}
.event__back a {
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.event__back a:hover {
  color: var(--vsv-primary);
}

.infos__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem;
}
.infos__wrapper > .info__item {
  width: clamp(300px, 45%, 600px);
  border-width: 1rem;
  border-style: solid;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(0, 0, 0, 0);
  border-radius: 12px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(var(--gradient-angle), var(--vss-primary), var(--vss-secondary), var(--vss-third)) border-box;
}
.infos__wrapper > .info__item .title {
  text-transform: unset;
}
.infos__wrapper > .info__item .icon {
  align-self: flex-end;
}
.infos__wrapper > .info__item:hover {
  animation: rotate 0.5s linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

#sncf {
  margin: 2rem auto;
  text-align: center;
}

@keyframes rotate {
  to {
    --gradient-angle: 315deg;
  }
}
@property --gradient-angle {
  inherits: false;
  initial-value: var(--gradient-angle);
  syntax: "<angle>";
}
.section__billetterie {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
}
.section__billetterie .billetterie__item {
  width: clamp(300px, 30%, 500px);
  padding: 1rem;
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section__billetterie .billetterie__item .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vss-primary);
  margin-bottom: 1rem;
  font-family: var(--primary-font);
  text-align: center;
  flex: 1;
}
.section__billetterie .billetterie__item button,
.section__billetterie .billetterie__item a {
  display: inline-block;
  text-align: center;
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: var(--white);
  font-weight: bold;
}
.section__billetterie .billetterie__item button:hover,
.section__billetterie .billetterie__item a:hover {
  background: var(--accent-light);
}

.is-mobile .section__billetterie {
  column-gap: 0;
  row-gap: 2rem;
}
.is-mobile .section__billetterie .billetterie__item {
  width: 100%;
}

.list__office_tourisme {
  margin: 2rem 0;
}
.list__office_tourisme li a {
  padding: 1rem;
  font-size: 1.5rem;
}
.list__office_tourisme li a i {
  margin-right: 1rem;
  font-size: 2rem;
}
.list__office_tourisme li a:hover {
  color: var(--accent-light);
}

.press__pictures {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.press__folder {
  margin: 2rem 0;
}

.press__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
}
.press__contact > div {
  flex: 1;
  width: clamp(300px, 30%, 500px);
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.5rem;
  }
}

.gallery__item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grey);
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 4px;
}
.gallery__item:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery__item:hover img, .gallery__item:focus-visible img {
  transform: scale(1.06);
  opacity: 0.85;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  cursor: pointer;
}
.lightbox__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  padding: 3.5rem 4.5rem 1rem;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .lightbox__container {
    padding: 3rem 0.5rem 1rem;
  }
}
.lightbox__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}
.lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem 0.65rem;
  line-height: 1;
  border-radius: 4px;
  transition: background 0.2s;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 1rem 0.85rem;
  line-height: 1;
  border-radius: 4px;
  transition: background 0.2s;
}
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.lightbox__nav[hidden] {
  display: none;
}
@media (max-width: 600px) {
  .lightbox__nav {
    padding: 0.65rem 0.55rem;
    font-size: 1rem;
  }
}
.lightbox__prev {
  left: 0.5rem;
}
.lightbox__next {
  right: 0.5rem;
}
.lightbox__info {
  text-align: center;
  color: #fff;
  padding: 0.75rem 1rem 0;
  min-height: 3.5rem;
  width: 100%;
}
.lightbox__title {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.2rem;
}
.lightbox__title:empty {
  display: none;
}
.lightbox__caption {
  font-size: 0.875rem;
  opacity: 0.75;
  margin: 0 0 0.2rem;
}
.lightbox__caption:empty {
  display: none;
}
.lightbox__counter {
  font-size: 0.75rem;
  opacity: 0.5;
  margin: 0;
}

.footer__logo {
  width: clamp(120px, 20vw, 200px);
  margin: 0 auto;
}

.footer__content {
  margin-top: 2rem;
  border-top: 2px solid var(--white);
}

.footer__baseline {
  font-size: 2rem;
  color: var(--white);
  text-align: center;
  margin: 2rem 0;
}

footer .social-media {
  font-size: 3rem;
  justify-content: center;
  gap: 2rem;
  margin: 2rem;
}
footer .social-media .social-media__link {
  color: var(--white);
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem;
}
.footer__links .footer__link {
  color: var(--white);
  border: 2px solid var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.5s ease;
}
.footer__links .footer__link:hover {
  background-color: var(--white);
  color: var(--black);
}

.footer__bottom {
  text-align: center;
  color: var(--white);
}
.footer__bottom a {
  color: var(--white);
}

#modal_info .modal-content {
  background-color: var(--vss-primary);
}
#modal_info .modal-header {
  gap: 2rem;
}
#modal_info .modal-header .title {
  flex: 1;
  text-align: center;
  color: var(--light);
}
#modal_info .modal-header button {
  color: var(--light);
}
#modal_info .modal-body {
  background-color: var(--light);
  padding: 2rem;
}
#modal_info .modal-body p {
  margin-bottom: 1rem;
}

#btn-modal {
  position: fixed;
  top: 7rem;
  right: 2rem;
  z-index: 1000;
  background-color: red;
  color: var(--light);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: attention-pulse 2s ease-in-out 1s 3;
}
#btn-modal:hover {
  background-color: var(--vss-primary);
  color: var(--light);
  animation: none;
}

@keyframes attention-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}
/* ─── Lien permanent ──────────────────────────────────────────
       Toujours dans le DOM, toujours accessible au clavier.
       Visuellement caché mais révélé au focus (skip-link pattern).
    ──────────────────────────────────────────────────────────────── */
.ticker__link-permanent {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  padding: 0.5rem 1.25rem;
  background: #f5c542;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 0.5rem 0.5rem;
  z-index: 10;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.2s ease;
}

.ticker__link-permanent:focus-visible {
  clip-path: inset(0);
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ─── Ticker ──────────────────────────────────────────────────── */
.ticker {
  --duration: 18s;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding-block: 0.75rem;
  cursor: pointer;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll var(--duration) linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
    justify-content: center;
  }
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker__item {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.ticker__text {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.ticker__separator {
  color: #fff;
  padding: 0 0.5rem;
}

.is-mobile .mobile-only {
  display: block;
}
.is-mobile .desktop-only {
  display: none !important;
}

.is-desktop .desktop-only {
  display: block;
}
.is-desktop .mobile-only {
  display: none !important;
}

.v-middle {
  vertical-align: middle;
}

.container-max {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: clamp(90%, 90vw, 1400px);
  margin: 0 auto;
  max-width: 1400px;
}

.container-small {
  width: clamp(300px, 70vw, 800px);
  margin: 0 auto;
  max-width: 800px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-grid {
  width: 100%;
}

.wrapper__filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.video-responsive, .embed-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe, .embed-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem;
}
.social-media .social-media__link {
  color: var(--black);
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

/**/

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