@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html, body {
  font-family: "Albert Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #070613;
  position: relative;
  scroll-behavior: smooth;
}

.btn-primary {
  color: #000;
  background-color: #FECF56;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: ease-in-out 0.2s;
  border: none;
}

.btn-primary:hover {
  background-color: #C19C3D;
  transition: ease-in-out 0.2s;
  cursor: pointer;
}

.btn-outline {
  color: #FECF56;
  border: 1px solid #FECF56;
  padding: 10px 20px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: ease-in-out 0.2s;
  background: transparent;
}

.btn-outline:hover {
  background-color: #FECF56;
  color: #000;
  transition: ease-in-out 0.2s;
  cursor: pointer;
}

.badge {
  background: #4637C6;
  padding: 5px 10px;
  border-radius: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 50px;
  position: relative;
  z-index: 500;
}

/* SWITCH */
.checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.checkbox .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  font-size: 15px;
  font-weight: 200;
  margin: 20px 0;
  text-transform: uppercase;
}
.checkbox .switch {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 34px;
}
.checkbox .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #15131F;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #727272;
}
.checkbox .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #4637C6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.checkbox input:focus + .slider {
  box-shadow: 0 0 1px #15131F;
}
.checkbox input:checked + .slider:before {
  -webkit-transform: translateX(43px);
  -ms-transform: translateX(43px);
  transform: translateX(43px);
}
.checkbox .slider.round {
  border-radius: 34px;
}
.checkbox .slider.round:before {
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 20px;
  }
}
#home {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0;
}
#home .shape-1-home {
  position: absolute;
  top: 0;
  left: -100px;
  width: 900px;
  right: auto;
  opacity: 1;
}
#home .shape-2-home {
  position: absolute;
  top: -200px;
  left: auto;
  width: 900px;
  right: -400px;
  opacity: 1;
}
#home .container .hero {
  min-height: 50vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 500;
}
#home .container .hero #title {
  width: 100%;
}
#home .container .hero #title h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
  font-size: 80px;
}
#home .container .hero #title h1 .line {
  border-bottom: 4px solid #FECF56;
}
#home .container .hero #title h1:nth-of-type(2) {
  font-weight: 300;
}
#home .container .hero #title div {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
#home .container .hero #title div p {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin: 20px 0;
}
#home .container .hero .carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
#home .container .hero .carousel img {
  width: 100%;
  border-radius: 10px;
}
#home .container .flex-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: row;
  gap: 100px;
}
#home .container .list-avis {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  margin-top: 150px;
}
#home .container .list-avis .shape-3-home {
  position: absolute;
  opacity: 0.7;
}
#home .container .list-avis #avis {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 50vh;
  position: relative;
  z-index: 500;
}
#home .container .list-avis #avis h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 500;
  margin: 20px 0;
  line-height: 0.5;
}
#home .container .list-avis #avis h1 .line {
  border-bottom: 4px solid #FECF56;
}
#home .container .list-avis #avis h1:nth-of-type(2) {
  font-weight: 200;
}
#home .container .list-avis #avis p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
#home .container .list-avis div {
  position: relative;
  z-index: 500;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#home .container .list-avis div .card-avis {
  display: flex;
  flex-direction: column;
  align-items: start;
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
  background-image: url("../images/noiseEffect-K7JSBA3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 500px;
  gap: 5px;
}
#home .container .list-avis div .card-avis .list-user {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
#home .container .list-avis div .card-avis .list-user img {
  width: 76px;
  height: 76px;
}
#home .container .list-avis div .card-avis .list-user .title-user {
  line-height: 1;
  margin: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
}
#home .container .list-avis div .card-avis .list-user .title-user p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin: 0;
  padding: 0;
}
#home .container .list-avis div .card-avis .list-user .title-user p:nth-of-type(2) {
  font-size: 16px;
  font-weight: 300;
}
#home .container .list-avis div .card-avis .comment p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  margin: 10px 0;
}
#home .container .list-avis div .card-avis .block-stars .list-stars {
  display: flex;
  align-items: start;
  flex-direction: row;
  gap: 5px;
  border-radius: 50px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#home .container .list-avis div .card-avis .block-stars .star svg {
  color: #FECF56;
  font-size: 20px;
}
#home .container .list-avis div .card-avis .block-stars .star:hover svg {
  color: #ffc978;
  fill: #ffc978;
}
#home .container .list-avis div .card-avis .block-stars .star:nth-of-type(1) svg {
  fill: #FECF56;
}
#home .container .list-avis div .card-avis .block-stars .star:nth-of-type(2) svg {
  fill: #FECF56;
}
#home .container .list-avis div .card-avis .block-stars .star:nth-of-type(3) svg {
  fill: #FECF56;
}
#home .container .list-avis div .card-avis .block-stars .star:nth-of-type(4) svg {
  fill: #FECF56;
}
#home .container .list-activites {
  display: flex;
  justify-content: start;
  align-items: start;
  position: relative;
  flex-direction: column;
  margin-top: 150px;
}
#home .container .list-activites #title-contact h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
}
#home .container .list-activites #title-contact h1 .line {
  border-bottom: 4px solid #FECF56;
}
#home .container .list-activites #title-contact h1:nth-of-type(2) {
  font-weight: 300;
}
#home .container .list-activites .bento-grid {
  display: flex;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 50px;
}
#home .container .list-activites .bento-grid .bento-item-50 {
  width: 75%;
  position: relative;
  overflow: hidden;
}
#home .container .list-activites .bento-grid .bento-item-50 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.5s;
}
#home .container .list-activites .bento-grid .bento-item-50::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
#home .container .list-activites .bento-grid .bento-item-50 span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-weight: 300;
  font-size: 36px;
  z-index: 2;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#home .container .list-activites .bento-grid .bento-item-50:hover img {
  opacity: 0.7;
}
#home .container .list-activites .bento-grid .bento-item-25 {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#home .container .list-activites .bento-grid .bento-item-25 div {
  position: relative;
  height: 100%;
  overflow: hidden;
}
#home .container .list-activites .bento-grid .bento-item-25 div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.5s;
}
#home .container .list-activites .bento-grid .bento-item-25 div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
#home .container .list-activites .bento-grid .bento-item-25 div span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-weight: 300;
  font-size: 20px;
  z-index: 2;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#home .container .list-activites .bento-grid .bento-item-25 div:hover img {
  opacity: 0.7;
}
#home .container .list-activites .bento-grid .bento-item-25-vertical {
  width: 25%;
  position: relative;
  overflow: hidden;
}
#home .container .list-activites .bento-grid .bento-item-25-vertical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity 0.5s;
}
#home .container .list-activites .bento-grid .bento-item-25-vertical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
#home .container .list-activites .bento-grid .bento-item-25-vertical span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-weight: 300;
  font-size: 20px;
  z-index: 2;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#home .container .list-activites .bento-grid .bento-item-25-vertical:hover img {
  opacity: 0.7;
}
#home .container .decouverte {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  margin-top: 150px;
  z-index: 500;
}
#home .container .decouverte .flex-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 100px;
  position: relative;
  z-index: 500;
}
#home .container .decouverte .flex-content .image-decouverte img {
  width: 100%;
  border-radius: 10px;
  max-width: 500px;
}
#home .container .decouverte .flex-content .list-decouverte {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  background-image: url("../images/noiseEffect-K7JSBA3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#home .container .decouverte .flex-content .list-decouverte h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  margin: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
}
#home .container .decouverte .flex-content .list-decouverte ul li span {
  color: #000;
  font-size: 16px;
  font-weight: 300;
}
#home .container .decouverte .flex-content .list-decouverte p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
#home .container .decouverte .title-decouverte {
  background-color: #4637C6;
  padding: 80px 0;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 50px;
  color: #fff;
  background-image: url("../images/noiseEffect-K7JSBA3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  position: relative;
  z-index: 500;
}
#home .container .decouverte .title-decouverte h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
}
#home .container .decouverte .title-decouverte span {
  font-size: 20px;
  font-weight: 300;
}
#home .container .reglement {
  display: flex;
  justify-content: center;
  align-items: start;
  position: relative;
  flex-direction: column;
  margin-top: 150px;
}
#home .container .reglement #title-contact {
  position: relative;
  z-index: 500;
}
#home .container .reglement #title-contact h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
}
#home .container .reglement #title-contact h1 .line {
  border-bottom: 4px solid #FECF56;
}
#home .container .reglement #title-contact h1:nth-of-type(2) {
  font-weight: 300;
}
#home .container .reglement .block-reglement {
  width: 100%;
  margin-top: 50px;
  position: relative;
  z-index: 500;
}
#home .container .reglement .block-reglement div p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 20px 0;
  line-height: 1;
}
#home .container .reglement .block-reglement .card-reglement {
  background: #15131F;
  border: 1px solid #727272;
  border-radius: 30px;
  padding: 50px;
}
#home .container .reglement .block-reglement .card-reglement .title-card-reglement h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  margin: 20px;
  line-height: 1;
  text-transform: uppercase;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-1 h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-1 ul li {
  color: #fff;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-1 ul li span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-2 h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-2 ul li {
  color: #fff;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-2 ul li span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-3 h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-3 ul {
  list-style: none;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-3 ul li {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-3 ul li span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
#home .container .reglement .block-reglement .card-reglement .liste-regle-3 ul li span svg {
  color: #FECF56;
}
#home .container .CTA {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  margin-top: 150px;
}
#home .container .CTA h4 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
}
#home .container .CTA h4 .line {
  border-bottom: 4px solid #FECF56;
}

@media screen and (max-width: 768px) {
  #home .container .hero {
    flex-direction: column;
  }
  #home .container .hero #title h1 {
    font-size: 40px;
    text-align: center;
  }
  #home .container .hero #title p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
  }
  #home .container .hero #title div {
    justify-content: center;
  }
  #home .container .list-avis #avis h1 {
    font-size: 40px;
  }
  #home .container .list-avis div {
    gap: 20px;
    flex-direction: column;
  }
  #home .container .list-avis div .card-avis .list-user {
    flex-direction: row;
    gap: 10px;
  }
  #home .container .list-avis div .card-avis .block-stars .list-stars {
    padding: 5px;
  }
  #home .container .list-activites .bento-grid {
    flex-direction: column;
  }
  #home .container .list-activites .bento-grid .bento-item-50 {
    width: 100%;
  }
  #home .container .list-activites .bento-grid .bento-item-25 {
    width: 100%;
  }
  #home .container .list-activites .bento-grid .bento-item-25-vertical {
    width: 100%;
  }
  #home .container .decouverte .flex-content {
    flex-direction: column;
    gap: 10px;
  }
  #home .container .CTA h4 {
    text-align: center;
    font-size: 40px;
  }
}
#event {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0;
}
#event #shape-1-home {
  position: absolute;
  top: 0;
  left: -200px;
  width: 900px;
  right: auto;
  opacity: 1;
}
#event #shape-2-home {
  position: absolute;
  top: 500px;
  left: auto;
  width: 1000px;
  right: -400px;
  opacity: 0.5;
}
#event #title-contact h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
}
#event #title-contact h1 .line {
  border-bottom: 4px solid #FECF56;
}
#event #title-contact h1:nth-of-type(2) {
  font-weight: 300;
}
#event .container-event {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 30px;
  padding: 100px 0;
}
#event .container-event h1 {
  margin: 0;
}
#event .container-event button {
  border: none;
}
#event .card {
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  color: #F5F5F5;
  min-height: 250px;
}
#event .text-center {
  display: flex;
  justify-content: center;
}
@media (max-width: 1050px) {
  #event .container-event {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto, 1fr);
  }
}
@media (max-width: 650px) {
  #event .container-event {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto, 1fr);
  }
}

/* VERSION MOBILE */
@media screen and (max-width: 768px) {
  #event #title-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #event #title-contact .badge {
    font-size: 13px;
  }
  #event #title-contact h1 {
    font-size: 30px;
    margin: 5px;
  }
}
/* FIN MOBILE */
/* DEBUT CONTACT */
#contact {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0;
}
#contact #shape-1 {
  position: absolute;
  top: -200px;
  left: -100px;
  width: 900px;
  right: auto;
  opacity: 1;
}
#contact #shape-2 {
  position: absolute;
  top: 0;
  left: auto;
  width: 900px;
  right: -200px;
  opacity: 1;
}
#contact .container #title-contact h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
}
#contact .container #title-contact h1 .line {
  border-bottom: 4px solid #FECF56;
}
#contact .container #title-contact h1:nth-of-type(2) {
  font-weight: 300;
}
#contact .container .flex-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
#contact .container .flex-content div {
  width: 100%;
}
#contact .container .flex-content div h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 200;
  margin: 0px;
  line-height: 1;
  text-transform: uppercase;
}
#contact .container .flex-content div p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
#contact .container .flex-content div .highlight-primary {
  color: #FECF56;
  font-weight: 700;
}
#contact .container .flex-content div div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contact .container .flex-content div div > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
#contact .container .flex-content div .icon {
  background: #FECF56;
  color: #000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
}
#contact .container .flex-content div form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 50;
  width: 100%;
}
#contact .container .flex-content div form div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
#contact .container .flex-content div form div div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  width: 100%;
}
#contact .container .flex-content div form div div label {
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
}
#contact .container .flex-content div form div div input {
  width: 100%;
  padding: 10px;
  border: 1px solid #727272;
  border-radius: 5px;
  background: #15131F;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
#contact .container .flex-content div form div div textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #727272;
  border-radius: 5px;
  background: #15131F;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  resize: none;
  font-family: "Albert Sans", sans-serif;
}
#contact .container .flex-content div #map {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  margin-top: 50px;
}

/* FIN CONTACT */
/* VERSION MOBILE */
@media screen and (max-width: 768px) {
  #contact .container #title-contact {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
  }
  #contact .container #title-contact .badge {
    font-size: 13px;
  }
  #contact .container #title-contact h1 {
    font-size: 30px;
    margin: 5px;
  }
  #contact .container .flex-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-direction: column;
  }
}
/* FIN MOBILE */
#price {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0;
}
#price #shape-1-home {
  position: absolute;
  top: 0;
  left: -100px;
  width: 900px;
  right: 0;
  opacity: 1;
}
#price #shape-2-home {
  position: absolute;
  top: -200px;
  left: auto;
  width: 900px;
  right: -400px;
  opacity: 1;
}
#price #title-price h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
}
#price #title-price h1 .line {
  border-bottom: 4px solid #FECF56;
}
#price #title-price h1:nth-of-type(2) {
  font-weight: 300;
}
#price .list-price-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px auto;
}
#price .list-price-1 .card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background-color: #15131F;
  padding: 80px;
  border-radius: 50px;
  border: 1px solid #727272;
  width: 300px;
}
#price .list-price-1 .card-price h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
#price .list-price-1 .card-price h2 .line {
  border-bottom: 4px solid #FECF56;
}
#price .list-price-1 .card-price h2 .highlight-primary {
  color: #FECF56;
}
#price .list-price-1 .card-price .price-student {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}
#price .list-price-1 .card-price .price-student span {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
}
#price .list-price-1 .card-price .price-student span:nth-of-type(2) {
  color: #fff;
  font-size: 20px;
  font-weight: 200;
}
#price .list-price-1 .card-price p {
  color: #fff;
  font-size: 15px;
  font-weight: 200;
  text-align: center;
}
#price .list-price-1 .card-price .title-price {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
}
#price .list-price-1 .card-price .title-price span {
  font-weight: 300;
  font-size: 13px;
}
#price .list-price-1 .card-price ul {
  list-style: none;
  padding: 0;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
#price .list-price-1 .card-price ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin: 40px 0;
}
#price .list-price-1 .card-price ul li span svg {
  color: #FECF56;
  background-color: #15131F;
  padding: 10px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
#price .list-price-1 .active-price {
  background-color: #4637C6;
  background-image: url("../images/noiseEffect-K7JSBA3.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#price .text-price {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin: 50px 0;
}
#price .text-price p {
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  text-align: center;
  text-transform: uppercase;
}
#price .alert {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin: 50px 0;
  position: relative;
  z-index: 500;
}
#price .alert div {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
  background-color: #15131F;
  padding: 5px 20px;
  border-radius: 50px;
  border: 1px solid #727272;
}
#price .alert .warning {
  color: #FECF56;
}
#price .location-price {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
#price .location-price div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}
#price .location-price div p {
  color: #fff;
  font-size: 32px;
  font-weight: 200;
  text-transform: uppercase;
}
#price .location-price div span {
  color: #FECF56;
  font-size: 32px;
  font-weight: 200;
  text-transform: uppercase;
}
#price #shape-3-home {
  position: absolute;
  top: 900px;
  right: -400px;
  width: 900px;
}
#price #shape-4-home {
  position: absolute;
  top: 1800px;
  left: -400px;
  width: 900px;
  opacity: 0.5;
}
#price #title-laser {
  margin-top: 150px;
  position: relative;
  z-index: 500;
}
#price #title-laser h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  margin: 20px 0;
  line-height: 1;
  text-transform: uppercase;
}
#price #title-laser p {
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
}
#price .list-price-laser {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 50px auto;
  position: relative;
  z-index: 500;
}
#price .list-price-laser .card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background-color: #15131F;
  padding: 40px;
  border-radius: 50px;
  border: 1px solid #727272;
  width: 300px;
}
#price .list-price-laser .card-price h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
#price .list-price-laser .card-price h2 .line {
  border-bottom: 4px solid #FECF56;
}
#price .list-price-laser .card-price h2 .highlight-primary {
  color: #FECF56;
}
#price .list-price-laser .card-price p {
  color: #fff;
  font-size: 15px;
  font-weight: 200;
  text-align: center;
}
#price .list-price-laser .card-price .title-price {
  color: #fff;
  font-size: 64px;
  font-weight: 500;
  text-transform: uppercase;
}
#price .list-price-laser .card-price .title-price span {
  font-weight: 300;
  font-size: 13px;
}
#price .list-price-laser .card-price ul {
  list-style: none;
  padding: 0;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
#price .list-price-laser .card-price ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin: 40px 0;
}
#price .list-price-laser .card-price ul li span svg {
  color: #FECF56;
  background-color: #15131F;
  padding: 10px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
#price #shape-5-home {
  position: absolute;
  top: 3900px;
  right: -400px;
  width: 900px;
}
#price #shape-6-home {
  position: absolute;
  top: 2900px;
  left: -400px;
  width: 900px;
  opacity: 0.5;
}
#price .reglement {
  display: flex;
  justify-content: center;
  align-items: start;
  position: relative;
  flex-direction: column;
  margin-top: 150px;
  z-index: 500;
}
#price .reglement #title-contact h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1;
}
#price .reglement #title-contact h1 .line {
  border-bottom: 4px solid #FECF56;
}
#price .reglement #title-contact h1:nth-of-type(2) {
  font-weight: 300;
}
#price .reglement .block-reglement {
  width: 100%;
  margin-top: 50px;
}
#price .reglement .block-reglement .card-reglement {
  background: #15131F;
  border: 1px solid #727272;
  border-radius: 30px;
  padding: 50px;
}
#price .reglement .block-reglement .card-reglement .alert {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin: 50px 0;
  position: relative;
  z-index: 500;
}
#price .reglement .block-reglement .card-reglement .alert div {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
  background-color: #15131F;
  padding: 5px 20px;
  border-radius: 50px;
  border: 1px solid #727272;
}
#price .reglement .block-reglement .card-reglement .alert .warning {
  color: #FECF56;
}
#price .reglement .block-reglement .card-reglement .alert .info {
  color: #BCB4FF;
}
#price .reglement .block-reglement .card-reglement .title-card-reglement h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  margin: 20px;
  line-height: 1;
  text-transform: uppercase;
}
#price .reglement .block-reglement .card-reglement .title-card-reglement .line {
  border-bottom: 4px solid #FECF56;
}
#price .reglement .block-reglement .card-reglement .liste-regle-1 h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
#price .reglement .block-reglement .card-reglement .liste-regle-1 ol li {
  color: #fff;
  padding: 10px 0;
}
#price .reglement .block-reglement .card-reglement .liste-regle-1 ol li span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
#price .reglement .block-reglement .card-reglement .liste-regle-1 ul li {
  color: #fff;
  padding: 10px 0;
}
#price .reglement .block-reglement .card-reglement .liste-regle-1 ul li span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

/* VERSION MOBILE */
@media screen and (max-width: 768px) {
  #price #title-price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #price #title-price .badge {
    font-size: 13px;
  }
  #price #title-price h1 {
    font-size: 30px;
    margin: 5px;
  }
  #price .list-price-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin: 50px auto;
  }
  #price .list-price-1 .card-price {
    padding: 20px;
  }
  #price .list-price-1 .card-price h2 {
    font-size: 20px;
    margin: 10px 0;
  }
  #price .list-price-1 .card-price .price-student span {
    font-size: 32px;
  }
  #price .list-price-1 .card-price .price-student span:nth-of-type(2) {
    font-size: 16px;
  }
  #price .list-price-1 .card-price p {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
  }
  #price .list-price-1 .card-price .title-price {
    font-size: 40px;
  }
  #price .list-price-1 .card-price .title-price span {
    font-size: 10px;
  }
  #price .list-price-1 .card-price ul li {
    margin: 20px 0;
  }
  #price .list-price-1 .card-price ul li span svg {
    width: 20px;
    height: 20px;
  }
  #price .alert .warning {
    font-size: 13px;
  }
  #price .location-price div p {
    color: #fff;
    font-size: 20px;
    font-weight: 200;
  }
  #price .location-price div span {
    font-size: 20px;
  }
  #price div .list-price-laser {
    flex-direction: column;
  }
  #price div .list-price-laser .card-price h2 {
    font-size: 20px;
    margin: 10px 0;
  }
  #price div .list-price-laser .card-price .price-student span {
    font-size: 32px;
  }
  #price div .list-price-laser .card-price .price-student span:nth-of-type(2) {
    font-size: 16px;
  }
  #price div .list-price-laser .card-price p {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
  }
  #price div .list-price-laser .card-price .title-price {
    font-size: 30px;
    text-align: center;
  }
  #price div .list-price-laser .card-price .title-price span {
    font-size: 10px;
  }
  #price div .list-price-laser .card-price ul li {
    margin: 20px 0;
  }
  #price div .list-price-laser .card-price ul li span svg {
    width: 20px;
    height: 20px;
  }
  #price .reglement #title-contact h1 {
    font-size: 30px;
  }
  #price .reglement #title-contact h1:nth-of-type(2) {
    font-size: 20px;
  }
  #price .reglement .block-reglement .card-reglement {
    padding: 20px;
  }
  #price .reglement .block-reglement .card-reglement .alert .warning {
    font-size: 13px;
    width: auto;
  }
  #price .reglement .block-reglement .card-reglement .alert .info {
    font-size: 13px;
    width: auto;
  }
  #price .reglement .block-reglement .card-reglement .title-card-reglement h2 {
    font-size: 20px;
    margin: 10px 0;
    line-height: 2;
  }
  #price .reglement .block-reglement .card-reglement .liste-regle-1 h3 {
    font-size: 16px;
  }
  #price .reglement .block-reglement .card-reglement .liste-regle-1 ol li span {
    font-size: 12px;
  }
  #price .reglement .block-reglement .card-reglement .liste-regle-1 ul li span {
    font-size: 12px;
  }
}
/* FIN MOBILE */
/* DEBUT HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  position: fixed;
  z-index: 1000;
  width: 100%;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
header.scrolled {
  background: rgba(7, 6, 19, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #15131F;
}
header #flex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 100%;
}
header #flex-header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
header #flex-header div div a img {
  width: 100%;
  max-width: 150px;
}
header #flex-header div div nav #menu-mobile #menu-mobile-icon {
  display: none;
}
header #flex-header div div nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
header #flex-header div div nav ul li {
  margin: 0 10px;
}
header #flex-header div div nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 18px;
}
header #flex-header div div nav ul li .active {
  border-bottom: 2px solid #FECF56;
}
header #flex-header div div nav ul li:hover a {
  border-bottom: 2px solid #FECF56;
}

/* FIN HEADER */
/* DEBUT FOOTER */
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #15131F;
  padding: 20px;
}
footer div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
}
footer div div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
footer div div a img {
  width: 100%;
  max-width: 150px;
}
footer div div span {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
footer div div p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
footer div div ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
footer div div ul li {
  list-style: none;
}
footer div div ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
footer div div ul li a:hover {
  color: #FECF56;
}

/* FIN FOOTER */
/* VERSION MOBILE */
@media screen and (max-width: 768px) {
  header #flex-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  header #flex-header div {
    width: 100%;
    justify-content: space-evenly;
  }
  header #flex-header div .btn-primary {
    display: none;
  }
  header #flex-header div div nav ul {
    display: none;
    flex-direction: column;
    background: rgba(7, 6, 19, 0.8);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
  }
  header #flex-header div div nav ul li {
    text-align: center;
    margin: 10px 0;
  }
  header #flex-header div div nav ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
  }
  header #flex-header div div nav ul li a:hover {
    color: #FECF56;
  }
  header #flex-header div div nav #menu-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  header #flex-header div div nav #menu-mobile #menu-mobile-icon {
    display: block;
    width: 30px;
    height: 30px;
    color: #fff;
    background: transparent;
    border: none;
  }
  header #flex-header div div nav #menu-mobile #menu-mobile-icon #menu-mobile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  header #flex-header div div nav #menu-mobile #menu-mobile-icon #menu-mobile-content svg {
    width: 30px;
    height: 30px;
  }
  header #flex-header div div nav .active ul {
    display: flex;
    background: rgba(7, 6, 19, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #15131F;
  }
  footer div div div span {
    display: none;
  }
}
/* FIN MOBILE */

/*# sourceMappingURL=app.output.css.map */
