@font-face {
  font-family: Hind;
  src: url(../fonts/Hind-Regular.ttf), url(../fonts/Hind-Medium.ttf), url(../fonts/Hind-SemiBold.ttf), url(../fonts/Hind-Bold.ttf);
}
@font-face {
  font-family: League Spartan;
  src: url(../fonts/LeagueSpartan-Bold.otf);
}
html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: #0C0C0D;
  color: white;
  font-family: Hind;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body ::-webkit-scrollbar {
  display: none;
}
@media (min-width: 480px) {
  body {
    font-size: 1rem;
  }
}

main {
  scrollbar-width: none;
}

h2 {
  font-family: League Spartan;
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 480px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1100px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-family: League Spartan;
  font-size: 1.5rem;
}
@media (min-width: 1100px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
}
@media (min-width: 1100px) {
  h4 {
    font-size: 1.8rem;
  }
}

h5 {
  font-family: League Spartan;
  font-size: 14px;
  margin-top: 1.5rem;
}
@media (min-width: 480px) {
  h5 {
    font-size: 1rem;
  }
}
h5.bigger {
  font-size: 2rem;
  text-align: center;
}

.h5-like {
  font-family: League Spartan;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.scrollbarContainer .simplebar-scrollbar {
  margin: 1px;
}
.scrollbarContainer .simplebar-scrollbar::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.topBar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  border-bottom: 1px solid #545455;
}
@media (min-width: 1100px) {
  .topBar {
    height: 6rem;
  }
}
.topBar a {
  display: flex;
}
.topBar a img {
  max-height: 3.5rem;
}
@media (min-width: 1100px) {
  .topBar a img {
    max-height: 5rem;
  }
}
.topBar .menu {
  position: absolute;
  left: 1rem;
  width: 2rem;
}
@media (min-width: 1100px) {
  .topBar .menu {
    display: none;
  }
}

section.session_confirm {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s;
  overflow: hidden;
}

section.session_confirm.displayed {
  display: flex;
}

section.session_confirm.opacity1 {
  opacity: 1;
}

section.session_confirm.opacity1 .confirm_bloc {
  top: 0;
}

.session_confirm .confirm_bloc {
  background-color: #31A8FF;
  color: white;
  width: 65vw;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  top: 15vh;
  transition: top 0.3s;
}

.confirm_bloc p {
  margin-bottom: 20px;
}

.confirm_bloc button {
  background: transparent;
  border: 0;
  color: white;
  font-weight: bold;
  /* border-bottom: solid 3px white; */
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 20px;
  font-family: "Hind";
  font-size: 1rem;
  margin: 0 10px;
  transition: background 0.3s;
  outline: 0;
  border-radius: 5px;
  /* padding-bottom: 4px; */
  /* padding: 0 0 4px; */
  /* border-color: rgba(0,0,0,.3); */
}

.confirm_bloc button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.session_wait {
  display: flex;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 10%;
  color: white;
  background-color: #070707;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 1;
  font-weight: bold;
  transition: background-color 0.5s;
}

.session_wait.session_valid {
  background-color: #3CB043;
}

.session_wait h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin: 5vh 0 0;
}

.session_wait .fa-check-circle {
  font-size: 3.75rem;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.session_wait .cancel {
  font-size: 1rem;
  background: transparent;
  color: #e21617;
  text-decoration: none;
  border: 0;
  outline: 0;
  margin-top: 100px;
}

.session_wait .cancel i {
  font-size: 1rem;
  margin-right: 5px;
}

.session_wait .spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.session_wait .spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.session_wait .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.session_wait .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.content {
  max-height: 100%;
  overflow-y: scroll;
}
.content .separator {
  width: 100%;
  border: none;
  border-bottom: 1px solid #545455;
}
.content .first {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 2rem 2rem 2rem;
  position: relative;
  min-height: 100vh;
}
@media (min-width: 480px) {
  .content .first {
    padding: 4rem;
  }
}
.content .first .back-link {
  position: absolute;
  inset: 2rem auto auto 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.content .first .back-link img {
  width: 1rem;
  transform: rotate(180deg);
}
.content .first .background-image, .content .first .background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.content .first .background-image {
  -o-object-fit: cover;
     object-fit: cover;
}
.content .first .background-gradient {
  background: linear-gradient(rgba(12, 12, 13, 0.5), #0C0C0D);
}
.content .first .logo {
  width: 12rem;
}
.content .first .title {
  margin: auto 0 0 0;
  max-width: 45rem;
}
.content .first .paragraph {
  display: none;
}
@media (min-width: 1100px) {
  .content .first .paragraph {
    display: block;
    max-width: 55rem;
    text-align: center;
    margin-top: 1rem;
  }
}
.content .first .begin-button {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  padding: 0.6em 2em;
  border-radius: 1em;
  background-color: #FF3142;
  transition: 0.3s ease-in-out;
}
.content .first .begin-button img {
  width: 1.2rem;
  transition: 0.3s ease-in-out;
}
@media (min-width: 1100px) {
  .content .first .begin-button:hover {
    background-color: #F5C61F;
    color: #0C0C0D;
  }
  .content .first .begin-button:hover img {
    filter: invert(1);
  }
}
@media (min-width: 1100px) {
  .content .first .begin-button {
    margin: 3rem 0;
  }
}
.content .first .link {
  margin-bottom: 0.5rem;
  text-align: center;
  color: #31A8FF;
}
.content .first .link:hover {
  text-decoration: underline;
}
.content .second {
  display: flex;
  justify-content: center;
  background-color: #0C0C0D;
}
.content .second .content {
  width: 100%;
  max-width: 64rem;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1100px) {
  .content .second .content {
    padding: 6rem 0;
  }
}
.content .second .content .qr-container {
  display: flex;
  height: 8rem;
  width: 32rem;
  max-width: calc(100%);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 480px) {
  .content .second .content .qr-container {
    height: 10rem;
  }
}
.content .second .content .qr-container .qr {
  height: 100%;
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: inherit;
}
.content .second .content .qr-container .text {
  margin: 0 1rem;
}
@media (min-width: 480px) {
  .content .second .content .qr-container .text {
    margin: 0 2rem;
  }
}
.content .second .content .title {
  margin-bottom: 3rem;
}
.content .second .content .list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 480px) {
  .content .second .content .list {
    grid-template-columns: 1fr 1fr;
  }
}
.content .second .content .thematic {
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  border: 1px solid #545455;
  border-radius: 0.5rem;
}
@media (min-width: 1100px) {
  .content .second .content .thematic {
    padding: 3rem 3rem 2rem 3rem;
    transition: 0.3s ease-in-out;
  }
  .content .second .content .thematic:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.5);
  }
}
.content .second .content .thematic .button {
  margin: 0.5rem 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3em 0.8em 0.2em 0.8em;
  border-radius: 99rem;
  background-color: #FF3142;
  transition: 0.3s ease-in-out;
}
.content .second .content .thematic .button img {
  width: 0.8rem;
  transform: translateY(-0.2rem);
}
@media (min-width: 1100px) {
  .content .second .content .thematic .button:hover {
    background-color: #F5C61F;
  }
}
.content .second .content .thematic .button:hover {
  color: #0C0C0D;
}
.content .second .content .thematic .chapter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}
@media (min-width: 1100px) {
  .content .second .content .thematic .chapter {
    transition: transform 0.3s ease-in-out;
  }
  .content .second .content .thematic .chapter:hover {
    transform: translateX(1rem);
  }
}
.content .second .content .thematic .chapter .link {
  padding: 0.5rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #31A8FF;
  transition: 0.3s ease-in-out;
}
.content .second .content .thematic .chapter .link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.content .second .content .thematic .chapter img {
  width: 1.4rem;
  max-height: 1.4rem;
  margin-left: 0.8rem;
  display: none;
}
.content .second .content .thematic .chapter.done .check {
  display: block;
}
.content .second .content .thematic .chapter.pinned .pin {
  display: block;
}
.content .second .content .reset {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
}
.content .second .content .reset.hidden {
  display: none;
}
.content .second .content .reset button {
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  padding: 0.6em 2em;
  border-radius: 1em;
  background-color: #FF3142;
  transition: 0.3s ease-in-out;
}
.content .second .content .reset button img {
  width: 1.2rem;
  transition: 0.3s ease-in-out;
}
@media (min-width: 1100px) {
  .content .second .content .reset button:hover {
    background-color: #F5C61F;
    color: #0C0C0D;
  }
  .content .second .content .reset button:hover img {
    filter: invert(1);
  }
}
.content .second .content .reset p {
  text-align: center;
}
.content .third, .content .fourth {
  display: flex;
  justify-content: center;
  background-color: #0C0C0D;
}
.content .third .content, .content .fourth .content {
  width: 100%;
  max-width: 64rem;
  padding: 4rem 2rem;
}
@media (min-width: 480px) {
  .content .third .content, .content .fourth .content {
    padding: 4rem 6rem;
  }
}
@media (min-width: 1100px) {
  .content .third .content, .content .fourth .content {
    padding: 6rem 0;
  }
}
.content .third .content .title, .content .fourth .content .title {
  text-align: center;
  margin: 0 auto 3rem auto;
}
@media (min-width: 480px) {
  .content .third .content .title, .content .fourth .content .title {
    max-width: 70%;
  }
}

footer {
  padding-top: 4rem;
  background-color: #0a0a0a;
}
footer .logo {
  width: 2rem;
  margin: 0 0 1rem 50%;
  transform: translateX(-50%);
}
footer h2 {
  font-size: 1.2rem;
  margin: 0 auto 1rem auto;
  max-width: 80%;
}
@media (min-width: 480px) {
  footer h2 {
    margin-bottom: 2rem;
  }
}
footer .grid {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 480px) {
  footer .grid {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1100px) {
  footer .grid {
    gap: 6rem;
  }
}
footer .grid .grid-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
footer .grid .grid-item a:hover {
  text-decoration: underline;
}
footer .grid .grid-item .image-link-container {
  display: flex;
  gap: 1rem;
}
footer .grid .grid-item .image-link {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
}
footer .grid .grid-item .image-link img {
  height: 2rem;
}
footer .grid .grid-item .image-link:hover {
  text-decoration: none;
}
footer .bottom-bar {
  padding: 2rem;
  background-color: #070708;
  text-align: center;
}
footer .bottom-bar div {
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 480px) {
  footer .bottom-bar div {
    display: flex;
    justify-content: center;
  }
}
footer .bottom-bar p {
  color: rgba(255, 255, 255, 0.2);
}
footer .bottom-bar p:nth-of-type(1) {
  margin-right: auto;
}/*# sourceMappingURL=home.css.map */