#desktop-nav .nav,#desktop-nav .nav a,#desktop-nav .nav form,#desktop-nav .nav input,#desktop-nav .nav li,#desktop-nav .nav ul {
    border: none;
    margin: 0;
    padding: 0;
  }
  #desktop-nav .nav a {
    text-decoration: none;
  }
  #desktop-nav .nav li {
    list-style: none;
  }
  #mobile-nav{
      display: none;
      padding: 20px;
      background-color:#ffffff;
  }
  #desktop-nav{
    background-color:#ffffff;
  }
  /* menu container */
  #desktop-nav .nav {
    cursor: default;
    display: inline-block;
    z-index: 500;
  }
  
  /* menu list */
  #desktop-nav .nav > li {
    float: left;
  }
  
  /* menu links */
  #desktop-nav .nav > li > a {
      padding: 36px 15px;
      display: block;
      position: relative;
      transition: all .3s ease;
      z-index: 510;
      text-decoration: none;
      font-weight: 600;
      color: #191c24;
      font-size: 16px;
  }
  #desktop-nav .nav > li > a:focus,
  #desktop-nav .nav > li:hover > a {
      text-decoration: underline;
  }
  #desktop-nav .nav > li:first-child > a {
    border-left: none;
    border-radius: 3px 0 0 3px;
  }
  
  /* menu dropdown */
  #desktop-nav .mega-menu {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 3px 3px;
    opacity: 0;
    position: absolute;
    transition: all .3s ease .15s;
    visibility: hidden;
    width: 100%;
    z-index: 1000;
    left: 0;
  }
  #desktop-nav li:hover > .mega-menu {
    opacity: 1;
    overflow: visible;
    visibility: visible;
  }
  
  #desktop-nav .mega-menu a{
      text-decoration: none;
      font-weight: 400;
      color: #2e2e2e;
      font-size: 16px;
      display: block;
      margin-left:10px;
  }
  #desktop-nav .mega-menu .container ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    align-content: center;
  }
  #desktop-nav .mega-menu a:hover{
      text-decoration: underline;
  }
  #desktop-nav .mega-menu .nav-title{
      font-size: 18px;
      margin-left:0px;
  }
  
  #site-header{
    position: fixed;
    background-color: #ffffff;
    z-index: 1001;
    padding: 10px 0;
      padding:0;
      box-shadow: rgb(0 0 0 / 4%) 0 3px 5px;
  }
  #site-header .quick-links{
      justify-content: space-between;
  }
  #site-header .quick-links div
  {
      width: fit-content;
      display: inline-block;
  }
  #desktop-nav .nav-logo-link{
      padding-top: 0.3125rem;
      padding-bottom: 0.3125rem;
      margin-right: 1rem;
      font-size: 1.25rem;
      text-decoration: none;
      white-space: nowrap;
      width: fit-content;
  }
  #desktop-nav .nav-header{
      align-items: center;
      justify-content: flex-start;
  }
  .nav-end-flex{
      display: flex;
      margin-left: auto;
      width: auto;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
  }
  .social-list{
      list-style: none;
      margin:0;
      padding:0;
  }
  .social-list a{
      color: #191c24;
      font-size: 16px;
      margin:2px 5px;
  }
  .nav-header > div{
      display: flex;
      align-items: center;
      flex-direction: row;
      flex-wrap: wrap;
  }
  .quick-links a{
      margin:0 10px;
      text-decoration: none;
      font-weight: 600;
      color: #2e2e2e;
      font-size: 16px;
  }
  .quick-links a:hover{
      text-decoration: underline;
  }
  
  /* Mobile nav */
  #mobile-nav .overlay {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 1;
      top: 0;
      left: 0;
      background-color: #ffffff;
      overflow-x: hidden;
      transition: 0.5s;
      overflow-y: auto;
    }
    #mobile-nav .open_nav{
      font-size: 30px;
      width: fit-content;
      top: 30%;
      cursor: pointer;
      position: absolute;
      right: 10px;
    }
    #mobile-nav
    { 
      position: fixed;
    }
    #mobile-nav .nav-logo-link{
        margin:auto;
        width: fit-content;
    }
    #mobile-nav .overlay-content {
      position: relative;
      top: 25%;
      width: 100%;
      text-align: center;
      margin-top: 30px;
    }
  
    #mobile-nav .overlay a {
      padding: 8px;
      text-decoration: none;
      font-size: 36px;
      color: #000000;
      display: block;
      transition: 0.3s;
    }
    
  #mobile-nav .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  #mobile-nav .overlay .closebtn {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 60px;
  }
  #mobile-nav .mi-2{
      margin-left:5px;
  }
  #mobile-nav .mi-3{
      margin-left:10px;
  }
  #mobile-nav .mi-1{
    font-weight: 600;
    font-size: 22px;
  }
  
  #mobile-nav .links{
    padding: 50px 25px;
    justify-content: center;
  }
  #mobile-nav  .links a{
    font-size:20px;
  }
  @media (max-width: 1250px)
  {
      #desktop-nav form{
          display: none!important;
      }
      #desktop-nav{
          max-width: 90%;
      }
  }
  @media (max-width: 740px){
      #desktop-nav{
          display:none;
      }
      #mobile-nav{
          display: block;
      }
  }
  