@charset "UTF-8";
/*---------------------------------- COLOR */
/*---------------------------------- FONT */
/*$burfordBlack:'BurfordRusticBookBlack', sans-serif;
$burfordInline:'BurfordRusticInlineBold', sans-serif;*/
/*@font-face {
  font-family: "burfordrusticinline-10", sans-serif;
  src: url("../font/BurfordRusticInlineLight.otf");
}*/
@font-face {
  font-family: "BreeSerif";
  src: url("../../font/Bree_Serif/BreeSerif-Regular.ttf");
}
/*---------------------------------- COLOR */
/*---------------------------------- FONT */
/*$burfordBlack:'BurfordRusticBookBlack', sans-serif;
$burfordInline:'BurfordRusticInlineBold', sans-serif;*/
/*@font-face {
  font-family: "burfordrusticinline-10", sans-serif;
  src: url("../font/BurfordRusticInlineLight.otf");
}*/
@font-face {
  font-family: "BreeSerif";
  src: url("../../font/Bree_Serif/BreeSerif-Regular.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: white;
}

html {
  scroll-behavior: smooth;
}

button {
  border: none;
}

button:hover {
  cursor: pointer;
}

li {
  list-style-type: none;
}

/* PARAMETRES GENERAUX */
/* width */
.w100 {
  width: 100%;
}

.w85 {
  width: 85%;
}

.w50 {
  width: 50%;
}

/* affichage */
.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aflex-center {
  display: flex;
  align-items: center;
}

.j-between {
  justify-content: space-between;
}

/* couleurs */
.white {
  color: #FFFFFF;
}

/* IMAGES COMMUNES */
.div-etoile {
  width: 37px;
  margin: 10px 15px 0 15px;
}

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  margin-top: 79px;
  position: relative;
}

/* TEXTES */
h1, h2, h3, h4 {
  font-family: "BreeSerif", sans-serif;
  text-transform: uppercase;
}

p, span {
  font-family: "Poppins", sans-serif;
}

.title-bg {
  display: inline;
  color: #FFFFFF;
  font-size: 3em;
  text-align: center;
  letter-spacing: 4px;
  z-index: 1;
  line-height: 1;
}

.title-h2 {
  font-size: 30px;
  font-weight: 300;
}

.paragraph {
  font-weight: 300;
  font-size: 16px;
}

/* MOBILE */
@media screen and (max-width: 430px) and (orientation: portrait) {
  .title-bg {
    width: 50%;
    font-size: 2.2em;
  }
}
@media screen and (max-width: 375px) and (orientation: portrait) {
  .title-bg {
    width: 55%;
    font-size: 1.8em;
  }

  .title-h2 {
    font-size: 25px;
  }
}
/* MELI KIT */
/******** SECTIONS ********/
.meli-around-center, .meli-between-center, .meli-center-center, .meli-around-start, .meli-around-end, .meli-between-start, .meli-between-end, .meli-center-start, .meli-center-end, .meli-start-center, .meli-start-start, .meli-start-end, .meli-end-center, .meli-end-start, .meli-end-end {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.meli-around-center {
  justify-content: space-around;
}

.meli-around-start {
  justify-content: space-around;
  align-items: flex-start;
}

.meli-around-end {
  justify-content: space-around;
  align-items: flex-end;
}

.meli-between-center {
  justify-content: space-between;
}

.meli-between-start {
  justify-content: space-between;
  align-items: flex-start;
}

.meli-between-end {
  justify-content: space-between;
  align-items: flex-end;
}

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

.meli-center-start {
  justify-content: center;
  align-items: flex-start;
}

.meli-center-end {
  justify-content: center;
  align-items: flex-end;
}

.meli-start-center {
  justify-content: flex-start;
  align-items: center;
}

.meli-start-start {
  justify-content: flex-start;
  align-items: start;
}

.meli-start-end {
  justify-content: flex-start;
  align-items: flex-end;
}

.meli-end-center {
  justify-content: flex-end;
  align-items: center;
}

.meli-end-start {
  justify-content: flex-end;
  align-items: flex-start;
}

.meli-end-end {
  justify-content: flex-end;
  align-items: flex-end;
}

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

/** OPTIONNAL : WIDTH / HEIGHT FOR SECTION **/
.meli-section-90 {
  width: 90%;
  margin: 0 auto;
}

.meli-section-80 {
  width: 80%;
  margin: 0 auto;
}

.meli-section-70 {
  width: 70%;
  margin: 0 auto;
}

.meli-section-60 {
  width: 60%;
  margin: 0 auto;
}

.meli-section-50 {
  width: 50%;
  margin: 0 auto;
}

.meli-section-40 {
  width: 40%;
  margin: 0 auto;
}

.meli-section-30 {
  width: 30%;
  margin: 0 auto;
}

.meli-section-20 {
  width: 20%;
  margin: 0 auto;
}

/** OPTIONNAL : WIDTH / HEIGHT GENERAL **/
.meli-section-full {
  width: 100%;
  height: 100vh;
}

/*.meli-width-100,.meli-width-95,.meli-width-90,.meli-width-85,.meli-width-80,.meli-width-75,.meli-width-70,.meli-width-65,.meli-width-60,.meli-width-55,.meli-width-50,.meli-width-45,.meli-width-40,.meli-width-35,.meli-width-30,.meli-width-25,.meli-width-20,.meli-width-15,.meli-width-10,.meli-width-5{
    padding: 10px;
}*/
.meli-width-100 img, .meli-width-95 img, .meli-width-90 img, .meli-width-85 img, .meli-width-80 img, .meli-width-75 img, .meli-width-70 img, .meli-width-65 img, .meli-width-60 img, .meli-width-55 img, .meli-width-50 img, .meli-width-45 img, .meli-width-40 img, .meli-width-35 img, .meli-width-30 img, .meli-width-25 img, .meli-width-20 img, .meli-width-15 img, .meli-width-10 img, .meli-width-5 img {
  width: 100%;
  height: auto;
}

.meli-width-100 {
  width: 100%;
}

.meli-width-95 {
  width: 95%;
}

.meli-width-90 {
  width: 90%;
}

.meli-width-85 {
  width: 85%;
}

.meli-width-80 {
  width: 80%;
}

.meli-width-75 {
  width: 75%;
}

.meli-width-70 {
  width: 70%;
}

.meli-width-65 {
  width: 65%;
}

.meli-width-60 {
  width: 60%;
}

.meli-width-55 {
  width: 55%;
}

.meli-width-50 {
  width: 50%;
}

.meli-width-45 {
  width: 45%;
}

.meli-width-40 {
  width: 40%;
}

.meli-width-35 {
  width: 35%;
}

.meli-width-30 {
  width: 30%;
}

.meli-width-25 {
  width: 25%;
}

.meli-width-20 {
  width: 20%;
}

.meli-width-15 {
  width: 15%;
}

.meli-width-10 {
  width: 10%;
}

.meli-width-5 {
  width: 5%;
}

/******** END - SECTIONS ********/
/*---------------------------- BASE*/
.baseHomeSection1 {
  width: 100vw;
  height: 39px;
  padding: 0 20px;
  background-color: #11519B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 160;
  position: relative;
}

.baseHomeBloc1 a {
  text-transform: uppercase;
  color: white;
  font-family: "BreeSerif", sans-serif;
  font-weight: bolder;
  font-size: 1em;
  text-decoration: none !important;
}
@media (max-width: 471px) {
  .baseHomeBloc1 a {
    font-size: 0.8em;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .baseHomeBloc1 a {
    font-size: 1.5em;
  }
}

.baseHomeBloc1 {
  width: 40%;
}
@media (max-width: 471px) {
  .baseHomeBloc1 {
    width: 30%;
    font-size: 0.7em;
  }
}

.baseHomeBloc2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 40%;
}
@media (max-width: 471px) {
  .baseHomeBloc2 {
    width: 30%;
  }
}

.baseHomeBloc3 {
  width: 15%;
}
@media (max-width: 471px) {
  .baseHomeBloc3 {
    width: 30%;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeBloc3 {
    width: 15%;
  }
}

.baseHomeBloc3 img {
  width: 100%;
  border-radius: 4px;
  -moz-border-radius: 4px;
  /* compatibilité avec Firefox */
  -webkit-border-radius: 4px;
  /* compatibilité avec les navigateurs Webkit */
}

/*-----------------------------------*/
.baseHomeBilletterie {
  position: absolute;
  top: 35px;
  right: 15%;
}
@media (max-width: 471px) {
  .baseHomeBilletterie {
    display: none;
  }
}
.baseHomeBilletterie a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.baseHomeBilletterie p {
  text-transform: uppercase;
  color: white;
  font-family: "BreeSerif", sans-serif;
  font-size: 1em;
  z-index: 8;
  padding: 10px;
  /*width: 100%;*/
  text-align: center;
  /* background-color: $blueLight;*/
  position: relative;
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .baseHomeBilletterie p {
    font-size: 1.9em;
  }
}

.baseHomeBilletterieBloc {
  position: relative;
}

.baseHomeBilletterieButton {
  position: relative;
  z-index: 99;
  width: 123px;
  height: 44px;
  background-color: #11519B;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
  transition: ease-in-out;
  transition-duration: 0.5s;
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .baseHomeBilletterieButton {
    width: 230px;
    height: 75px;
  }
}

.baseHomeBilletterieButton a {
  /*transition: 0.25s ease-in-out;
  transition-duration: 5s;*/
  text-decoration: none;
}

#baseHomeBilletterieButtonHover:hover {
  color: #E83b7b !important;
}

.baseHomeBilletteriePink {
  /*background-color: $pinkMedium;*/
  z-index: 2;
  position: absolute;
  top: 5px;
  right: -7%;
  width: 123px;
  height: 44px;
  background-color: #E83b7b;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .baseHomeBilletteriePink {
    width: 230px;
    height: 75px;
  }
}

/*.baseHomeBilletterie{
  position: absolute;
  top: 39px;
  right: 15%;
}*/
/*.baseHomeBilletterie a{
  text-decoration: none;
}

.baseHomeBilletterie a p{
  text-transform: uppercase;
  color: white;
  font-family: $burfordBlack;
  font-size: 0.8em;
  z-index: 8;
  background-color: $blueLight;
  padding: 20px;
  position: relative;
}*/
.baseHomeReseaux {
  display: flex;
  align-items: center;
  width: 25%;
}
@media (max-width: 471px) {
  .baseHomeReseaux {
    width: 100%;
  }
}

.baseHomeReseauxContact1 a {
  font-family: "Poppins", sans-serif;
  font-size: 0.9em;
  color: white;
  font-weight: bolder;
  text-decoration: none;
}
@media (max-width: 471px) {
  .baseHomeReseauxContact1 a {
    font-size: 0.8em;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeReseauxContact1 a {
    font-size: 0.7em;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .baseHomeReseauxContact1 a {
    font-size: 1.5em;
  }
}

.baseHomeReseauxContact2 a {
  text-decoration: none;
  color: white;
}

.baseHomeReseauxContact2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
  color: white;
  font-weight: bolder;
  padding-bottom: 2px;
}
@media (max-width: 471px) {
  .baseHomeReseauxContact2 {
    padding-bottom: 5px;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeReseauxContact2 {
    font-size: 0.8em;
  }
}
@media (min-width: 1919px) and (max-width: 1930px) {
  .baseHomeReseauxContact2 {
    font-size: 1.8em;
  }
}

.baseHomeReseaux_icon {
  width: 40%;
}

.baseHomeReseaux_icon img {
  width: 100%;
}

.baseHomeSectionPink {
  width: 100vw;
  height: 45px;
  background-color: #E83b7b;
  position: absolute;
  z-index: 2;
  top: 0;
}

.baseHomeSectionPinkButton {
  background-color: #E83b7b;
  z-index: 2;
  position: absolute;
  top: 5px;
  right: -5%;
  width: 120px;
  height: 55px;
}

/*-------------------------------SECTION2*/
.baseHomeSection2 {
  width: 100vw;
  height: 73px;
  padding: 0 20px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 150;
  position: absolute;
  top: 45px;
}
@media (max-width: 471px) {
  .baseHomeSection2 {
    height: 40px;
    padding: 0 10px;
  }
}

.baseHomeLogo {
  width: 30%;
  max-width: 200px;
  background-color: white;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
  padding: 30px 10px;
  top: 0;
  position: absolute;
  z-index: 99;
}
@media (max-width: 320px) {
  .baseHomeLogo {
    /*width: 20%;*/
    width: 45%;
    padding: 10px;
    top: 5px;
  }
}
@media (min-width: 321px) and (max-width: 471px) {
  .baseHomeLogo {
    width: 50%;
    padding: 10px;
    top: 7px;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeLogo {
    width: 22%;
    padding: 10px;
    top: 20px;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .baseHomeLogo {
    max-width: 300px;
    padding: 30px 10px;
    top: 10px;
  }
}

.baseHomeLogoPink {
  width: 15%;
  max-width: 200px;
  height: 185px;
  background-color: #E83b7b;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
  padding: 15px;
  top: -10px;
  left: 30px;
  position: absolute;
  z-index: 99;
}
@media (min-width: 300px) and (max-width: 350px) {
  .baseHomeLogoPink {
    width: 47%;
    height: 105px;
    left: 12px;
    top: 17px;
    clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 96%);
  }
}
@media (min-width: 351px) and (max-width: 375px) {
  .baseHomeLogoPink {
    width: 52%;
    height: 109px;
    left: 13px;
    top: 30px;
    clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 96%);
  }
}
@media (min-width: 376px) and (max-width: 413px) {
  .baseHomeLogoPink {
    width: 52%;
    max-width: 205px;
    height: 109px;
    left: 13px;
    top: 33px;
    clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 96%);
  }
}
@media (min-width: 414px) and (max-width: 471px) {
  .baseHomeLogoPink {
    width: 43%;
    height: 109px;
    left: 14px;
    top: 25px;
    clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 96%);
  }
}
@media (min-width: 414px) and (max-width: 414px) and (min-height: 736px) and (max-height: 736px) {
  .baseHomeLogoPink {
    width: 50%;
    height: 109px;
    left: 14px;
    top: 33px;
    clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 96%);
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeLogoPink {
    width: 22%;
    height: 109px;
    top: 40px;
    left: 26px;
    clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 96%);
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .baseHomeLogoPink {
    /*width: 22%;*/
    max-width: 300px;
    height: 115px;
    top: 105px;
    left: 35px;
    clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 96%);
  }
}

.baseHomeLogo img {
  width: 100%;
}

.baseHomeSection2Text {
  width: 50%;
  margin: 0 0 0 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 471px) {
  .baseHomeSection2Text {
    width: 100%;
    margin: 0;
    justify-content: flex-end;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeSection2Text {
    width: 100%;
    margin: 0;
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .baseHomeSection2Text {
    margin: 0 0 0 300px;
  }
}

.baseHomeSection2Burger {
  display: flex;
  align-items: center;
  width: 30%;
}
@media (max-width: 471px) {
  .baseHomeSection2Burger {
    justify-content: flex-end;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeSection2Burger {
    justify-content: flex-end;
  }
}

.baseHomeSection2BurgerImg {
  width: 15%;
  margin-right: 20px;
}
@media (max-width: 471px) {
  .baseHomeSection2BurgerImg {
    width: 30%;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeSection2BurgerImg {
    width: 20%;
  }
}

.baseHomeSection2BurgerText p {
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  font-size: 1em;
  color: #11519B;
  text-transform: uppercase;
}
@media (max-width: 471px) {
  .baseHomeSection2BurgerText p {
    display: none;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeSection2BurgerText p {
    display: none;
  }
}

.baseHomeSection2BurgerImg img {
  width: 100%;
}

.baseHomeSection2TextPara p {
  font-family: "BreeSerif", sans-serif;
  font-weight: bolder;
  font-size: 1.4em;
  color: #262E67;
  text-transform: uppercase;
}
@media (max-width: 471px) {
  .baseHomeSection2TextPara p {
    display: none;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeSection2TextPara p {
    font-size: 1em;
  }
}

/*-------------------------------FOOTER*/
.footer {
  z-index: 0;
  position: relative;
  /*position: fixed;
  bottom: 0;*/
}
@media (max-width: 471px) {
  .footer {
    /*bottom: -400px;*/
  }
}

.baseHomeFooter {
  width: 100vw;
  height: 177px;
  background-color: #262E67;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  position: relative;
}
@media (min-width: 300px) and (max-width: 350px) {
  .baseHomeFooter {
    margin-top: 100px;
    height: auto;
  }
}
@media (min-width: 351px) and (max-width: 375px) {
  .baseHomeFooter {
    /*margin-top: -50px;*/
    margin-top: 75px;
    height: auto;
  }
}
@media (min-width: 375px) and (min-height: 812px) and (max-height: 813px) {
  .baseHomeFooter {
    margin-top: 0;
    height: auto;
  }
}
@media (min-width: 376px) and (max-width: 414px) {
  .baseHomeFooter {
    margin-top: 75px;
    height: auto;
  }
}
@media (min-width: 415px) and (max-width: 471px) {
  .baseHomeFooter {
    margin-top: 70px;
    height: auto;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeFooter {
    margin-top: 100px;
  }
}

.baseHomeFooterReseaux {
  display: flex;
  align-items: center;
  width: 15%;
  margin: 0 0 20px 0;
}
@media (max-width: 471px) {
  .baseHomeFooterReseaux {
    width: 45%;
    z-index: 999;
  }
}

.baseHomeFooterReseaux_icon {
  width: 40%;
}

.baseHomeFooterReseaux_icon img {
  width: 100%;
}

.baseHomeFooterMenu {
  width: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 471px) {
  .baseHomeFooterMenu {
    flex-direction: column;
  }
}

.baseHomeFooterMenu a {
  text-decoration: none;
}

/*.baseHomeFooterBorder:hover{
  color: $pinkMedium;
}*/
.baseHomeFooterHover:hover {
  color: #E83b7b;
}

.baseHomeFooterMenu p {
  font-family: "BreeSerif", sans-serif;
  font-size: 1em;
  color: white;
  text-transform: uppercase;
  padding: 2px 15px;
}
@media (max-width: 471px) {
  .baseHomeFooterMenu p {
    padding: 5px;
  }
}

.baseHomeFooterBorder {
  border-right: solid 2px #E83b7b;
  padding: 2px 15px;
}
@media (max-width: 471px) {
  .baseHomeFooterBorder {
    border: none;
  }
}

.baseHomeFooterLegal {
  width: 50%;
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 471px) {
  .baseHomeFooterLegal {
    width: 100%;
  }
}

.baseHomeFooterLegal a {
  text-decoration: none;
}

.baseHomeFooterLegal p {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 0.8em;
  color: white;
}

.baseHomeFooterLegal span {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 0.8em;
  color: white;
  margin: 0 3px;
}

.baseHomeFooterMeliway {
  display: flex;
  align-items: center;
}

.baseHomeFooterMeliway p {
  padding: 0;
  margin: 0;
}

.baseHomeFooterMeliway a {
  text-decoration: underline #E83b7b !important;
  margin: 0 0 0 2px;
  text-underline-offset: 3px;
}

/*-----------------------------------MENU*/
.baseHomeSectionMenu {
  display: none;
  width: 100vw;
  height: 100%;
  /*background-color: rgba(18,81,155,0.8);*/
  /*background-image: url("../../assets/icon/Base/fond-menu2.avif");*/
  background-image: url("../../assets/icon/Base/fond-menu2.avif"), url("../../assets/icon/Base/fond-menu2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 118px;
  z-index: 99;
}
@media (max-width: 471px) {
  .baseHomeSectionMenu {
    top: 85px;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeSectionMenu {
    top: 85px;
  }
}

.baseHomeSectionMenuBloc {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  padding: 80px 0 0 0;
}
@media (max-width: 471px) {
  .baseHomeSectionMenuBloc {
    flex-direction: column;
  }
}

.baseHomeSectionMenuNav {
  /*width: 70%;
  margin: 0 auto;*/
  padding: 50px 0 0 0;
}
@media (max-width: 471px) {
  .baseHomeSectionMenuNav {
    padding: 20px 0 0 0;
  }
}

.baseHomeSectionMenuNav a {
  text-decoration: none;
  color: white;
}

.baseHomeSectionMenuText {
  text-transform: uppercase;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 3em;
  letter-spacing: 0.1em;
  margin: 10px 0;
  cursor: pointer;
}
@media (min-width: 319px) and (max-width: 375px) {
  .baseHomeSectionMenuText {
    font-size: 1.2em;
  }
}
@media (min-width: 376px) and (max-width: 471px) {
  .baseHomeSectionMenuText {
    font-size: 1.5em;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .baseHomeSectionMenuText {
    font-size: 1.5em;
  }
}

.baseHomeSectionMenuText :hover {
  color: #E83b7b;
}

.baseHomeSectionMenuNav2 {
  /*width: 30%;
  margin: 0 auto;*/
  padding: 50px 0 0 0;
  max-width: 430px;
}
@media (max-width: 471px) {
  .baseHomeSectionMenuNav2 {
    padding: 50px 0 0 0;
  }
}

.baseHomeSectionMenuNav2 a {
  text-decoration: none;
  color: white;
}

.baseHomeSectionMenuText2 {
  text-transform: uppercase;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 2em;
  letter-spacing: 0.1em;
  margin: 10px 0;
}
@media (max-width: 471px) {
  .baseHomeSectionMenuText2 {
    font-size: 1.4em;
  }
}

/*.baseHomeSectionMenuText2 :hover{
  color: $yellow;
}*/
.baseHomeSectionMenuText3 {
  text-transform: uppercase;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 1.3em;
  letter-spacing: 0.1em;
  margin: 20px 0;
  cursor: pointer;
}
@media (max-width: 471px) {
  .baseHomeSectionMenuText3 {
    font-size: 1.2em;
    margin: 10px 0;
  }
}
@media (min-width: 472px) and (max-width: 800px) {
  .baseHomeSectionMenuText3 {
    font-size: 1.1em;
    margin: 10px 0;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .baseHomeSectionMenuText3 {
    font-size: 2em;
    margin: 10px 0;
  }
}

.baseHomeSectionMenuText3 :hover {
  color: #FCD764;
}

/*---------------------------- HOME*/
.bg_blue_home {
  background-color: #0b509e;
}

/*-------------------------------SECTIONCenter*/
.homeSectionAll {
  width: 100%;
  position: relative;
  background-color: #11519B;
  margin-bottom: 5vh;
}

.homeSectionCenter {
  width: 100%;
  height: 90vh;
  margin-top: 79px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 300px) and (max-width: 350px) {
  .homeSectionCenter {
    margin-top: 46px;
  }
}
@media (min-width: 351px) and (max-width: 471px) {
  .homeSectionCenter {
    margin-top: 45px;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .homeSectionCenter {
    height: 100%;
    width: auto;
  }
}
@media (min-width: 1360px) and (max-width: 1370px) and (min-height: 1020px) and (max-height: 1025px) {
  .homeSectionCenter {
    margin-top: 0;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .homeSectionCenter {
    margin-top: 0;
  }
}

.homeSectionCenter img {
  width: 100%;
}
@media (min-width: 300px) and (max-width: 350px) {
  .homeSectionCenter img {
    margin-top: 20px;
  }
}
@media (min-width: 351px) and (max-width: 400px) {
  .homeSectionCenter img {
    margin-top: 45px;
  }
}
@media (min-width: 400px) and (max-width: 471px) {
  .homeSectionCenter img {
    margin-top: 60px;
  }
}
@media (min-width: 1300px) and (max-width: 1500px) and (max-height: 768px) {
  .homeSectionCenter img {
    margin-top: 10px;
  }
}
@media (min-width: 1360px) and (max-width: 1370px) and (min-height: 1020px) and (max-height: 1025px) {
  .homeSectionCenter img {
    margin-top: 138px;
  }
}
@media (min-width: 1501px) and (max-width: 1600px) {
  .homeSectionCenter img {
    margin-top: 80px;
  }
}
@media (min-width: 1601px) and (max-width: 1918px) {
  .homeSectionCenter img {
    margin-top: 100px;
  }
}
@media (min-width: 1919px) and (max-width: 1920px) and (min-height: 1079px) and (max-height: 1080px) {
  .homeSectionCenter img {
    margin-top: 90px;
  }
}
@media (min-width: 1950px) and (max-width: 2600px) {
  .homeSectionCenter img {
    margin-top: 100px;
  }
}

.homeSectionPlaylist {
  /*background-color: $blueLight;*/
  position: absolute;
  bottom: 95%;
  left: 5%;
  /*width: calc(100% - 117px);*/
  /*width: 15%;*/
  z-index: -1;
}
@media (min-width: 300px) and (max-width: 350px) {
  .homeSectionPlaylist {
    bottom: 95%;
    left: 0;
    width: 100%;
  }
}
@media (min-width: 351px) and (max-width: 375px) {
  .homeSectionPlaylist {
    /*bottom: 45px;*/
    bottom: 83%;
    width: 100%;
    left: 0;
  }
}
@media (min-width: 375px) and (min-height: 812px) and (max-height: 813px) {
  .homeSectionPlaylist {
    bottom: 85%;
    width: 100%;
    left: 0;
  }
}
@media (min-width: 376px) and (max-width: 414px) {
  .homeSectionPlaylist {
    width: 100%;
    left: 0;
    bottom: 83%;
  }
}
@media (min-width: 415px) and (max-width: 471px) {
  .homeSectionPlaylist {
    width: 100%;
    left: 0;
    bottom: -90px;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .homeSectionPlaylist {
    /*bottom: -30px;*/
    left: 0;
    /*bottom: 140px;*/
    bottom: 155px;
    width: 100%;
    /*position: static;*/
  }
}

.homeSectionPlaylist span {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.homeSectionPlaylist p {
  text-transform: uppercase;
  color: white;
  font-family: "BreeSerif", sans-serif;
  font-size: 1.2em;
  z-index: 8;
  padding: 20px;
}

.homeSectionPlaylistImg {
  width: 10%;
}
@media (min-width: 300px) and (max-width: 1300px) {
  .homeSectionPlaylistImg {
    /*bottom: -30px;*/
    display: none;
  }
}

.homeSectionPlaylistImg img {
  width: 100%;
}

.homeSectionPlaylistBloc {
  /*position: relative;*/
  margin: -10px 0 0 0;
}

.homeSectionPlaylistButton {
  position: relative;
  z-index: 99;
  width: 236px;
  height: 67px;
  margin: 0 auto;
  background-color: #262E67;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
  /*border-bottom:67px solid $blueLight;
  border-left: 0 solid transparent;
  border-right: 15px solid transparent;*/
  transition: ease-in-out;
  transition-duration: 0.5s;
  cursor: pointer;
}
@media (min-width: 319px) and (max-width: 320px) {
  .homeSectionPlaylistButton {
    height: 60px;
  }
}
@media (min-width: 321px) and (max-width: 471px) {
  .homeSectionPlaylistButton {
    height: 85px;
  }
}

/*.homeSectionPlaylistButton a{
  !*transition: 0.25s ease-in-out;
  transition-duration: 5s;*!
  cursor: pointer;
}*/
.homeSectionPlaylistButton:hover {
  transform: translate(15px, -10px);
}

.homeSectionPlaylistPink {
  /*background-color: $pinkMedium;*/
  z-index: 2;
  position: absolute;
  top: -15px;
  right: 3%;
  width: 238px;
  height: 82px;
  margin: 0 auto;
  background-color: #E83b7b;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 97%);
}
@media (min-width: 300px) and (max-width: 1300px) {
  .homeSectionPlaylistPink {
    /*bottom: -30px;*/
    display: none;
  }
}

.homeSectionPlaylistiFrame {
  display: none;
  background-color: #262E67;
  padding: 15px;
  border-right: solid 8px #E83b7b;
  border-top: solid 8px #E83b7b;
  margin: 0;
  /*position: absolute;
  bottom: 12%;*/
}
@media (max-width: 471px) {
  .homeSectionPlaylistiFrame {
    display: block;
    border-right: none;
    border-top: none;
    margin: -10px 0 0 0;
    width: 100%;
    bottom: -629%;
  }
}
@media (min-width: 472px) and (max-width: 1300px) {
  .homeSectionPlaylistiFrame {
    display: block;
    border-right: none;
    border-top: none;
    padding: 25px;
    margin: -10px 0;
  }
}

@media (min-width: 472px) and (max-width: 1300px) {
  #homeSectioniFrame {
    display: none;
  }
}

#homeSectioniFrameIpad {
  display: none;
}
@media (min-width: 472px) and (max-width: 1300px) {
  #homeSectioniFrameIpad {
    display: block;
    border-right: none;
    border-top: none;
    margin: -10px 0 0 0;
  }
}

@media (max-width: 471px) {
  #homeSectioniFrame {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.homeSectionBilletterie {
  /*background-color: $blueLight;*/
  position: absolute;
  bottom: 30px;
  /*left: 1050px;*/
  left: 75%;
  /*width: 20%;*/
  z-index: 50;
}
@media (min-width: 300px) and (max-width: 350px) {
  .homeSectionBilletterie {
    display: none;
    left: 170px;
    bottom: 67%;
    z-index: 0;
  }
}
@media (min-width: 351px) and (max-width: 375px) {
  .homeSectionBilletterie {
    display: none;
    left: 185px;
    /*bottom: 410px;*/
    /*bottom: 62%;*/
    bottom: 67%;
  }
}
@media (min-width: 375px) and (min-height: 812px) and (max-height: 813px) {
  .homeSectionBilletterie {
    display: none;
    left: 185px;
    bottom: 72%;
  }
}
@media (min-width: 376px) and (max-width: 414px) {
  .homeSectionBilletterie {
    display: none;
    left: 211px;
    /* bottom: 465px; */
    bottom: 65%;
  }
}
@media (min-width: 415px) and (max-width: 471px) {
  .homeSectionBilletterie {
    display: none;
    left: 185px;
    bottom: 415px;
  }
}
@media (min-width: 472px) and (max-width: 1300px) and (max-height: 768px) {
  .homeSectionBilletterie {
    /*left: 500px;
    bottom: 580px;*/
    left: 65%;
    bottom: 10%;
    z-index: 0;
  }
}
@media (min-width: 472px) and (max-width: 1300px) and (min-height: 769px) {
  .homeSectionBilletterie {
    /*left: 500px;
    bottom: 580px;*/
    left: 65%;
    /*bottom: 55%;*/
    bottom: 9%;
    z-index: 0;
  }
}

.homeSectionBilletterie a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.homeSectionBilletterie p {
  text-transform: uppercase;
  color: white;
  font-family: "BreeSerif", sans-serif;
  font-size: 1em;
  z-index: 8;
  padding: 20px;
  width: 100%;
  text-align: center;
}
@media (min-width: 300px) and (max-width: 350px) {
  .homeSectionBilletterie p {
    font-size: 0.8em;
    padding: 7px;
  }
}
@media (min-width: 351px) and (max-width: 375px) {
  .homeSectionBilletterie p {
    font-size: 1.1em;
    padding: 12px;
  }
}
@media (min-width: 376px) and (max-width: 414px) {
  .homeSectionBilletterie p {
    font-size: 1.3em;
    padding: 12px;
  }
}
@media (min-width: 415px) and (max-width: 471px) {
  .homeSectionBilletterie p {
    font-size: 0.8em;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .homeSectionBilletterie p {
    font-size: 1.3em;
    padding: 15px;
  }
}

.homeSectionBilletterieBloc {
  position: relative;
}

.homeSectionBilletterieButtonTop {
  position: relative;
  width: 60%;
}

.homeSectionBilletterieButton {
  position: relative;
  z-index: 99;
  width: 236px;
  height: 67px;
  background-color: #E83b7b;
  /*border-bottom:67px solid $pinkMedium;
  border-left: 15px solid transparent;
  border-right: 0 solid transparent;*/
  transition: ease-in-out;
  transition-duration: 0.2s;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
}
@media (min-width: 300px) and (max-width: 350px) {
  .homeSectionBilletterieButton {
    width: 130px;
    height: 30px;
  }
}
@media (min-width: 351px) and (max-width: 471px) {
  .homeSectionBilletterieButton {
    width: 178px;
    height: 49px;
  }
}

.homeSectionBilletterieButton a {
  /*transition: 0.25s ease-in-out;
  transition-duration: 5s;*/
}

.homeSectionBilletterieButton:hover {
  transform: translate(10px, -15px);
}

.homeSectionBilletterieButtonText p {
  text-transform: uppercase;
  color: white;
  font-family: "BreeSerif", sans-serif;
  font-size: 0.8em;
  z-index: 100;
}

.homeSectionBilletterieButtonImg {
  /*width: 20%;
  position: relative;*/
  z-index: 99;
}

.homeSectionBilletterieButtonImg img {
  width: 100%;
}

.homeSectionBilletterieBlue {
  background-color: #262E67;
  z-index: 4;
  position: absolute;
  top: 5px;
  right: 3%;
  width: 236px;
  height: 82px;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
}
@media (min-width: 300px) and (max-width: 350px) {
  .homeSectionBilletterieBlue {
    width: 130px;
    height: 30px;
  }
}
@media (min-width: 351px) and (max-width: 471px) {
  .homeSectionBilletterieBlue {
    width: 178px;
    height: 49px;
  }
}

/*---------------------------- SECURITY*/
.press-form {
  flex-direction: column;
  width: 28%;
  margin: 70px auto;
}

.press-bloc {
  margin: 25px 0;
}

.press-input, .press-btn {
  border: #F1F2F7 1px solid;
  background-color: #F1F2F7;
  width: 100%;
  height: 43px;
  font-family: "Poppins", sans-serif;
  padding: 0 10px;
}

.press-label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #262E67;
  display: block;
}

.press-btn {
  border: #262E67 1px solid;
  background-color: #262E67;
  color: white;
  font-size: 16px;
  margin-top: 14px;
}

.press-btn:hover {
  cursor: pointer;
  opacity: 0.85;
}

/***** VERSION MOBILE *****/
@media screen and (max-width: 576px) and (orientation: portrait) {
  .press-form {
    width: 90%;
    margin: 60px auto 0 auto;
    padding-bottom: 55vh;
  }

  .presse-bg {
    margin-top: 45px;
  }
}
/***** VERSION TABLETTE *****/
@media screen and (min-width: 577px) and (max-width: 1300px) {
  .press-form {
    width: 60%;
    margin: 60px auto;
  }
}
/*---------------------------- LEGAL*/
/*---------------------------------- COLOR */
/*---------------------------------- FONT */
/*$burfordBlack:'BurfordRusticBookBlack', sans-serif;
$burfordInline:'BurfordRusticInlineBold', sans-serif;*/
/*@font-face {
  font-family: "burfordrusticinline-10", sans-serif;
  src: url("../font/BurfordRusticInlineLight.otf");
}*/
@font-face {
  font-family: "BreeSerif";
  src: url("../../font/Bree_Serif/BreeSerif-Regular.ttf");
}
/*@font-face{
  font-family:"fontBurford";
   src: url("../../font/legale/BurfordRustiqueLivreNoir.otf");
}*/
.legaleTop {
  padding-top: 10vh;
  background-image: url("../../assets/img/MentionsLegales/fond-titre.avif"), url("../../assets/img/MentionsLegales/Fond-titre.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35vh;
}
.legaleTop h1 {
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
  letter-spacing: 0;
  font-weight: normal;
  font-size: 4em;
  text-align: center;
  text-transform: uppercase;
}

.legaleContent1 {
  width: 57%;
  margin: 39px auto 0;
}
.legaleContent1 article {
  margin-top: 20px;
}
.legaleContent1 h2 {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #262E67;
}
.legaleContent1 li {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #262E67;
}
.legaleContent1 a {
  color: #E83b7b;
}

.legaleContent2 {
  width: 57%;
  margin: 0 auto 10vh;
}
.legaleContent2 article {
  margin-top: 20px;
}
.legaleContent2 h2 {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #262E67;
}
.legaleContent2 p {
  text-align: left;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #262E67;
  letter-spacing: 0;
}

@media screen and (min-width: 320px) and (max-width: 375px) {
  .legaleTop {
    height: 35vh;
  }
  .legaleTop h1 {
    font-size: 2.5em;
    width: 80%;
    margin-bottom: 20px;
  }

  .legaleContent1 {
    width: 85%;
  }

  .legaleContent2 {
    width: 85%;
    padding-bottom: 65vh;
  }
}
@media screen and (min-width: 376px) and (max-width: 414px) {
  .legaleTop {
    height: 35vh;
  }
  .legaleTop h1 {
    font-size: 2.5em;
    margin-bottom: 50px;
  }

  .legaleContent1 {
    width: 85%;
  }

  .legaleContent2 {
    width: 85%;
    padding-bottom: 55vh;
  }
}
@media screen and (min-width: 415px) and (max-width: 425px) {
  .legaleContent2 {
    padding-bottom: 25vh;
  }
}
@media screen and (min-width: 426px) and (max-width: 768px) {
  .legaleTop {
    height: 22vh;
  }

  .legaleContent1 {
    width: 85%;
  }

  .legaleContent2 {
    width: 85%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .legaleTop {
    height: 26vh;
  }

  .legaleContent1 {
    width: 85%;
  }

  .legaleContent2 {
    width: 85%;
  }
}
/*---------------------------- PRESSE*/
/******* SECTION PRESSE *********/
.presse-main {
  width: 80%;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.a-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w100 {
  width: 100%;
}

/****** TEXTES ******/
.presse-deco {
  text-align: end;
  margin-top: 40px;
}

#presse-out {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #262E67;
  font-weight: 700;
}

.presse-titre, .presse-soustitre {
  font-family: "BreeSerif", sans-serif;
  font-size: 30px;
  color: #11519B;
  text-transform: uppercase;
}

#titre-accr {
  color: #E83b7b;
  line-height: 25px;
}

.presse-soustitre {
  font-size: 20px;
  width: 30%;
  font-family: "Poppins", sans-serif;
}

.presse-texte, .presse-lien {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #262E67;
  margin-top: 20px;
}

.presse-nom, .presse-lien {
  font-weight: 700;
}

/******** DIV ********/
.overflow {
  overflow: hidden;
}

.presse-div {
  margin: 60px 0;
  padding-bottom: 50px;
}

#presse-contact {
  width: 25%;
}

#presse-accr {
  width: 50%;
  background: linear-gradient(291deg, #F4A9C4 0%, #FDECBD 100%);
  padding: 67px;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
}

.presse-docs {
  height: 20px;
  margin: 30px 20px 30px 0;
}

.presse-ligne {
  border: #262E67 1px solid;
  height: 0;
  margin-top: 30px;
}

.presse-section {
  margin: 20px 0;
}

.presse-telechargement {
  display: none;
  transition: max-height 2.4s ease;
}

.presse-section.active + .presse-telechargement {
  display: block;
}

.presse-section .presse-minus, .presse-section.active .presse-plus {
  display: none;
}

.presse-section.active .presse-minus, .presse-section .presse-plus {
  display: block;
}

/***** LIENS *******/
.presse-lien {
  text-decoration: none;
  padding: 20px 20px 20px 40px;
  width: 50%;
  background-color: #F1F2F7;
  transition: 0.3s ease width;
}

.presse-lien:hover {
  /*transform: scale(1.2);*/
  width: 55%;
}

/***** REGLAGES D'IMAGE ******/
.presse-plus, .presse-minus {
  width: 40px;
  cursor: pointer;
}

.presse-dwld {
  width: 30px;
}

@media screen and (max-width: 576px) and (orientation: portrait) {
  .presse-main {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 55vh;
  }

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

  .presse-div {
    margin: 21px 0;
  }

  #presse-contact {
    width: 85%;
  }

  #presse-accr {
    clip-path: polygon(0 4%, 100% 0%, 98% 85%, 0% 100%);
    width: 100%;
    padding: 69px 25px;
  }

  #titre-accr {
    font-size: 30px;
  }

  .presse-texte {
    padding-top: 22px;
    margin-top: unset;
  }

  .presse-lien {
    width: 100%;
  }

  .presse-lien:hover {
    transform: unset;
  }

  .presse-soustitre {
    width: 100%;
  }
}
@media screen and (max-width: 380px) {
  .presse-texte {
    word-break: break-word;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .presse-infos {
    flex-direction: column;
  }

  .presse-div {
    margin: 40px auto;
  }

  #presse-contact {
    width: 70%;
  }

  #presse-accr {
    width: 80%;
    padding: 65px;
  }

  .presse-soustitre {
    width: 50%;
  }
}
/******* IMAGE BACKGROUND PRESSE *********/
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.presse-bg {
  background-image: url("../../assets/img/press/fond-titre.avif"), url("../../assets/img/press/fond-titre.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  margin-top: 79px;
  position: relative;
}
.presse-bg .filter {
  height: 100%;
  width: 100%;
  background-color: rgba(18, 81, 155, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}

.presse-title {
  display: inline;
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
  font-size: 3em;
  text-align: center;
  letter-spacing: 4px;
  z-index: 1;
  line-height: 1;
  text-transform: uppercase;
}

.presse-etoile {
  width: 37px;
  margin: 10px 15px 0 15px;
}

@media screen and (max-width: 576px) {
  .presse-bg {
    height: 27vh;
    margin-top: 45px;
  }

  .presse-title {
    font-size: 50px;
    width: 53%;
  }

  .presse-etoile {
    width: 8%;
    margin: 0 10px;
  }
}
@media screen and (max-width: 320px) {
  .presse-etoile {
    width: 10%;
  }
}
@media screen and (min-width: 577px) and (max-width: 1300px) {
  .presse-bg {
    margin-top: 45px;
  }
}
/*---------------------------- COMM*/
/*---------------------------------- COLOR */
/*---------------------------------- FONT */
/*$burfordBlack:'BurfordRusticBookBlack', sans-serif;
$burfordInline:'BurfordRusticInlineBold', sans-serif;*/
/*@font-face {
  font-family: "burfordrusticinline-10", sans-serif;
  src: url("../font/BurfordRusticInlineLight.otf");
}*/
@font-face {
  font-family: "BreeSerif";
  src: url("../../font/Bree_Serif/BreeSerif-Regular.ttf");
}
.comResp {
  width: 100%;
  height: auto;
}

.comTop {
  background-image: url("../../assets/img/Communication/fond-titre-com.avif"), url("../../assets/img/Communication/fond-titre-com.png");
  padding-top: 10vh;
  margin-bottom: -3px;
  height: 35vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comTop h1 {
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
  letter-spacing: 0;
  font-weight: normal;
  font-size: 3.5em;
  text-align: center;
  text-transform: uppercase;
  width: 35%;
}
@media screen and (max-width: 425px) {
  .comTop h1 {
    width: 100%;
    font-size: 2em;
    margin-top: 3vh;
  }
}
@media screen and (min-width: 426px) and (max-width: 1024px) {
  .comTop h1 {
    width: 65%;
  }
}

.comEtoileBlanche {
  position: relative;
  width: 90%;
  max-width: 90%;
  margin: auto;
}

.comEtoileBlanche::before {
  content: "";
  width: 41px;
  height: 39px;
  background-image: url("../../assets/img/Communication/etoile-blanche.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(-100%, -50%);
}

.comEtoileBlanche::after {
  content: "";
  width: 41px;
  height: 39px;
  background-image: url("../../assets/img/Programmation/etoile-blanche.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translate(100%, -50%);
}

.comSection1 {
  width: 50%;
  margin: auto;
  padding-top: 7vh;
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .comSection1 {
    width: 95%;
  }
}
.comSection1 h2 {
  padding-bottom: 50px;
  font-family: "BreeSerif", sans-serif;
  color: #11519B;
  font-size: 25px;
  text-transform: uppercase;
}
.comSection1 p {
  padding-bottom: 15px;
  font-family: "Poppins", sans-serif;
  color: #262E67;
  font-size: 15px;
}

.comSection1 img {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: auto;
  padding: 20px 0;
}

.comSection3 {
  padding-bottom: 20vh;
}
@media screen and (max-width: 375px) {
  .comSection3 {
    padding-bottom: 130%;
  }
}
@media screen and (min-width: 376px) and (max-width: 425px) {
  .comSection3 {
    padding-bottom: 100%;
  }
}
@media screen and (min-width: 426px) and (max-width: 1024px) {
  .comSection3 {
    padding-bottom: 40%;
  }
}

.comTitreTopFaq {
  text-align: center;
  margin-top: 10vh;
}
.comTitreTopFaq h2 {
  text-transform: uppercase;
  font-family: "BreeSerif", sans-serif;
  font-weight: normal;
  color: #11519B;
  font-size: 25px;
  padding-bottom: 10px;
}
.comTitreTopFaq h3 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #262E67;
  padding-bottom: 50px;
}

.comFaq {
  width: 80%;
  margin: 0 auto;
  color: #262E67;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  border-bottom: solid 2px #262E67;
  padding: 25px 0;
}

.comFaq:first-of-type {
  border-top: solid 2px #262E67;
}

.comAccordion {
  height: 0;
  overflow: hidden;
  padding-bottom: 0;
}
.comAccordion h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #262E67;
  padding-top: 20px;
}
.comAccordion p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #262E67;
  padding-bottom: 20px;
}

.comFaq.isOpen .comAccordion {
  height: 100%;
}

.comFaq .comTitreFaq > h3 {
  position: relative;
  cursor: pointer;
}

.comFaq .comTitreFaq > h3::before, .comFaq .comTitreFaq > h3::after, .comFaq.isOpen .comTitreFaq > h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  width: 20px;
  border: solid 1px #FD027B;
  transition: opacity 0.8s ease;
}

.comFaq .comTitreFaq > h3::before {
  transform: translateY(-50%) rotate(90deg);
}

.comFaq.isOpen .comTitreFaq > h3::before {
  opacity: 0;
}

@media screen and (max-width: 425px) {
  .comEtoileBlanche::before {
    display: none;
  }

  .comEtoileBlanche::after {
    right: 50%;
    top: 60%;
    transform: translate(50%, 100%);
    width: 30px;
    height: 30px;
  }

  .comSection1 {
    width: 90%;
  }

  .comImg {
    width: 90%;
  }

  .comSection2 {
    width: 90%;
  }

  .comFaq {
    width: 95%;
  }

  .comFaq .comTitreFaq > h3 {
    width: 80%;
    font-size: 1rem;
  }

  .comFaq .comTitreFaq > h3::before, .comFaq .comTitreFaq > h3::after, .comFaq.isOpen .comTitreFaq > h3::after {
    right: -50px;
  }
}
@media screen and (min-width: 426px) and (max-width: 1024px) {
  .comFaq .comTitreFaq > h3::before, .comFaq .comTitreFaq > h3::after, .comFaq.isOpen .comTitreFaq > h3::after {
    right: 0;
  }

  .comFaq .comTitreFaq > h3 {
    padding-right: 30px;
  }
}
/*---------------------------- BILLETERIE*/
/*---------------------------------- COLOR */
/*---------------------------------- FONT */
/*$burfordBlack:'BurfordRusticBookBlack', sans-serif;
$burfordInline:'BurfordRusticInlineBold', sans-serif;*/
/*@font-face {
  font-family: "burfordrusticinline-10", sans-serif;
  src: url("../font/BurfordRusticInlineLight.otf");
}*/
@font-face {
  font-family: "BreeSerif";
  src: url("../../font/Bree_Serif/BreeSerif-Regular.ttf");
}
.billetterieTop {
  position: relative;
  padding-top: 10vh;
  background-image: url("../../assets/img/InfosBilletterie/brive-billetterie.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.billetterieTop h1 {
  margin-bottom: 10px;
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
  letter-spacing: 0;
  font-weight: normal;
  font-size: 80px;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}

.billetterieBackOpac {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #262E67;
  opacity: 50%;
}

.billetteriePass {
  position: relative;
  width: 396px;
  height: 396px;
  border: 1px solid #707070;
  margin-bottom: 20px;
}
.billetteriePass span.spanPink {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #E83b7b;
}
.billetteriePass .billetterieFondClair {
  background-image: url("../../assets/img/InfosBilletterie/CTA-billetterie.avif"), url("../../assets/img/InfosBilletterie/CTA-billetterie.jpg");
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: transform 0.3s ease;
}

.billetteriePass4 {
  position: absolute;
  z-index: 3;
  width: 80%;
  top: 5px;
  left: 40px;
  transform: rotate(-4deg);
}

.billetterie4Jour {
  font-family: "BreeSerif", sans-serif;
  font-size: 92px;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 80px;
  margin-top: 55px;
}

.billetterieTrait {
  background-color: #FFFFFF;
  width: 105px;
  height: 2px;
  margin: 20px 0 0 16px;
}

.billetteriePoppin {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 22px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 12px 0 0 16px;
}

.billetterieMonPass {
  position: absolute;
  z-index: 4;
  background-color: #11519B;
  width: 237px;
  height: 67px;
  bottom: -25px;
  left: 50%;
  transform: translate(-50%);
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
}

button.billetterieBtnTop {
  position: absolute;
  z-index: 8;
  background-color: #E83b7b;
  width: 237px;
  height: 67px;
  bottom: -20px;
  left: 50%;
  transform: translate(-47%);
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
}
button.billetterieBtnTop a {
  text-decoration: none;
  font-family: "BreeSerif", sans-serif;
  font-size: 20px;
  text-align: center;
  color: #FFFFFF;
  font-weight: normal;
  text-transform: uppercase;
}

.billetterieHoverPrix {
  display: none;
  position: absolute;
  z-index: 9;
  top: 195px;
  left: 33px;
}

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

.billetterieFlex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.billetterieFlex p.starting {
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
  width: 100%;
  font-size: 18px;
  text-align: center;
  padding-top: 34px;
}
.billetterieFlex p.starting .upperPink {
  color: #FFFFFF;
  text-transform: uppercase;
}

.billetterieAssis {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 29px;
  color: #FFFFFF;
  text-transform: uppercase;
  padding-left: 32px;
}

.billetterieDebout {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 29px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.billetterieApartir {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: bold;
  color: #FFFFFF;
}

.billetterieNewPrice {
  font-family: "BreeSerif", sans-serif;
  font-size: 45px;
  color: #FFFFFF;
  margin-top: -16px;
}

.billetteriePass:hover {
  cursor: pointer;
}

.billetteriePass:hover .billetterieFondClair {
  transition: 0.3s ease transform;
  transform: translate(-10px, -10px);
}

.billetteriePass:hover .billetterie4Jour {
  top: 20px;
  font-size: 60px;
  line-height: 50px;
}

.billetteriePass:hover .billetterieTrait {
  width: 70px;
  margin: 15px 0 0 10px;
}

.billetteriePass:hover .billetteriePoppin {
  font-size: 18px;
  margin: 8px 0 0 10px;
}

.billetteriePass:hover .billetterieHoverPrix {
  display: block;
  width: 75%;
  margin-left: 15px;
  padding-top: 50px;
}

/** Block Content **/
.billetterieGroupCarres {
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: 10vh auto;
}

.billetterieCarreBox {
  width: 250px;
  height: 250px;
  position: relative;
}
.billetterieCarreBox.disabled a:hover {
  cursor: initial;
}
.billetterieCarreBox.disabled .squarePink {
  display: none;
}
.billetterieCarreBox.disabled .billetterieCarre {
  background-image: none;
  background-color: #707070;
}
.billetterieCarreBox .squarePink {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #E83b7b;
  transition: transform ease 0.3s;
}
.billetterieCarreBox a {
  text-decoration: none;
}
.billetterieCarreBox .filterHover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5;
  font-size: 20px;
}

.billetterieCarreBox a:hover .filterHover {
  display: flex;
}

.billetterieCarreBox a:hover .squarePink {
  transition: 0.3s ease transform;
  transform: rotate(20deg);
}

.billetterieCarre {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("../../assets/img/InfosBilletterie/CTA-billetterie.avif"), url("../../assets/img/InfosBilletterie/CTA-billetterie.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.billetterieCarre p {
  text-transform: uppercase;
  font-family: "BreeSerif", sans-serif;
  color: #FFFFFF;
  font-size: 20px;
  z-index: 1;
}
.billetterieCarre p.big {
  text-align: center;
  font-size: 50px;
  line-height: 70px;
}
.billetterieCarre p.medium {
  font-size: 25px;
}

/** Informations générales **/
.billetterieGroupContent {
  width: 80%;
  margin: 0 auto 10vh;
}

.billetterieInfos {
  width: 80%;
  margin: 60px auto 0;
}
.billetterieInfos h2 {
  font-family: "BreeSerif", sans-serif;
  font-size: 45px;
  font-weight: normal;
  color: #E83b7b;
  text-transform: uppercase;
}
.billetterieInfos h3 {
  font-family: "BreeSerif", sans-serif;
  text-transform: uppercase;
  font-size: 35px;
  color: #11519B;
  padding-bottom: 20px;
  margin-top: 3vh;
}
.billetterieInfos article {
  padding-top: 20px;
}
.billetterieInfos p {
  font-family: "Poppins", sans-serif;
  color: #262E67;
}
.billetterieInfos p .bold {
  font-weight: bold;
}
.billetterieInfos p .crossed {
  text-decoration: line-through;
}
.billetterieInfos p a {
  color: #E83b7b;
  font-weight: bold;
}

.billetterieLancement {
  font-family: "Poppins", sans-serif;
  color: #E83b7b;
  line-height: 45px;
}

.billetterie3Fois {
  margin-top: 50px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  color: #E83b7b !important;
}

.groupInfos {
  margin-bottom: 20px;
}

/** Section partners **/
.billetteriePartners {
  width: 80%;
  margin: 0 auto 10vh;
}
.billetteriePartners h2 {
  text-align: center;
  font-family: "BreeSerif", sans-serif;
  text-transform: uppercase;
  color: #11519B;
  font-size: 35px;
  margin-bottom: 10vh;
}
.billetteriePartners .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.billetteriePartners article {
  width: 25%;
}
.billetteriePartners article .img-box {
  width: 100%;
  height: 16vh;
  margin-bottom: 5vh;
}
.billetteriePartners article .img-box img {
  width: 100%;
  height: auto;
}
.billetteriePartners article p {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #262E67;
  font-size: 12px;
}
.billetteriePartners article p.upper {
  text-transform: uppercase;
}
.billetteriePartners article .subgroup {
  margin-top: 15px;
}
.billetteriePartners a {
  text-decoration: none;
}

@media screen and (min-width: 320px) and (max-width: 1023px) {
  .billetterieTop {
    background-image: url("../../assets/img/InfosBilletterie/Fond-infos-billetterie-mobile.avif"), url("../../assets/img/InfosBilletterie/Fond-infos-billetterie-mobile.jpg");
  }

  .billetterieFondClair {
    transform: translate(0);
  }

  .billetteriePass:hover .billetterieFondClair {
    transition: 0.3s ease transform;
    transform: translateX(-50%);
  }

  .billetteriePass:hover .billetterie4Jour {
    font-size: 45px;
    line-height: 40px;
  }

  .billetteriePass .billetterieHoverPrix {
    width: 85%;
    margin-left: 15px;
  }

  .billetteriePass:hover .billetterieHoverPrix {
    width: 90%;
    padding-top: 10px;
  }

  button.billetterieBtnTop {
    transform: none;
  }

  .billetterieMonPass {
    transform: none;
  }
}
@media screen and (min-width: 320px) and (max-width: 350px) {
  .billetterieTop {
    margin-top: 0;
    height: 100vh;
  }
  .billetterieTop h1 {
    line-height: 51px;
    font-size: 54px;
    margin-top: 30px;
    margin-bottom: 0;
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 351px) and (max-width: 360px) and (min-height: 341px) and (max-height: 780px) {
  .billetterieTop h1 {
    margin-top: 45px;
    font-size: 60px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 351px) and (max-width: 360px) and (max-height: 640px) {
  .billetterieTop {
    height: 95vh;
  }
  .billetterieTop h1 {
    line-height: 51px;
    font-size: 60px;
    margin-top: 110px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) and (max-height: 667px) {
  .billetterieTop {
    height: 90vh;
  }
  .billetterieTop h1 {
    line-height: 51px;
    font-size: 60px;
    margin-top: 110px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) and (min-height: 700px) and (max-height: 812px) {
  .billetterieTop {
    height: 90vh;
  }
  .billetterieTop h1 {
    line-height: 51px;
    font-size: 60px;
    margin-top: 110px;
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 376px) and (max-width: 414px) and (max-height: 736px) {
  .billetterieTop {
    height: 90vh;
  }
  .billetterieTop h1 {
    line-height: 51px;
    font-size: 65px;
    margin-top: 110px;
  }
}
@media screen and (min-width: 376px) and (max-width: 414px) and (min-height: 737px) and (max-height: 823px) {
  .billetterieTop {
    height: 87vh;
  }
  .billetterieTop h1 {
    line-height: 51px;
    font-size: 65px;
    margin-top: 110px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 415px) and (max-width: 425px) {
  .billetterieTop {
    height: 83vh;
  }
  .billetterieTop h1 {
    line-height: 51px;
    font-size: 65px;
    margin-top: 110px;
  }
}
@media screen and (min-width: 320px) and (max-width: 375px) {
  .billetteriePrix {
    margin-top: 25px;
    width: 85%;
    margin-left: 5px;
  }

  .billetterieMonPass {
    bottom: 14px;
    left: 57px;
    width: 64%;
    height: 50px;
  }

  button.billetterieBtnTop {
    bottom: 19px;
    left: 62px;
    width: 64%;
    height: 50px;
  }
  button.billetterieBtnTop a {
    font-size: 15px;
  }

  .billetterieFlex p.starting {
    font-size: 13px;
    padding-top: 20px;
  }

  .billetteriePass {
    width: 95%;
    height: 254px;
    border: none;
    margin-bottom: 0;
  }
  .billetteriePass .billetterieFondClair {
    width: 90%;
    left: 50%;
    height: 250px;
    transform: translateX(-50%);
    bottom: 40px;
  }
  .billetteriePass .billetteriePass4 {
    top: -40px;
    left: 30px;
  }
  .billetteriePass .billetterie4Jour {
    font-size: 45px;
    line-height: 40px;
  }
  .billetteriePass .billetterieTrait {
    width: 52px;
    margin: 10px 0 0 6px;
  }
  .billetteriePass .billetteriePoppin {
    font-size: 12px;
    margin: 10px 0 0 6px;
  }
  .billetteriePass .billetterieHoverPrix {
    display: block;
    top: 120px;
    left: 0;
  }
  .billetteriePass .billetterieAssis {
    font-size: 15px;
    padding-left: 15px;
  }
  .billetteriePass .billetterieDebout {
    font-size: 15px;
  }
  .billetteriePass .billetterieNewPrice {
    font-size: 36px;
    margin-top: -16px;
  }

  .billetteriePass span.spanPink {
    bottom: 30px;
    left: 25px;
    width: 90%;
    height: 250px;
  }

  .billetterieCarreBox .filterHover {
    display: flex;
  }

  /** Media : block content **/
  .billetterieGroup .billetterieGroupCarres {
    flex-direction: column;
    margin: 5vh auto 0;
  }
  .billetterieGroup .billetterieGroupCarres .billetterieCarreBox {
    margin: 15px auto;
  }

  .billetterieGroupContent {
    width: 100%;
    line-height: 30px;
  }
  .billetterieGroupContent .billetterieInfos {
    width: 90%;
    margin-top: 15px;
  }
  .billetterieGroupContent .billetterieInfos h2 {
    font-size: 35px;
    line-height: 28px;
    margin-top: 45px;
  }
  .billetterieGroupContent .billetterieInfos h3 {
    font-size: 30px;
    margin-top: 30px;
  }

  .billetteriePartners h2 {
    text-align: left;
    margin-bottom: 5vh;
  }
  .billetteriePartners .container {
    flex-direction: column;
    padding-bottom: 60vh;
  }
  .billetteriePartners .container article {
    width: 85%;
    margin: 20px auto;
  }
}
@media screen and (min-width: 376px) and (max-width: 425px) {
  .billetteriePrix {
    margin-top: -50px;
    width: 70%;
  }

  .billetterieMonPass {
    bottom: 0;
    left: 73px;
    width: 60%;
    height: 50px;
  }

  button.billetterieBtnTop {
    bottom: 5px;
    left: 79px;
    width: 60%;
    height: 50px;
  }

  .billetterieFlex p.starting {
    font-size: 15px;
    padding-top: 28px;
  }

  .billetteriePass {
    width: 95%;
    border: none;
    height: 330px;
  }
  .billetteriePass .billetterieFondClair {
    width: 90%;
    left: 50%;
    height: 285px;
    transform: translateX(-50%);
  }

  .billetteriePass4 {
    top: -30px;
    left: 30px;
  }

  .billetterie4Jour {
    font-size: 45px;
    line-height: 40px;
  }

  .billetterieTrait {
    width: 60px;
    margin: 15px 0 0 6px;
  }

  .billetteriePoppin {
    font-size: 15px;
    margin: 6px 0 0 6px;
  }

  .billetterieHoverPrix {
    display: block;
    width: 85%;
    top: 210px;
  }

  .billetterieAssis {
    font-size: 15px;
    padding-left: 15px;
  }

  .billetterieDebout {
    font-size: 15px;
  }

  .billetterieNewPrice {
    font-size: 36px;
    margin-top: -18px;
  }

  .billetteriePass span.spanPink {
    top: 8px;
    left: 25px;
    width: 91%;
    height: 285px;
  }

  .billetterieCarreBox .filterHover {
    display: flex;
  }

  .billetterieGroup .billetterieGroupCarres {
    flex-direction: column;
    margin: 10vh auto 0;
  }
  .billetterieGroup .billetterieGroupCarres .billetterieCarreBox {
    width: 100%;
    height: 300px;
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .billetterieCarre {
    height: 100%;
  }

  .billetterieGroupContent {
    width: 100%;
    line-height: 30px;
  }
  .billetterieGroupContent .billetterieInfos {
    width: 90%;
    margin-top: 20px;
  }
  .billetterieGroupContent .billetterieInfos h2 {
    font-size: 50px;
    margin-top: 0;
    line-height: 45px;
  }
  .billetterieGroupContent .billetterieInfos h3 {
    font-size: 30px;
    margin-top: 45px;
  }

  .billetteriePartners h2 {
    text-align: left;
    margin-bottom: 5vh;
  }
  .billetteriePartners .container {
    flex-direction: column;
    padding-bottom: 55vh;
  }
  .billetteriePartners .container article {
    width: 85%;
    margin: 20px auto;
  }

  .billetteriePartners article p.upper {
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) and (max-height: 610px) {
  .billetterieTop {
    height: 90vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) and (min-height: 611px) {
  .billetterieTop {
    height: 60vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .billetterieTop h1 {
    font-size: 64px;
    margin-top: 10px;
  }
  .billetterieTop .billetteriePrix {
    margin-top: -25px;
    width: 70%;
  }
  .billetterieTop .billetterieMonPass {
    bottom: 15px;
    left: 73px;
    width: 60%;
    height: 50px;
  }
  .billetterieTop button.billetterieBtnTop {
    bottom: 20px;
    left: 79px;
    width: 60%;
    height: 50px;
  }
  .billetterieTop .billetterieFlex p.starting {
    font-size: 15px;
    padding-top: 30px;
  }
  .billetterieTop .billetteriePass {
    width: 50%;
    border: none;
    height: 330px;
  }
  .billetterieTop .billetteriePass .billetterieFondClair {
    width: 90%;
    left: 50%;
    height: 285px;
    transform: translateX(-50%);
  }

  .billetteriePass4 {
    top: -43px;
    left: 30px;
  }

  .billetterie4Jour {
    font-size: 50px;
    line-height: 45px;
  }

  .billetterieTrait {
    width: 52px;
    margin: 12px 0 0 6px;
  }

  .billetteriePoppin {
    font-size: 14px !important;
    margin: 5px 0 0 8px;
  }

  .billetterieHoverPrix {
    display: block;
    width: 85%;
  }

  .billetterieAssis {
    font-size: 15px;
    padding-left: 17px;
  }

  .billetterieDebout {
    font-size: 15px;
  }

  .billetterieNewPrice {
    font-size: 36px;
    margin-top: -13px;
  }

  .billetteriePass span.spanPink {
    top: 8px;
    left: 25px;
    width: 91%;
    height: 285px;
  }

  .billetterieCarreBox .filterHover {
    display: flex;
  }

  .billetterieGroup .billetterieGroupCarres {
    flex-wrap: wrap;
    margin: 20px auto;
  }
  .billetterieGroup .billetterieGroupCarres .billetterieCarreBox {
    width: 45%;
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .billetterieGroupContent {
    margin: 0 auto 5vh;
  }

  .billetterieInfos {
    margin: 0 auto;
  }

  .billetteriePartners h2 {
    margin-bottom: 5vh;
  }

  .billetteriePartners article .img-box {
    margin-bottom: 0;
  }

  .billetteriePartners article p.upper {
    margin-top: -70px;
  }
}
@media screen and (min-width: 901px) and (max-width: 1024px) and (max-height: 780px) {
  /* Cancel hover */
  .billetterieTop {
    height: 75vh;
  }

  .billetteriePass4 {
    width: 80%;
    left: 40px;
  }

  .billetterie4Jour {
    font-size: 55px;
    line-height: 60px;
    margin-top: 15px;
  }

  .billetterieTrait {
    width: 52px;
    margin: 12px 0 0 6px;
  }

  .billetteriePoppin {
    font-size: 14px !important;
    margin: 5px 0 0 8px;
  }

  .billetteriePass:hover .billetterieHoverPrix {
    display: block;
    width: 85%;
  }

  .billetterieAssis {
    font-size: 15px;
    padding-left: 17px;
  }

  .billetterieDebout {
    font-size: 15px;
  }

  .billetterieNewPrice {
    font-size: 36px;
    margin-top: -13px;
  }

  .billetteriePass {
    width: 300px;
    height: 300px;
    margin-bottom: 30px;
  }

  .billetterieMonPass {
    width: 200px;
    height: 60px;
    left: 40px;
    transform: none;
  }

  button.billetterieBtnTop {
    width: 200px;
    height: 60px;
    left: 45px;
    transform: none;
  }
  button.billetterieBtnTop a {
    font-size: 15px;
  }

  .billetteriePass:hover .billetterie4Jour {
    top: 20px;
    font-size: 46px;
    line-height: 43px;
  }

  .billetteriePass:hover .billetterieTrait {
    width: 56px;
    margin: 8px 0 0 5px;
  }

  .billetteriePass:hover .billetteriePoppin {
    font-size: 13px;
    margin: 4px 0 0 3px;
  }

  .billetterieHoverPrix {
    font-size: 15px;
    padding-top: 28px;
    left: 80px;
  }

  .billetterieFlex p.starting {
    font-size: 15px;
  }

  .billetterieAssis {
    font-size: 20px;
    padding-left: 25px;
  }

  .billetterieDebout {
    font-size: 20px;
  }

  .billetterieGroupCarres {
    margin: 0 auto;
  }

  .billetterieCarreBox {
    width: 175px;
    height: 175px;
    transition: transform 0.5s;
  }

  .billetterieCarre p.big {
    font-size: 35px;
  }

  .billetterieCarre p {
    font-size: 15px;
  }

  .billetterieInfos {
    margin: 40px auto 0;
  }

  .billetteriePass:hover .billetterieHoverPrix {
    display: block;
    width: 100%;
    left: 10px;
    top: 100px;
  }

  .billetterieFlex {
    margin-bottom: -6px;
    width: 80%;
  }

  .billetterieCarreBox a:hover .filterHover {
    display: flex;
  }

  .billetterieCarreBox a:hover .squarePink {
    transform: rotate(0);
  }

  .billetterieGroup {
    margin-top: 60px;
  }
}
@media screen and (min-width: 901px) and (max-width: 1024px) and (min-height: 1365px) and (max-height: 1366px) {
  .billetterieTop {
    height: 50vh;
  }

  .billetterieTop h1 {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 75px;
  }

  .billetteriePass:hover .billetterieFondClair {
    transition: 0.3s ease transform;
    transform: translateX(-50%);
  }

  .billetteriePass:hover .billetterieHoverPrix {
    width: 90%;
    top: 145px;
  }

  .billetteriePrix {
    margin-top: -20px;
    width: 85%;
  }

  .billetterieMonPass {
    bottom: 15px;
    left: 90px;
    width: 60%;
    height: 50px;
    transform: none;
  }

  button.billetterieBtnTop {
    bottom: 20px;
    left: 95px;
    width: 60%;
    height: 50px;
    transform: none;
  }

  .billetterieFlex p.starting {
    font-size: 15px;
    padding-top: 30px;
  }

  .billetteriePass {
    width: 40%;
    border: none;
    height: 330px;
  }
  .billetteriePass .billetterieFondClair {
    width: 90%;
    left: 50%;
    height: 285px;
    transform: translateX(-50%);
  }

  .billetteriePass4 {
    top: -35px;
    left: 30px;
  }

  .billetterie4Jour {
    font-size: 50px;
    line-height: 45px;
  }

  .billetterieTrait {
    width: 52px;
    margin: 12px 0 0 6px;
  }

  .billetteriePoppin {
    font-size: 14px !important;
    margin: 5px 0 0 8px;
  }

  .billetterieHoverPrix {
    display: block;
    width: 85%;
    top: 180px;
  }

  .billetterieAssis {
    font-size: 15px;
    padding-left: 17px;
  }

  .billetterieDebout {
    font-size: 15px;
  }

  .billetterieNewPrice {
    font-size: 36px;
    margin-top: -13px;
  }

  .billetteriePass span.spanPink {
    top: 8px;
    left: 32px;
    width: 91%;
    height: 285px;
  }

  .billetterieCarreBox .filterHover {
    display: flex;
  }

  .billetterieGroup .billetterieGroupCarres {
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .billetterieGroup .billetterieGroupCarres .billetterieCarreBox {
    width: 45%;
    height: 300px;
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .billetterieCarre {
    height: 100%;
  }

  .billetterieGroupContent {
    margin: 15px auto 5vh;
  }

  .billetterieInfos {
    margin: 0 auto;
  }
  .billetterieInfos h3 {
    margin-top: 1vh;
  }

  .billetteriePartners h2 {
    margin-bottom: 5vh;
  }

  .billetteriePartners article .img-box {
    margin-bottom: 0;
  }

  .billetteriePartners article p.upper {
    margin-top: -70px;
  }
}
/*---------------------------- PROGRAMMATION*/
/*---------------------------------- COLOR */
/*---------------------------------- FONT */
/*$burfordBlack:'BurfordRusticBookBlack', sans-serif;
$burfordInline:'BurfordRusticInlineBold', sans-serif;*/
/*@font-face {
  font-family: "burfordrusticinline-10", sans-serif;
  src: url("../font/BurfordRusticInlineLight.otf");
}*/
@font-face {
  font-family: "BreeSerif";
  src: url("../../font/Bree_Serif/BreeSerif-Regular.ttf");
}
.progResp {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

.progTop {
  background-image: url("../../assets/img/Programmation/fond-titre-prog.avif"), url("../../assets/img/Programmation/fond-titre-prog.png");
  padding-top: 10vh;
  margin-bottom: -3px;
  height: 35vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progTop h1 {
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
  letter-spacing: 0;
  font-weight: normal;
  font-size: 3.5em;
  text-align: center;
  text-transform: uppercase;
  width: 35%;
}

.progEtoileBlanche {
  position: relative;
  width: 90%;
  max-width: 90%;
  margin: auto;
}

.progEtoileBlanche::before {
  content: "";
  width: 41px;
  height: 39px;
  background-image: url("../../assets/img/Programmation/etoile-blanche.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
}

.progEtoileBlanche::after {
  content: "";
  width: 41px;
  height: 39px;
  background-image: url("../../assets/img/Programmation/etoile-blanche.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
}

.progAgenda {
  background-color: #11519B;
  padding-top: 20px;
}
.progAgenda a {
  text-decoration: none;
}

.progBtn {
  width: 200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
.progBtn p {
  text-transform: uppercase;
  font-size: 2em;
  padding: 10px 20px;
  height: 45px;
  line-height: 50%;
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
}

.progBtnActive {
  background-color: #E83b7b;
}

.progBtnProg:hover, .progBtnOff:hover {
  cursor: pointer;
}

.progCardDesc {
  width: 80%;
  margin: 10px auto;
  line-height: 28px;
  text-align: center;
}
.progCardDesc h3 {
  font-family: "BreeSerif", sans-serif;
  font-weight: lighter;
  font-size: 1.5em;
  width: 65%;
  color: #E83b7b;
}
.progCardDesc p {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  color: #262E67;
}

.progGroupDate {
  width: 95%;
  display: flex;
  justify-content: space-between;
  margin: 80px auto 0;
  padding-bottom: 25vh;
  /*couleur de fond en OFF*/
}
.progGroupDate .progGroupCard {
  padding-bottom: 20px;
}
.progGroupDate .progReservTop {
  background-color: #E83b7b;
  color: white;
  font-family: "BreeSerif", sans-serif;
  font-size: 1.5em;
  text-align: center;
  width: 80%;
  margin: 10px auto 30px;
  padding: 15px 0 25px 0;
  cursor: pointer;
}
.progGroupDate .progReservTop a {
  text-decoration: none;
  color: #FFFFFF;
}
.progGroupDate .progReservTop:hover {
  background-color: #262E67;
}
.progGroupDate .progRectangle1 {
  width: 24%;
  height: 100%;
  padding-top: 20px;
  background-color: #FFFFFF;
  position: relative;
}
.progGroupDate .progBackGrey {
  background-color: #F1F2F7;
}

.progDate {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: -70px;
  font-family: "BreeSerif", sans-serif;
  font-weight: lighter;
  color: #262E67;
  line-height: 30px;
  background-color: white;
  text-align: center;
  width: 200px;
  padding: 12px;
  font-size: 1.75em;
  clip-path: polygon(0 20%, 100% 0, 98% 88%, 0 100%);
}

.progLink {
  text-decoration: none;
}

.progEtoile {
  position: relative;
  width: 90%;
  max-width: 90%;
  margin: auto;
}
.progEtoile a {
  text-decoration: none;
  color: #E83b7b;
}

.progEtoile::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("../../assets/img/Programmation/etoile-rose.png");
  background-size: cover;
  background-position: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -35%);
}

.progEtoile::after {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("../../assets/img/Programmation/etoile-rose.png");
  background-size: cover;
  background-position: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -35%);
}

.progArrow {
  display: none;
}

.progCard {
  width: 90%;
  margin: 0 auto 30px;
  cursor: pointer;
  min-height: 50vh;
}

.progImgArtist {
  width: 100%;
  height: 30vh;
  overflow: hidden;
}

.progRatio {
  height: 100%;
  display: block;
}

.progCard:hover .progImgArtist img {
  transform: scale(1.5);
}

.progReserv1 {
  position: absolute;
  background-color: #FD027B;
  text-align: center;
  font-family: "BreeSerif", sans-serif;
  clip-path: polygon(0 3%, 100% 0, 98% 88%, 0 100%);
  padding: 15px 0 20px 0;
  width: 230px;
  font-size: 1.5em;
  left: 50%;
  transform: translate(-50%);
  bottom: -30px;
  cursor: pointer;
}
.progReserv1 a {
  text-decoration: none;
  color: #FFFFFF;
}

.progReserv1:hover {
  background-color: #262E67;
}

.progReserv {
  position: absolute;
  background-color: #FD027B;
  color: #FFFFFF;
  text-align: center;
  font-family: "BreeSerif", sans-serif;
  clip-path: polygon(0 3%, 100% 0, 98% 88%, 0 100%);
  padding: 15px 0 20px 0;
  width: 230px;
  font-size: 1.5em;
  left: 35px;
  bottom: -30px;
  cursor: pointer;
  text-decoration: none;
}

.progReserv:hover {
  background-color: #11519B;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .progEtoileBlanche::after {
    width: 29px;
    height: 27px;
    transform: translate(-45%, 30%);
  }

  .progEtoileBlanche::before {
    width: 29px;
    height: 27px;
    transform: translate(45%, 30%);
  }

  .progGroupDate {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    margin-bottom: 90vh;
    padding-bottom: 0;
  }
  .progGroupDate .progRectangle1 {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .progGroupDate .progRectangle {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .progGroupDate .progGroupCard {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s linear;
    padding-bottom: 0;
    border-bottom: 2px solid #FD027B;
  }
  .progGroupDate .progDateResp {
    position: relative;
    padding-bottom: 20px;
  }
  .progGroupDate .progDate {
    position: static;
    margin: auto;
    transform: none;
  }
  .progGroupDate .progArrow {
    display: block;
    position: absolute;
    right: 45px;
    top: 40px;
    transform: rotate(180deg);
    transition: transform 0.8s ease;
  }
  .progGroupDate .progReservTop {
    display: none;
  }
  .progGroupDate .progCard {
    width: 75%;
    margin: auto;
  }
  .progGroupDate .progCardDesc {
    margin-bottom: 20px;
  }

  .progBtn {
    padding-bottom: 20px;
  }

  .progReserv1 {
    position: static;
    margin: 0 auto 20px;
    transform: none;
  }

  .progReserv {
    position: static;
    margin: 0 auto 20px;
  }

  .isOpen .progArrow {
    transform: rotate(0);
  }
}
@media screen and (min-width: 320px) and (max-width: 350px) {
  .progTop {
    height: 40vh;
  }
  .progTop h1 {
    font-size: 2em;
    width: 90%;
  }
  .progTop .progGroupDate {
    margin-bottom: 80vh;
  }
}
@media screen and (min-width: 351px) and (max-width: 360px) and (max-height: 640px) {
  .progTop {
    margin-top: 7vh;
    height: 30vh;
  }
  .progTop h1 {
    font-size: 2em;
    width: 90%;
    margin-top: 0;
  }

  .progGroupDate {
    margin-bottom: 80vh;
  }
}
@media screen and (min-width: 351px) and (max-width: 360px) and (min-height: 641px) and (max-height: 780px) {
  .progTop {
    margin-top: 6vh;
    height: 30vh;
  }
  .progTop h1 {
    font-size: 2em;
    width: 90%;
    margin-top: 0;
  }

  .progGroupDate {
    margin-bottom: 70vh;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) and (max-height: 667px) {
  .progTop {
    height: 40vh;
  }
  .progTop h1 {
    font-size: 2em;
    width: 85%;
  }

  .progGroupDate {
    margin-bottom: 80vh;
  }
}
@media screen and (min-width: 361px) and (max-width: 375px) and (min-height: 700px) and (max-height: 812px) {
  .progTop {
    height: 35vh;
  }
  .progTop h1 {
    font-size: 2em;
    width: 85%;
  }

  .progGroupDate {
    margin-bottom: 70vh;
  }
}
@media screen and (min-width: 376px) and (max-width: 414px) and (max-height: 736px) {
  .progTop {
    height: 35vh;
  }
  .progTop h1 {
    font-size: 2em;
    width: 80%;
  }

  .progGroupDate {
    margin-bottom: 70vh;
  }
}
@media screen and (min-width: 376px) and (max-width: 414px) and (min-height: 737px) and (max-height: 823px) {
  .progTop {
    height: 35vh;
  }
  .progTop h1 {
    font-size: 2.5em;
    width: 90%;
    margin-top: 5vh;
  }

  .progGroupDate {
    margin-bottom: 60vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .resp {
    height: 50vh;
  }

  .progTop {
    height: 40vh;
  }
  .progTop h1 {
    font-size: 4em;
    width: 80%;
  }
  .progTop .progImgArtist {
    height: 50vh;
  }

  .progGroupDate {
    margin-bottom: 40vh;
  }
}
@media screen and (min-width: 901px) and (max-width: 1024px) {
  .progTop {
    height: 50vh;
  }
  .progTop h1 {
    font-size: 4em;
    width: 60%;
  }

  .progGroupDate {
    margin-bottom: 50vh;
  }

  .progImgArtist {
    height: 50vh;
  }
}
@media screen and (min-width: 901px) and (max-width: 1024px) and (min-height: 1365px) and (max-height: 1366px) {
  .progTop {
    height: 30vh;
  }
  .progTop h1 {
    font-size: 4em;
    width: 60%;
  }

  .progGroupDate {
    margin-bottom: 31vh;
  }

  .progImgArtist {
    height: 30vh;
  }
}
/*---------------------------- ARTIST*/
/* PARAMETRES GENERAUX */
.artiste-100 {
  width: 100%;
}

.artiste-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* RESUME ARTISTE - PARTIE HAUTE */
.artiste-bande {
  display: flex;
  height: 45vh;
  position: relative;
  margin-top: 84px;
}

.artiste-photo {
  overflow: hidden;
  margin-left: 43%;
}

.artiste-bg {
  background-color: #262E67;
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  width: 62%;
  height: inherit;
  position: absolute;
  left: 0;
  flex-direction: column;
}

.artiste-div {
  width: 80%;
  margin: 10px 0;
}

.artiste-resume {
  width: 67%;
  flex-wrap: wrap;
}

.artiste-etoile {
  margin: 0 10px;
}

.artiste-title {
  text-transform: uppercase;
  color: #FFFFFF;
}

#artiste-name {
  font-size: 36px;
  font-family: "BreeSerif", sans-serif;
}

#artiste-time {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.artiste-btn {
  display: block;
  clip-path: polygon(0 8%, 100% 0, 95% 85%, 0 98%);
  background-color: #E83b7b;
  border: none;
  margin: 30px 0;
  width: 230px;
  height: 67px;
  line-height: 58px;
  font-size: 25px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
}

.artiste-btn:hover {
  background-color: #11519B;
}

/* INFORMATIONS ARTISTE */
.artiste-infos {
  width: 80%;
  margin: 45px auto;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.artiste-prg {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #262E67;
  font-weight: 300;
}

#artiste-genre {
  font-weight: 700;
  margin-bottom: 10px;
}

.artiste-img {
  width: 40%;
  height: 100%;
}

.artiste-texte {
  width: 50%;
  padding: 0 30px;
}

.artiste-reseaux {
  display: flex;
  margin: 15px 0;
  list-style: none;
}

.artiste-li {
  margin-right: 15px;
  width: 5%;
}

/* MEDIA QUERIES */
@media screen and (min-width: 1254px) {
  .artiste-resume {
    width: 58%;
  }
}
@media screen and (min-width: 320px) and (max-width: 426px) and (orientation: portrait) {
  .artiste-bande {
    margin-top: 50px;
    flex-direction: column;
    height: unset;
  }

  .artiste-bg {
    clip-path: unset;
    position: unset;
    width: 100%;
    padding-top: 25px;
  }

  .artiste-resume {
    width: 90%;
    justify-content: space-evenly;
  }

  .artiste-photo {
    margin-left: unset;
  }

  #artiste-name {
    width: 40%;
    line-height: 44px;
    text-align: center;
  }

  #artiste-time {
    margin-top: 20px;
  }

  .artiste-btn {
    width: 50%;
  }

  .artiste-infos {
    display: block;
    width: 90%;
    margin: 30px auto;
  }

  .artiste-texte, .artiste-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 375px) and (max-width: 426px) {
  .artiste-bg {
    padding-top: 40px;
  }
}
@media screen and (min-width: 426px) and (max-width: 768px) {
  .artiste-texte {
    padding: 0 10px;
  }

  .artiste-img {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
  .artiste-bande {
    height: 28vh;
    margin-top: 79px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1393px) and (orientation: landscape) {
  .artiste-bande {
    height: 40vh;
  }

  .artiste-resume {
    width: 45%;
  }
}
/*---------------------------- ARCHIVES*/
.archives .years-box {
  padding: 100px 0;
}
.archives .years-box a {
  text-decoration: none;
  font-family: "BreeSerif", sans-serif;
  font-size: 30px;
  color: #11519B;
  padding: 10px 15px;
  margin-bottom: 20px;
}
.archives .years-box a.active {
  background-color: #11519B;
  color: #FFFFFF;
}
.archives .years-box .item {
  margin-bottom: 30px;
  min-width: 90px;
}

/*---------------------------- PARTNER*/
/*-------------------------------SECTION Main*/
.partnersMain {
  width: 100vw;
  margin: 0 auto;
  padding: 0 0 150px 0;
}
@media (max-width: 471px) {
  .partnersMain {
    padding: 0 0 10px 0;
  }
}
@media (min-width: 472px) and (max-width: 800px) {
  .partnersMain {
    padding: 0 0 30px 0;
  }
}

/*-------------------------------SECTION Title*/
.partnersSectionTop {
  background-image: url("../../assets/img/Partenaires/BG_partenaires.png");
  margin-top: 10vh;
  height: 30vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 471px) {
  .partnersSectionTop {
    height: 20vh;
    margin-top: 45px;
  }
}
@media (min-width: 472px) and (max-width: 2600px) {
  .partnersSectionTop {
    margin-top: 45px;
  }
}

.partnersSectionTopImage {
  width: 3%;
  margin: 15px 30px 0 30px;
}
@media (max-width: 471px) {
  .partnersSectionTopImage {
    width: 7%;
    margin: 15px 10px 0 10px;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .partnersSectionTopImage {
    width: 2%;
    margin: 15px 30px 0 30px;
  }
}

.partnersSectionTopImage img {
  width: 100%;
}

.partnersSectionTopTitle h1 {
  color: white;
  font-family: "BreeSerif", sans-serif;
  letter-spacing: 0;
  font-weight: normal;
  font-size: 3em;
  text-transform: uppercase;
}
@media (max-width: 471px) {
  .partnersSectionTopTitle h1 {
    font-size: 1.8em;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .partnersSectionTopTitle h1 {
    font-size: 5em;
  }
}

/*-------------------------------SECTION remerciement*/
.partnersSectionTopText {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 471px) {
  .partnersSectionTopText {
    display: none;
  }
}

.partnersSectionTopText h2 {
  color: #262E67;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1.4em;
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (min-width: 472px) and (max-width: 800px) {
  .partnersSectionTopText h2 {
    font-size: 0.8em;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .partnersSectionTopText h2 {
    font-size: 2em;
  }
}

/*-------------------------------SECTION partners*/
.partnersSectionTopMenu {
  width: 60%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 471px) {
  .partnersSectionTopMenu {
    flex-direction: column;
    padding: 20px 0 0 0;
    width: 80%;
  }
}

/*.partnersSectionTopMenu a{
  text-decoration: none;
}*/
.partnersSectionTopMenu p {
  color: #11519B;
  font-family: "BreeSerif", sans-serif;
  letter-spacing: 0;
  font-weight: normal;
  font-size: 1.5em;
  text-transform: uppercase;
  padding: 5px 15px;
}
@media (min-width: 320px) and (max-width: 374px) {
  .partnersSectionTopMenu p {
    font-size: 1.2em;
    padding: 5px 10px;
  }
}
@media (min-width: 375px) and (max-width: 471px) {
  .partnersSectionTopMenu p {
    font-size: 1.2em;
    padding: 5px 10px;
  }
}
@media (min-width: 472px) and (max-width: 800px) {
  .partnersSectionTopMenu p {
    padding: 5px 10px;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .partnersSectionTopMenu p {
    font-size: 2em;
  }
}

.partnersSectionTopMenu p:hover {
  background-color: #E83b7b;
  color: white;
  cursor: pointer;
}

/*-------------------------------SECTION logos*/
.tab div {
  display: none;
}

.tab-active div {
  display: block;
}

.tab-nav {
  padding: 0px;
}

.tab-nav a {
  display: block;
  padding: 10px 5px;
}

.tab-nav a:hover {
  background-color: #E83b7b;
  transition: all 0.5s ease;
}

.tab-nav .tab-nav-active {
  background-color: #E83b7b;
}

.tab-nav .tab-nav-active p {
  color: white;
}

.tab-nav div {
  display: inline-block;
}

.partnersSectionLogos {
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 471px) {
  .partnersSectionLogos {
    width: 80%;
  }
}

.partnersSectionLogosBloc {
  display: flex;
  justify-content: space-evenly;
  /*justify-content: flex-start;*/
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

#partnersSectionLogosDuo {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
@media (max-width: 471px) {
  #partnersSectionLogosDuo {
    flex-wrap: wrap;
  }
}

#partnersSectionLogosDuo div {
  min-width: 25%;
  max-width: 25%;
  margin: 20px 40px;
}
@media (max-width: 471px) {
  #partnersSectionLogosDuo div {
    min-width: 90%;
    max-width: 90%;
  }
}

.partnersSectionLogoImage {
  min-width: 14%;
  max-width: 14%;
  margin: 20px 20px 0 20px;
}
@media (max-width: 471px) {
  .partnersSectionLogoImage {
    min-width: 30%;
    max-width: 30%;
  }
}
@media (min-width: 472px) and (max-width: 800px) {
  .partnersSectionLogoImage {
    min-width: 10%;
    max-width: 10%;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .partnersSectionLogoImage {
    min-width: 12%;
    max-width: 15%;
  }
}

.partnersSectionLogoImage img {
  width: 100%;
}

/*-------------------------------SECTION rejoindre*/
.partnersSectionTopRejoindre {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 319px) and (max-width: 350px) {
  .partnersSectionTopRejoindre {
    width: 90%;
  }
}
@media (min-width: 351px) and (max-width: 471px) {
  .partnersSectionTopRejoindre {
    width: 80%;
  }
}
@media (min-width: 375px) and (min-height: 812px) and (max-height: 813px) {
  .partnersSectionTopRejoindre {
    margin-bottom: 80px;
  }
}

.partnersSectionTopRejoindreTitle {
  margin: 50px 0 0 0;
}

.partnersSectionTopRejoindreTitle h3 {
  color: #E83b7b;
  font-family: "BreeSerif", sans-serif;
  letter-spacing: 0;
  font-weight: lighter;
  font-size: 2em;
  text-transform: uppercase;
  text-align: left;
}
@media (max-width: 471px) {
  .partnersSectionTopRejoindreTitle h3 {
    font-size: 1.5em;
    line-height: 1em;
  }
}
@media (min-width: 472px) and (max-width: 800px) {
  .partnersSectionTopRejoindreTitle h3 {
    font-size: 1.8em;
    line-height: 1em;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .partnersSectionTopRejoindreTitle h3 {
    font-size: 3em;
  }
}

.partnersSectionTopRejoindreSubTitle p {
  color: #11519B;
  font-family: "BreeSerif", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1.3em;
  text-transform: uppercase;
  margin: 20px 0;
}
@media (min-width: 472px) and (max-width: 800px) {
  .partnersSectionTopRejoindreSubTitle p {
    font-size: 1.3em;
    line-height: 1em;
  }
}
@media (min-width: 1500px) and (max-width: 2600px) {
  .partnersSectionTopRejoindreSubTitle p {
    font-size: 2em;
  }
}

.partnersSectionTopRejoindreText {
  margin: 10px 0;
}

.partnersSectionTopRejoindreText p {
  color: #262E67;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  font-weight: normal;
  font-size: 1em;
  margin: 0;
  text-transform: initial;
}
@media (min-width: 319px) and (max-width: 375px) {
  .partnersSectionTopRejoindreText p {
    font-size: 0.8em;
  }
}

.partnersSectionTopRejoindreText a {
  color: #262E67;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  font-size: 1em;
  text-transform: initial;
  font-weight: 700 !important;
  margin: 15px 0 5px 0;
}
@media (min-width: 319px) and (max-width: 375px) {
  .partnersSectionTopRejoindreText a {
    font-size: 0.8em;
  }
}

.partnersSectionTopRejoindreText p:first-child {
  font-weight: 700 !important;
  margin: 15px 0 5px 0;
}

/* PARAMETRES GENERAUX */
.partner-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-85 {
  width: 85%;
  margin: 0 auto;
}

.partner-100 {
  width: 100%;
}

.partner-50 {
  width: 50%;
}

.partner-mr10 {
  margin-right: 10px;
}

.partner-mb10 {
  margin-bottom: 10px;
}

.partner-flex {
  display: flex;
}

/* PARAMETRES BANNIERE */
.partner-bg {
  background-image: url("../../assets/img/press/fond-titre.avif"), url("../../assets/img/press/fond-titre.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  margin-top: 79px;
}

.partner-titleBG {
  display: inline;
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
  font-size: 3em;
  text-align: center;
  letter-spacing: 4px;
  z-index: 1;
  line-height: 1;
  text-transform: uppercase;
}

.partner-etoile {
  width: 37px;
  margin: 10px 15px 0 15px;
}

.partner-main {
  width: 85%;
  margin: 0 auto;
}

/** PARTNER LOGIN **/
.partner-login {
  text-align: end;
  font-weight: 600;
  color: #262E67;
  margin-top: 60px;
  padding-bottom: 20px;
  font-family: "Poppins", sans-serif;
}
.partner-login a {
  color: #E83b7b;
}
.partner-login a:visited {
  color: #E83b7b;
}

/** PARTNER-DEVENIR **/
.partner-section {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  flex-direction: row-reverse;
}

.partner-img {
  width: 50%;
}

.partner-caption {
  color: #262E67;
  font-weight: 200;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
}

.partner-text {
  width: 45%;
  padding-left: 3px;
  color: #262E67;
  font-family: "Poppins", sans-serif;
}

.partner-title {
  color: #11519B;
  text-transform: uppercase;
  font-family: "BreeSerif", sans-serif;
  font-size: 30px;
  font-weight: 500;
  width: 75%;
  margin-bottom: 12px;
}

#mobile-title {
  display: none;
}

.partner-prg {
  color: #262E67;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 25px;
  width: 80%;
  font-family: "Poppins", sans-serif;
}

/** PARTNER-WHY **/
#partner-why {
  justify-content: unset;
  flex-direction: unset;
  align-items: center;
}

.partner-forme {
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
  background: linear-gradient(291deg, #F4A9C4 0%, #FDECBD 100%);
  width: 49%;
  padding: 44px;
  z-index: 100;
  margin: 0 20px;
}

.partner-fg {
  width: 50%;
  margin-right: 10px;
}

#desktop-title {
  width: 95%;
  margin-bottom: 25px;
  color: #E83b7b;
}

#why-caption {
  text-align: right;
}

#partner-pul {
  margin-bottom: 10px;
}

.partner-list {
  list-style-type: "- ";
  margin-bottom: 10px;
  width: 85%;
}

/** PARTENAIRE BILLETERIE **/
#partner-billeterie {
  margin-bottom: 80px;
}

/** MOBILE VERSION **/
@media screen and (min-width: 320px) and (max-width: 768px) {
  .partner-main {
    padding-bottom: 55vh;
  }

  .partner-login {
    margin: 30px 0;
    text-align: center;
  }

  .partner-section {
    display: unset;
    flex-direction: unset;
  }

  .partner-text, .partner-title, .partner-prg, .partner-img {
    width: 100%;
  }

  .partner-title {
    margin-bottom: 20px;
  }

  .partner-caption {
    padding-bottom: 20px;
  }

  #partner-why, .partner-forme, #why-img {
    position: unset;
  }

  .partner-forme {
    width: 100%;
    padding: 35px;
    margin: 30px auto;
  }

  #desktop-title {
    display: none;
  }

  #mobile-title {
    display: block;
    color: #E83b7b;
  }

  #partner-pul, .partner-list {
    margin-bottom: 10px;
  }

  #img-billeterie {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .partner-bg {
    height: 27vh;
  }

  .mobile-mb10 {
    margin-bottom: 10px;
  }

  .partner-flex {
    display: unset;
  }

  .partner-50 {
    width: unset;
  }

  .partner-mr10 {
    margin-right: unset;
  }

  .partner-titleBG {
    font-size: 34px;
    width: 72%;
  }

  .partner-etoile {
    width: 8%;
    margin: 0 10px;
  }
}
.presse-main {
  width: 80%;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.a-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w100 {
  width: 100%;
}

/****** TEXTES ******/
.presse-titre, .presse-soustitre {
  /*font-family*/
  font-size: 35px;
  color: #262E67;
  text-transform: uppercase;
}

.presse-soustitre {
  font-size: 20px;
  width: 45%;
  font-family: "Poppins", sans-serif;
}

.presse-lien {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #262E67;
  margin-top: 20px;
}

.presse-lien {
  font-weight: 700;
}

/******** DIV ********/
.overflow {
  overflow: hidden;
}

.presse-div {
  margin: 60px 0;
}

.presse-docs {
  height: 20px;
  margin: 30px 20px 30px 0;
}

.presse-ligne {
  border: #262E67 1px solid;
  height: 0;
  margin-top: 30px;
}

/***** LIENS *******/
.presse-lien {
  text-decoration: none;
  padding: 20px 20px 20px 40px;
  width: 50%;
  background-color: #F1F2F7;
}

.presse-lien:hover {
  transform: scale(1.2);
}

.presse-telechargements {
  display: none;
}

.partner-deco {
  text-align: end;
  margin: 40px 0;
}

#partner-out {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #262E67;
  font-weight: 700;
}

/***** REGLAGLES D'IMAGE ******/
.presse-plus, .presse-minus {
  width: 40px;
}

.presse-dwld {
  width: 30px;
}

.presse-minus {
  display: none;
}

@media screen and (max-width: 768px) and (orientation: portrait) {
  .presse-infos {
    flex-direction: column;
  }

  .partner-deco {
    margin: 25px 0 40px 0;
  }

  .presse-div {
    margin: 21px 0;
  }

  .presse-titre {
    font-size: 30px;
  }

  #presse-contact {
    width: 85%;
  }

  .presse-texte {
    padding: 22px 0;
  }

  .presse-lien {
    width: 100%;
  }

  .presse-soustitre {
    width: 100%;
  }
}
/*---------------------------- CONTACT*/
.form-45 {
  width: 45%;
}

.form-next {
  display: flex;
  justify-content: space-between;
}

.mv-10 {
  margin: 0 10px;
}

.contact-main {
  background-image: url("../../assets/img/Partenaires/BG_partenaires.avif");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  margin-top: 79px;
  height: 90vh;
}

.contact-title {
  color: #FFFFFF;
  text-align: center;
  font-family: "BreeSerif", sans-serif;
  text-transform: uppercase;
  font-size: 4em;
  font-weight: 500;
  padding: 50px 0;
}

.contact-form {
  background-color: #FFFFFF;
  width: 50%;
  margin: 0 auto;
  padding: 40px;
}

.form-div {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  width: 45%;
}

.form-100 {
  width: 100%;
}

.form-label {
  color: #262E67;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.form-input {
  height: 40px;
  border: none;
  background-color: #F1F2F7;
  padding-left: 6px;
}

#form-message {
  resize: none;
  height: 180px;
  padding-top: 5px;
  font-family: "Poppins", sans-serif;
  color: #262E67;
}

#form-checkbox {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

[type=checkbox] {
  background-color: #F1F2F7;
  border: 1px #262E67 solid;
}

#p-check {
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #262E67;
}

#form-btn {
  display: block;
  border: 1px #262E67 solid;
  background-color: #262E67;
  color: #FFFFFF;
  width: 25%;
  margin: 0 auto;
  height: 45px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.contact-infos {
  background-color: #FFFFFF;
  width: 50%;
  margin: 40px auto;
  padding: 40px;
}

.contact-subtitle {
  text-transform: uppercase;
  color: #262E67;
  font-family: "BreeSerif", sans-serif;
  font-size: 1.8em;
  font-weight: 300;
}

.contact-prg {
  font-weight: 300;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #262E67;
  margin: 5px;
}

/* VERSION MOBILE */
@media screen and (min-width: 320px) and (max-width: 768px) {
  .contact-main {
    margin-top: 45px;
  }

  .contact-title {
    font-size: 3em;
    padding: 35px 0;
  }

  .contact-form, .contact-infos {
    width: 90%;
    padding: 18px;
  }

  .form-next {
    display: unset;
  }

  .form-div {
    width: unset;
  }

  #p-check {
    margin-top: -3px;
  }

  #form-checkbox {
    align-items: start;
  }

  #form-btn {
    width: 50%;
    height: 50px;
  }
}
/*---------------------------- POPUP*/
.base-popup {
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
}
.base-popup .close-box {
  display: flex;
  justify-content: flex-end;
}
.base-popup .close-box .close {
  font-family: "BreeSerif", sans-serif;
  font-size: 30px;
}
.base-popup .close-box .close:hover {
  cursor: pointer;
  color: #FD027B;
}
.base-popup .content {
  width: 90%;
  height: 80vh;
  overflow-y: scroll;
  background-color: white;
  padding: 20px;
}
.base-popup .content .title {
  font-family: "BreeSerif", sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  margin: 30px;
}
.base-popup .content .text * {
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
}
.base-popup .content .text img {
  max-width: 80vw;
}

/*---------------------------- CASHLESS*/
.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w85 {
  width: 85%;
}

.w75 {
  width: 75%;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.m0-auto {
  margin: 0 auto;
}

.mb-300 {
  margin-bottom: 300px;
}

.lined {
  text-decoration: underline;
}

.title-section {
  margin: 50px auto;
  width: 75%;
  text-align: center;
  font-size: 29px;
  text-transform: uppercase;
  font-family: "BreeSerif", sans-serif;
  font-weight: 400;
  color: #11519B;
}

.text-section, .answer-section {
  font-family: "Poppins", sans-serif;
  color: #262E67;
  font-size: 16px;
}

/** SECTION TITRE CASHLESS **/
#cashless-section {
  background-image: url("../../assets/img/press/fond-titre.avif"), url("../../assets/img/press/fond-titre.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 30vh;
  margin-top: 79px;
}

.cashless-img {
  width: 37px;
}

#cashless-title {
  color: white;
  margin: 0 20px;
  font-size: 3em;
  text-transform: uppercase;
  font-family: "BreeSerif", sans-serif;
  font-weight: 400;
}

/** SECTION PICTOS **/
#how-section {
  padding: 30px;
}

#picto-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.picto-div {
  width: 15%;
  margin: 0 10px;
}

.picto-img {
  width: 75%;
  margin: 10px auto;
}

.picto-text {
  text-align: center;
  font-weight: 700;
}

/**   SECTION AVANTAGES **/
#avantages-section {
  width: 70%;
  background: linear-gradient(291deg, #F4A9C4 0%, #FDECBD 100%);
  padding: 74px 54px;
  clip-path: polygon(0 6%, 100% 0, 98% 88%, 0 100%);
  margin: 0 auto;
}

#avantages-section h2 {
  margin: 10px auto;
  color: #E83b7b;
  width: 100%;
  font-size: 29px;
  text-transform: uppercase;
  font-family: "BreeSerif", sans-serif;
  font-weight: 400;
}

#avantages-section ul {
  width: 95%;
  margin: 12px auto;
}

#avantages-section ul li {
  font-family: "Poppins", sans-serif;
  color: #262E67;
  font-size: 16px;
  list-style-type: none;
  margin: 8px 0;
}

#avantages-section ul li::before {
  content: "●";
  color: #E83b7b;
  font-weight: 800;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

#avantages-section p {
  font-family: "Poppins", sans-serif;
  color: #262E67;
  font-size: 16px;
}

#avantages-section a {
  text-decoration: none;
  color: #E83b7b;
  font-weight: 800;
}

/** SECTION COMPTE **/
.account-div {
  border: 1px #F1F2F7 solid;
  height: 200px;
  background-color: #F1F2F7;
}

/** SECTION FAQ **/
.blue-line {
  border: 1px solid #262E67;
  width: 100%;
}

.question-section {
  justify-content: space-between;
}

.title-question {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #262E67;
  margin: 30px 0;
}

.question-sign {
  width: 3%;
}

.answer-section {
  display: none;
  transition: max-height 2.4s ease;
}

.faq-section.active .answer-section {
  display: block;
  margin-bottom: 30px;
}

.faq-section .plus-div, .faq-section.active .minus-div {
  display: block;
}

.faq-section .minus-div, .faq-section.active .plus-div {
  display: none;
}

/** PARTIE MOBILE **/
@media screen and (min-width: 320px) and (max-width: 768px) {
  #cashless-title {
    font-size: 2.5em;
  }

  .cashless-img {
    width: 23px;
  }

  #how-section {
    padding: unset;
  }

  .title-section {
    margin: 35px auto;
    width: 100%;
    font-size: 23px;
  }

  #picto-section {
    flex-wrap: wrap;
  }

  .picto-div {
    width: 41%;
    margin: 5px 8px;
  }

  .text-section, .answer-section {
    font-size: 13px;
  }

  #avantages-section {
    width: 100%;
    padding: 45px 27px;
  }

  .title-question {
    width: 80%;
    font-size: 16px;
    margin: 20px 0;
  }

  .question-sign {
    width: 10%;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  .title-question {
    width: 85%;
  }

  .question-sign {
    width: 7%;
  }

  .text-section, .answer-section {
    font-size: 15px;
  }
}
@media screen and (min-width: 540px) and (max-width: 768px) {
  .picto-div {
    width: 33%;
  }
}
/*---------------------------- AD_BANNER*/
.banner {
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.banner .content {
  min-width: 300px;
  min-height: 30vh;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/*---------------------------- SPRINGBOARD*/
.p-relative {
  position: relative;
}

.tremplin-artiste {
  margin: 30px;
}
.tremplin-artiste img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
.tremplin-artiste h3, .tremplin-artiste button {
  margin-top: 12px;
  color: #FFFFFF;
  text-align: center;
}
.tremplin-artiste button {
  display: block;
  margin: 12px auto 0;
  font-family: "BreeSerif", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  background-color: unset;
}
.tremplin-artiste p {
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

#artiste-modal {
  padding: 20px 30px;
  border: unset;
  width: 80%;
  display: none;
  z-index: 10;
  position: fixed;
  top: 156px;
  transform: translateX(14%);
  transition: fade-in 0.3s 4s;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

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

#close-div {
  display: flex;
  justify-content: end;
}

.modal-div {
  display: flex;
  justify-content: space-evenly;
}

.modal-close {
  transform: rotate(45deg);
  width: 3%;
}

.modal-img {
  width: 360px;
  height: 360px;
  object-fit: cover;
}

.modal-infos {
  width: 50%;
}
.modal-infos h3 {
  color: #262E67;
  text-transform: uppercase;
  font-size: 22px;
  font-family: "BreeSerif", sans-serif;
}

.modal-style {
  color: #E83B7B;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.modal-metier {
  font-family: "Poppins", sans-serif;
  color: #262E67;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 16px;
}

.modal-description {
  font-family: "Poppins", sans-serif;
  color: #262E67;
  font-size: 15px;
}

@media screen and (max-width: 770px) and (orientation: portrait) {
  #modal {
    position: relative;
    width: 90%;
  }

  .close-div {
    margin: 6px;
  }

  .modal-close {
    position: absolute;
    top: 14px;
    right: 22px;
    width: 10%;
  }

  #modal-overlay {
    height: 200vh;
  }

  .not-flex {
    display: unset;
  }

  .modal-div {
    display: unset;
    margin: 2%;
  }

  .modal-img {
    width: 200px;
    height: 200px;
    display: block;
    margin: 26px auto;
  }

  .modal-infos {
    width: 80%;
    margin: 10px auto;
  }

  .modal-reseaux {
    display: flex;
    align-items: flex-start;
    width: 50%;
    justify-content: space-evenly;
    margin-top: 5%;
  }
  .modal-reseaux a {
    text-decoration: none;
  }
  .modal-reseaux img {
    width: 50%;
  }
}
@media screen and (max-width: 770px) and (orientation: portrait) and (max-width: 321px) and (orientation: portrait) {
  .modal-img {
    width: 230px;
    height: 230px;
  }
}
@media screen and (max-width: 770px) and (orientation: portrait) and (min-width: 431px) and (max-width: 768px) and (orientation: portrait) {
  .modal-img {
    width: 360px;
    height: 360px;
  }

  .modal-close {
    width: 5%;
  }
}
h3 {
  font-size: 22px;
}

/* BACKGROUND */
#tremplin-bg {
  background-image: url("../../assets/img/tremplin/fond-bleu.avif"), url("../../assets/img/tremplin/fond-bleu.png");
}

/* SECTION INFORMATIONS TREMPLIN */
.tremplin-h2 {
  color: #FFFFFF;
  text-align: center;
  padding: 3%;
}

#tremplin-section1 {
  padding: 20px 40px;
}

.blue-bg {
  background-color: #11519B;
}

#infos-tremplin {
  width: 85%;
  margin: 6% auto;
  display: flex;
  justify-content: space-evenly;
}
#infos-tremplin div {
  width: 40%;
}
#infos-tremplin p {
  color: #FFFFFF;
  margin: 12px 0;
}

.bloc-images {
  width: 45%;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.tremplin-image {
  width: 36%;
}

/* PARALLAX IMAGE */
#tremplin-parallax {
  background-image: url("../../assets/img/tremplin/photo-parrallax.jpg"), url("../../assets/img/tremplin/photo-parrallax.avif");
  height: 45vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* SECTION ARTISTES SELECTIONNES */
#tremplin-selected {
  margin: 0 auto;
  position: relative;
}
#tremplin-selected > div {
  justify-content: space-between;
}

#title-selected {
  color: #E83b7b;
  text-align: center;
  margin: 4% 0;
}

.artiste-selected img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
.artiste-selected h3, .artiste-selected button {
  margin-top: 12px;
  color: #E83b7b;
  text-align: center;
}
.artiste-selected button {
  display: block;
  margin: 12px auto 0;
  font-family: "BreeSerif", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  background-color: unset;
}
.artiste-selected p {
  color: #262E67;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

/* SECTION PLUS D'INFORMATION*/
#tremplin-more {
  margin: 4% auto;
}
#tremplin-more > h3 {
  color: #E83b7b;
  font-size: 24px;
}
#tremplin-more > p {
  color: #262E67;
  font-size: 16px;
  margin: 24px 0;
}
#tremplin-more > p > a {
  text-decoration: none;
  color: #262E67;
  font-weight: 300;
}

/* SECTION ARTISTES PASSES */
#tremplin-done {
  width: 80%;
  margin: 0 auto;
}

.artiste-done {
  justify-content: space-evenly;
  margin: 50px 0;
}
.artiste-done img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.artiste-done h3 {
  color: white;
  margin-bottom: 6px;
}

.infos-done {
  width: 50%;
}

.year-done {
  color: #E83b7b;
  font-weight: 700;
}

.paragraph-done {
  color: #FFFFFF;
  font-weight: 300;
  padding: 20px 0;
}

/* BUTTON SECTION */
#tremplin-btn {
  background-color: #E83b7b;
  color: #FFFFFF;
  font-family: "BreeSerif", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  clip-path: polygon(0 6%, 100% 1%, 96% 91%, 0 100%);
  text-align: center;
  width: 244px;
  height: 70px;
  display: block;
  margin: 0 auto;
}

/* SECTION LOGOS */
#tremplin-logos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 85%;
  margin: 0 auto;
  padding: 7% 0;
}
#tremplin-logos img {
  width: 16%;
  height: 100%;
}

/* MOBILE */
@media screen and (max-width: 430px) and (orientation: portrait) {
  #tremplin-bg {
    background-image: url("../../assets/img/tremplin/fond-bleu-mobile.avif"), url("../../assets/img/tremplin/fond-bleu-mobile.png");
  }

  .tremplin-h2 {
    padding: 8%;
  }

  #tremplin-section1 {
    padding: 20px 60px;
  }

  .bloc-images {
    width: unset;
  }

  .tremplin-image {
    width: 44%;
  }

  #infos-tremplin {
    display: unset;
    justify-content: unset;
  }
  #infos-tremplin div {
    width: unset;
  }

  #tremplin-selected > div {
    display: unset;
  }

  .artiste-selected {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px 0;
  }
  .artiste-selected img {
    margin: 0 auto;
  }

  #tremplin-more {
    margin: 10% auto;
  }

  .artiste-done {
    flex-direction: column;
    margin: 30px auto;
  }

  .img-done {
    margin: 0 auto;
  }

  .infos-done {
    width: 85%;
    margin: 10px auto;
  }

  #tremplin-logos {
    flex-wrap: wrap;
    padding: 10% 0;
  }
  #tremplin-logos img {
    width: 35%;
    margin: 20px;
  }
}
@media screen and (max-width: 375px) and (orientation: portrait) {
  .bloc-images {
    display: unset;
  }

  .tremplin-image {
    width: 80%;
    margin: 12px auto;
  }

  #infos-tremplin p {
    margin: 16px 0;
  }

  .artiste-done img {
    width: 240px;
    height: 240px;
  }
}

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