/*
    VARIABLES
*/
/*
    COMMON
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800;900&display=swap");
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #02050C;
  overflow-x: hidden;
  position: relative;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #02050C;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

/*
    LAYOUT
*/
.header {
  background: url(../img/header-background.jpg);
  background-position: center 0;
  background-size: cover;
  height: 100vh;
}
.header__nav {
  position: fixed;
  right: 2rem;
  transition: all 0.5s ease-out;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
 
 }
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}
.header__nav__elem {
  position: relative;
  font-size: 1.2rem;
  font-weight: 100;
}
.header__nav__elem a {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Space Grotesk";
}
.header__nav__elem--active a {
  color: #3109D4;
}
.header__nav__elem--active:before {
  background-color: #3109D4 !important;
}
.header__nav__elem--shop {
  background-color: #3109D4;
  padding: 0.2rem 1rem;
  border-radius: 500px;
}
.header__nav__elem--shop:before {
  background-color: transparent !important;
}
.header__nav__elem:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 1.7rem;
  transition: width 0.2s ease-out;
}
.header__nav__elem:hover:before {
  width: 100%;
}
.header__nav__elem:active:before {
  background-color: #3109D4;
}
.header__nav__burger-menu {
  position: fixed;
  right: 0;
  padding: 2rem;
  top: 0;
  width: 0;
  height: 0;
  transition: 0.3s ease-out;
  cursor: pointer;
  z-index: 500;
}
.header__nav__burger-menu--show {
  width: calc(4rem + 40px);
  height: calc(4rem + 40px);
}
.header__nav__burger-menu:hover {
  transition: 0.1s;
  padding-right: 2.1rem;
}
.header__nav--hide {
  opacity: 0;
  transform: translateX(-100px);
}
.header__title {
  margin-left: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;
  gap: 2rem;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20rem 100vh;
  background-image: url(../img/banner-header.png);
}
@media (max-width: 768px) {
  .header__title {
    background-size: 13rem 100vh;
  }
}
@media (max-width: 768px) {
  .header__title {
    width: 100vw;
    margin: 0;
  }
}
.header__title__dachi {
  width: 400px;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .header__title__dachi {
    width: 300px;
  }
}
.header__title__h1 {
  font-size: 5rem;
  color: #fff;
}
@media (max-width: 768px) {
  .header__title__h1 {
    font-size: 3rem;
  }
}
.header__title__button {
  border: none;
  border-radius: 0;
  color: #fff;
  background-color: #3109D4;
  font-family: "Inter";
  padding: 0.5rem 4rem;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.05rem;
  transition: all 0.2s ease-out;
}
.header__title__button:before {
  content: "";
  bottom: 0;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #02050C;
  position: absolute;
}
.header__title__button:after {
  content: "";
  position: absolute;
  padding: 1rem;
  border: 1px solid #767470;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: calc(100% + 1rem);
  height: calc(100% + 1rem);
  transition: border-color 0.3s ease-out;
}
.header__title__button:hover {
  color: #3109D4;
  background-color: #02050C;
}
.header__title__button:hover:after {
  border-color: #3109D4;
}
.header__title__button:hover:before {
  background-color: #767470;
}
.header__title__button:active:before {
  background-color: #fff;
}
.header__esport {
  font-size: 6rem;
  letter-spacing: 2rem;
  font-weight: 100;
  mix-blend-mode: soft-light;
  position: absolute;
  color: #fff;
  writing-mode: vertical-lr;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  font-family: "Space Grotesk";
}
@media (max-width: 768px) {
  .header__esport {
    display: none;
  }
}
.header__sidebar {
  width: calc(50vw - 8px - 4rem);
  position: fixed;
  right: calc(-1 * (50vw - 8px - 4rem));
  top: 0;
  height: 100vh;
  z-index: 5000;
  padding: 3rem;
  border-left: 1px solid #3109D4;
  background: rgba(0, 0, 0, 0.85);
  background-size: cover;
  transition: right 0.2s ease-out;
}
@media (max-width: 768px) {
  .header__sidebar {
    width: 100vw;
    right: -100vw;
    border: none;
  }
}
.header__sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 2rem;
}
.header__sidebar__list__elem {
  font-size: 2.5rem;
  font-weight: 100;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 500px;
  position: relative;
}
.header__sidebar__list__elem--active {
  color: #3109D4;
}
.header__sidebar__list__elem:before {
  content: "";
  position: absolute;
  top: 3.2rem;
  width: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  left: 0;
  transition: width 0.2s ease-out;
}
.header__sidebar__list__elem:hover:before {
  width: 100%;
}
.header__sidebar__logo {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  height: 7rem;
  filter: grayscale(1);
}
@media (max-width: 768px) {
  .header__sidebar__logo {
    display: none;
  }
}
.header__sidebar__close {
  position: absolute;
  top: 0;
  cursor: pointer;
  right: 0;
  padding: 2rem;
}
.header__sidebar--show {
  right: 0;
}
@media (max-width: 768px) {
  .header__sidebar--show {
    left: 0;
  }
}
.header__sidebar a {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Space Grotesk";
}
.header--no-background {
  width: auto;
  background: none;
}

.footer__container {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .footer__container {
    margin-top: 0;
  }
}

.footer__image {
  position: absolute;
}
@media (max-width: 768px) {
  .footer__image {
    display: none;
  }
}

.footer__svg {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer__svg {
    display: flex;
    justify-content: center;
  }
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2em;
}
.footer__nav a {
  font-family: "Inter";
  color: #fff;
}
@media (max-width: 768px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
}

.footer__button {
  height: 2rem;
  color: rgb(49, 9, 212);
  border: 1px solid rgb(49, 9, 212);
  background-color: rgb(2, 5, 12);
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.footer__button:before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #3109D4;
  height: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.1s ease-out;
}
.footer__button:hover {
  color: #02050C;
}
.footer__button:hover:before {
  height: 100%;
}
.footer__button:hover path {
  fill: #02050C;
}

.footer__trait {
  border: 1px solid #3109D4;
  width: 60em;
  margin-top: 3em;
  margin-left: 33em;
}
@media (max-width: 768px) {
  .footer__trait {
    margin-left: 3rem;
    width: calc(100% - 6rem);
  }
}

.footer__text {
  text-align: center;
  font-size: 0.8em;
  margin-top: 5em;
  color: #3109D4;
  font-family: "Inter";
}
@media (max-width: 768px) {
  .footer__text {
    margin-top: 2em;
  }
}

/*
    MODULES
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
}

a {
  text-decoration: none;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove list styles on ul and ol elements */
ul,
ol {
  list-style: none;
}

/* Set default font size and line height */
body {
  font-size: 1rem;
  line-height: 1.5;
}

/* Remove border on images inside links */
a img {
  border: none;
}

img {
  fill: black;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Variable.woff2") format("woff2"), url("../fonts/SpaceGrotesk-Variable.woff") format("woff"), url("../fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}
p {
  font-family: "Inter", sans-serif;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
}

@keyframes displayNone {
  100% {
    display: none;
  }
}
/*
    PAGES
*/
main {
  margin: auto;
  width: calc(100vw - 208px);
  background-image: url(../img/line-background.png);
  background-repeat: no-repeat;
  background-position-x: 140px;
  background-size: 20rem 100%;
  min-height: 100vh;
}
@media (max-width: 768px) {
  main {
    width: calc(100vw - 100px);
    background-size: 13rem 100%;
    background-position-x: center;
  }
}

section {
  min-height: 100vh;
}

.section-story {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .section-story {
    padding-top: 8rem;
  }
}
.section-story__content {
  z-index: 10;
}
@media (max-width: 768px) {
  .section-story__content {
    max-width: 100%;
  }
}
.section-story__content__h2-container {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-family: "Inter";
  color: #fff;
  font-size: 4rem;
  width: 950px;
}
@media (max-width: 768px) {
  .section-story__content__h2-container {
    font-size: 2.5rem;
    max-width: 100%;
  }
}
.section-story__content__h2-container__child--left {
  align-self: flex-start;
}
.section-story__content__h2-container__child--right {
  align-self: flex-end;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2rem;
}
@media (max-width: 768px) {
  .section-story__content__h2-container__child--right {
    flex-direction: column-reverse;
    align-items: start;
  }
}
.section-story__content__h2-container__child__start {
  color: #3109D4;
}
.section-story__content__h2-container__child__button {
  width: 57%;
  height: 4rem;
  color: #3109D4;
  border: 1px solid #3109D4;
  background-color: transparent;
  font-size: 2rem;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .section-story__content__h2-container__child__button {
    width: 100%;
  }
}
.section-story__content__h2-container__child__button path {
  fill: #3109D4;
}
.section-story__content__h2-container__child__button:before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #3109D4;
  height: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.1s ease-out;
}
.section-story__content__h2-container__child__button:hover {
  color: #02050C;
}
.section-story__content__h2-container__child__button:hover:before {
  height: 100%;
}
.section-story__content__h2-container__child__button:hover path {
  fill: #02050C;
}
.section-story__content__paragraph {
  transition: opacity 0.2s ease-out;
  line-height: 1.5rem;
  font-size: 1.2rem;
  opacity: 0;
  font-family: "Inter";
  color: #fff;
}
@media (max-width: 768px) {
  .section-story__content__paragraph {
    margin-top: 2rem;
    height: 0;
  }
}
.section-story__content__paragraph--show {
  opacity: 1 !important;
  height: auto;
}
.section-story__content__paragraph strong {
  color: blue;
}
.section-story__gg {
  z-index: 5;
  width: 500px;
  margin-left: -2rem;
  margin-bottom: 4rem;
  transform: translateX(-2rem);
}
@media (max-width: 768px) {
  .section-story__gg {
    display: none;
  }
}

.section-team {
  min-height: inherit;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.section-team__titre {
  font-size: 8rem;
  font-weight: 100;
  color: #fff;
  font-family: "Space Grotesk";
}
@media (max-width: 768px) {
  .section-team__titre {
    font-size: 4rem;
    margin-top: 4rem;
  }
}
.section-team__card-container {
  padding: 5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin: auto 0;
}
.section-team__card-container__card {
  min-width: 250px;
  flex-grow: 1;
  flex-basis: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  padding: 2rem;
  border: 1px solid #3109D4;
  font-family: "Space Grotesk";
  color: #fff;
  background: url(../img/gradient.jpg);
  background-size: cover;
}
@media (max-width: 768px) {
  .section-team__card-container__card {
    height: auto;
    gap: 2rem;
  }
}
.section-team__card-container__card__top {
  display: flex;
  justify-content: space-between;
}
.section-team__card-container__card__top__team {
  font-size: 1rem;
  position: relative;
}
.section-team__card-container__card__top__team:before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.2s ease-out;
}
.section-team__card-container__card__top img {
  transition: transform 0.2s ease-out;
}
.section-team__card-container__card__title {
  font-size: 3rem;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .section-team__card-container__card__title {
    font-size: 2rem;
  }
}
.section-team__card-container__card:hover .section-team__card-container__card__top__team:before {
  width: 100%;
}
.section-team__card-container__card:hover .section-team__card-container__card__top img {
  transform: translate(5px, -5px);
}

.img-parallax {
  position: absolute;
  left: 300px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .img-parallax {
    left: 50%;
    transform: translate(-50%, -50%) !important;
  }
}

.section-partenaires {
  min-height: 50vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 10rem;
  align-items: center;
}
@media (max-width: 768px) {
  .section-partenaires {
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    padding: 5rem 0;
  }
}

.section-partenaires img {
  height: 5rem;
  margin: 0 10px;
  border: 1px solid #000;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.section-palmares {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20rem;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section-palmares {
    width: 100%;
    gap: 0;
    flex-direction: column;
    min-height: 0 !important;
  }
}
.section-palmares__image {
  width: 25rem;
  height: 25rem;
}
@media (max-width: 768px) {
  .section-palmares__image {
    width: 15rem;
    opacity: 0.2;
    height: 15rem;
  }
}
.section-palmares__cashprize {
  position: absolute;
  right: 100px;
  height: 8rem;
  margin-top: 28rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: -1;
  mix-blend-mode: difference;
}
@media (max-width: 768px) {
  .section-palmares__cashprize {
    display: none;
  }
}
.section-palmares__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .section-palmares__content {
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    align-items: start;
  }
}
@media (max-width: 768px) {
  .section-palmares__content a {
    width: 100%;
  }
}
.section-palmares__h2 {
  font-size: 4rem;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section-palmares__h2 {
    width: 100%;
    font-size: 3rem;
    font-weight: normal;
  }
}
.section-palmares__button {
  width: 40rem;
  height: 4rem;
  color: #3109D4;
  border: 1px solid #3109D4;
  background-color: #02050C;
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  z-index: 100;
}
@media (max-width: 768px) {
  .section-palmares__button {
    width: 100%;
  }
}
.section-palmares__button path {
  fill: #3109D4;
}
.section-palmares__button:before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #3109D4;
  height: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: all 0.1s ease-out;
}
.section-palmares__button:hover {
  color: #02050C;
}
.section-palmares__button:hover:before {
  height: 100%;
}
.section-palmares__button:hover path {
  fill: #02050C;
}

.section-player {
  min-height: inherit;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.section-player__titre {
  font-size: 8rem;
  font-weight: 100;
  color: #fff;
  margin-top: 3rem;
}
.section-player__sous-titre {
  font-size: rem;
  font-weight: normal;
  color: #fff;
  margin-top: 3rem;
}
.section-player__card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: auto 0;
}
.section-player__card-container__card {
  width: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  padding: 2rem;
  border: 1px solid #3109D4;
  font-family: "Space Grotesk";
  color: #fff;
  background: url(../img/svg/profil.svg), url(../img/gradient.jpg);
  background-size: contain, cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 70%, auto;
}
.section-player__card-container__card__top {
  display: flex;
  justify-content: space-between;
}
.section-player__card-container__card__top__team {
  font-size: 1rem;
  position: relative;
}
.section-player__card-container__card__top__team:before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.2s ease-out;
}
.section-player__card-container__card__title {
  font-size: 3rem;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.8);
}
.section-player__card-container__card:hover .section-player__card-container__card__top__team:before {
  width: 100%;
}
.section-player__card-container__card:hover .section-player__card-container__card__top img {
  transform: translate(5px, -5px);
}

.section-page-palmares {
  padding-top: 200px;
  padding-bottom: 4rem;
}
.section-page-palmares__title {
  font-size: 4rem;
  color: #fff;
}
.section-page-palmares__title__attention {
  color: #3109D4;
}
.section-page-palmares__paragraph {
  line-height: 1.5rem;
  font-size: 1.2rem;
}
.section-page-palmares__paragraph strong {
  color: #3109D4;
}
.section-page-palmares__card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
}
.section-page-palmares__card-container__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .section-page-palmares__card-container__card {
    padding: 0.5rem;
  }
}
.section-page-palmares__card-container__card h3 {
  font-size: 4rem;
  color: #fff;
}

.section-page-partenaires {
  padding-top: 200px;
}
.section-page-partenaires__title {
  font-size: 4rem;
  color: #fff;
}
.section-page-partenaires__title__attention {
  color: #3109D4;
}
@media (max-width: 768px) {
  .section-page-partenaires__title {
    font-size: 3rem;
  }
}

.section-page-partenaires img {
  height: 5rem;
  margin: 10em 1em;
  border: 1px solid #000;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.section-page-partenaires__logo {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 4rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .section-page-partenaires__logo {
    gap: 1rem;
    height: 100%;
  }
}/*# sourceMappingURL=main.css.map */