
.header.home .burger{display:none;}
 .main.home .intro  .burger{display:none;}
   
.header.inner .burger {
  position: absolute;
  top:20px;
  left:0;
  /*margin-top: 20px;*/
  /*margin: 28px auto 15px auto;*/
  margin: 0 0 0 ;
  /*display: inline-block;*/
  display: block;
  /*float:left;*/
  width: 45px;
  height: 35px;
  /*background-color: rgba(0, 0, 0, 0.1);*/
  /*background-color: rgba(42, 110, 153, 0.9);
  border-top: 1px solid rgba(42, 110, 153, 0.9);
  border-left: 1px solid rgba(42, 110, 153, 0.9);*/
  border-radius: 20px;
  padding: 4px 0;
  -webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  z-inex:99999;
}
.burger:hover {
  /*background-color: #5289c6;*/
}

.header.inner .burger{
  width: 45px;
}

.header.inner .burger.expand {
  margin-top: 0;
  padding: 65px 0 0;
  width: 100%;
  border-radius: 0;
  background-color: #483d55;
    z-inex:999999;
 height: 150px;
}

.bun {
  display: block;
  position: absolute;
  height: 6px;
  width: 30px;
  left:15%;
  top: 8px;
  /*margin-left: -15px;*/
  border-radius: 10px;
  box-sizing: content-box;
  -webkit-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.15);
  background-color: #eee;
  -webkit-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.bun:nth-child(3) {
  top: 28px;
}
.bun:nth-child(2) {
  top: 18px;
}

.expand .bun {
  width: 40px;
  margin-left: -20px;
}
.expand .bun:first-child {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 30px;
}
.expand .bun:nth-child(3) {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: -1px 0px 0px 0px rgba(0, 0, 0, 0.15);
  top: 30px;
}
.expand .bun:nth-child(2) {
  opacity: 0;
  top: 30px;
}

.burger nav {
  display: none;
  text-align: center;
  position: absolute;
  width: 100%;
  /*bottom: 35px;*/
    bottom: 10px;
}

.burger ul {
  font-size: 1.1em;
  font-family: 'Montserrat', sans-serif;
  list-style-type: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
}
.burger ul li {
  color: white;
  display: block;
  margin: 0 20px 0 20px;
  /*padding:0 0 10px 0;*/
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  line-height:1.5em;
}
.burger ul li.mobile_hide {
  display: none;}
  
.burger ul li:hover {
  cursor: pointer;
  color: #ccdff4;
}

.burger ul li a{
	transition: all 200ms ease;
  color: white;
  }
.burger ul li a:hover {
color: white;
/*text-decoration:underline;*/
}
