@import url(http://fonts.googleapis.com/css?family=Share:400,700&subset=latin,latin-ext);

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
    font: 0.75em/1.5 sans-serif;
}

/**
 * Tabs object.
 *
 * 1. Tables (kinda) for layout!
 * 2. This is the magic bit; make all children occupy equal width.
 * 3. Required to make the tabs fill their container.
 * 4. Make each tab pack up horizontally.
 * 5. Ensure the hit area covers the whole tab.
 */

.tabs {
    margin:  0;
    padding: 0;
    list-style: none;
    display: table; /* [1] */
    table-layout: fixed; /* [2] */
}

ul.tabs >li >a{

	display: block;
	padding: 0.75em 1em;
    color: #fff;
    text-decoration: none;
    /* border-right: 1px solid #000; */
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.70em;
    text-transform: uppercase;
    letter-spacing: -1px;
	line-height: 50px;
}


ul.tabs ul{
	position: relative;
	/*width: 200px;*/
	background-color: #000000b3;
	visibility: hidden;
	opacity: 0;
	transition: 250ms all;
	padding-top: 5px;
    padding-left: 5px;
    padding-bottom: 10px;
}

ul.tabs ul li a{
	display: block;
	padding: 0.75em 1em;
    color: #fff;
    text-decoration: none;
    /* border-right: 1px solid #000; */
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.30em;
    text-transform: uppercase;
    letter-spacing: -1px;
	line-height: 5px;

}
ul.tabs ul li a:hover{
	opacity: 0.8
}

ul.tabs >li:hover ul{
	visibility: visible;
	opacity: 100
}




 .logo{width:319px;
	float:left;
	margin-top:6px
  }
  .logo2{width:75%;
  margin:auto;
  height:1px;
  visibility:hidden
  }
  .logo2 img{
	  width:100%}
    .tabs__item {
        width: 100%;
        
		float: left;

    width: auto;
    margin-top: 58px;
		
    }
	
/*@media screen and (min-width: 40em){
	
.tabs__item {
    display: table-cell;
    width: auto;
}

        .tabs__link {


/**
 * Primary nav. Extends `.tabs`.
 *
 * 1. Stop tabs’ corners leaking out beyond our 4px round.
 */
.primary-nav {
    text-align: center;
    border-radius: 0;
    overflow: hidden; /* [1] */
	margin:auto
}

        .primary-nav a {
             padding: 0.75em 1em;
				color: #fff;
				text-decoration: none;
				/* border-right: 1px solid #000; */
				font-family: 'Open Sans', sans-serif;
				font-weight: 600;
			
				font-size: 1.70em;
    text-transform: uppercase;
    letter-spacing: -1px;
        }

        .primary-nav a:hover {
            color:#000;
            
        }

/* Responsive-nav.js */

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: 9999px;
}

.disable-pointer-events {
  pointer-events: none !important;
}

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

@media screen and (min-width: 40em) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
}

.nav-collapse {
    list-style: none;
    max-width: 1200px;
	width:100%;
    /* float: left; */
    margin: auto;
}

.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-toggle {
  position: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  text-indent: -999px;
  position: relative;
  overflow: hidden;
  width: 70px;
  height: 55px;
  float: right;
}

.nav-toggle:before {
  color: #f8d800; /* Edit this to change the icon color */
  font-family: "responsivenav", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 28px;
  text-transform: none;
  position: absolute;
  content: "≡";
  text-indent: 0;
  text-align: center;
  line-height: 55px;
  speak: none;
  width: 100%;
  top: 0;
  left: 0;
}

.nav-toggle.active::before {
  font-size: 24px;
  content:"x";
}