/*fonts integration*/

@font-face {
  font-family: "Realce-Black";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Realce-Black.woff2") format("woff2"),
      url('../fonts/Realce-Black.woff') format('woff');
}

@font-face {
  font-family: "SourceSansPro-SemiBold";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/SourceSansPro-SemiBold.woff2") format("woff2"),
      url('../fonts/SourceSansPro-SemiBold.woff') format('woff');
}

@font-face {
  font-family: "SourceSansPro-Bold";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/SourceSansPro-Bold.woff2") format("woff2"),
      url('../fonts/SourceSansPro-Bold.woff') format('woff');
}

@font-face {
  font-family: "SourceSansPro-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/SourceSansPro-Regular.woff2") format("woff2"),
      url('../fonts/SourceSansPro-Regular.woff') format('woff');
}

*,
*:after,
*:before {
  box-sizing: border-box;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Styles généraux */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'SourceSansPro-Regular', Arial, sans-serif;
  overflow: hidden;
  background-color:#E7E6E2;
}

/* Conteneur de la vidéo */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: width 1s ease, left 1s ease, height 1s ease, top 1s ease;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  padding-top: 20px;
}

.small-screen-footer {
  display: none;
}

.logo {
  width: 90%;
  margin-bottom: 5%;
  margin-left: -8%;
  transition: transform 1s ease, top 1s ease, left 1s ease;
}

.logo.active {
  width: 37rem;
}

/* Ajout de classe pour désactiver l'animation */
.logo.no-animation {
  transition: none;
}

/* Menu */
.menu {
  position: relative;
  padding: 20px;
  border-radius: 8px;
  /* margin-right: -15%; */ /* Ajoute une marge depuis le bord droit */
  transition: transform 1s ease, top 1s ease, left 1s ease;
}

/* Ajout de classe pour désactiver l'animation */
.menu.no-animation {
  transition: none;
}

.menu ul {
  display: flex;
  flex-wrap: wrap; /* Permet aux éléments de se répartir sur plusieurs lignes */
  list-style: none;
  padding: 0;
  margin: 0;
  width: 16rem; /* Ajustez cette valeur selon vos besoins */
  /* margin-left: -33.5rem; */
}

.menu a.entrez {
  position:absolute;
  left: -2%;
  bottom: -25%;
  padding: 5px 5px;
  width: 10rem;
  border-radius: 35px;
  border: 1px solid #100F0D;
  background-color: #E7E6E2;
  text-align: center;
  font-size: 2rem;
  font-family: 'Realce-Black', sans-serif;
  display: block;
}

.menu a.entrez:hover {
  color: #fff;
  border: 1px solid #8F6299;
  background-color: #8F6299;
}

/* Trait vertical entre les éléments 1 et 2 */
.menu ul li:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%; /* Place le trait exactement au milieu */
  width: 1px;
  background-color: #8F6299;
  transform: translateX(-50%); /* Décale le trait de 50% vers la gauche pour le centrer */
}

/* Trait vertical entre les éléments 3 et 4 */
.menu ul li:nth-child(4)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%; /* Place le trait exactement au milieu */
  width: 1px;
  background-color: #8F6299;
  transform: translateX(-50%); /* Décale le trait de 50% vers la gauche pour le centrer */
}

.menu ul li {
  width: 50%; /* Chaque élément occupe la moitié de la ligne */
  margin: 10px 0px -4px 0px;
  position: relative; /* Nécessaire pour les pseudo-éléments */
  text-align: center; /* Centre le texte pour tous les éléments */
}

.menu ul li:nth-child(2),
.menu ul li:nth-child(4) {
  text-align: left; /* Aligne le texte à gauche pour les éléments 2 et 4 */
  border-right: none; /* Supprime la bordure droite pour ces éléments */
}

.menu ul li a {
  color: #8F6299;
  text-decoration: none;
  font-size: 1.4rem;
  /* display: block; */
  display: none;
}

.menu ul li:nth-child(1) a {
  margin-left: 13px;
}

.menu ul li:nth-child(2) a {
  margin-left: 23px;
}

.menu ul li:nth-child(3) a {
  margin-left: 53px;
}

.menu ul li:nth-child(4) a {
  margin-left: 23px;
}

.menu ul li a.active {
  background-color: #8F6299;
  color: #E7E6E2;
  display: inline;
  width: max-content;
  height: auto;
}

.text-section span {
  color: #8F6299;
}

.text-section.active span.title{
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Realce-Black', sans-serif;
}

.text-section ul {
  list-style-type: none; /* Enlève les points devant les éléments de la liste */
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #000000;
}

.date-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.date-list li {
  font-size: 1.2rem;
  text-transform: uppercase; /* Met le texte en majuscules */
  position: relative; /* Nécessaire pour le positionnement de la flèche */
  padding-left: 1.4vw; /* Espace pour l'image */
  line-height: 1.1rem;
  margin-top: 1rem;
}

.date-list li img.arrow {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: auto;
  margin-right: 10px; /* Espace entre l'image et le texte */
  text-transform: uppercase;
}

.album-section .accordion-container .accordion img.arrow, .album-section-new .accordion-container .accordion img.arrow{
  display: none;
  width: 1rem;
}

.album-section .accordion-container .accordion:hover img.arrow, .album-section-new .accordion-container .accordion:hover img.arrow {
  display: inline-block;
}

.accordion {
  line-height: 1.1rem;
  margin-top: 0.5rem;
  width: 35rem;
  font-size: 1.3rem;
}

.albums-section {
  padding: 0;
  overflow-y: auto;      /* garde le scroll */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ et Edge legacy */
}

/* Chrome, Safari, Edge (Chromium), Opera */
.albums-section::-webkit-scrollbar {
  display: none;
}

/* animation blink */
@keyframes blinkIndic {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* animation breathe */
@keyframes breathe {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-3px); }
}

/*animation: blinkIndic 1.4s ease-in-out infinite;*/

.indication {
  display: flex;
  position: absolute;
  width: max-content;
  left: 38%;
  padding-left: -0.5rem;
  opacity: 1;
  transform: translateY(0);

  animation: breathe 2s ease-in-out infinite;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.indication-album {
  display: flex;
  position: absolute;
  width: max-content;
  left: -10%;
  bottom: -15%;
  opacity: 1;
  transform: translateY(0);

  animation: breathe 2s ease-in-out infinite;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.indication-album.active {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.indication.hide{
  animation: none;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.text-indic-album {
  font-size: 1.5rem;
  font-family: 'SourceSansPro-regular', sans-serif;
  text-transform: uppercase;
  color:#E7E6E2;
  margin-left: -1rem;
}

.text-indic {
  font-size: 1.5rem;
  font-family: 'SourceSansPro-regular', sans-serif;
  text-transform: uppercase;
  color:#8F6299;
  margin-left: -0.8rem;
}

.arrow-indic-album {
  margin-top: 1.5rem;
}

.arrow-indic {
  margin-top: 1rem;
  margin-left: -0.5rem;
}

.indication-album img {
  display: block;
  width: 4rem;
  height: 4rem;
}

.indication img {
  display: block;
  width: 4rem;
  height: 3rem;
}

#album-section-2 {
  margin-top: 1rem;
}

.date-list li:hover {
  background-color: #8F6299;
  color: #E7E6E2;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.date-list a:hover {
  color: #E7E6E2;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.date-list li:hover img.arrow {
  display: inline-block;
}

.text-section,
.albums-section,
/* .album-section,
.album-section-new, */
.bio-section,
.contact-section {
  opacity: 0; /* Cache initialement la section de texte */
  visibility: hidden; /* Assure que la section est cachée */
  position: relative;
  color: #000000;
  /* font-size: 18px; */
}

.text-section {
  margin-top: 21rem;
  margin-left: 10rem;
  width: 30rem;
  text-align: center;
  height: auto;
}

.albums-section {
  margin-top: -16rem;
  margin-left: 5rem;
  width: 40rem;
  height: 30rem;
}

.bio-section {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-top: -30rem;
  margin-left: 4rem;
  width: 40rem;
  height: 33rem;
}

.bio-section::-webkit-scrollbar { 
  display: none;  /* Pour Chrome, Safari, et Opera */
}

.contact-section {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-top: -32rem;
  margin-left: 5rem;
  width: 40rem;
  height: 33rem;
  text-align: center;
}

.contact-section::-webkit-scrollbar { 
  display: none;  /* Pour Chrome, Safari, et Opera */
}

.text-section.active,
.albums-section.active,
/* .album-section.active,
.album-section-new.active, */
.bio-section.active,
.contact-section.active {
  opacity: 1; /* Rend la section de texte visible lorsque la classe active est ajoutée */
  visibility: visible; /* Rend la section de texte visible lorsque la classe active est ajoutée */
  transition: opacity 0.5s ease, visibility 0s; /* Transition pour montrer la section de texte */
}

.lineUp {
  animation: 0.5s anim-lineUp ease-out;
  opacity: 0; /* Assurez-vous que les éléments sont initialement invisibles */
}

/* Conteneur pour les logos en tant que footer */
.logo-footer {
  position: relative;
  margin-left: 5rem; /* Ajustez la distance par rapport à la gauche de la page selon vos besoins */
  display: none; /* Masque par défaut */
  flex-direction: row;
  gap: 5px; /* Espace entre les logos */
  width: max-content;
  margin-top: -2rem;
  background-color: #E7E6E2;
}

.album-logo {
  width: 35px;
  height: 35px;
}

.album-section span, .album-section-new span {
  background-color: transparent;
  display:block;
  margin: 0 auto;
  color: #8F6299;
  font-family: 'Realce-Black', sans-serif !important;
  font-size: 3rem;
  width: max-content;
}

/* Styles pour les accordéons */
/* .album-section, .album-section-new{
  left: 38vw;
  height: 35vh;
} */

.image-container {
  margin: 1rem 0 0 0; /* Espacement autour de l'image */
}

.square-image {
  width: 15rem; /* Définir la largeur souhaitée */
  height: 15rem; /* Définir la hauteur pour que l'image soit carrée */
  object-fit: cover; /* Assurez-vous que l'image remplit le cadre sans déformation */
}

.accordion-container {
  height: 21rem; /* Hauteur maximale de la zone scrollable */
  overflow-y: scroll; /* Activation du défilement vertical */
  -ms-overflow-style: none;  /* Pour Internet Explorer et Edge */
  scrollbar-width: none;  /* Pour Firefox */
  display: flex;
  gap: 1rem;
}

.accordion-container::-webkit-scrollbar { 
  display: none;  /* Pour Chrome, Safari, et Opera */
}

a.videoclip {
  position:absolute;
  padding: 5px 5px;
  bottom: 6rem;
  left: 30%;
  width: 10rem;
  border-radius: 35px;
  border: 1px solid #100F0D;
  background-color: #E7E6E2;
  text-align: center;
  font-size: 1.5rem;
  font-family: 'Realce-Black', sans-serif;
  display: block;
}

a.videoclip:hover {
  color: #fff;
  border: 1px solid #8F6299;
  background-color: #8F6299;
}

.content-container {
  overflow-y: scroll; /* Activation du défilement vertical */
  -ms-overflow-style: none;  /* Pour Internet Explorer et Edge */
  scrollbar-width: none;  /* Pour Firefox */
}

.content-container.content-single {
  padding-top: 4rem;
  height: 16rem;
  transition: padding-top 0.6s ease;
}

.content-container.content-set-me-free {
  padding-top: 3rem;
  height: 20rem;
}

.content-container.content-single.active {
  padding-top: 2rem;
}

.content-container::-webkit-scrollbar { 
  display: none;  /* Pour Chrome, Safari, et Opera */
}

.accordion {
  background-color: transparent;
  color: #444;
  cursor: pointer;
  width: 34rem;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.3rem;
  transition: 0.4s;
  line-height: 1.4rem;
  margin-top: 0.5rem;
}

.ouvert,
.accordion:hover {
  background-color: #8F6299; 
  color: #E7E6E2;
}

.panel {
  padding: 0 0.5rem 0 0.5rem;
  display: none;
  background-color: transparent;
  overflow: hidden;
  width: 25rem;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.bio-section .bio-titre {
  color: #8F6299;
  font-family: 'Realce-Black', sans-serif !important;
  font-size: 3rem;
  text-align: center;
}

.language {
  text-align: left;
}

.premier-paragraphe, .deuxième-paragraphe {
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.3;
  height: auto;
  width: 37rem;
}

/* .premier-paragraphe{
  padding-left: 2rem;
} */

/* .deuxième-paragraphe{
  padding-left: 4rem;
} */

.paragraphe-container{
  height: 12rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 2rem;
}

.paragraphe-container::-webkit-scrollbar { 
  display: none;  /* Pour Chrome, Safari, et Opera */
}

.lang-option {
  cursor: pointer;
}

.selected {
  background-color: #8F6299;
  color: white;
}

.unselected {
  background-color: transparent;
  color: black;
}

.titre-span {
  color: #8F6299;
  font-family: 'Realce-Black', sans-serif !important;
  font-size: 3rem;
  text-align: center;
}

.espace-contact{
  padding-top:1rem;
}

.contact-titre, .contact-nom, .contact-texte{
  font-size: 1.1rem;
  text-transform: uppercase;
}

.contact-titre{
  color: #8F6299;
}

@keyframes anim-lineUp {
  0% {
    opacity: 0;
    transform: translateY(80%);
  }
  20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.carousel-container {
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  display: flex;
  width: 80%;
  gap: 1rem;
  /*align-items: center;*/
  scroll-snap-type: x mandatory;
  flex-flow: row nowrap;
  scroll-behavior: smooth;
}

.carousel-arrow {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 2rem;
  height: fit-content;
  width: 48px;
  background-color: transparent;
  color: #8F6299;
  border: none;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 100ms;
}

.carousel-arrow--prev {
  left: 0rem;
}

.carousel-arrow--next {
  right: 2rem;
}

.lien-biographie{
  text-decoration: none;
}

.carousel-slide {
  flex: 1 0 33%;
  aspect-ratio: 1;
  flex-flow: column nowrap;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  /*background-color: #bae;*/
  scroll-snap-align: center;
}

.carousel-un{
  background-image: url(../img/presse_1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 130px;
  height: 130px;
}

.carousel-deux{
  background-image: url(../img/presse_2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 130px;
  height: 130px;
}

.carousel-trois{
  background-image: url(../img/presse_3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 130px;
  height: 130px;
}

.carousel-quatre{
  background-image: url(../img/presse_4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 130px;
  height: 130px;
}

.slide-date{
  font-size: 1rem;
  color: #8F6299;
  margin-bottom: 0;
  text-transform: uppercase;
}

.slide-titre {
  font-size: 1rem;
  margin-top: 0.2rem;
  color: #000000;
  width: 150px;
  text-transform: uppercase;
}


/**************************************BandsinTown CSS*************************************/

.bit-widget {
  background-color: transparent !important;
  width: 50% !important;
  margin: 0 auto;
}

/* .bit-widget.bit-layout-ipad > div:nth-child(2){
  display: none !important;
} */

.bit-widget .bit-event {
  border-top: 1px solid #8F6299 !important;
  border-bottom: 1px solid #8F6299 !important;
}

.bit-widget .bit-event:hover {
  background-color: #E7E6E2 !important;
}

.bit-widget .bit-event .bit-details a {
  font-family: 'sourceSansPro-SemiBold', sans-serif !important;
}

.bit-widget .bit-event .bit-details-inner-wrapper {
  font-family: 'sourceSansPro-regular', sans-serif !important;
}

.bit-widget.bit-layout-ipad .bit-event-list-title {
  padding: 0 !important;
}

.bit-widget .bit-event-list-title {
  font-size: 1.1rem !important;
  font-family: 'SourceSansPro-regular', sans-serif;
  padding-top: 1rem !important;
  text-transform: uppercase;
}

.bit-widget .bit-event-list-title .bit-show-upcoming span:hover, .bit-widget .bit-event-list-title .bit-show-past span:hover {
  background-color: #8F6299;
  color: #fff;
  width: max-content;
}

.bit-event-list-title.bit-show-past-display span {
  border: 1px solid #8F6299;
  padding: 5px 10px 5px 10px !important;
  border-radius: 20px;
  background-color: #8F6299;
  color: white;
  font-size: 1.3rem;
  font-family: 'Realce-Black', sans-serif;
}

.bit-widget .bit-play-my-city-cta {
  margin-top: -1.2rem !important;
  border-radius: 20px !important;
  text-transform: inherit;
  font-size: 1.5rem !important;
  font-family: 'Realce-Black', sans-serif !important;
  background-color: #E7E6E2 !important;
}

.bit-widget .bit-follow-section-wrapper {
  display: none !important;
}

.bit-widget .bit-play-my-city-wrapper {
  padding: 0 !important;
}

.bit-play-my-city-heading-text {
  margin-top: 1rem !important;
  margin-bottom: 1.5rem !important;
}

.bit-widget.bit-layout-ipad .bit-event .bit-rsvp-container {
  display: none;
}

.bit-widget .bit-offers-inner-wrapper {
  margin-right: 0;
}

.bit-widget .bit-offers {
  background-color: #8F6299 !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 10px 10px !important;
}

.bit-widget .bit-event .bit-offers-text {
  color: white;
  font-family: 'Realce-Black', sans-serif;
  font-size: 1.5rem !important;
  text-transform: capitalize;
}

.bit-event-list-title.bit-show-upcoming span {
    font-size: 1rem !important;
    background-color: #8F6299;
    color: #E7E6E2;
    display: inline;
}

.bit-widget .bit-event-toggle-separator{
    padding-left: 10px !important;
}

.bit-widget .bit-clickable-nav-link {
    font-size: 1rem !important;
}

.bit-event-list-title.bit-show-upcoming span.desactivated {
    background-color: transparent;
    color: #8F6299;
}

.bit-widget .bit-clickable-nav-link.activated {
  background-color: #8F6299;
  color: #E7E6E2;
  display: inline;
}

.bit-widget div a svg {
  display: none;
}

.date-list li {
  font-size: 1.3rem;
}


@media (max-width: 1801px) {

/*** albums-section ***/

  .albums-section {
    margin-top: -16rem;
    margin-left: 3rem;
    height: 28rem;
  }

  .album-section span {
    margin-top: -1rem;
  }

  a.videoclip {
    bottom: 15%;
  }

/*** bio-section ***/

  .bio-section {
    margin-top: -28rem;
    margin-left: 2rem;
    height: 33rem;
  }


/*** contact-section ***/

  .contact-section {
    margin-top: -33rem;
    margin-left: 3rem;
    height: 31rem;
  }

/*** footer ***/

  .logo-footer {
    margin-top: -3rem;
    margin-left: 3rem;
  }
}


@media (max-width: 1701px) {

/*** bio-section ***/

  .bio-section {
    margin-top: -27rem;
    margin-left: 3rem;
    height: 25rem;
  }

  
  .carousel-arrow {
    bottom: -20%;
  }


/*** contact-section ***/

  .contact-section {
    margin-top: -25rem;
    height: 25rem;
  }

/*** footer ***/

  .logo-footer {
    margin-top: 1rem;
  }

}


@media (max-width: 1601px) {

/*** logo et menu ***/

  .logo.active {
    width: 34rem;
  }

/*** albums-section ***/

  .albums-section {
    height: 27rem;
  }

  .album-section span {
    margin-top: -2rem;
  }

  a.videoclip {
    bottom: 15%;
  }

/*** bio-section ***/

  .bio-section {
    margin-top: -28rem;
    margin-left: 3rem;
    height: 25rem;
  }

  
  .carousel-arrow {
    bottom: -20%;
  }


/*** contact-section ***/

  .contact-section {
    margin-top: -25rem;
    height: 25rem;
  }

}


@media (max-width: 1501px) {

/*** text-section billeterrie ***/

  .text-section {
    margin-top: 18rem;
    margin-left: 7rem;
  }

/*** albums-section ***/

  .albums-section {
    margin-top: -18rem;
  }

/*** bio-section ***/

  .bio-section {
    height: 25rem;
  }

  .paragraphe-container {
    height: 15rem;
  }
  
  .carousel-arrow {
    bottom: -30%;
  }

}


@media (max-width: 1401px) {

/*** logo et menu ***/

  .logo.active {
    width: 30rem;
  }

/*** text-section billeterrie ***/

  .text-section {
    margin-top: 16rem;
  }


/*** albums-section ***/

  .album-section span {
    margin-top: 0rem;
  }

/*** bio-section ***/

  .bio-section {
    height: 22rem;
  }
  
  .carousel-arrow {
    bottom: -50%;
  }


/*** contact-section ***/

  .contact-section {
    margin-top: -22rem;
    height: 22rem;
  }

/*** footer ***/

  .logo-footer {
    margin-top: 4rem;
  }
}


@media (max-width: 1301px) {

/*** logo et menu ***/

  .logo.active {
    width: 25rem;
  }

/*** text-section billeterrie ***/

  .text-section {
    margin-top: 14rem;
    margin-left: 4rem;
  }

/*** albums-section ***/

  .albums-section {
    margin-left: 1rem;
  }

/*** bio-section ***/

  .bio-section {
    margin-left: 1rem;
  }


/*** contact-section ***/

  .contact-section {
    margin-left: 1rem;
  }

/*** footer ***/

  .logo-footer {
    margin-left: 1rem;
  }

}

@media (max-width: 1251px) {

/*** logo et menu ***/

  .logo.active {
    width: 21rem;
  }

/*** text-section billeterrie ***/

  .text-section {
    margin-top: 13rem;
    width: 35rem;
  }

/*** bio-section ***/

  .bio-section {
    margin-top: -26rem;
    width: 38rem;
  }

  .carousel-arrow--next {
    right: 1rem;
  }

/*** contact-section ***/

  .contact-section {
    margin-top: -22rem;
    width: 35rem;
  }

/*** footer ***/

  .logo-footer {
    margin-top: 3rem;
  }

}


@media (max-width: 1201px) {

/*** logo et menu ***/

  .logo {
    width: 70%;
    margin-bottom: 5%;
    margin-left: 0%;
  }

  .logo.active {
    width: 20rem;
  }

  .indication-album {
    left: -3%;
    bottom: -15%;
  }

  .text-indic-album {
    font-size: 1.2rem;
  }

  .arrow-indic-album {
    margin-top: 1.2rem;
  }

  .menu a.entrez {
    left: 5%;
    bottom: -22%;
    width: 8rem;
    font-size: 1.5rem;
    padding: 2px 5px;
    border: 0.5px solid #100F0D;
  }

/*** text-section billeterrie ***/

  .text-section {
    width: 35rem;
  }

  .text-section.active span.title {
    font-size: 2.3rem;
  }

  .bit-widget .bit-play-my-city-heading-text {
    font-size: 1rem !important;
  }

/*** albums-section ***/

  .albums-section {
    height: 25rem;
    margin-top: -19rem;
  }

  .album-section span, .album-section-new span {
    font-size: 2.3rem;
  }

  .text-indic {
    font-size: 1.3rem;
  }

  .accordion {
    width: 20rem;
    margin-top: 0.5rem;
  }

  .content-container.content-set-me-free {
    padding-top: 3.7rem;
  }

  .panel {
    padding: 0 0.5rem 0 0.5rem;
    font-size: 1rem;
    width: 20rem;
  }

  a.videoclip {
    bottom: 10%;
    left: 34%;
    width: 8rem;
    font-size: 1.3rem;
    padding: 2px 2px;
  }

/*** bio-section ***/

  .bio-section {
    margin-top: -25rem;
    width: 35rem;
    height: 20rem;
  }

  .bio-section .bio-titre {
    font-size: 2.3rem;
  }

  .language {
    font-size: 1rem;
  }

  .premier-paragraphe, .deuxième-paragraphe {
    font-size: 1rem;
    height: auto;
    width: auto;
  }

  .carousel-container {
    width: 90%;
  }

  .carousel-arrow {
    bottom: -60%;
  }

  .carousel-arrow--prev {
    left: -1rem;
  }

/*** contact-section ***/

  .contact-section {
    height: 20rem;
    margin-top: -20rem;
  }

  .titre-span {
    font-size: 2.3rem;
  }

  .contact-titre, .contact-nom, .contact-texte {
    font-size: 1rem;
  }

/*** footer ***/

  .logo-footer {
    margin-top: 5rem;
  }

}


@media (max-width: 1081px) {

/*** logo et menu ***/

  .logo.active {
    width: 16rem;
  }

/*** text-section billeterrie ***/

  .text-section {
    width: 18rem;
    margin-top: 16rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

/*** albums-section ***/

  .albums-section {
    width: 25rem;
    height: 22rem;
    margin-top: -20rem;
    margin-left: auto;
    margin-right: auto;
  }

  .album-section span, .album-section-new span {
    margin: 0;
  }

  .indication {
    display: none;
  }

  .accordion-container {
    height: auto;
    display: block;
    gap: 1rem;
  }

  .content-container.content-single, .content-container.content-set-me-free {
    padding-top: 0rem !important;
  }

  .content-container.content-single {
    height: auto;
  }

  a.videoclip {
    position: relative;
    margin-left: -5rem;
    margin-top: 1.5rem;
  }

/*** bio-section ***/

  .bio-section {
    width: 25rem;
    height: 20rem;
    margin-top: -20rem;
    margin-left: auto;
    margin-right: auto;
  }

  .bio-section .bio-titre {
    text-align: center;
    margin-bottom: 1rem;
  }

  .language {
    font-size: 1rem;
  }

  .premier-paragraphe, .deuxième-paragraphe {
    font-size: 1rem;
    height: auto;
    width: auto;
  }

  .carousel-container {
    width: 90%;
  }

  .carousel-arrow {
    bottom: -70%;
  }

  .carousel-arrow--prev {
    left: -1rem;
  }

  .carousel-arrow--next {
    right: -1rem;
  }

/*** contact-section ***/

  .contact-section {
    width: 25rem;
    margin-top: -20rem;
    margin-left: auto;
    margin-right: auto;
  }

/*** footer ***/

.small-screen-footer {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 10rem;
  }

  .footer-video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .album-logo {
    width: 2rem;
    height: 2rem;
  }

  .logo-footer {
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }

}


@media (max-width: 768px) {

/*** logo et menu ***/

  .logo.active {
    width: 14rem;
  }
  
  .menu ul {
    width: 200px;
  }

  .menu ul li:nth-child(4)::before, .menu ul li:nth-child(2)::before {
    left: 20%;
  }
 
  .menu ul li a {
    font-size: 18px;
  }
  

  .menu ul li:nth-child(1) a {
    margin-left: 15px;
  }

  .menu ul li:nth-child(2) a {
    margin-left: 30px;
  }

  .menu ul li:nth-child(3) a {
    margin-left: 45px;
  }

  .menu ul li:nth-child(4) a {
    margin-left: 30px;
  }
  
  .menu a.entrez {
    left: 7%;
  }
}

@media (max-width: 501px) {

/*** text-section billeterrie ***/

  .text-section {
    margin-top: 14rem;
  }

/*** contact-section ***/

  .contact-section {
    margin-top: -30rem;
    height: 28rem;
    width: 20rem;
  }


/*** albums-section ***/

  .albums-section {
    margin-top: -23rem;
    margin-left: 1rem;
    width: 20rem;
    height: 30rem;
  }


/*** bio-section ***/

  .bio-section {
    margin-top: -30rem;
    height: 30rem;
    width: 20rem;
  }


  .carousel-arrow {
    bottom: -15%;
    font-size: 4rem;
  }
  
  .carousel-arrow--prev {
    left: -1.1rem;
  }

  .carousel-arrow--next {
    right: -1.1rem;
  }


/*** footer ***/

  .logo-footer {
    margin-left: 1rem;
    margin-top: 0rem;
  }

  .album-logo {
    width: 1.7rem;
    height: 1.7rem;
  }
}

@media (max-width: 375px) {

/*** logo et menu ***/

  .logo.active {
    width: 12rem;
  }

/*** contact-section ***/

  .contact-section {
    margin-top: -28rem;
    height: 27rem;
  }


/*** albums-section ***/

  .albums-section {
    margin-top: -23rem;
    margin-left: 1rem;
    height: 28rem;
  }


/*** bio-section ***/

  .bio-section {
    margin-top: -28rem;
    height: 28rem;
  }


/*** footer ***/

  .logo-footer {
    margin-left: 0rem;
  }
}