@font-face {
  font-family: "Audiowide";
  src: url("../fonts/Audiowide-Regular.woff2?v=1") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Thin.woff2?v=1") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-ExtraLight.woff2?v=1") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Light.woff2?v=1") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Regular.woff2?v=1") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Medium.woff2?v=1") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-SemiBold.woff2?v=1") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Bold.woff2?v=1") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-ExtraBold.woff2?v=1") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

html {
  background: #0B0F3E;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100dvw;
}

body, main, footer {
  overflow: hidden;
  width: 100dvw;
}

header {
  width: 100dvw;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
}

header {
  height: 125px;
  position: fixed;
  padding: 0.75rem 2rem;
  font-family: "Audiowide", sans-serif;
  text-transform: uppercase;
  color: #7B5FFF;
  font-size: 0.875rem;
  z-index: 50;
  background: linear-gradient(to bottom, rgb(4, 0, 21) 10%, rgba(4, 0, 21, 0) 100%);
}
header .hdrContent {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}
header .hdrContent .logo {
  height: 100%;
  max-width: 100%;
  padding: 5px;
  aspect-ratio: 1;
}
header .hdrContent .logo img {
  height: 100%;
  aspect-ratio: 1;
}
header .hdrContent .hdrRight {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: fit-content;
}
header .hdrContent .hdrRight #hdrNav {
  display: flex;
}
header .hdrContent .hdrRight #hdrNav ul {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.25rem;
  font-size: inherit;
}
header .hdrContent .hdrRight .langSwitch {
  display: flex;
  width: fit-content;
  height: 100%;
  position: relative;
}
header .hdrContent .hdrRight .langSwitch .langBtn {
  display: flex;
  align-items: center;
  color: inherit;
  font-size: inherit;
  text-transform: inherit;
  font-family: inherit;
}
header .hdrContent .hdrRight .langSwitch .langBtn svg {
  fill: #7B5FFF;
}
header .hdrContent .hdrRight .langSwitch .langOptions {
  position: absolute;
  top: calc(75% + 0.5rem);
  background: #0B0F3E;
  box-shadow: 0 0 10px rgba(4, 0, 21, 0.25);
  right: 0;
  border-radius: 0.25rem;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
  opacity: 0;
  pointer-events: none;
}
header .hdrContent .hdrRight .langSwitch .langOptions li {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.5, 0.25, 1);
  text-align: center;
}
header .hdrContent .hdrRight .langSwitch .langOptions li:first-child {
  padding-bottom: 0.375rem;
}
header .hdrContent .hdrRight .langSwitch .langOptions li:last-child {
  padding-top: 0.375rem;
}
header .hdrContent .hdrRight .langSwitch .langOptions li.active {
  opacity: 0.5;
}
header .hdrContent .hdrRight .langSwitch .langOptions li:hover {
  background: #040015;
  opacity: 1;
}
header .hdrContent .hdrRight .langSwitch.open .langOptions {
  top: calc(100% + 0.5rem);
  opacity: 1;
  pointer-events: auto;
}
header .hdrContent .hdrRight .burgerBtn {
  display: none;
}

footer {
  height: 115px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem 1.5rem 2rem;
}
footer .logoDiv {
  height: 100%;
  width: fit-content;
  min-width: 150px;
  display: flex;
}
footer .logoDiv .logo-ftr {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  padding: 5px;
}
footer .logoDiv .logo-ftr img {
  height: 100%;
  width: 100%;
}
footer .rsn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
footer .rsn a {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1;
  padding: 15px;
}
footer .contactInfos {
white-space: nowrap;
  width: fit-content;
  text-align: end;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 0.875rem;
  color: #7B5FFF;
  min-width: 150px;
}

@media screen and (max-width: 768px) {
  header {
    max-height: 100px;
  }
  header .hdrContent {
    max-height: 50px;
  }
  header .hdrContent .logo {
    z-index: 2;
  }
  header .hdrContent .hdrRight {
    gap: 1rem;
  }
  header .hdrContent .hdrRight #hdrNav {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100dvh;
    align-items: center;
    justify-content: center;
    background: #040015;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.5, 0.25, 1);
    opacity: 0;
  }
  header .hdrContent .hdrRight #hdrNav ul {
    flex-flow: column nowrap;
    align-items: center;
  }
  header .hdrContent .hdrRight #hdrNav.open {
    pointer-events: auto;
    transform: translateX(0);
    opacity: 1;
  }
  header .hdrContent .hdrRight .langSwitch .langOptions {
    right: auto;
    left: 0;
  }
  header .hdrContent .hdrRight .burgerBtn {
    z-index: 2;
    display: flex;
    width: 45px;
    height: 30px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
  }
  header .hdrContent .hdrRight .burgerBtn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
  }
  header .hdrContent .hdrRight .burgerBtn svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s;
  }
  header .hdrContent .hdrRight .burgerBtn svg .burgerIcon {
    stroke: #7B5FFF;
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
  header .hdrContent .hdrRight .burgerBtn svg .burgerIcon .topLine,
  header .hdrContent .hdrRight .burgerBtn svg .burgerIcon .middleLine,
  header .hdrContent .hdrRight .burgerBtn svg .burgerIcon .bottomLine {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  header .hdrContent .hdrRight .burgerBtn.active .topLine {
    transform: translateY(10px) rotate(45deg);
  }
  header .hdrContent .hdrRight .burgerBtn.active .middleLine {
    opacity: 0;
  }
  header .hdrContent .hdrRight .burgerBtn.active .bottomLine {
    transform: translateY(-10px) rotate(-45deg);
  }
  header .hdrContent .hdrRight .burgerBtn.spin.active svg {
    transform: rotate(135deg);
    transition-delay: 0.3s;
  }
}
@media screen and (max-width: 768px) and (prefers-reduced-motion: reduce) {
  header .hdrContent .hdrRight .burgerBtn svg, header .hdrContent .hdrRight .burgerBtn .topLine, header .hdrContent .hdrRight .burgerBtn .middleLine, header .hdrContent .hdrRight .burgerBtn .bottomLine {
    transition: none !important;
  }
}
@media screen and (max-width: 768px) {
  footer {
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    gap: 1.5rem;
  }
  footer .logoDiv {
    display: none;
  }
  footer .rsn a {
    padding: 10px;
  }
  footer .contactInfos {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}

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