@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* xs (Extra Small) : Moins de 576px
sm (Small) : De 576px à 767px
md (Medium) : De 768px à 991px
lg (Large) : De 992px à 1199px
xl (Extra Large) : 1200px et plus */

/* xs (Extra Small) : Moins de 576px */
/* @media (max-width: 576px) {} */
/* sm (Small) : De 576px à 767px */
/* @media (min-width: 577px) and (max-width: 767px) {} */
/* md (Medium) : De 768px à 991px */
/* @media (min-width: 768px) and (max-width: 991px) {} */
/* lg (Large) : De 992px à 1199px */
/* @media (min-width: 992px) and (max-width: 1199px) {} */
/* xl (Extra Large) : 1200px et plus */
/* @media (min-width: 1200px) {} */

:root {
  --purple: #775da6;
  --orange: #d4462a;
  --light-orange: #d49300;
  --red: #872714;
  --blue: #0e7386;
  --duc-color: #fae84f;
  --sale-color: #c04141;
  --slac-color: #7b92db;
  --espoir-color: #c95835;
  --beira-color: #226e3d;
  --monastir-color: #1102fd;
  --reg-color: #dc3b38;
  --zamalek-color: #df3835;
  --petro-color: #f6e059;
  --fap-color: #419050;
  --cobra-cape-color: #020202;
  --dark-blue: #181829;
  --white-text: #fff;
  --gray-text: #525252;
  --custom-green: #10656a;
}

html {
  font-family: var(--font-family);
  color: #fff;
  min-width: 300px;
}

body {
  padding: 0;
  overflow-x: hidden;
  transition: all var(--animation-duration) var(--animation-timing-function) var(---animation-fill-mode);
  min-width: 300px;
}

.bg-purple {
  background-color: var(--purple) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

/* .bg-duc {
  background-color: var(--duc-color);
} */

.bg-sale {
  background-color: var(--sale-color);
}

.bg-slac {
  background-color: var(--slac-color);
}

.bg-espoir {
  background-color: var(--espoir-color);
}

.bg-beira {
  background-color: var(--beira-color);
}

.bg-monastir {
  background-color: var(--monastir-color);
}

.bg-reg {
  background-color: var(--reg-color);
}

.bg-zamalek {
  background-color: var(--zamalek-color);
}

.bg-petro {
  background-color: var(--petro-color);
}

.bg-fap {
  background-color: var(--fap-color);
}

.bg-cobra {
  background-color: var(--cobra-cape-color);
}

.bg-cape {
  background-color: var(--cobra-cape-color);
}

.arena-bg {
  background-image: url("/static/assets/img/team_bg.png");
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  height: fit-content;
}

.zig-zag-bg {
  background-image: url("/static/assets/img/zig-zag-bg.png");
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
}

.zig-zag-motif {
  background-image: url("/static/assets/img/zig-zag-motif.png");
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(211, 211, 211, 0.295) !important;
  background-blend-mode: overlay;
}

.text-purple {
  color: var(--purple);
}

.text-orange {
  color: var(--orange);
}

.text-light-orange {
  color: var(--light-orange);
}

.text-red {
  color: var(--red);
}

.text-red-1 {
  color: #e21836 !important;
}

.text-blue {
  color: var(--blue);
}

.rating-star {
  color: #f8a401 !important;
  font-size: 1.5rem !important;
}

.rating-star-empty {
  color: #d9d9d9 !important;
  stroke: #f8a401 !important;
  font-size: 1.3rem !important;
}

a.link-light-orange {
  will-change: color;
  color: #ffffff;
  transition: color 0.3s ease-in-out;

  &:hover,
  :focus {
    color: var(--light-orange);
  }
}

a.link-light-bleu {
  will-change: color;
  color: #ffffff;
  transition: color 0.3s ease-in-out;

  &:hover,
  :focus {
    color: var(--blue);
  }
}

a.btn-dark-blue {
  background-color: var(--dark-blue);
  color: white;
  font-weight: 500;
  font-size: x-large;
  width: fit-content;

  &:hover {
    background-color: #1e1e35;
  }
}

.btn-light {
  color: #565656 !important;
  border: 1px solid #565656 !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 2rem !important;

  &.active {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
  }

  &:hover {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
  }
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  .btn-light {
    color: #565656 !important;
    border: 1px solid #565656 !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 2rem !important;

    >.active {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }

    &:hover {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  .btn-light {
    color: #565656 !important;
    border: 1px solid #565656 !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 2rem !important;

    >.active {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }

    &:hover {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .btn-light {
    color: #565656 !important;
    border: 1px solid #565656 !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 2rem !important;

    >.active {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }

    &:hover {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  .btn-light {
    color: #565656 !important;
    border: 1px solid #565656 !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 2rem !important;

    >.active {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }

    &:hover {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }
  }
}

/* xl (Extra Large) : 1200px et plus */
@media (min-width: 1200px) {
  .btn-light {
    color: #565656 !important;
    border: 1px solid #565656 !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem 2rem !important;

    >.active {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }

    &:hover {
      background-color: #fff !important;
      color: #000 !important;
      border-color: #000 !important;
    }
  }
}

.btn-blue {
  background-color: rgba(13, 115, 135, 0.14) !important;
  color: var(--blue) !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 2rem !important;
}

.btn-blue-reverse {
  background-color: var(--blue) !important;
  color: white !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 2rem !important;

  &:hover {
    background-color: #0c6476 !important;
  }
}

/*----------------------------- */
/*---------- NAVBAR ----------- */
/*----------------------------- */

#header,
.fess-jazz-header {
  will-change: background-color;
  width: 100%;
  position: fixed;
  top: 0;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: background-color 0s ease-in-out;
  z-index: 1000;
  padding: 2rem 7vmin 0 7vmin;
  padding-bottom: 1rem !important;
  background-color: rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.fixed {
  background-color: #1e1e1e !important;
  transition: background-color 0s ease-in-out;
}

.menu-toggle {
  display: none !important;
  cursor: pointer;
}

.mobile-menu.navbar-nav {
  will-change: background-color;
  width: 200px !important;
  height: 100vh;
  display: none;
  flex-direction: row;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 4rem 2rem 0 2rem !important;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white-text);
}

.menu-overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 900;
  right: 0;
  top: 0;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.close-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--white-text);
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

.logo-mobile {
  display: none;
}

.logo-mobile a img {
  height: 0.9rem;
}

.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu li.nav-item .nav-link {
  padding: 0 !important;
}

.desktop-menu {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem;
}

.desktop-menu li.nav-item .nav-link {
  font-size: 1rem !important;

  >iconify-icon {
    font-size: 1rem;
  }
}

@media (min-width: 576px) {
  #header {
    padding: 2rem 13vmin 0 13vmin;
  }

  .mobile-menu {
    justify-content: space-between !important;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
  }
}

/* Media query pour la Responsivité du navbar */
@media (min-width: 992px) {
  #header {
    padding: 1rem 8vmin 0 8vmin;
  }

  #header nav .desktop-menu .nav-item .nav-link {
    font-size: 1rem !important;

    >iconify-icon {
      font-size: 1rem;
    }
  }

  .desktop-menu.center {
    margin: auto;
  }

  .logo-desktop a img {
    height: 4rem !important;
  }
}

/* Media query pour basculer entre les menus */
@media (max-width: 991px) {

  .logo-desktop,
  .desktop-menu {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .logo-mobile,
  .mobile-menu {
    display: flex;
    flex-direction: column !important;
    gap: 0.5rem;
    justify-content: center;
  }
}

/*----------------------------- */
/*---------- NAVBAR ----------- */
/*----------------------------- */

/*----------------------------- */
/*---------- LANDING----------- */
/*----------------------------- */

section.landing.container-fluid {
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: 80%;
  height: 60vh;
  z-index: 1;
  color: #ffffff;
  /* margin-bottom: 52vw; */
}

/* section.landing.container-fluid {

        height: 55vh;

    } */

.landing-titles {
  width: 80%;
}

.landing-title {
  font-weight: 900 !important;
  
}
.landing-title-mw{
  max-width: 650px;
}

.landing-subtitle {
  font-size: large;
}

.under-greet {
  width: 50%;
  padding: 0 0 1rem 0;
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  section.landing.container-fluid {
    height: 70vh;
  }

  .landing-titles {
    width: 80%;
  }

  .landing-title {
    font-weight: 900 !important;
  }

  .landing-subtitle {
    font-size: larger;
    font-weight: normal;
  }

  .under-greet {
    width: 50%;
    padding: 0 0 1rem 0;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) {
  section.landing.container-fluid {
    height: 95vh;
  }

  .landing-titles {
    width: 80%;
  }

  .title-and-under {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .landing-title {
    font-weight: 900 !important;
  }
  .landing-title-mw{
    max-width: 485px;
  }

  .landing-subtitle {
    font-size: xx-large;
    font-weight: normal;
    padding: 2rem 0 0 0;
  }

  .under-greet {
    width: 25%;
    padding: 0 0 1rem 0;
    position: absolute;
    left: 45%;
    top: 100%;
  }
}

/* xl (Extra Large) : 1200px et plus */
@media (min-width: 1200px) {}

/*----------------------------- */
/*---------- LANDING----------- */
/*----------------------------- */

/* ----------------------------- */
/* --------- CAROUSEL ---------- */
/* ----------------------------- */

.container-fluid.pub-carousel {
  top: 99%;
  z-index: 0;
  background-color: #0e7386;
  width: 100% !important;
  height: fit-content;
}

.container-fluid.pub-carousel .carousel.slide {
  position: absolute;
  bottom: calc(100% - 10vw);
}

.container-fluid.pub-carousel .carousel.slide .carousel-control-container {
  display: none !important;
}

.container-fluid.pub-carousel .carousel.slide .carousel-inner {
  display: flex;
}

.container-fluid.pub-carousel .carousel.slide .carousel-inner .carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  >.pub-img {
    width: 30%;
    height: auto;
  }
}

@media (min-width: 992px) {
  .container-fluid.pub-carousel .carousel.slide {
    position: absolute;
    bottom: calc(100% - 5vw);
  }

  .container-fluid.pub-carousel .carousel.slide .carousel-inner {
    display: flex;
    align-items: flex-start;
    height: 18vw;
  }

  .container-fluid.pub-carousel .carousel.slide .carousel-control-container {
    display: none !important;
    width: 15vmin;
    height: 100px;
    position: absolute;
    z-index: 10;
    bottom: 65%;
    left: 85%;
  }

  .container-fluid.pub-carousel .carousel.slide .carousel-control {
    width: -moz-fit-content;
    width: fit-content;
    height: fit-content;

    >iconify-icon {
      font-size: 3rem;
    }
  }

  .container-fluid.pub-carousel .carousel.slide .carousel-inner .carousel-item {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    gap: 1rem;

    >.pub-img {
      will-change: tr;
      position: relative;
      z-index: 5;
      width: 30%;
      height: 15vw;

      &:hover {
        transform: scale(1.1);
        translate: 0 20px;
        transition: all 0.3s ease;
      }
    }
  }
}

/* ----------------------------- */
/* --------- CAROUSEL ---------- */
/* ----------------------------- */

/* ----------------------------- */
/* ---------- EVENTS ----------- */
/* ----------------------------- */

.event-type {
  width: 30%;
}

.event-type .event-image {
  width: 100%;
}

.event-type.event-desktop {
  display: none !important;
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  .event-type {
    padding-top: 4rem;
    padding-bottom: 1.5rem;
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  .event-type {
    width: clamp(15%, 20%, 25%) !important;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .event-type.event-desktop {
    display: flex !important;
  }

  .event-type {
    width: 25%;
    padding-top: 9rem;
    padding-bottom: 3rem;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  .event-type.event-desktop {
    display: flex !important;
  }

  .event-type {
    width: 15% !important;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
}

/* xl (Extra Large) : 1200px et plus */
@media (min-width: 1200px) {
  .event-type.event-desktop {
    display: flex !important;
  }

  .event-type {
    width: 15% !important;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
}

/* ----------------------------- */
/* ---------- EVENTS ----------- */
/* ----------------------------- */

/* ----------------------------- */
/* --------- GRAND BAL --------- */
/* ----------------------------- */
section.events-container {
  margin-top: 40vmin;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 5rem;
  color: black !important;
  background-color: #ffffff9c;
  background-blend-mode: overlay;
}

.a-la-une-heading svg.under-heading {
  width: 20%;
}

.a-la-une-details .a-la-une-infos .info-icons {
  height: 1.5rem !important;

  &:first-child {
    padding-left: 0.5rem;
    font-size: 1.5rem;
  }
}

aside.a-la-une-flyer {
  background-image: url("/static/assets/img/festival_jazz_mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  max-height: 500px;
}

aside.match-flyer {
  background-image: url("/static/assets/img/dk_arena_bg.png") !important;
  background-repeat: no-repeat;
  background-size: cover;
  height: 45vh !important;
}

aside.a-la-une-desktop {
  display: none !important;
}

aside.a-la-une-flyer .flyer-description {
  -moz-backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #00000050;
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  aside.a-la-une-flyer {
    min-width: 350px;
  }

  aside.a-la-une-flyer .flyer-description {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    height: 37% !important;
  }

  aside.a-la-une-flyer .flyer-description .flyer-btn {
    zoom: 80%;
    font-size: 1rem !important;
    margin-bottom: .2rem !important;

  }

  aside.a-la-une-flyer .flyer-description .flyer-infos {
    justify-content: center;
    align-items: center;
  }

  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-title {
    font-size: large !important;
  }

  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-details {
    font-size: small !important;
    margin-bottom: 0;
  }

  .filters-btn .filter-btn button {
    zoom: 80%;
    font-size: smaller !important;
    padding: 0.5rem 1rem !important;
  }

  .events-container .container {
    gap: 1rem !important;
  }

  .event-cards .event-card .event-card-body .buttons .btn-blue {
    padding: 0.5rem 1rem !important;
    font-size: smaller !important;
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  aside.a-la-une-flyer .flyer-description {
    display: flex;
    align-items: center;
    height: 35% !important;
  }

  aside.a-la-une-flyer .flyer-description .flyer-btn {
    /* zoom: 80%; */
    font-size: 1rem !important;
  }

  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-title {
    font-size: large !important;
  }

  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-details {
    font-size: small !important;
    margin-bottom: 0;
  }

  article.event-cards {
    flex-direction: row !important;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  article.event-cards .event-card {
    width: 48% !important;
  }

  article.event-cards .event-card .event-card-body h5 {
    order: 2 !important;
    font-size: large !important;
  }

  article.event-cards .event-card .event-card-body .event-card-schedule {
    order: 1 !important;
    font-size: small !important;
    color: var(--red) !important;
  }

  article.event-cards .event-card .event-card-body .event-card-location {
    order: 3 !important;
    font-size: small !important;
  }

  article.event-cards .event-card .event-card-body .buttons {
    order: 4 !important;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .a-la-une-heading svg.under-heading {
    width: 15%;
  }

  aside.a-la-une-flyer {
    height: 50vh !important;
  }

  aside.a-la-une-flyer .flyer-description {
    display: flex;
    align-items: center;
    height: 35% !important;
  }

  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-title {
    font-size: x-large !important;
  }
  
  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-details {
    font-size: large !important;
    margin-bottom: 0;
  }

  .filters-btn .filter-btn button {
    font-size: large !important;
    padding: 0.5rem 2rem !important;
  }

  article.event-cards {
    flex-direction: row !important;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  article.event-cards .event-card {
    width: 48% !important;
  }

  article.event-cards .event-card .event-card-body h5 {
    order: 2 !important;
    font-size: x-large !important;
  }

  article.event-cards .event-card .event-card-body .event-card-schedule {
    order: 1 !important;
    font-size: small !important;
    color: var(--red) !important;
  }

  article.event-cards .event-card .event-card-body .event-card-location {
    order: 3 !important;
    font-size: medium !important;
  }

  article.event-cards .event-card .event-card-body .buttons {
    order: 4 !important;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  .a-la-une-mobile {
    display: none !important;
  }

  aside.a-la-une-desktop {
    display: flex !important;
  }

  .fes-jazz,
  .match {
    display: flex !important;
    gap: 3rem;
    align-items: center;
  }

  aside.a-la-une-details,
  .match-details {
    width: 40% !important;
  }

  aside.a-la-une-flyer {
    background-image: url("/static/assets/img/festival_jazz.png");
    width: 60% !important;
    height: 50vh;
  }

  aside.a-la-une-flyer .flyer-description {
    display: flex;
    align-items: center;
    height: 27% !important;
  }

  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-title {
    font-size: 19px !important;
  }

  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-details {
    font-size: medium !important;
    margin-bottom: 0;
  }

  aside.a-la-une-flyer .flyer-description .flyer-btn {
    /* zoom: 80%; */
    /* width: 40% !important; */
    font-size: 1rem !important;
  }

  .a-la-une-heading svg.under-heading {
    width: 9%;
  }

  article.filters {
    order: 1 !important;
  }

  article.festival-jazz {
    order: 2 !important;
  }

  .filters .filters-btn {
    flex-direction: row-reverse !important;
  }

  .filters-btn .filter-btn {
    width: 60% !important;
  }

  .filters-btn .search-bar {
    width: 40% !important;
  }

  article.event-cards {
    flex-direction: row !important;
    justify-content: space-between;
    order: 3 !important;
  }

  article.event-cards .event-card {
    width: 32% !important;
  }

  article.event-cards .event-card .event-card-body h5 {
    order: 2 !important;
    font-size: x-large !important;
  }

  article.event-cards .event-card .event-card-body .event-card-schedule {
    order: 1 !important;
    font-size: small !important;
    color: var(--red) !important;
  }

  article.event-cards .event-card .event-card-body .event-card-location {
    order: 3 !important;
    font-size: medium !important;
  }

  article.event-cards .event-card .event-card-body .buttons {
    order: 4 !important;
  }
}

/* xl (Extra Large) : 1200px et plus */
@media (min-width: 1200px) {
  section.events-container {
    padding-top: 10rem;
  }

  .a-la-une-mobile {
    display: none !important;
  }

  aside.a-la-une-desktop {
    display: flex !important;
  }

  .fes-jazz,
  .match {
    display: flex !important;
    gap: 3rem;
    align-items: center;
  }

  aside.a-la-une-details,
  .match-details {
    width: 45% !important;
  }

  aside.a-la-une-flyer {
    background-image: url("/static/assets/img/festival_jazz.png");
    width: 70% !important;
    height: 65vh;
  }

  aside.a-la-une-flyer .flyer-description {
    display: flex;
    align-items: center;
  }

  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-title {
    font-size: 28px !important;
  }

  aside.a-la-une-flyer .flyer-description .flyer-infos .flyer-details {
    font-size: larger !important;
    margin-bottom: 0;
  }

  aside.a-la-une-flyer .flyer-description .flyer-btn {
    /* zoom: 80%; */
    /* width: 40% !important; */
    /* font-size: 1rem !important; */
  }

  .a-la-une-heading svg.under-heading {
    width: 9%;
  }

  article.filters {
    order: 1 !important;
  }

  article.festival-jazz {
    order: 2 !important;
  }

  .filters .filters-btn {
    flex-direction: row-reverse !important;
  }

  .filters-btn .filter-btn {
    width: 43% !important;
  }

  .filters-btn .search-bar {
    width: 50% !important;
    margin-left: auto;
  }

  article.event-cards {
    flex-direction: row !important;
    justify-content: space-between;
    order: 3 !important;
    zoom: 70%;
  }

  article.event-cards .event-card {
    width: 32% !important;
  }

  article.event-cards .event-card .event-card-body h5 {
    order: 2 !important;
    font-size: xx-large !important;
  }

  article.event-cards .event-card .event-card-body .event-card-schedule {
    order: 1 !important;
    font-size: medium !important;
    color: var(--red) !important;
  }

  article.event-cards .event-card .event-card-body .event-card-location {
    order: 3 !important;
    font-size: large !important;
  }

  article.event-cards .event-card .event-card-body .buttons {
    order: 4 !important;
  }

  article.event-cards .event-card .event-card-body .buttons .btn-blue {
    font-size: larger !important;
  }

  article.event-cards .event-card .event-card-body .buttons .event-card-share-btn .icon {
    font-size: xx-large !important;
  }
}

/* ----------------------------- */
/* --------- GRAND BAL --------- */
/* ----------------------------- */

/* ---------------------------------- */
/* --------- GESTION BILLET --------- */
/* ---------------------------------- */

section.gb {
  background-color: #1e1e1e;
  /* padding-bottom: 4rem !important; */
}

section.gb .gb-boxes .gb-bloc {
  background-color: rgba(255, 255, 255, 0.12);
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  section.gb .gb-boxes .gb-bloc {
    width: 45%;
  }

  section.gb .gb-boxes .gb-bloc .gb-title h4 {
    font-size: x-small !important;
    font-weight: 900 !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title span.sub {
    width: 80%;
    font-size: xx-small !important;
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  section.gb .gb-boxes .gb-bloc {
    width: 45%;
  }

  section.gb .gb-boxes .gb-bloc .gb-title h4 {
    font-size: medium !important;
    font-weight: 900 !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title span.sub {
    width: 80%;
    font-size: small !important;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  section.gb .a-la-une-heading p.text-center {
    width: 50%;
  }

  section.gb .gb-boxes .gb-bloc {
    width: 49%;
    flex-direction: row !important;
    align-items: center !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title h4 {
    font-size: medium !important;
    font-weight: 900 !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title span.sub {
    width: 80%;
    font-size: small !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title span.dots {
    font-size: medium !important;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  section.gb {
    background-image: url("/static/assets/img/gb_bg.png");
    background-color: #1e1e1e;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
  }

  section.gb .a-la-une-heading p.text-center {
    width: 50%;
  }

  section.gb .gb-boxes .gb-bloc {
    width: 32%;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title h4 {
    font-size: medium !important;
    font-weight: 900 !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title span.sub {
    width: 80%;
    font-size: small !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title span.dots {
    font-size: medium !important;
  }
}

/* xl (Extra Large) : 1200px et plus */
@media (min-width: 1200px) {
  section.gb {
    background-image: url("/static/assets/img/gb_bg.png");
    background-color: #1e1e1e;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
  }

  section.gb .a-la-une-heading p.text-center {
    width: 50%;
  }

  section.gb .gb-boxes .gb-bloc {
    width: 32%;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 2rem !important;
    justify-content: center !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title h4 {
    font-size: medium !important;
    font-weight: 900 !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title span.sub {
    width: 80%;
    font-size: small !important;
  }

  section.gb .gb-boxes .gb-bloc .gb-title span.dots {
    font-size: medium !important;
  }
}

/* ---------------------------------- */
/* --------- GESTION BILLET --------- */
/* ---------------------------------- */

/* ---------------------------------- */
/* --------- GESTION BILLET --------- */
/* ---------------------------------- */

main section.our-clients {
  background-color: #f7f1f1;
  display: none;
}

/* ---------------------------------- */
/* --------- GESTION BILLET --------- */
/* ---------------------------------- */

/* ---------------------------------- */
/* --------- CALL TO ACTION --------- */
/* ---------------------------------- */

section.call-to-action {
  background: linear-gradient(265deg,
      rgba(23, 131, 152, 0.95) 16.23%,
      rgba(15, 70, 81, 0.9) 104.94%),
    url("/assets/img/cta_bg.png"),
    lightgray 0px -270.583px / 100% 197.885% no-repeat;
  background-size: cover;
}

section.call-to-action .text p {
  font-size: 1.1rem;
  font-weight: normal;
  color: #ffffff;
  line-height: 1.5;
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  section.call-to-action {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  section.call-to-action .container .text {
    width: 70% !important;
  }

  section.call-to-action {
    height: 37vh !important;
  }

  .cta-img {
    top: -11vh !important;
    left: 50%;
  }

  .cta-img img {
    width: 80% !important;
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  section.call-to-action .text p {
    font-size: 1.1rem;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.5;
  }

  section.call-to-action {
    height: 43vh !important;
  }

  .cta-img {
    top: -15vh !important;
    left: 55%;
  }

  .cta-img img {
    width: 90% !important;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  section.call-to-action .text p {
    font-size: 1.5rem;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.5;
  }

  section.call-to-action .container.cta-img {
    top: -605% !important;
    right: 5%;
    width: 10% !important;
  }

  section.call-to-action {
    height: 55vh !important;
  }

  .cta-img {
    top: -20vh !important;
    left: 55%;
  }

  .cta-img img {
    width: 85% !important;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  section.call-to-action .text p {
    font-size: 1.7rem;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.5;
  }

  section.call-to-action {
    /* margin-top: 2rem; */
    height: 55vh !important;
  }

  .cta-img {
    top: -23vh !important;
    left: 55%;
  }

  .cta-img img {
    width: 70% !important;
  }
}

/* xl (Extra Large) : 1200px et plus */
@media (min-width: 1200px) {
  section.call-to-action .text p {
    font-size: 1.9rem;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.5;
  }

  section.call-to-action .text {
    width: 35% !important;
  }

  section.call-to-action {
    height: 65vh !important;
  }

  .cta-img {
    top: -23vh !important;
    left: 65%;
  }

  .cta-img img {
    width: 60% !important;
  }
}

/* ---------------------------------- */
/* --------- CALL TO ACTION --------- */
/* ---------------------------------- */

/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */

footer {
  background-color: #1e1e1e;
  color: #ffffff;
}

.footer-form input {
  background-color: #1e1e1e;
  border: none !important;
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0 !important;
}

.footer-form button {
  background-color: #1e1e1e;
  border: none !important;
  border-bottom: 1px solid #ffffff !important;
  border-radius: 0 !important;
}

footer .nav-col {
  width: 30% !important;
  font-size: smaller !important;
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  footer {
    justify-content: center !important;
  }

  footer .footer-nav {
    width: 100% !important;
    justify-content: around !important;
    gap: 3rem;
  }

  .footer-nav .nav-col {
    width: 30% !important;
    padding: 0 1rem;
    font-size: smaller !important;
  }

  .footer-form {
    flex-shrink: 0 !important;
    width: 80% !important;
  }

  .footer-form input {
    color: white;
  }

}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  footer.footer {
    padding-top: 5rem !important;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  footer {
    zoom: normal;
  }

  footer .footer-nav {
    width: 60% !important;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  footer {
    zoom: normal;
  }

  footer .footer-nav {
    width: 60% !important;
  }

  .footer-nav .nav-col,
  .footer-nav .nav-col .title {
    font-size: large !important;
  }
}

/* xl (Extra Large) : 1200px et plus */
@media (min-width: 1200px) {
  footer {
    zoom: normal;
  }

  footer .footer-nav {
    width: 60% !important;
  }

  .footer-nav .nav-col,
  .footer-nav .nav-col .title {
    font-size: large !important;
  }
}

/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */

/* ----------------------------------------------------- */
/* ------------------------ BAL ------------------------ */
/* ----------------------------------------------------- */

#header.bal-header {
  /* background-color: #1E1E1E !important; */
  -webkit-backdrop-filter: none;
  backdrop-filter: none !important;
}

.btn-green {
  background-color: #008348 !important;
  color: white !important;
  border-radius: 0.5rem !important;
  padding: 0.7rem 2rem !important;
  font-size: medium;
  font-weight: 700 !important;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;

  &.active {
    background-color: #0a6e41 !important;
  }

  &:hover {
    background-color: #0a6e41 !important;
  }
}

/* main section.landing-bal {
  background-image: url("/static/assets/img/bal_landing.png") !important;

} */

.bal.container-fluid.pub-carousel {
  top: 103%;
}

.vs {
  position: relative;
}

.vs::before,
.vs::after {
  position: absolute;
  content: "|";
  transform: rotate(25deg);
}

.vs::before {
  top: 70%;
}

.vs::after {
  bottom: 70%;
}

.team {
  width: 45%;
}

.team .team-name h5.name,
.team .team-name p.country {
  font-size: x-small !important;
}

.maccaron-block img {
  width: 60px !important;
}

.team-flag img {
  width: 60px !important;
}

.match .match-details .details-infos {
  will-change: border-color, background-color;
  cursor: pointer;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;

  &:hover {
    border-color: var(--orange) !important;
    background-color: #efefef !important;
  }
}

.games .match-flyer .details-infos .team .team-name h5.name,
.team .team-name h5.name,
.team .team-name p.country {
  font-size: medium !important;
}

article.games aside.match-flyer {
  gap: 1rem;
  height: 300px !important;
  min-width: 300px !important;
}

article.games aside.match-flyer .teams {
  /* height: 50%; */
  padding-top: 1rem;
}

article.games aside.match-flyer .booking {
  width: 100%;
  padding: 0 0.5rem;
}

article.games aside.match-flyer .booking a.btn {
  width: 100%;
}

article.games aside.match-flyer .teams .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

article.games aside.match-flyer .teams .team .team-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

/* Spinner styles */
.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: var(--custom-green);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Container styles */
#spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
}

/* Hide spinner when content is loaded */
main.bal-main {
  display: none !important;
}

main.bal-main.loaded {
  display: block !important;
}

#spinner-container.loaded {
  display: none;
}


/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  main section.landing-bal {
    padding-top: 8rem;
    padding-bottom: 3rem;
    height: 70vh !important;
    justify-content: center !important;
  }

  .bal.landing-titles {
    width: 100%;
    padding-left: 1rem !important;
  }

  .bal.landing-titles .btn-green {
    font-size: medium !important;
    padding: 1rem 1.5rem !important;
  }

  .bal.container-fluid.pub-carousel {
    top: 98%;
  }

  .match {
    margin-top: 3rem;
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .team .team-name h5.name,
  .team .team-name p.country {
    font-size: smaller !important;
  }

  aside.match-flyer {
    width: 100% !important;
  }

  article.games aside.match-flyer {
    gap: 1rem;
    height: 330px !important;
    min-width: 350px !important;
  }

  aside.match-flyer .schedule {
    font-size: small;
  }

  aside.match-flyer .details-infos {
    width: 90% !important;
  }

  .vs {
    top: -15%;
  }

  aside.match-flyer .team-player {
    width: 25% !important;
  }

  aside.match-flyer .team-player img {
    width: 100% !important;
  }

  aside.match-details .details-infos {
    font-size: small !important;
  }

  article.games {
    height: fit-content !important;
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  main section.landing-bal {
    padding-top: 7rem;
    padding-bottom: 3rem;
    height: 80vh !important;
  }

  .bal.landing-titles {
    padding-left: 5rem !important;
  }

  .bal.container-fluid.pub-carousel {
    top: 93%;
  }

  .match {
    margin-top: 3rem;
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .team .team-name h5.name,
  .team .team-name p.country {
    font-size: small !important;
  }

  article.affiche {
    width: 100%;
  }

  aside.match-flyer {
    width: 100% !important;
  }

  article.games aside.match-flyer {
    gap: 1rem;
    height: 330px !important;
    min-width: 350px !important;
  }

  aside.match-flyer .details-infos {
    width: 70% !important;
  }

  aside.match-flyer .team-player {
    width: 30% !important;
  }

  aside.match-flyer .team-player img {
    width: 100% !important;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  .match {
    margin-top: 5rem;
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .team .team-name h5.name,
  .team .team-name p.country {
    font-size: small !important;
  }

  aside.match-flyer {
    width: 100% !important;
  }

  aside.match-flyer .team-player {
    width: 35% !important;
  }

  aside.match-flyer .team-player img {
    width: 100% !important;
  }

  #header.bal-header {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  main section.landing-bal {
    padding-top: 7rem;
    padding-bottom: 3rem;
    height: 80vh !important;
  }

  .bal.landing-titles {
    padding-left: 5rem !important;
  }

  .bal.container-fluid.pub-carousel {
    top: 85%;
  }

  article.affiche {
    width: 45%;
  }

  article.games aside.match-flyer {
    min-width: 100% !important;
    width: 100% !important;
    height: 330px !important;
  }

  article.games aside.match-flyer .teams .vs {
    margin-top: 2rem;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  aside.match-flyer {
    width: 75% !important;
  }

  aside.match-flyer .team-player {
    width: 35% !important;
  }

  aside.match-flyer .team-player img {
    width: 100% !important;
  }

  #header.bal-header {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .bal.landing-titles {
    padding-left: 7rem !important;
    /* padding-right: 10rem !important; */
  }

  .bal.landing-titles .landing-subtitle {
    font-size: x-large;
    width: 65%;
  }

  .bal.container-fluid.pub-carousel {
    top: 85%;
  }

  #header.bal-header {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  article.affiche {
    width: 45%;
  }

  article.games aside.match-flyer {
    width: 100% !important;
    height: 300px !important;
  }

  article.games aside.match-flyer .teams .vs {
    margin-top: 2rem;
  }

  aside.match-flyer .teams {
    padding-top: 1rem !important;
    transition: padding-top 0.5s ease-in-out;
  }

  .slide-up {
    opacity: 0;
    display: none;
    visibility: hidden;
    transform: translateY(100%);
  }

  aside.match-flyer:hover .teams {
    height: fit-content !important;
    padding-top: 0 !important;
  }

  aside.match-flyer:hover .slide-up {
    visibility: visible;
    display: flex;
    transition: visibility ease 0.1s;
    animation: slide-up 0.3s ease-in-out 0.2s both;
  }

  @keyframes slide-up {
    0% {
      opacity: 0;
      transform: translateY(80%);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* xl (Extra Large) : 1200px et plus */
@media (min-width: 1200px) {
  /* .match {
        gap: 0 !important;
    } */

  aside.match-flyer {
    width: 57% !important;
  }

  #header.bal-header {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .bal.container-fluid.pub-carousel {
    top: 85%;
  }

  .bal.landing-titles {
    padding-left: 9rem !important;
  }

  .bal.landing-titles .landing-subtitle {
    font-size: x-large;
    width: 50%;
  }

  #header.bal-header {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  article.affiche {
    width: 30%;
  }

  article.games aside.match-flyer {
    min-width: 200px !important;
    width: 100% !important;
    height: 300px !important;
  }

  article.games aside.match-flyer .teams .vs {
    margin-top: 2rem;
  }

  article.games aside.match-flyer .teams .team img {
    width: 50%;
  }

  aside.match-flyer .teams {
    padding-top: 1rem !important;
    transition: padding-top 0.5s ease;
  }

  .slide-up {
    opacity: 0;
    display: none;
    visibility: hidden;
    transform: translateY(100%);
  }

  aside.match-flyer:hover .teams {
    height: fit-content !important;
    padding-top: 0 !important;
  }

  aside.match-flyer:hover .slide-up {
    visibility: visible;
    display: flex;
    transition: visibility ease-in-out 0.1s;
    animation: slide-up 0.3s ease-in-out 0.2s both;
  }

  @keyframes slide-up {
    0% {
      opacity: 0;
      transform: translateY(80%);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Teams */
.arena-bg nav.nav-block ul li {
  cursor: pointer;
}

.arena-bg nav.nav-block ul li.active {
  position: relative;
  font-weight: bold !important;
  transition: font-weight 0.2s ease-in;
}

.arena-bg nav.nav-block ul li.active::after {
  position: absolute;
  content: "";
  height: 2.5px;
  width: 0;
  background-color: green;
  z-index: 1;
  left: 0;
  bottom: 0;
  animation: fill 0.3s ease-in 0.1s both;
}

@keyframes fill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.sh {
  height: 2px;
  width: 100%;
  background-color: white;
  z-index: 0;
}

article.classement .team-block {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  background-color: rgba(255, 255, 255, 0.178);
  height: 100px;
  padding-right: 1rem;
  gap: 2rem;
}

article.classement .team-block .color-block {
  width: 70px;
}

article.classement .team-block .color-block .maccaron-block {
  width: 80px;
  height: 80px;
  margin-left: 0.5rem;
}

article.classement .team-block .color-block .maccaron-block img {
  transform: scale(0.8);
}

.green-wave {
  width: 100%;
  margin-top: 25rem;
}

.laughing-woman {
  bottom: 30%;
}

.bal-bag {
  left: 45%;
  bottom: 35%;
  transition: transform 0.4s ease-in-out;

  &:hover {
    transform: rotate(-10deg) scale(1.2);
  }
}

.bal-mug {
  left: 5%;
  bottom: 13%;
}

.goodies {
  left: 57%;
  bottom: 7%;
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  section.arena-bg .assets {
    min-width: 300px !important;
  }

  section.arena-bg .assets .green-wave {
    margin-top: 10rem;
    height: 250px;
  }

  section.arena-bg .assets .laughing-woman {
    width: 25%;
    bottom: 39%;
  }

  section.arena-bg .assets .bal-bag {
    width: 30%;
    bottom: 47%;
  }

  section.arena-bg .assets .bal-mug {
    width: 45%;
    bottom: 25%;
  }

  section.arena-bg .assets .goodies {
    bottom: 2%;
  }

  section.arena-bg .assets .goodies .title {
    font-size: 1.5rem;
  }

  section.arena-bg .assets .goodies p {
    font-size: 1rem;
  }

  section.arena-bg .assets .goodies a.btn {
    font-size: 0.7rem;
    padding: 1rem !important;
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  section.arena-bg .assets .green-wave {
    height: 250px;
    margin-top: 10rem;
  }

  section.arena-bg .assets .laughing-woman {
    width: 25%;
    bottom: 35%;
  }

  section.arena-bg .assets .bal-bag {
    width: 30%;
    bottom: 45%;
  }

  section.arena-bg .assets .bal-mug {
    width: 45%;
    bottom: 20%;
  }

  section.arena-bg .assets .goodies {
    bottom: 2%;
  }

  section.arena-bg .assets .goodies .title {
    font-size: 1.5rem;
  }

  section.arena-bg .assets .goodies p {
    font-size: 1rem;
  }

  section.arena-bg .assets .goodies a.btn {
    font-size: 0.7rem;
    padding: 1rem !important;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  article.classement {
    justify-content: space-between;
  }

  article.classement .team-block {
    width: 45% !important;
  }

  article.classement .team-block .team-name {
    font-size: medium !important;
  }

  section.arena-bg .assets .green-wave {
    margin-top: 15rem;
  }

  section.arena-bg .assets .laughing-woman {
    width: 25%;
    bottom: 29%;
  }

  section.arena-bg .assets .bal-bag {
    width: 30%;
    bottom: 35%;
  }

  section.arena-bg .assets .bal-mug {
    width: 45%;
    bottom: 13%;
  }

  section.arena-bg .assets .goodies {
    bottom: 2%;
  }

  section.arena-bg .assets .goodies .title {
    font-size: 1.9rem;
  }

  section.arena-bg .assets .goodies p {
    font-size: 1.7rem;
  }

  section.arena-bg .assets .goodies a.btn {
    font-size: 1rem;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  article.classement {
    justify-content: space-between;
  }

  article.classement .team-block {
    width: 45% !important;
  }

  article.classement .team-block .team-name {
    font-size: large !important;
  }

  section.arena-bg {
    padding-top: 7rem !important;
  }

  section.arena-bg .assets .laughing-woman {
    width: 25%;
    bottom: 25%;
  }

  section.arena-bg .assets .bal-bag {
    width: 30%;
    bottom: 30%;
  }

  section.arena-bg .assets .bal-mug {
    width: 45%;
    bottom: 11%;
  }

  section.arena-bg .assets .goodies .title {
    font-size: 2.5rem;
  }

  section.arena-bg .assets .goodies p {
    font-size: 2rem;
  }

  section.arena-bg .assets .goodies a.btn {
    font-size: 1rem;
  }
}

/* xl (Extra Large) : 1200px et plus */
@media (min-width: 1200px) {
  article.classement {
    justify-content: space-between;
  }

  article.classement .team-block {
    width: 25% !important;
  }

  article.classement .team-block .team-name {
    font-size: larger !important;
  }

  section.arena-bg {
    padding-top: 7rem !important;
  }

  section.arena-bg .assets .laughing-woman {
    width: 25%;
  }

  section.arena-bg .assets .bal-bag {
    width: 30%;
  }

  section.arena-bg .assets .bal-mug {
    width: 45%;
  }

  section.arena-bg .assets .goodies .title {
    font-size: 3.5rem;
  }

  section.arena-bg .assets .goodies p {
    font-size: 2.5rem;
  }
}

/* Teams */

/* News */

section.news {
  background-color: var(--dark-blue);
  min-width: 300px;
}

section.news .container article.news-section aside.news-content ul.news-nav li.news-nav-item {
  background-color: #ffffff35;
  color: white;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;

  &.active {
    background-color: white;
    color: #000000;
  }

  &:hover {
    background-color: white;
    color: #000000;
  }
}

section.news .container article.news-section aside.news-content {
  width: 60%;
}

section.news .container article.news-section aside.news-content section.news-detailed article.news-block {
  width: 48%;
}

section.news .container article.news-section aside.news-content section.news-detailed article.news-block .news-img {
  width: 100%;
  border-radius: 5px;
  background-position: center;
}

section.news .container article.news-section aside.news-content section.news-detailed article.news-block .news-img img {
  width: 100%;
  position: relative;
}

section.news .container article.news-section aside.video {
  width: 40%;
}

section.news .container article.news-section aside.video .buttons {
  left: 105%;
  bottom: 10%;
}

section.news .container article.news-section aside.video .buttons .actions {
  border-radius: 100px;
  padding: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;

  &:hover {
    background-color: #ffffff35 !important;
    scale: 1.2;
  }
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  section.news .container article.news-section {
    flex-wrap: wrap;
  }

  section.news .container article.news-section aside.news-content {
    width: 100%;
  }

  section.news .container article.news-section aside.video {
    display: none !important;
    width: 100%;
  }

  section.news .container article.news-section aside.news-content section.news-detailed article.news-block {
    width: 100%;
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  section.news .container article.news-section {
    flex-wrap: wrap;
  }

  section.news .container article.news-section aside.news-content {
    width: 100%;
  }

  section.news .container article.news-section aside.video {
    display: none !important;
    width: 100%;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  section.news .container article.news-section aside.news-content {
    width: 100%;
  }
}

/* lg (Large) : De 992px à 1199px */
/* @media (min-width: 992px) and (max-width: 1199px) {} */
/* xl (Extra Large) : 1200px et plus */
/* @media (min-width: 1200px) {} */

/* News */

/* about */
section.about {
  width: 100%;
  min-width: 300px;
  min-height: 100vh;
}

section.about aside.text-content {
  padding: 5rem 11rem;
  width: 82%;
}

section.about .bg-motif {
  background-image: url("/static/assets/img/bal_motif.png");
  width: 18%;
}

section.about .bg-motif .bal-logo {
  top: 50%;
  transform: translate(-50%, -50%);
  width:150px;
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  section.about {
    flex-direction: column;
  }

  section.about aside.text-content {
    padding: 5rem 2rem;
    width: 100%;
  }

  section.about .bg-motif {
    background-image: none;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  section.about .bg-motif .bal-logo {
    position: relative;
    top: auto;
    transform: translate(0) scale(0.7);
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  section.about {
    flex-direction: column;
  }

  section.about aside.text-content {
    padding: 5rem 3rem;
    width: 100%;
  }

  section.about .bg-motif {
    background-image: none;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  section.about .bg-motif .bal-logo {
    position: relative;
    top: auto;
    transform: translate(0) scale(1);
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  section.about {
    flex-direction: column;
  }

  section.about aside.text-content {
    padding: 5rem 5rem;
    width: 100%;
  }

  section.about .bg-motif {
    background-image: none;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  section.about .bg-motif .bal-logo {
    position: relative;
    top: auto;
    transform: translate(0) scale(1);
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  section.about aside.text-content {
    padding: 5rem 7rem;
    padding-right: 9rem;
    width: 82%;
  }

  section.about .bg-motif {
    background-image: url("/assets/img/bal_motif.png");
    width: 18%;
  }

  section.about .bg-motif .bal-logo {
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

/* xl (Extra Large) : 1200px et plus */
/* @media (min-width: 1200px) {} */

/* about */

/* connexion page */
#connexion,
#inscription {
  background-color: white;
  min-height: 100vh;
  min-width: 300px;
}

#connexion aside.connexion,
#inscription aside {
  width: 50%;
  height: 100vh;
}

#inscription aside {
  height: fit-content;
}

#connexion aside.connexion form#connexion-form,
#inscription aside form#inscription-form {
  margin: auto;
  width: 50%;
  height: fit-content;
}

#connexion aside.connexion-img,
#inscription aside.inscription-img {
  width: 50%;
  height: 100vh;
}

#inscription aside.inscription-img {
  height: 116vh;
}

#connexion aside.connexion-img img,
#inscription aside.inscription-img img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.form-group.paswd {
  position: relative;
  margin-bottom: 20px;
}

.form-group.name {
  width: 50%;
}

.paswd-input {
  padding-right: 30px;
}

.toggle-password {
  position: absolute;
  
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.toggle-password-login {
  top: 36%;
}
.toggle-password-register {
  top: 24%;
}

.line-back {
  color: #d0d0d0;
}

.line-back::after,
.line-back::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: #efefef;
}

.line-back::after {
  left: 0;
}

.line-back::before {
  right: 0;
}

/* xs (Extra Small) : Moins de 576px
sm (Small) : De 576px à 767px
md (Medium) : De 768px à 991px
lg (Large) : De 992px à 1199px
xl (Extra Large) : 1200px et plus */

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {

  #connexion,
  #inscription {
    min-height: fit-content !important;
    height: fit-content !important;
  }

  #connexion aside.connexion,
  #inscription aside.inscription {
    width: 100%;
    height: fit-content !important;
    align-items: start !important;
  }

  #connexion aside.connexion form#connexion-form,
  #inscription aside form#inscription-form {
    margin: 7rem auto;
    margin-bottom: 13rem;
    width: 80%;
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {

  #connexion aside.connexion,
  #inscription aside.inscription {
    width: 100%;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {

  #connexion aside.connexion,
  #inscription aside.inscription {
    width: 70%;
  }

  #connexion aside.connexion-img,
  #inscription aside.inscription-img {
    width: 30%;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {

  #connexion aside.connexion,
  #inscription aside.inscription {
    width: 60%;
  }

  #connexion aside.connexion-img,
  #inscription aside.inscription-img {
    width: 40%;
  }
}

/* xl (Extra Large) : 1200px et plus */
/* @media (min-width: 1200px) {} */
/* connexion page */

/* fes-jazz */
main section#fes-jazz-landing {
  padding-top: 10rem;
  background-color: rgba(255, 255, 255, 0.562);
  background-blend-mode: overlay;
}

main section#fes-jazz-landing .container {
  padding: 0 7rem;
}

main section#fes-jazz-details .container {
  padding: 2rem 7rem;
}

main section#fes-jazz-details .container .details .pricing .btn-blue-reverse {
  width: 100%;
}

.vertical-bar {
  border-left: 1px solid #efefef;
  /* Couleur et style de la bordure */
  height: 250px;
  /* Hauteur de la barre verticale */
  margin: 0 10px;
  /* Marge autour de la barre verticale (ajustez selon vos besoins) */
}

main section#fes-jazz-details .container article#about-event {
  width: 100%;
}

main section#fes-jazz-details .container article#about-event .about-event {
  width: 70%;

  >p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}

main section#fes-jazz-details .container article#about-event .places {
  width: 30%;
}

main section#fes-jazz-details .container article#about-event .places .tickets .info-icons {
  width: 5%;
}

main section#fes-jazz-details .container article#about-event .places .seats .info-icons {
  width: 5%;
}

main section#other-events .container {
  padding: 0 7rem;
}

/* xs (Extra Small) : Moins de 576px */
@media (max-width: 576px) {
  main section#fes-jazz-landing {
    padding-top: 7rem;
  }

  main section#fes-jazz-landing .container h1 {
    font-size: x-large;
    margin-bottom: 0;
  }

  main section#fes-jazz-landing .container {
    padding: 0 1rem;
  }

  main section#fes-jazz-details .container {
    padding: 2rem 1rem;
  }

  main section#other-events .container {
    padding: 0 1rem;
  }

  #other-events .container article.event-cards {
    justify-content: space-between !important;
  }

  main section#fes-jazz-details .container .details {
    gap: 2rem;
  }

  main section#fes-jazz-details .container .details .pricing {
    width: 100% !important;
    justify-content: space-between !important;
  }

  main section#fes-jazz-details .container .details .planning {
    font-size: small !important;
  }

  main section#fes-jazz-details .container .details .pricing .btn-blue-reverse {
    width: 30% !important;
  }

  main section#fes-jazz-details .container article#about-event .places .tickets .info-icons {
    width: 1rem;
  }

  main section#fes-jazz-details .container article#about-event .places .seats .info-icons {
    width: 1rem;
  }

  #about-event {
    flex-direction: column;
  }

  #about-event .about-event {
    width: 100% !important;
    padding: 1rem 0 !important;
  }

  #about-event .places {
    width: 100% !important;
    padding: 2rem 0 !important;
  }

  .vertical-bar {
    display: none;
  }
}

/* sm (Small) : De 576px à 767px */
@media (min-width: 577px) and (max-width: 767px) {
  main section#fes-jazz-landing .container {
    padding: 0 3rem;
  }

  main section#fes-jazz-details .container {
    padding: 2rem 3rem;
  }

  main section#other-events .container {
    padding: 0 3rem;
  }

  #other-events .container article.event-cards {
    justify-content: space-between !important;
  }

  main section#fes-jazz-details .container .details {
    gap: 2rem;
  }

  main section#fes-jazz-details .container .details .pricing {
    width: 100% !important;
    justify-content: space-between !important;
  }

  main section#fes-jazz-details .container .details .pricing .btn-blue-reverse {
    width: 30% !important;
  }

  main section#fes-jazz-details .container article#about-event .places .tickets .info-icons {
    width: 1rem;
  }

  main section#fes-jazz-details .container article#about-event .places .seats .info-icons {
    width: 1rem;
  }

  #about-event {
    flex-direction: column;
  }

  #about-event .about-event {
    width: 100% !important;
    padding: 2rem 0 !important;
  }

  #about-event .places {
    width: 100% !important;
    padding: 2rem 0 !important;
  }

  .vertical-bar {
    display: none;
  }
}

/* md (Medium) : De 768px à 991px */
@media (min-width: 768px) and (max-width: 991px) {
  main section#fes-jazz-landing .container {
    padding: 0 2rem;
  }

  main section#fes-jazz-details .container {
    padding: 2rem 2rem;
  }

  main section#other-events .container {
    padding: 0 2rem;
  }

  #other-events .container article.event-cards {
    justify-content: space-between !important;
  }

  main section#fes-jazz-details .container .details {
    gap: 2rem;
  }

  main section#fes-jazz-details .container .details .pricing {
    width: 85% !important;
    justify-content: space-between !important;
  }

  main section#fes-jazz-details .container .details .pricing .btn-blue-reverse {
    width: 30% !important;
  }


  main section#fes-jazz-details .container article#about-event .places .tickets .info-icons {
    width: 1.7rem;
  }

  main section#fes-jazz-details .container article#about-event .places .seats .info-icons {
    width: 1rem;
  }
}

/* lg (Large) : De 992px à 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
  main section#fes-jazz-landing .container {
    padding: 0 3rem;
  }

  main section#fes-jazz-details .container {
    padding: 2rem 3rem;
  }

  main section#other-events .container {
    padding: 0 3rem;
  }

  #other-events .container article.event-cards {
    justify-content: center !important;
  }

}

/* xl (Extra Large) : 1200px et plus */
/* @media (min-width: 1200px) {} */

/* fes-jazz */
.dynamic-image {
  background-image: url("{% url 'dynamic_image' image_id=1 %}");
  /* Other styles... */
}

.navbar-booking {
  background-color: #181829 !important;
}

main#page-not-found {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  font-family: 'Alfa Slab One', serif;
  font-size: 10rem;

  > a.btn {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif !important;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    margin: 2rem;
  }

  > h1 {
    position: absolute;
    top: 60%;
    left: 50px;
    margin: 2rem;
  }
}

._404 {
  /* height: fit-content; */
  padding: 2rem;
}

.cart-notify::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 5px;
  background-color: var(--orange);
  border-radius: 50%;
  z-index: 100;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
}
.switch-lang{
  background-color: var(--custom-green) !important;
  color: var(--white-text) !important;
  font-size: 12px !important;
  outline: none;
}
.switch-lang *{
  background-color: var(--custom-green) !important;
  color: var(--white-text) !important;
  font-size: 12px !important;
  outline: none;
}

/* xs (Extra Small) : Moins de 576px */

/* @media (max-width: 576px) { */
  .password-strength {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .password-strength .password-strength__bar {
    display: inline-block !important;
    margin-top: 2px;
    width: 33% !important;
    height: 3px !important;
    border-radius: 3px;
    transition: all .5s ease-in-out;
  }
/* } */

.navbar-brand.signing {
  position: absolute !important;

  > img {
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.6));
  }
}

.splide__progress, .splide__arrow, .splide__pagination {
  display: none !important;
}

.splide__track.splide__track--loop.splide__track--ltr.splide__track--draggable {
  width: 573px;
}

@media (max-width: 600px) {
  .splide.is-initialized, .splide.is-rendered {
    width: 100vw;
  }

  .splide__track.splide__track--loop.splide__track--ltr.splide__track--draggable {
    width: 100% !important;
  }
  
  .splide__list {
    width: 100vw !important;
    gap: 12.5px;
  }

  .splide__slide {
    width: calc(30%) !important;
  }
  
  .splide__slide img {
    width: 100% !important;
  }

}

.bal.container-fluid.pub-carousel {
  background-color: transparent !important;
}

#about-bal {
  height: fit-content;
}