body{
    height: auto;
    background-color: rgb(239, 239, 239);
}

header {
    width: 100%;
    height: 45px;
    position: fixed;
    z-index: 20000;
}

header.top {
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top__inner {
    width: fit-content;
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: center;
    padding: 2px 18px;
    box-sizing: border-box;
    background-color: rgba(239, 239, 239, 0.908);
    border-radius: 999px;
}

.top__inner .titre:hover {
    filter: blur(4px);
    color: rgb(255, 0, 187);
}

.bottom{
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom__nav {
    width: fit-content;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    padding: 2px 18px;
    box-sizing: border-box;
    background-color: rgba(239, 239, 239, 0.908);
    border-radius: 999px;
}


.curseur {
  position: fixed;
  pointer-events: none;
  width: 30px;
  z-index: 9999;
}

.lien{
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.lien:hover {
    filter: blur(4px);
    color: rgb(255, 0, 187);
}


.home{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    box-sizing: border-box;
}

.home > div {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.home__left {
    justify-content: flex-start;
    gap: 25px;

}

.home__center {
    justify-content: center;
    text-transform: uppercase;
}

.home__right {
    justify-content: flex-end;
    text-align: right;
}

.bannermove {
    font-family: GT-BOLD;
    font-size: 70px;
    text-transform: uppercase;
      color: black;
      -moz-animation: marquee  linear infinite;
      -webkit-animation: marquee linear infinite;
      animation: marquee 20s linear infinite;
      }
      @-moz-keyframes marquee {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
      }
      @-webkit-keyframes marquee {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
      }
      @keyframes marquee {
      100% { 
      -moz-transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transform: translateX(100%) }
      100% { 
      -moz-transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%); }
      }

          .banner:hover{
               background-color: rgb(255, 0, 187);
          }
                  .bannermove:hover {
                    color: rgb(239, 239, 239);
                    filter: blur(1px);
                  }
    
          @-moz-keyframes marquee {
              0% {
                  transform: translateX(100%);
              }
    
              100% {
                  transform: translateX(-100%);
              }
          }
    
          @-webkit-keyframes marquee {
              0% {
                  transform: translateX(100%);
              }
    
              100% {
                  transform: translateX(-100%);
              }
          }
    
          @keyframes marquee {
              100% {
                  -moz-transform: translateX(100%);
                  -webkit-transform: translateX(100%);
                  transform: translateX(100%)
              }
    
              100% {
                  -moz-transform: translateX(-100%);
                  -webkit-transform: translateX(-100%);
                  transform: translateX(-100%);
              } }

.banner {
    text-transform: uppercase;
    white-space: nowrap;
    border-top: 0.7px solid black;
    border-bottom: 0.7px solid black;
}

.carrousel {
    width: 100vw;
    height: 60vh;
    overflow: hidden;
    position: relative;
}

.carrousel-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  object-fit: cover;
  transition: left 0.6s;
  opacity: 1;
  z-index: 1;
}

/* Phone */

    .carrouselphone {
     display: none;
}