*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.fixednavcontainer {
  min-height: 0px;
}

.fixednavbar {
  position: absolute;
  top: 0px;
  height: 91px;
  width: 100%;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 1px 7px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 1px 7px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 1px 7px rgba(0, 0, 0, 0.4);
}

.fixednav {
  margin: 15px auto;
  padding-right: 10px;
  max-width: ;
  height: 70px;
  text-align: right;
}

.fixednav li {
  margin-top: 20px;
  display: inline-block;
}

.fixednav li a {
  padding: 36px 25px;
  color: white;
  text-decoration: none;
  font-family: 'Nanum Gothic',monospace;
}

.fixednav li a:hover {
  background: white;
  color: black;
  box-shadow: inset 0px 3px #000;
}

.nav-icon {
  display: none;
}

#logo {
    height: 95px;
    float: left;
    z-index: 99;
    position: relative;
    margin-left: 20px;
    transition: All 0.7s ease;
    -moz-transition: All 0.7s ease;
    -o-transition: All 0.7s ease;
}

#logo:hover {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

@media screen and (max-width: 1200px) {
  #togglemenu {
  display: none;
  }

  .nav-icon-position {
    position: absolute;
    top: 18px;
    right: 20px;
    margin-top: 20px;
    float: right;
  }

  .nav-icon {
    display: block;
    background: 0;
    border: 1px solid #bdbdbd;
    height: 36px;
    width: 40px;
    border-radius: 4px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    outline: none;
  }

  .nav-icon:hover {
    background: #ececec;
    border: none;
    border: 1px solid #bdbdbd;
  }

  .nav-icon span.icon-line {
    background: red;
	-webkit-transition: all .5s;
	        transition: all .5s;
  }

  .icon-line {
    display: block;
    background: #bdbdbd;
    height: 3px;
    width: 24px;
    margin: 4px auto;
  }

  .fixednavbar {
      height: 72px;
  }

  .fixednav {
    position: relative;
    top: 0px;
    padding: 0;
    width: 85%;
    text-align: left;
  }

  .fixednav li {
    background: none;
    display: block;
    margin: 0;
    padding: 15px;
    border-bottom: 1px solid #d7d7d7;
  }

  .fixednav li:hover {
    background: #f7f7f7;
  }

  .fixednav li a {
    padding: 0px;
    color: white;
    display: block;
  }

  .fixednav li a:hover {
    color: black;
    background: none;
    width: 100%;
  }
  
  .open-menu ~ nav {
	opacity: 1;
 	padding: 0px 0;
	z-index: 15;
	height: 100%;
  }
  
  .open-menu span:nth-child(1) {
	top: 25px;
	margin: -1px auto;
	-webkit-transform: rotateZ(45deg);
	        transform: rotateZ(45deg);
  }

  .open-menu span:nth-child(2) {
	background: transparent;
  }

  .open-menu span:nth-child(3) {
	top: 25px;
	margin: -13px auto;
	-webkit-transform: rotateZ(-45deg);
	        transform: rotateZ(-45deg);
  }
  
  nav {
 	height: 0;
	opacity: 0;
    box-sizing: border-box;
	background: rgba(0, 47, 77, .35);
	position: fixed;
	top: 70px;
	width: 100%;
    -webkit-transition: all 3s;
            transition: all 3s;
  }
  
  #logo {
    margin: 10px;
    height: 55px;
  }
}