/* ------------------------------------------------ MENU DESK ------------------------------------------------ */

#menuDesk {
  position: absolute;
  width: 100%;
  top: 15px;
  z-index: 1;

  .cont-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .logo {
      width: 50px;
    }

    .burger {
      width: 125px;
      background-color: rgba(31, 31, 30, 0.5);
      display: flex;
      align-items: center;
      padding: 20px 25px;
      border-radius: 100em;
      cursor: pointer;
      position: fixed;
      top: 15px;
      right: 15px;
      z-index: 998;
      cursor: pointer;

      &:hover {
        .bur {

          span {
            width: 25px;
          }

          span.due {
            width: 30px;
          }
        }
      }

      p {
        line-height: 1em;
        padding-right: 10px;
        text-transform: uppercase;
        font-family: var(--font-cta);
        font-weight: normal;
        color: var(--bianco);
      }

      .bur {
        
        span {
          display: block;
          width: 30px;
          height: 1px;
          background: var(--bianco);
          transition: all .5s cubic-bezier(.215, .61, .355, 1);
        }

        span.due {
          width: 25px;
          margin-top: 5px;
        }
      }
    }
  }
}

.menu-aperto {
  width: 100%;
  background: rgba(31, 31, 30, 0.98);
  z-index: 999;
  height: 100vh;
  position: fixed;
  padding: 15px 15px 0 0;
  top: -200%;
  left: 0;
  opacity: 0;
  transition: all 1s cubic-bezier(.215, .61, .355, 1);
  

  .chiudi {
    float: right;
    cursor: pointer;

    p {
      color: var(--bianco);
      text-transform: uppercase;
      font-family: var(--font-cta);
    }
  }

  .links {
    padding: 200px 100px;

    a.link-menu {
      color: rgb(48, 48, 48);
      font-family: var(--font-tit);
      display: block;
      font-size: 5svw;
      line-height: 1em;
      border-top: solid 1px var(--bianco);
      border-bottom: solid 1px var(--bianco);
      margin-top: -1px;
      transition: all .5s cubic-bezier(.215, .61, .355, 1);

      &:hover {
        padding-left: 25px;
        color: var(--rosso);
      }
    }
  }

  .container-fluid.logo {
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    h5 {
      color: var(--bianco);
    }

    a {
      margin-right: 25px;
    }

    .ruota {
      width: 75px;
      animation: ruotaLogo 12s linear infinite;
    }
  }
}

@keyframes ruotaLogo {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.menu-aperto--open {
  top: 0;
  opacity: 1;
}

.ruota {
  width: 75px;
  animation: ruotaLogo 12s linear infinite;
}




/* ------------------------------------------------ MENU SM ------------------------------------------------ */

@media screen and (max-width: 500px) {

.bur {
  display: none;
}

.burger {
  width: fit-content!important;
  padding: 15px 20px 13px!important;

  p {
    padding-right: 0!important;
  }
}

.menu-aperto {
  padding: 25px 10px;

  .links {
    padding: 100px 15px;
  }
}

.chiudi.burger {
  padding: 0!important;
  border-bottom: solid 1px var(--rosso);
}

a.link-menu {
  font-size: 8svw!important;
  line-height: .9em!important;
  padding: 5px 0;
  color: var(--rosso)!important;
}

.container-fluid.logo {
  padding: 0 15px!important;
  display: block!important;

  a {
    font-size: 4vw!important;
    border-bottom: solid 1px var(--rosso);
    padding-bottom: 3px;
  }

  .ruota {
    width: 350px!important;
    position: relative!important;
    top: 50px!important;
    left: 100px!important;
    opacity: .1!important;
  }
}


}