/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {

  .navbar {
    padding: 0;
  
    ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    li {
      position: relative;
    }
  
    > ul > li {
      white-space: nowrap;
      padding: 10px 0 10px 28px;
    }
    
    a, a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3px;
      font-family: var(--font-primary);
      font-size: 14px; 
      font-weight: 500;
      color: rgba(#fff, .6);
      text-transform: uppercase;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
  
      i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
      }
    }
  
    > ul > li > a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--color-primary);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
  
    a:hover:before, li:hover > a:before, .active:before  {
      visibility: visible;
      width: 100%;
    }
  
    a:hover, .active, .active:focus, li:hover > a  {
      color: #fff;
    }
  
    .dropdown {
  
      ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        
        li {
          min-width: 200px;
        }
  
        a {
          padding: 10px 20px;
          font-size: 15px;
          text-transform: none;
          color: var(--color-default);
          font-weight: 400;
          i {
            font-size: 12px;
          }
        }
  
        a:hover, .active:hover, li:hover > a {
          color: var(--color-primary);
        }
  
      }
  
      &:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
      }
  
    }
  
    .dropdown .dropdown {
      
      ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
      }
  
      &:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
      }
  
      @media (max-width: 1366px) {
        ul {
          left: -90%;
        }
  
        &:hover > ul {
          left: -100%;
        }
      }
    }
    
  }
  
  .mobile-nav-show, .mobile-nav-hide {
    display: none;
  }

}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index:9997;
    
    ul {
      position: absolute;
      inset: 0;
      padding: 50px 0 10px 0;
      margin: 0;
      background: rgba(#000, 0.8);
      overflow-y: auto;
      transition: 0.3s;
      z-index:9998;
    }
  
    a, a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      font-family: var(--font-primary);
      font-size: 15px; 
      font-weight: 500;
      color: rgba(255, 255, 255, .7);
      white-space: nowrap;
      text-transform: uppercase;
      transition: 0.3s;
      i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
      }
    }
  
    a:hover, .active, .active:focus, li:hover > a  {
      color: #fff;
    }
  
    .dropdown, .dropdown .dropdown {
  
      ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all .5s ease-in-out;
        border: 1px solid darken($secondary, 20);
      }


      > .dropdown-active {
        display: block;
      }
  
    }
  
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index:9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index:9999;
  }

  .mobile-nav-active {
    overflow: hidden;
   
    .navbar {
      right: 0;
 
      &:before {
        content: "";
        position:fixed;
        inset: 0;
        background: rgba(#000, 0.6);
        z-index:9996;
      }
    }

  }
  
}
