* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --dark-color: #1B1B1B;
  --gold: #D7C378;
  --light-color: #E0E0E0;
  --grey: #8A8A8A;
}

#ChavilleAction {
  padding-bottom: 10%;
  height: 100vh;
  background-color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
#ChavilleAction #display {
  width: 70%;
  height: 100%;
}
#ChavilleAction #display #texte {
  height: 40%;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#ChavilleAction #display #texte h2 {
  color: var(--gold);
  font-family: "Poppins Medium";
  font-weight: lighter;
  font-size: xx-large;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1150px) {
  #ChavilleAction #display #texte h2 {
    margin-bottom: 0;
  }
}
#ChavilleAction #display #texte p {
  color: var(--light-color);
  font-family: "Kanit", sans-serif;
  font-weight: lighter;
  font-size: large;
}
#ChavilleAction #display #images {
  height: 70%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#ChavilleAction #display #images #tennis {
  background-image: url("../img/image1.png");
  transform: translate(15%, 15%);
  z-index: 5;
}
#ChavilleAction #display #images #course {
  background-image: url("../img/image2.png");
  z-index: 6;
}
#ChavilleAction #display #images #ski {
  background-image: url("../img/image3.png");
  transform: translate(-15%, -15%);
  z-index: 7;
}
#ChavilleAction #display #images .cardgang {
  height: 90%;
  width: 25%;
  scale: 1;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 1px;
  transition: scale 300ms ease-in-out, margin 300ms ease-in-out;
}
#ChavilleAction #display #images .cardgang:hover {
  scale: 1.1;
  margin: 30px;
}

#JouerAussi {
  height: 100vh;
  background-color: var(--light-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#JouerAussi #jouer img {
  margin-left: 100px;
}
#JouerAussi #carte {
  justify-content: end;
}
#JouerAussi #carte div {
  align-items: end;
}
#JouerAussi #carte img {
  margin-right: 100px;
}
#JouerAussi .bas {
  height: 50%;
  width: 70%;
  display: flex;
  align-items: center;
}
#JouerAussi .bas div {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
#JouerAussi .bas div h3 {
  font-size: 1.8rem;
  font-family: "Poppins Medium";
  font-weight: lighter;
}
#JouerAussi .bas div .leftP {
  text-align: end;
  font-size: 1.2rem;
  font-family: "Kanit", sans-serif;
}
#JouerAussi .bas div .rightP {
  font-size: 1.2rem;
  font-family: "Kanit", sans-serif;
}
#JouerAussi .bas div button {
  width: 50%;
  padding-left: 10%;
  padding-right: 10%;
  background-color: var(--dark-color);
  border: none;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  color: var(--gold);
  font-family: "Kanit", sans-serif;
  font-size: 1.2rem;
  padding: 2%;
  background-image: linear-gradient(45deg, var(--gold) 50%, transparent 50%);
  background-position: 90%;
  background-size: 400%;
  transition: background 300ms ease-in-out, color 300ms;
}
#JouerAussi .bas div button:hover {
  color: #1B1B1B;
  background-position: 0;
}
#JouerAussi .bas img {
  height: 150px;
}

.Section1 {
  height: 100vh;
  background-color: var(--dark-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Section1 .backdrop {
  height: 85%;
  width: 100%;
  background-image: url(../img/paris2024.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.Section1 .backdrop img {
  margin-top: 1%;
}
.Section1 .backdrop h1 {
  color: var(--dark-color);
  font-family: "kanit", sans-serif;
  font-size: 3rem;
  margin-bottom: 25px;
}
.Section1 .header {
  height: 15%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #EFEFEF;
}
.Section1 .header #lienIndex img {
  width: 100px;
}
.Section1 .header .lien {
  text-decoration: none;
  color: var(--dark-color);
  font-family: "Poppins Medium";
  font-size: 1rem;
  position: relative;
}
.Section1 .header .lien:after {
  content: "";
  position: absolute;
  background-color: #000;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -1px;
  transition: 0.3s;
}
.Section1 .header .lien:hover:after {
  width: 100%;
}
.Section1 .header .liseraire {
  width: 5%;
  z-index: 20;
}
.Section1 .header .liseraire img {
  height: 900px;
  width: 100px;
}
.Section1 .header .logo {
  width: 15%;
}
.Section1 .header .burger {
  display: none;
}
.Section1 .header .logo {
  width: auto;
  height: 90%;
}
.Section1 .header #navburg {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Section1 .header #navburg ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 300px;
}
.Section1 .header #navburg ul div {
  background-color: var(--dark-color);
  height: 10%;
  width: 10%;
}
.Section1 .header #navburg ul li {
  list-style: none;
}
.Section1 .header #navburg ul li a {
  text-decoration: none;
  color: var(--dark-color);
  font-family: "Poppins Medium";
  font-size: 1.5rem;
}

.Section2 {
  display: flex;
  flex-direction: column;
  height: 200vh;
}
.Section2 .top {
  margin-top: 5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.Section2 .top .pav_doc {
  display: flex;
  width: 50%;
  padding-left: 10%;
  padding-right: 10%;
  font-family: "Kanit", sans-serif;
  flex-direction: column;
  gap: 30px;
}
.Section2 .top .pav_doc .pav_S2 {
  font-size: 1.1rem;
  color: var(--dark-color);
}
.Section2 .top .pav_doc .Title_S2 {
  font-family: "Poppins";
  font-size: 1.3rem;
}
.Section2 .top .pav_doc .btn_S2 {
  width: 50%;
  padding-left: 10%;
  padding-right: 10%;
  background-color: var(--dark-color);
  border: none;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  color: var(--gold);
  font-family: "Kanit", sans-serif;
  font-size: 1.2rem;
  padding: 2%;
  background-image: linear-gradient(45deg, var(--gold) 50%, transparent 50%);
  background-position: 90%;
  background-size: 400%;
  transition: background 300ms ease-in-out, color 300ms;
}
.Section2 .top .pav_doc .btn_S2:hover {
  color: #1B1B1B;
  background-position: 0;
}
.Section2 .top .illu_S2 {
  width: 50%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.Section2 .top .illu_S2 img {
  display: block;
}
.Section2 .left {
  margin-top: 5%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.Section2 .left .pav_docL {
  width: 50%;
  padding-left: 10%;
  padding-right: 10%;
  font-family: "Kanit", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}
.Section2 .left .pav_docL .pav_S2L {
  font-size: 1.1rem;
  color: var(--dark-color);
  text-align: end;
}
.Section2 .left .pav_docL .Title_S2 {
  font-family: "Poppins";
  font-size: 1.3rem;
}
.Section2 .left .pav_docL .btn_S2 {
  width: 50%;
  padding-left: 10%;
  padding-right: 10%;
  background-color: var(--light-color);
  border: none;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  color: var(--dark-color);
  font-family: "Kanit", sans-serif;
  font-size: 1.2rem;
  padding: 2%;
  border: 2px solid var(--dark-color);
  background-image: linear-gradient(45deg, var(--dark-color) 50%, transparent 50%);
  background-position: 90%;
  background-size: 400%;
  transition: background 300ms ease-in-out, color 300ms;
}
.Section2 .left .pav_docL .btn_S2:hover {
  color: var(--gold);
  background-position: 0;
}
.Section2 .left .illu_S2 {
  width: 50%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

footer {
  height: 40vh;
  background-color: var(--dark-color);
}
footer #footerhaut {
  height: 85%;
  display: flex;
  align-items: center;
}
footer #footerhaut #footergauche {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
footer #footerhaut #footergauche ul {
  list-style: none;
  font-size: 1.2rem;
  font-family: "Poppins Medium";
  color: var(--grey);
  margin-top: 20px;
}
footer #footerhaut #footergauche ul .ultitre {
  color: var(--gold);
}
footer #footerhaut #footergauche ul li {
  margin-top: 10px;
}
footer #footerhaut #footerdroite {
  width: 35%;
  height: 70%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: normal;
  border-left: 1px solid var(--grey);
}
footer #footerhaut #footerdroite img {
  width: 35%;
  height: auto;
}
footer #footerhaut #footerdroite p {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
}
footer #footerbas {
  height: 15%;
}
footer #footerbas p {
  text-align: center;
  color: var(--gold);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}

@media only screen and (max-width: 1440px) {
  .Section2 {
    height: 270vh;
  }
}
@media only screen and (max-width: 1050px) {
  .Section2 {
    height: 300vh;
  }
}
@media only screen and (max-width: 1024px) {
  .Section1 .backdrop img {
    width: 50%;
    height: auto;
    margin-top: 1%;
  }
  .Section1 .header #navburg ul {
    gap: 175px;
  }
  .Section1 .header .liseraire img {
    display: none;
  }
  #ChavilleAction {
    padding-bottom: 10%;
  }
  #ChavilleAction #display {
    width: 90%;
  }
  #ChavilleAction #display #images div {
    width: 100%;
  }
  #ChavilleAction #display #images #tennis {
    transform: translate(5%, 5%);
    z-index: 5;
  }
  #ChavilleAction #display #images #course {
    z-index: 6;
  }
  #ChavilleAction #display #images #ski {
    transform: translate(-5%, -5%);
  }
  #ChavilleAction #display #images .cardgang {
    height: 70%;
    width: 25%;
  }
}
#footerdroite img {
  width: 50%;
  height: auto;
}

@media only screen and (max-width: 1440px) {
  .Section2 {
    height: 330vh;
  }
}
@media only screen and (max-width: 768px) {
  .Section1 .header #navburg ul {
    gap: 100px;
  }
  .Section2 .left .pav_docL {
    width: 50%;
    padding-left: 10%;
    padding-right: 1%;
    font-family: "Kanit", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 26px;
  }
  .Section2 .left .illu_S2 img {
    width: 50%;
    height: auto;
  }
  .Section2 .top .illu_S2 img {
    width: 50%;
    height: auto;
  }
  .Section2 .top .pav_doc {
    padding-left: 1%;
  }
  #ChavilleAction #display #images #tennis {
    transform: translate(0%, 0%);
    z-index: 5;
  }
  #ChavilleAction #display #images #course {
    z-index: 6;
  }
  #ChavilleAction #display #images #ski {
    transform: translate(0%, 0%);
  }
  #ChavilleAction #display #images .cardgang {
    height: 70%;
    width: 25%;
  }
  #JouezAussi .bas {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .Section1 .header {
    height: 35%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background-color: #EFEFEF;
    z-index: 20;
  }
  .Section1 .header .retour {
    display: none;
  }
  .Section1 .header .burger {
    display: block;
    height: 30px;
  }
  .Section1 .header #navburg.active {
    display: block;
  }
  .Section1 .header #navburg {
    display: none;
    width: 100%;
    background-color: aliceblue;
  }
  .Section1 .header #navburg ul {
    gap: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .Section2 {
    gap: 20px;
    height: 215vh;
  }
  .Section2 .left {
    flex-direction: column;
  }
  .Section2 .left .illu_S2 {
    display: none;
  }
  .Section2 .left .pav_docL {
    display: flex;
    width: 90%;
    padding-left: 1%;
    padding-right: 1%;
    font-family: "Kanit", sans-serif;
    flex-direction: column;
    gap: 30px;
  }
  .Section2 .top {
    flex-direction: column;
  }
  .Section2 .top .illu_S2 {
    display: none;
  }
  .Section2 .top .pav_doc {
    display: flex;
    width: 90%;
    padding-left: 1%;
    padding-right: 1%;
    font-family: "Kanit", sans-serif;
    flex-direction: column;
    gap: 30px;
  }
  #ChavilleAction {
    padding-bottom: 10%;
    height: 165vh;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #ChavilleAction #display {
    height: 140vh;
  }
  #ChavilleAction #display #images {
    flex-direction: column;
  }
  #ChavilleAction #display #images .cardgang {
    width: 90%;
    height: 30%;
  }
  #JouerAussi {
    height: 150vh;
  }
  #JouerAussi .bas img {
    display: none;
  }
  #JouerAussi .bas div {
    width: 90%;
  }
  footer {
    height: 150vh;
  }
  footer #footerhaut {
    flex-direction: column;
    height: 120vh;
    margin-bottom: 20px;
  }
  footer #footerhaut #footergauche {
    flex-direction: column;
  }
  footer #footerhaut #footerdroite {
    display: none;
  }
}
@media only screen and (max-width: 458px) {
  .Section2 {
    height: 280vh;
  }
}
#headerGame {
  height: 60vh;
  background-color: #EFEFEF;
}
@media only screen and (max-width: 1050px) {
  #headerGame {
    height: 60%;
  }
}
#headerGame .header {
  height: 110px;
}
@media only screen and (max-width: 768px) {
  #headerGame .header {
    height: 35%;
  }
}

#Scannez {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Poppins;
}
@media only screen and (max-width: 1050px) {
  #Scannez {
    height: 70vh;
  }
}
#Scannez div {
  height: 15%;
  display: flex;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: larger;
  margin-bottom: 20px;
}
@media only screen and (max-width: 940px) {
  #Scannez div {
    flex-direction: column;
  }
}
@media only screen and (max-width: 620px) {
  #Scannez div {
    margin-bottom: 40px;
  }
}
#Scannez div button {
  width: 250px;
  height: 45px;
  background-color: var(--dark-color);
  border: none;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  color: var(--gold);
  font-family: "Kanit", sans-serif;
  font-size: 1.2rem;
  background-image: linear-gradient(45deg, var(--gold) 50%, transparent 50%);
  background-position: 90%;
  background-size: 400%;
  transition: background 300ms ease-in-out, color 300ms;
}
@media only screen and (max-width: 1050px) {
  #Scannez div button {
    height: 35px;
    width: 170px;
  }
}
#Scannez div button:hover {
  color: #1B1B1B;
  background-position: 0;
}
#Scannez div p {
  text-align: center;
}
#Scannez img {
  width: 50%;
}
@media only screen and (max-width: 900px) {
  #Scannez img {
    width: 70%;
  }
}

#cartes {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  font-family: Poppins;
}
@media only screen and (max-width: 1050px) {
  #cartes {
    height: 200vh;
  }
}
@media only screen and (max-width: 700px) {
  #cartes {
    height: 300vh;
  }
}
#cartes div {
  width: 350px;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
#cartes div span {
  font-size: larger;
  height: 20%;
}
#cartes div p {
  height: 250px;
}

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