﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

/***** Start of primary nav ******/
#menu-button {
  display: none;
}
nav.mobile {
  display: none;
}

nav.primary {
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 90%;
  border-top: 1px solid #fff;
}
nav.primary ul {
  margin: 0;
  padding: 0;
}
nav.primary ul li {
  display: inline-block;
  margin: 0;
  list-style-type: none;
  width: auto;
  position: relative;
}
nav.primary ul li a {
  color: #fff;
  font-size: 15px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 20px;
  text-decoration: none;
  display: block;
  margin: 0px 2px;
  text-align: center;
  font-weight: 400;
  padding: 12px 20px;
  font-family: "montserrat", sans-serif !important;
}

nav.primary ul li a:hover {
  color: #4b4b4b;
  background-color: #fff;
}
/* Appearance of the sub-level links */
nav.primary ul li li a {
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 24px;
  padding: 7px 10px;
  color: #fff;
  background-color: #494848;
  text-align: left;
  transition: 0.4s ease;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
  color: #4b4b4b;
  background-color: #fff;
}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
  display: none;
  position: absolute;
}
nav.primary ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}
nav.primary ul li:hover > ul {
  display: block;
  line-height: 18px;
  z-index: 1000;
}
nav.primary ul ul li {
  float: none;
  width: 220px;
  position: relative;
  margin: 0;
  display: block;
}

/** drop down btns**/
.drop-down a:hover {
  color: #fff !important;
  background-color: #d36d08 !important;
}

/******** End of primary Nav ***************/

@media screen and (max-width: 1250px) {
  /*==============================
	Mobile Nav Styles			
================================*/
  nav.primary {
    display: none;
  }
  #menu-button {
    width: 100%;
    display: inline-block;
    font-size: 24px;
    position: relative;
    line-height: 50px;
    z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
    background: #4b4b4b;
    text-align: center;
    border-top: solid 1px #fff;
    box-sizing: border-box;
  }
  #menu-button a {
    color: #fff;
    text-decoration: none;
    padding: 2px 0 0 0;
    font-weight: 600;
    line-height: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    width: 100px;
    margin: 0 auto;
  }
  nav.mobile {
    display: block;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #333;
    z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
    overflow: auto;
  }

  /* MENU HEADER STYLES */
  nav.mobile .mobile_top {
    position: relative;
    display: block;
    padding: 0;
    margin: 50px 0 10px 0;
    color: #999;
    font-size: 18px;
    font-weight: 400;
  }

  /* MENU CLOSE 'X' BUTTON */
  nav.mobile .menu-toggle {
    position: absolute;
    padding: 3px 8px 3px;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #999;
    text-decoration: none;
    right: 13px;
  }
  nav.mobile .menu-toggle:hover {
    /* Menu close button on hoveer */
    color: #fff;
  }
  .menu-title {
    color: #999;
  }
  .mobile p {
    padding: 10px;
  }
  /* MENU LIST STYLE */
  nav.mobile ul {
    list-style: none;
    font-weight: 300;
    margin: 0;
    padding: 0;
  }
  nav.mobile ul li {
    border-top: 1px solid #454545;
    border-bottom: 1px solid #151515;
    position: relative;
  }

  /* FIRST LEVEL */
  nav.mobile ul li a {
    position: relative;
    display: block;
    font-size: 15px;
    padding: 10px;
    font-weight: 500;
    color: #999;
    text-decoration: none;
    border-left: 4px #333 solid;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    text-align: left;
  }
  nav.mobile ul li a:hover {
    background: rgba(45, 45, 45, 0.5);
    color: #fff;
    border-left: 4px #999 solid; /* border highlight - Change to fit match site colors */
  }

  /* SECOND LEVEL */
  nav.mobile ul li li:last-child {
    border: none;
  }
  nav.mobile ul li li a {
    background: #444;
    position: relative;
    display: block;
    padding: 10px 10px 10px 15px;
    border-left: 4px #444 solid;
    color: #ccc;
    text-decoration: none;
  }
  nav.mobile ul li li a:hover {
    background: rgba(65, 65, 65, 0.5);
  }

  /* THIRD LEVEL */
  nav.mobile ul li li li:last-child {
    border: none;
  }
  nav.mobile ul li li li a {
    background: #555;
    position: relative;
    display: block;
    padding: 10px 10px 10px 25px;
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    border-left: 4px #555 solid;
  }
  nav.mobile ul li li li a:hover {
    background: rgba(85, 85, 85, 0.5);
  }

  nav.mobile ul li .click {
    /* dropdown menu idicator arrow be sure to include this image with your image files */
    position: relative;
    display: block;
    cursor: pointer;
    width: auto;
    height: auto;
    font-weight: 500;
    padding: 10px;
    color: #999;
  }
  .nav-footer {
    color: #1b1b1b;
    position: relative;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    padding: 15px 0;
  }

  /* FONT AWESOME ICONS */
  nav.mobile ul li a .fa {
    width: 25px;
    font-weight: 100;
    padding: 8px 3px;
    margin: 0 6px 0 0;
    text-align: center;
    background: #292929;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  }

  nav.mobile ul li .fa-chevron-down {
    color: #e76806 !important;
  }
  nav.mobile ul li .fa-chevron-down {
    color: #999;
  }
}
