@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://api.fontshare.com/v2/css2?family=satoshi@900,700,500,300,400&display=swap');

/* Nécessaire */

    * {
      margin: 0;
      padding: 0;
      text-decoration: none;
      list-style: none;
    }

    body {
      background-color: #141414;
      zoom: 100%;
      scrollbar-color: #409eff #141414;
      scrollbar-width: 6px;
      animation: body 0.8s ease-out;
    }

    @keyframes body {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    body::-webkit-scrollbar {
      width: 6px; /* width of the entire scrollbar */
      height: 6px;
    }

    body::-webkit-scrollbar-track {
      background-color: #141414; /* color of the tracking area */
    }

    body::-webkit-scrollbar-thumb {
      background-color: #409eff; /* color of the scroll thumb */
    }


/* Fin nécessaire */






/* Navigation */

    .top {
      position: absolute;
      width: 100%;
      z-index: 10;
    }

    .flex-nav {
      display: flex;
      align-items: center;
      height: 90px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Navigation div */
    .top-background {
      flex-direction: row-reverse;
      padding-left: 20px;
    }


    /* Logo */
    .enseigne {
      width: 200px;
      -webkit-transform: scale(1);
    	transform: scale(1);
    	-webkit-transition: transform .3s cubic-bezier(0.12, 0.02, 0, 2.11);
    	transition: transform .3s cubic-bezier(0.12, 0.02, 0, 2.11);
      margin: 0 auto;
      z-index: 1;
    }

    .enseigne:hover {
      -webkit-transform: scale(1.1);
    	transform: scale(1.1);
    }

    #logonav {
      width: auto;
      height: 70px;
    }


    /* Barre navigation */
    .navbar {
      display: flex;
      font-family: 'Satoshi', sans-serif;
      font-size: 14pt;
      font-weight: 500;
      width: 100%;
      height: 100%;
      align-items: center;
      justify-content: right;
    }

    .navbar .nav-margin {
      color: white;
      -webkit-transition: color 0.3s;
      transition: color 0.3s;
    }

    .navbar .nav-links ul {
      display: flex;
      justify-content: right;
    }

    .navbar .nav-links ul li:hover a {
      color: #409EFF;
      -webkit-transition: all 0.5s;
      transition: all 0.5s ;
    }

    .navbar .nav-links ul li.active a {
      color: #white;
    }

    .nav-margin {
      display: flex;
      box-sizing: border-box;
      padding: 0 55px;
      height: 90px;
      align-items: center;
      justify-content: center;
      border-bottom: 4px solid rgba(0, 0, 0, 0);
    }

    .navbar .menu-hamburger {
      visibility: hidden;
      position: absolute;
      top: 40px;
      left: 40px;
      width: 40px;
      height: auto;
      cursor: pointer;
    }

    .menu-fixed {
      position: fixed;
      top: 40px;
      left: 40px;
      width: 40px;
      height: auto;
      cursor: pointer;
      z-index: 102;
    }




    /* Nav Téléphone */
    @media screen and (max-width: 1200px) {
      @media screen and (orientation: portrait) {
        .flex-nav {
          height: 120px;
        }

        .navbar {
          padding: 0;
          width: auto;
        }
        .navbar .menu-hamburger {
          visibility: visible;
        }

        .nav-links {
          margin-left: 0;
          top: 0;
          left: 0;
          position: fixed;
          background-color: rgba(20, 20, 20, 1);
          width: 100%;
          height: 100vh;
          display: flex;
          justify-content: center;
          align-items: center;
          margin-left: -100%;
          z-index: 101;
          -webkit-transition: all 0.5s ease;
          transition: all 0.5s ease;
        }

        .nav-links ul {
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .nav-links.mobile-menu {
          margin-left: 0;
        }

        .nav-margin {
          display: inline;
          margin: 10px 0;
          padding: 0 40px;
        }

        .navbar .nav-links ul li {
          margin: 4vh 0;
          font-size: 2vh;
        }

        .nav-border {
          border-left: none;
        }

        .menu-hamburger {
          z-index: 101;
        }

        .top-background {
          width: 100%;
          text-align: center;
          padding-left: 0;
        }

        #logonav {
          height: 90px;
        }

        .navbar .nav-links ul li:hover a {
          color: #409EFF;
          border-bottom: none;
          box-shadow: none;
          -webkit-transition: all 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
          transition: all 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
        }

        .navbar .nav-links ul li.active a {
          color: #409eff;
          border-bottom: none;
          box-shadow: none;
      }
    }
  }
/*
    @media (orientation: landscape) {
      .image1-tel {
        height: 200vh;
      }

      .content-tel {
        height: 200vh;
      }
    } */

/* Fin navigation */








/* Pied de page */

    /* Pied de page div */
    .pied-de-page {
      position: absolute;
      background-color: #141414;
      left: 0;
      right: 0;
      z-index: 0;
    }


    /* 3 blocs */
    .row-pied {
      display: flex;
      flex-wrap: wrap;
      margin: 0 auto;
      margin-top: 30px;
      margin-bottom: 30px;
      width: 90%;
    }

    @media screen and (min-width: 90ch) {
      .row-pied {
        width: 95%;
        max-width: 120ch;
      }
    }

    .pages {
      flex: 1;
      margin-left: 50px;
      margin-bottom: 25px;
    }

    .contact {
      flex: 1;
      margin-bottom: 25px;
    }

    .reseaux {
      flex: 1;
      margin-right: 50px;
      text-align: right;
    }


    /* Alignements */
    .middle-contact {
      text-align: center;
    }

    .right-reseaux {
      text-align: right;
    }


    /* 2 blocs reseaux */
    .row-reseaux {
      text-align: right;
      display: flex;
      justify-content: flex-end;
      vertical-align: middle;
    }

    .gauche {
      flex: 10;
    }

    .droit {
      flex: 1;
      margin: auto 0;
    }


    /* Propriétés img et txt */
    .titres-row-pied {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 25px;
      color: white;
      padding-bottom: 10px;
    }

    .rect-bleu {
      position: absolute;
      width: 65px;
      height: 10px;
      background-color: #409eff;
      z-index: -1;
      margin-top: 20px;
      margin-left: -5px;
    }

    .rect-rose {
      display: inline;
      position: absolute;
      width: 110px;
      height: 10px;
      background-color: #fb4bab;
      z-index: -1;
      margin-top: 20px;
      margin-left: -106px;
    }

    .txt-pages {
      padding: 10px;
      padding-left: 0;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      font-size: 14px;
    }

    .sous-titres-row-pied {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
    }

    .txt1-contact {
      color: #ffffff;
      font-weight: 500;
    }

    .txt2-contact {
      color: #bbbbbb;
      font-weight: 300;
    }

    .img-reseaux {
      width: 18px;
      height: auto;
      vertical-align: middle;
      padding: 10px;
    }

    .copyright {
      font-family: 'Montserrat', sans-serif;
      font-weight: 100;
      font-size: 12px;
      color: white;
      padding-top: 60px;
      padding-bottom: 20px;
      text-align: center;
    }


    /* Hover pages */
    .txt-pages-bleu {
      color: white;
      -webkit-transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .txt-pages-bleu:hover {
      color: #409eff;
      -webkit-transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
    }


    /* Hover reseaux */
    .youtube {
      color: white;
      font-weight: 500;
      -webkit-transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .youtube:hover {
      color: #ff4545;
      -webkit-transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .twitch {
      color: white;
      font-weight: 500;
      -webkit-transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .twitch:hover {
      color: #9347ff;
      -webkit-transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .tiktok {
      color: white;
      font-weight: 500;
      -webkit-transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .tiktok:hover {
      color: #3febff;
      -webkit-transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .discord {
      color: white;
      font-weight: 500;
      -webkit-transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .discord:hover {
      color: #5869e9;
      -webkit-transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .twitter {
      color: white;
      font-weight: 500;
      -webkit-transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .twitter:hover {
      color: #1c9bf0;
      -webkit-transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .instagram {
      color: white;
      font-weight: 500;
      -webkit-transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.3s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .instagram:hover {
      color: #f57031;
      -webkit-transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
      transition: color 0.5s cubic-bezier(0.12, 0.02, 0, 2.11);
    }


    /* Pied-Téléphone */
    @media screen and (max-width: 1100px) {
      .row-pied {
        display: block;
      }

      .pages {
        text-align: center;
        margin-left: 0;
        margin-top: 130px;
        margin-bottom: 100px;
      }

      .contact {
        text-align: center;
        margin-bottom: 100px;
      }

      .reseaux {
        margin-right: 0;
      }

      .right-reseaux {
        text-align: center;
      }

      .row-reseaux {
        justify-content: space-around;
      }

      .img-reseaux {
        padding: 20px;
        width: 55px;
        height: auto;
        padding-left: 0;
      }

      .titres-row-pied {
        font-size: 65px;
        padding-bottom: 25px;
      }

      .txt-pages {
        font-size: 40px;
      }

      .txt1-contact {
        font-size: 40px;
      }

      .txt2-contact {
        font-size: 40px;
      }

      .sous-titres-row-pied {
          font-size: 40px;
      }

      .copyright {
        font-size: 20px;
      }

      .rect-bleu {
        width: 200px;
        height: 25px;
        left:50%;
        right: 50%;
        margin-left: -130px;
        margin-top: 50px;
      }

      .rect-rose {
        width: 305px;
        height: 25px;
        left:50%;
        right: 50%;
        margin-left: -120px;
        margin-top: 50px;
      }
    }

/* Fin pied de page */









/* Effets */

    /* Zoom */
    .zoom {
      -webkit-transform: scale(1);
    	transform: scale(1);
    	-webkit-transition: transform .3s cubic-bezier(0.12, 0.02, 0, 2.11);
    	transition: transform .3s cubic-bezier(0.12, 0.02, 0, 2.11);
    }

    .zoom:hover {
      -webkit-transform: scale(1.07);
    	transform: scale(1.07);
    }


    /* Helpful */
    .nodrag {
        user-drag: none;
        -webkit-user-drag: none;
        user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
    }

    .overflow {
      overflow: hidden;
    }

    .nodeco {
      text-decoration: none;
      color: white;
    }

    .underline:hover {
      text-decoration: underline;
      text-decoration-thickness: 1.5px;
}

/* Fin effets */
