
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
 padding:3px 0;
     background:#FFF;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,.05);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.05);
  /*background: #fff;
      -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.10);
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.10);*/
  z-index: 3;
  will-change: transform;
  transition: background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

header nav .logo {
  float: left;
  color: black;
}

header nav .logo:after {
  content: '';
  display: table;
  clear: both;
}

header nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

header nav ul li {
  float: none;
  margin-left: 0;
}
@media (min-width: 768px) {

header nav ul li {
  float: left;
  margin-left: 0;
}
}

header nav ul li a { display: block; }
@media (min-width: 576px) {

header nav ul li a { display: block;  padding:10px 20px;
}
}
 @media (max-width: 768px) {

ul { clear: both; }

ul li { padding: .5em 0; }
}

.hide-nav {
 transform: translateY(-120% !important); -webkit-transform: translateY(-120%) !important; }

ul.menu-left {
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: 10;
}
@media (min-width: 768px) {

ul.menu-left {
  display: block !important;
  float: right;
  max-height: none;
}
}

ul.menu-left:before {
  content: '';
  display: table;
  clear: both;
}

ul.menu-left.collapse { max-height:100% !important; }

.nav-toggle {
  display: block;
  border-radius: 5px;
  background-color: transparent;
  float: right;
  height:28px;
  width: 38px;
  cursor: pointer;
  padding:15px 8px;
}

.nav-toggle.open span:first-child { transform: rotate(45deg) translate(4.4px, 4.4px); }

.nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.nav-toggle.open span:last-child { transform: rotate(-45deg) translate(4.4px, -4.4px); }
@media (min-width: 768px) {

.nav-toggle { display: none; }
}

.nav-toggle span {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background-color: #000;
  transition: all .25s;
}






























.button {
	display:inline-block;
	text-align:center;
	vertical-align:middle;
	touch-action:manipulation;
	cursor:pointer;
	background-image:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	margin:15px;
	text-transform:uppercase;
}

.button:hover,
.button:focus,
.button.focus,
.button:active,
.button.active {
	text-decoration:none;
}

.button.button-green.button-large {
	background:#4bb32f url(../images/download.svg) no-repeat 0 0;
	background-position: 10px 50%;
	color:#fff
}

.button.button-green.button-large:hover,
.button.button-green.button-large:focus,
.button.button-green.button-large.focus,
.button.button-green.button-large:active,
.button.button-green.button-large.active { 
background:#399e2d url(../images/download.svg) no-repeat 0 0;
	background-position: 10px 50%;
	}


.button.button-blue.button-large {
	background:#2fa4fe url(../images/cart.svg) no-repeat 0 0;
	background-position: 10px 50%;
	color:#fff
}

.button.button-blue.button-large:hover,
.button.button-blue.button-large:focus,
.button.button-blue.button-large.focus,
.button.button-blue.button-large:active,
.button.button-blue.button-large.active {
	background:#249efc url(../images/cart.svg) no-repeat 0 0;
	background-position: 10px 50%;
	 }

.button.button-large {
    border-radius:6px;
    padding:20px 15px 20px 65px;
    min-width: 200px;
    font-size:20px;
}