﻿
.navv {
  background: #444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navv .mobNav {
  display: none;
}
.navv .dropdown {
  width: 1200px;
}
.navv .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.navv .menu li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.navv .menu li:last-child a {
  border-right: none;
}
.navv .menu a {
  color: #fff;
  border-right: 1px solid #000;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
}
.navv .menu a:hover {
  background: teal;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media screen and (max-width: 750px) {
  .navv {

    background: #f2f2f2;
    position: relative;
    padding: 2vw;
  }

  .navv .mobNav {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .navv .mobNav .toolBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 8vw;
    overflow: hidden;
  }
  .navv .mobNav .menuBtn {
    padding: 0;
    margin: 0;
    height: 8vw;
    width: 8vw;
    background: teal url(../imgs/bar.png) center center no-repeat;
    background-size: 7vw 7vw;
    border: none;
    outline: none;
    border-radius: 1px;
  }
  .navv .mobNav .menuBtn:active {
    opacity: 0.8;
  }
  .navv .mobNav .menuBtn.close {
    background: orange url(../imgs/close.png) center center no-repeat;
    background-size: 5vw 5vw;
  }
  .navv .mobNav a {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
  }
  .navv .mobNav a img {
    height: 100%;
    width: auto;
  }
  .navv .mobNav span {
    width: 8vw;
    height: 8vw;
  }
  .navv .dropdown {
    position: absolute;
    left: 0;
    top: 12vw;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  .navv .dropdown .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .navv .dropdown .menu li {
    width: 100vw;
  }
  .navv .dropdown .menu li:last-child a {
    border-bottom: 0;
  }
  .navv .dropdown .menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: none;
    text-indent: 2vw;
    border-bottom: 1px solid #ddd;
  }
  .navv .dropdown.show {
    display: block;
  }
}
