body {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #FAFAFA;
  margin: 0;
}

.title {
  color: #FAFAFA;
}

.menu__home--txt {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}
.menu__home--img {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 30;
  width: 45px;
  height: 45px;
  padding: 7.5px;
  background-color: rgba(255, 255, 255, 0.7);
}
.menu__burger {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 80;
  width: 60px;
  height: 60px;
  transition: 0.4s;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.menu__burger--lines::before, .menu__burger--lines::after, .menu__burger--lines {
  position: absolute;
  width: 30px;
  height: 3px;
  background: linear-gradient(to right, #4949e5, #8F00FF, #FF00D4);
  transition: 0.4s;
}
.menu__burger--lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu__burger--lines::before {
  content: "";
  top: -12px;
}
.menu__burger--lines::after {
  content: "";
  top: 12px;
}
.menu__burger:hover .menu__burger--lines {
  filter: brightness(0.7);
}
.menu__burger:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.menu__list {
  padding-top: 200px;
  margin-top: 0;
  padding-left: 0;
  list-style: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 70;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  flex-flow: column;
  height: 100%;
  background-position: 0 0;
  background-size: 50px;
  overflow-y: auto;
}
.menu__list.hiding {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.menu__list.visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.menu__list--el {
  padding: 18px 35px;
  font-size: 26px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 5px;
  font-weight: 400;
  border-bottom: 1px solid #4949e5;
}
.menu__list--el a {
  text-decoration: none;
  color: #FAFAFA;
  font-family: "Electrolize", sans-serif;
}
.menu__list--el a:hover {
  color: #FF00D4;
}
.menu__list--el:first-child {
  border-top: 1px solid #4949e5;
}
.menu__list--el:hover {
  filter: brightness(0.9);
}
.menu__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.menu__transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.menu__transition.active {
  opacity: 1;
}
.menu__transition div {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(0);
  transition: transform 0.4s ease-out;
}
.menu__transition.active div {
  transform: scale(1);
}

.menu--open .menu__list {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}

.menu--open .menu__burger--lines {
  background: transparent;
}

.menu--open .menu__burger--lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu--open .menu__burger--lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu--open .menu__overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

@media (min-width: 1025px) {
  .menu {
    position: fixed;
    top: 20px;
    left: 0;
    padding: 0;
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
    height: 60px;
    z-index: 1000;
    background-color: rgba(250, 250, 250, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu__burger {
    display: none;
  }
  .menu__home {
    display: flex;
    left: 5%;
    align-items: center;
    position: absolute;
  }
  .menu__home--img {
    position: revert-layer;
    top: 0;
    width: 45px;
    height: 45px;
    padding: 7.5px;
    padding-left: 18px;
    background: none;
  }
  .menu__home--txt {
    visibility: visible;
    pointer-events: revert-layer;
    cursor: pointer;
    margin-left: 40px;
    color: #060639;
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 17px 35px 16px 35px;
    font-weight: bold;
    font-size: 18px;
  }
  .menu__home:hover .menu__home--txt {
    background-color: #060639;
    color: #FAFAFA;
  }
  .menu__home:hover .menu__home--img {
    background-color: #060639;
  }
  .menu__list {
    position: relative;
    left: 40%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    pointer-events: all;
    z-index: 5;
    opacity: 1;
    overflow: hidden;
    background: none;
    height: revert-layer;
  }
  .menu__list--el {
    border-bottom: none;
    font-size: 24px;
    padding: 14px 35px;
  }
  .menu__list--el:first-child {
    border-top: none;
  }
  .menu__list--el a {
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #060639;
  }
  .menu__list--el:hover {
    background-color: #060639;
  }
  .menu__list--el:hover a {
    color: #FAFAFA;
  }
  .menu__list--active {
    background-color: black;
  }
  .menu__list--active a {
    color: #FAFAFA;
  }
}
@media (min-width: 1441px) {
  .menu__home {
    left: 10%;
  }
  .menu__list {
    left: 55%;
  }
}
@media (min-width: 1700px) {
  .menu__list {
    left: 60%;
  }
}
.intro {
  height: 945px;
}
.intro__bg {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 945px;
}
.intro__bg--img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.intro__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-home-veil.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.8;
}
.intro__cadre {
  display: flex;
  flex-direction: column;
  margin-top: -425px;
  margin-left: 10%;
  margin-right: 10%;
}
.intro__cadre--txt {
  z-index: 1;
  padding: 30px;
  margin-top: 5%;
  margin-bottom: 5%;
  background-color: rgba(73, 73, 229, 0.9);
  border-radius: 8px;
  border: 3px solid white;
  font-family: "Electrolize", sans-serif;
}
.intro__cadre--btn {
  z-index: 1;
  display: inline-block;
  padding: 20px 40px;
  margin: 0 auto;
  text-align: center;
  background-color: #4949e5;
  color: white;
  text-transform: uppercase;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  border: 3px solid white;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  margin-top: 7%;
}
.intro__cadre--btn:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  background-color: #FF00D4;
}
.intro__cadre--btn:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .intro__cadre {
    margin-left: 25%;
    margin-right: 25%;
  }
}
@media (min-width: 1025px) {
  .intro__cadre {
    margin-left: 35%;
    margin-right: 35%;
    margin-top: -500px;
  }
}
.lore {
  background-color: #4949e5;
  z-index: 1;
  position: relative;
}
.lore::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-lore.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
}
.lore::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/bg-lore-veil.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.8;
  filter: blur(4px);
  z-index: -1;
}
.lore__container {
  max-width: 90%;
  padding-top: 15%;
  height: 90%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5%;
}
.lore__container--upper {
  font-family: "Aldrich", sans-serif;
  font-size: 20px;
}
.lore__container--title {
  margin-top: 0;
  font-family: "Oxanium", sans-serif;
  font-size: 32px;
}
.lore__container--vid {
  width: 80%;
  height: 250px;
  margin-top: 5%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
  border: 0;
}
.lore__container--txt {
  font-family: "Electrolize", sans-serif;
}

@media (min-width: 768px) {
  .lore__container {
    max-width: 70%;
    padding-bottom: 15%;
  }
}
@media (min-width: 1025px) {
  .lore__container {
    max-width: 50%;
    padding-bottom: 5%;
    padding-top: 5%;
  }
  .lore__container--title {
    font-size: 35px;
  }
  .lore__container--upper {
    font-size: 22px;
  }
}
@media (min-width: 1441px) {
  .lore__container {
    max-width: 60%;
  }
  .lore__container--title {
    font-size: 41px;
  }
  .lore__container--upper {
    font-size: 26px;
  }
}
@media (min-width: 1700px) {
  .lore__container {
    max-width: 50%;
  }
  .lore__container--vid {
    width: 50%;
  }
}
.feature__img {
  width: 100%;
  height: 100%;
}
.feature__transi {
  margin-top: -100px;
  height: 126px;
}
.feature__transi--img {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.feature__transiEnd {
  margin-top: 0px;
  height: 126px;
}
.feature__transiEnd--img {
  width: 100%;
  height: 100%;
  rotate: 180deg;
  opacity: 1;
}
.feature__container {
  background: url("../assets/images/dot-bg.svg");
  background-position: 0 0;
  background-size: 100px;
  background-attachment: fixed;
  position: relative;
  background-color: #060639;
  padding-left: 10%;
  padding-right: 10%;
  max-width: 100%;
}
.feature__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/trame.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 150px;
  z-index: 0;
}
.feature__container--vid {
  width: 100%;
  border: 3px solid white;
  margin-top: 15%;
  position: relative;
  z-index: 2;
}
.feature__container--upper {
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 5%;
  font-family: "Aldrich", sans-serif;
  font-size: 20px;
}
.feature__container--title {
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 5%;
  font-family: "Oxanium", sans-serif;
  font-size: 27px;
}
.feature__container--txt {
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Electrolize", sans-serif;
}

@media (min-width: 768px) {
  .feature__container {
    padding-left: 17%;
    padding-right: 17%;
  }
}
@media (min-width: 1025px) {
  .feature__container {
    padding-left: 20%;
    padding-right: 20%;
  }
  .feature__container--txt {
    padding-left: 10%;
    padding-right: 10%;
  }
  .feature__container--title {
    font-size: 35px;
  }
  .feature__container--upper {
    font-size: 22px;
  }
}
@media (min-width: 1441px) {
  .feature__container--title {
    font-size: 41px;
  }
  .feature__container--upper {
    font-size: 26px;
  }
}
@media (min-width: 1700px) {
  .feature__container {
    padding-left: 30%;
    padding-right: 30%;
  }
  .feature__container::before {
    content: none;
  }
}
.reminder {
  background-image: url("../assets/images/reminder-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  z-index: -1;
  margin-top: -20%;
}
.reminder__container {
  width: 100%;
}
.reminder__container--img {
  width: 100%;
  margin-top: -5%;
  z-index: 1;
  position: relative;
  -webkit-animation: float-y-controlled 4s linear infinite;
          animation: float-y-controlled 4s linear infinite;
}
.reminder__cadre {
  display: flex;
  flex-direction: column;
  margin-top: -30%;
  margin-left: 10%;
  margin-right: 10%;
}
.reminder__cadre--txt {
  z-index: 1;
  padding: 30px;
  margin-top: 5%;
  margin-bottom: 5%;
  background-color: rgba(73, 73, 229, 0.9);
  border-radius: 8px;
  border: 3px solid white;
  font-family: "Electrolize", sans-serif;
}
.reminder__cadre--btn {
  z-index: 2;
  display: inline-block;
  padding: 20px 40px;
  margin: 0 auto;
  text-align: center;
  background-color: #4949e5;
  color: white;
  text-transform: uppercase;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  border: 3px solid white;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  margin-top: 7%;
  margin-bottom: 7%;
}
.reminder__cadre--btn:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  background-color: #FF00D4;
}
.reminder__cadre--btn:active {
  transform: scale(0.98);
}

@-webkit-keyframes float-y-controlled {
  0% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes float-y-controlled {
  0% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@media (min-width: 768px) {
  .reminder__cadre {
    margin-left: 25%;
    margin-right: 25%;
  }
}
@media (min-width: 1025px) {
  .reminder__cadre {
    margin-left: 35%;
    margin-right: 35%;
  }
}
@media (min-width: 1441px) {
  .reminder__cadre {
    margin-left: 35%;
    margin-right: 35%;
  }
}
@media (min-width: 1700px) {
  .reminder__cadre {
    margin-left: 35%;
    margin-right: 35%;
  }
}
.subnav {
  background-color: black;
  padding-top: 10%;
  padding-left: 5%;
  padding-right: 5%;
}
.subnav__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.subnav__container::before, .subnav__container::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: white;
  max-width: 100%;
}
.subnav__container--title {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Oxanium", sans-serif;
  font-size: 1.2rem;
}
.subnav__list {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 5%;
  padding-bottom: 10%;
  padding-left: 0;
  list-style: none;
}
.subnav__list li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Electrolize", sans-serif;
}
.subnav__list li a:hover {
  font-weight: bold;
}

@media (min-width: 768px) {
  .subnav__list {
    padding-bottom: 3%;
    padding-top: 3%;
  }
}
@media (min-width: 1441px) {
  .subnav__container--title {
    font-size: 41px;
  }
}
@media (min-width: 1700px) {
  .subnav {
    padding-top: 5%;
  }
}
.init {
  padding-top: 40%;
}
.init__title {
  margin-top: 0;
}
.init__txt {
  font-weight: bold;
}

@media (min-width: 768px) {
  .init {
    padding-top: 20%;
  }
}
.idea__container {
  display: grid;
  grid-template-columns: 1fr 1fr 3fr;
  margin-top: 10%;
}
.idea__container--nbr {
  font-weight: bold;
}
.idea__container--txt {
  grid-column: 2/4;
  grid-row: 1;
  margin-top: 0;
  margin-bottom: 0;
}
.idea__container--txt a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Electrolize", sans-serif;
  font-weight: bold;
}
.idea__container--txt a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.idea__container--link {
  grid-column: 3;
  grid-row: 2;
  text-align: end;
}
.idea__container--link a {
  text-decoration: none;
  color: #FAFAFA;
  font-weight: bold;
  transition: color 0.3s ease;
}
.idea__container--link a:hover {
  color: rgba(250, 250, 250, 0.5);
}
.idea__container--link a:hover::before {
  content: "> ";
  transform: translateX(2px);
}

.source {
  background: url("../assets/images/dot-bg.svg");
  background-position: 0 0;
  background-size: 100px;
  background-attachment: fixed;
  position: relative;
  background-color: #060639;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  font-family: "Electrolize", sans-serif;
  font-size: 16px;
}
.source h1 {
  font-family: "Oxanium", sans-serif;
}
.source h2 {
  font-family: "Oxanium", sans-serif;
}
.source h3 {
  font-family: "Oxanium", sans-serif;
}

@media (min-width: 768px) {
  .source {
    padding-left: 15%;
    padding-right: 15%;
    font-size: 18px;
  }
}
@media (min-width: 1025px) {
  .source {
    padding-left: 20%;
    padding-right: 20%;
    font-size: 20px;
  }
  .source h1 {
    font-size: 35px;
  }
  .source h2 {
    font-size: 35px;
  }
}
@media (min-width: 1441px) {
  .source {
    padding-left: 25%;
    padding-right: 25%;
    font-size: 22px;
  }
  .source h1 {
    font-size: 37px;
  }
  .source h2 {
    font-size: 37px;
  }
}
.son__title--lower {
  margin-top: 10%;
  margin-bottom: 5%;
}
.son__list {
  list-style: square;
  padding: 0;
  margin-bottom: 0;
  padding-bottom: 25%;
  padding-left: 5%;
}
.son__list li a {
  text-decoration: none;
  color: #FAFAFA;
  font-weight: bold;
  transition: color 0.3s ease;
}
.son__list li a:hover {
  color: rgba(250, 250, 250, 0.5);
}

.sources__title {
  margin-top: 20%;
}
.sources__container a {
  display: flex;
  position: relative;
}
.sources__container a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -90%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  display: none;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}
.sources__container a:hover::after {
  display: block;
}
.sources__container--img {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10%;
}
.sources__container a:hover {
  transform: scale(1.5);
}
.sources__container--txt {
  margin-top: 0;
}
.sources__containerWrapper {
  display: flex;
  margin-bottom: 10%;
}
.sources__containerWrapper a {
  display: flex;
  position: relative;
}
.sources__containerWrapper a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -90%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  display: none;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}
.sources__containerWrapper a:hover::after {
  display: block;
}
.sources__containerWrapper--img {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto;
}
a .sources__containerWrapper--img {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto;
}
.sources__containerWrapper a:hover {
  transform: scale(1.5);
}

@media (min-width: 768px) {
  .sources__container--img {
    margin-top: 5%;
    width: 64px;
    height: 64px;
  }
  .sources__containerWrapper--img {
    margin-top: 5%;
    width: 64px;
    height: 64px;
  }
}
.last {
  padding-bottom: 15%;
}

body {
  font-size: 18px;
  max-width: 1920px;
  min-width: 350px;
}

.menu-blur section,
.menu-blur footer {
  filter: blur(4px);
  transition: filter 0.3s ease;
  pointer-events: none;
}

@media (min-width: 1025px) {
  body {
    font-size: 20px;
  }
}
@media (min-width: 1441px) {
  body {
    font-size: 24px;
  }
}

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