/** @format */

@font-face {
  font-family: "Celebes";
  src: url("../fonts/celebes.otf");
}

@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham.ttf");
}

body {
  background-color: #141413;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

main {
  background-color: #141413;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

.main {
  height: auto;
}

textarea:focus,
input:focus,
.select2-selection:focus {
  outline: none !important;
}

.title {
  margin-top: 2vw;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 38px;
  font-family: ChemyRetro;
  font-weight: 900;
  text-transform: uppercase;
}

.title:before,
.title:after {
  background-color: #141413;
  content: "";
  display: inline-block;
  height: 0.2vw;
  position: relative;
  vertical-align: middle;
  width: 10%;
}

.title:before {
  right: 0.5em;
  margin-left: -50%;
}

.title:after {
  left: 0.5em;
  margin-right: -50%;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  align-items: flex-start;
  align-content: flex-start;
  margin-top: 2vw;
}

/* Page Index */

.main-index {
  background-color: #141413;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top > img {
  width: auto;
  height: 70%;
}

.titre-index {
  font-family: "ChemyRetro";
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  text-align: left;
}

.left {
  width: 22vw;
  height: 22vw;
  /*     border: 1px solid #fff;
 */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.left > img {
  width: auto;
  height: 100%;
  /*     border: 1px solid #fff;
 */
}

.bottom > h1 {
  text-align: center;
  font-family: "ChemyRetro";
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-size: 20px;
}

#decouvrir {
  margin-top: 100px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  font-family: Montserrat;
}

.countdown-container {
  font-size: 48px !important;
  border-radius: 5px;
  color: #ffffff !important;
  transition: all 0.5s ease-in-out;
  font-family: "ChemyRetro" !important;
  text-align: center;
}

.countdown-expired {
  background-color: #f44336; /* Couleur en cas d'expiration */
  color: white;
}

form > input[type="email"],
input[type="password"] {
  width: 10vw;
  color: #5e5e70;
  font-size: 20px;
  font-family: Celebes;
  font-weight: 400;
  padding: 10px;
  background-color: transparent;
  border: none;
  border-bottom: #ffffff 1px solid;
  margin-bottom: 20px;
}

form > input[type="password"] {
  margin-top: 1vw;
}

::placeholder {
  color: #ffffff;
}

form > input[type="submit"] {
  margin-top: 1vw;
  border: 0.1vw solid #fce8c3;
  border-radius: 30px;
  margin-bottom: 25px;
  width: 100%;
  text-align: center;
}

form > input[type="submit"]:hover {
  background-color: transparent;
  color: #ffffff;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
}

/* h2 {
  margin-top: 2vw !important;
  color: #ffffff !important;
  font-size: 20px !important;
  font-family: "Gotham" !important;
  font-weight: 500 !important;
} */
p {
  color: #ffffff !important;
  font-size: 16px !important;
  font-family: Celebes !important;
  font-weight: 500 !important;
}
#create-team {
  border: 0.2vw solid #e36b36;
  padding: 0.5vw;
  color: #e36b36;
}

#create-team:hover {
  background-color: #e36b36;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

#test {
  text-decoration: none;
  color: #e36b36;
  font-size: 20px;
  font-family: "Gotham";
  font-weight: 500;
  margin: 0.5vw;
}

.center {
  text-align: center;
}

.button-main {
  padding: 20px;
  background-color: #fce8c3;
  color: #39393e;
  border: 0.2vw solid #fce8c3;
  border-radius: 15px;
  font-family: Celebes;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}

.button-main:hover {
  transition: all 0.1s ease-in-out;
  background-color: transparent;
  color: #ffffff;
  box-shadow: 0px 0px 17px 2px #fce8c3;
}

.button-main-variant {
  padding: 20px;
  background-color: transparent;
  color: rgb(255, 255, 255);
  border: 0.2vw solid rgb(255, 255, 255);
  border-radius: 36px;
  font-family: Celebes;
  font-weight: 400;
}

.button-main-variant:hover {
  transition: all 0.1s ease-in-out;
  background-color: rgb(255, 255, 255);
  color: #141413;
}

.button-main-variant-red {
  padding: 20px;
  background-color: #e36b36;
  color: #39393e;
  border: 0.2vw solid #e36b36;
  border-radius: 15px;
  font-family: Celebes;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  transition: all 0.2s ease-in-out;
}

.button-main-variant-red:hover {
  transition: all 0.1s ease-in-out;
  background-color: transparent;
  color: #ffffff;
  box-shadow: 0px 0px 17px 2px #e36b36;
}

.center-div {
  margin-top: 2vw;
  display: flex;
  width: 100%;
}

.leftalign {
  width: 100%;
}

.center-div p {
  text-align: center;
  width: 100%;
}

#alignleft {
  text-align: left !important;
}

.team-card {
  height: 15vw;
  width: auto;
  border: solid 1px #fce8c3;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
}

.card-icon {
  background-color: #c5d2d6;
  padding: 0.5vw;
  margin-left: 1vw;
  margin-top: 1vw;
  border-radius: 36px;
  width: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-text {
  display: flex;
  width: 100%;
  height: 70%;
  align-items: center;
  justify-content: center;
  font-family: "Celebes", sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
  text-align: center;
  flex-direction: column;
}

.card-buttons {
  display: flex;
  justify-content: space-between;
  margin: 0 1vw 1vw 1vw;
}

.btn-card {
  padding: 1vw;
}

.noprop {
  color: #1c1c1c;
  font-family: "" Gotham "";
  font-weight: 500;
  font-size: 24px;
}

.card-text ul {
  display: flex;
}

.card-text ul li {
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin-top: 1vw;
  margin: 1vw 1vw 1vw 1vw;
}

.petit {
  padding: 1vw;
}

.red {
  color: #a83232;
  border-color: #a83232;
}

.red:hover {
  color: white;
  background-color: #a83232;
}

.swal2-popup {
  font-family: "Celebes", sans-serif !important;
}
/*
.container-partenaire {

    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 50%;
    gap: 2vw;
}

.container-partenaire > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 50%;
  gap: 2vw;
}

.image-partenaire {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  border : 1px solid #ff0000;
}

.container-partenaire > div > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 2vw;
    border : 1px solid #ffffff;
    height: 100%;
    padding: 1vw;
    border-radius: 36px;
}



.container-partenaire > div > div > h2 {
  font-family: "Gotham";
  font-weight: 500;
  font-size: 1.5vw;
  color: #ffffff;
}

.container-partenaire > div > div > a {
  font-family: "Gotham";
  font-weight: 500;
  font-size: 1vw;
  color: #ffffff;
} */

.parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 100px;
  grid-row-gap: 100px;
}

.div1 {
  grid-area: 1 / 1 / 2 / 2;
}
.div2 {
  grid-area: 2 / 1 / 3 / 2;
}
.div3 {
  grid-area: 1 / 2 / 2 / 3;
}
.div4 {
  grid-area: 2 / 2 / 3 / 3;
}
.div5 {
  grid-area: 1 / 3 / 2 / 4;
}
.div6 {
  grid-area: 2 / 3 / 3 / 4;
}

.parent > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
}

.parent > div > a {
  font-family: "Gotham";
  font-weight: 500;
  font-size: 1vw;
  color: black;
}

.parent > div > a:hover {
  color: #c5d2d6;
}

.parent > div > h2 {
  font-family: "Gotham";
  font-weight: 500;
  font-size: 1.5vw;
  color: black;
}
.oeuvre-item > li {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  margin-bottom: 1vw;
}

.oeuvre-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.oeuvre-list h2 {
  font-family: "Gotham";
  font-weight: 500;
  font-size: 1.5vw;
  color: white;
}

.oeuvre-list h3 {
  font-family: "Gotham";
  font-weight: 500;
  font-size: 1vw;
  color: white;
}

.oeuvre-list li {
  font-family: "Gotham";
  font-weight: 500;
  font-size: 1vw;
  color: white;
}

.oeuvre-item a {
  font-family: "Gotham";
  font-weight: 500;
  font-size: 1vw;
  color: white;
  padding: 0.5vw;
}

#token {
  color: #fce8c3 !important;
  text-align: center;
}

#tokenbox {
  font-weight: bold;
  font-size: 20px !important;
}

#noeuvre {
  font-family: Celebes, sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #ffffff !important;
  padding: 70px 0;
  font-style: italic;
}

.flexbox {
  margin-top: 1.3vw;
  display: flex;
  /* width: 50%; */
}

.texte {
  width: 60vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 2vw;
}

.texte p {
  font-family: Celebes, sans-serif;
  font-weight: 500;
  font-size: 1.5vw !important;
  text-align: justify;
}

.texte a {
  margin-top: 2vw;
  font-family: Celebes, sans-serif;
  font-weight: 500;
  font-size: 1vw;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.texte a:hover {
  color: #fce8c3;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}

.color:hover {
  color: #ffffff;
}

/* Page SESSION */

.container-session {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10vw;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}

.container-session .right-session {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.center {
  width: 100%;
}

.h2,
.right-session > .center > h2 {
  margin-top: 2vw;
  color: #ffffff;
  font-size: 26px;
  font-family: "Celebes", sans-serif;
  font-weight: 700;
  text-align: left;
  width: 100%;
}

.container-session .left-session {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.container-session .left-session img {
  width: 70%;
  height: 40%;
}

.bouton-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-top: 2vw;
}
/* page create team */

.div-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 500px;
  min-height: 367px;
  /* box-shadow: 0px 0px 20px 10px #FCE8C3; */
  border: 1px solid #fce8c3;
  border-radius: 22px;
  margin: 100px;
}

.div-form > .title {
  font-size: 30px;
}

label {
  font-family: Celebes;
  font-weight: 400;
  font-size: 1rem;
  color: rgb(255, 255, 255);
}

select {
  margin-top: 1vw;
  border: 0.1vw solid #c5d2d6;
  border-radius: 30px;
  background-color: transparent;
  color: #000000;
  margin-bottom: 1vw;
}

.select2-selection {
  background-color: transparent !important;
  border: none !important;
  border-bottom: #ffffff 1px solid !important;
  font-size: 20px !important;
  font-family: Celebes !important;
  font-weight: 400 !important;
  border-radius: 0px !important;
  width: 10vw !important;
  color: #5e5e70 !important;
  min-width: 100% !important;
}

.select2-search__field::placeholder {
  color: #5e5e70 !important;
}

.select2-results__option {
  font-size: 15px !important;
  font-family: Celebes !important;
  font-weight: 400 !important;
}

.div-return {
  margin: 100px;
}

.liste-membres {
  color: #ffffff !important;
  font-size: 16px !important;
  font-family: Celebes !important;
  font-weight: 500 !important;
  text-align: left;
}

/* #email {

} */

#email {
  width: auto;
}

#email:checked {
  accent-color: #fce8c3;
  box-shadow: 0px 0px 36px 5px #fce8c3;
}

#nom {
  width: 100%;
}

.center-btn {
  margin: auto;
  width: 50%;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.team-card {
  display: none;
}

.next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #fce8c3;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 15px;
  user-select: none;
  right: -80px;
  font-size: 36px;
}

/* Position the "next button" to the right */

/* On hover, add a black background color with a little bit see-through */
.next:hover {
  box-shadow: 0px 0px 15px 5px #fce8c3;
}

#alteam {
  text-align: left;
  font-size: 26px !important;
  font-family: Celebes !important;
  font-weight: 400 !important;
  color: #ffffff;
  margin-top: 1vw;
}

.already-team {
  display: flex;
  flex-direction: column;
}

.already-team > div > #membresequipe > h2 {
  text-align: left;
  font-size: 16px !important;
  font-family: Celebes !important;
  font-weight: 400 !important;
  color: #ffffff;
}

.already-team > div > #membresequipe > p {
  text-align: left !important;
  margin-top: 10px;
}

#membresequipe {
  width: 100%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

.animrotate {
  animation: 1s ease-in-out 1s infinite rotate;
}

.inteam {
  color: #fce8c3 !important;
}

.div-choix {
  display: flex;
  flex-direction: column;
}

.div-choix a {
  font-size: 16px;
  font-family: "Celebes", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  word-wrap: break-word;
  text-align: center;
  margin-top: 1vw;
}

.borderdiv {
  border: 1px solid #fce8c3;
  border-radius: 15px;
  padding: 0 3vw 3vw 3vw;
}

.ptxt {
  margin-top: 2vw;
  margin-bottom: 2vw;
  text-align: center;
}

.block {
  display: block;
}

.width-25 {
  width: 25%;
}

.perreur {
  color: #e36b36 !important;
  text-align: center;
  margin-top: -100px;
}

@media screen and (max-width: 767px) {
  .container-session,
  main {
    margin-top: 40vw !important;
  }

  .title {
    font-size: 22px;
  }

  .left-session {
    display: none !important;
  }

  .right-session {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .div-form {
    min-width: none !important;
    width: 90% !important;
  }

  main {
    width: 90%;
    margin: 0 auto;
  }

  .right-session .center h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .right-session #alignleft {
    font-size: 24px !important;
    margin-bottom: 24px;
  }

  .card-text {
    height: auto;
  }

  .card-text ul {
    display: none;
  }

  .card-text p {
    font-size: 24px !important;
    text-align: center;
    margin: 16px 0;
  }

  .team-card {
    border: none;
    height: auto;
  }

  .card-buttons a {
    padding: 20px;
  }

  .card-buttons {
    margin: 30px 0;
  }

  .div-form > .title {
    font-size: 20px;
  }

  .button-main,
  .button-main-variant-red {
    font-size: 18px;
    padding: 20px !important;
  }

  #avec {
    display: none;
  }

  .next {
    right: -60px;
    top: 50px;
  }

  .Partenaires_display {
    margin-bottom: 300px !important;
  }
}

#textteams {
  margin-top: 1vw;
}


.Partenaires_display_items:hover {
  cursor: pointer;
}

.margin-bottom-5 {
  margin-bottom: 5rem;
}
.margin-top-5 {
  margin-top: 5rem;
}


.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img img {
    border-radius: 15px;
}
.oeuvres {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(4, 250px);
    gap: 20px;
}

.oeuvre-list {
    margin-top: 15px;
}

.oeuvre-list form input[type=submit]{
    font-size: 16px;
}

@media screen and (max-width: 767px) { 
    .oeuvres {
        grid-template-columns: 250px;
    }

    .oeuvre-list h2, h3, li{
    font-size: 18px !important;
    }

    .oeuvre-list form input[type=submit]{
        font-size: 16px;
        height: 70px;
    }

}


#error {
    color: red !important;
    font-family: 'Celebes' !important;
    text-align: center;
}