.navigation .nav-logo { display:block; width:160px; height:38px; background:url("/kor/img/logo.png") center center no-repeat; background-size:100%; margin:25px 0;}

/* CORE STYLES */
.navigation {
  width: 100%;
  display: table;
  position:absolute;
  top:80px;
  background: rgba(0,0,0,0);
  padding:0;
  z-index: 9999;
  -webkit-transition: 0.5s; -moz-transition: 0.5s; transition: 0.5s;
}

.navigation * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.navigation-hidden {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-header {
  float: left;
}

.navigation-hidden .nav-header {
  display: none;
}

.navigation-portrait .nav-menus-wrapper {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display:none;
  position: fixed;
  background:#850010 url("/kor/img/logo.png") center top 40px no-repeat; background-size:250px;
  z-index: 99999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  display:block;
}

.nav-menus-wrapper-close-button {
  width: 48px;
  height: 48px;
  margin: 20px 0;
  display: none;
  float: right;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  text-align:center;
  line-height:50px;
}

.navigation-portrait .nav-menus-wrapper-close-button {
  display: block;
}

.nav-menu {
  padding: 0;
  list-style: none;
  line-height: normal;
  font-size: 0;
  text-align:center;
}

.navigation-portrait .nav-menu {
  width: 100%;
}

.navigation-landscape .nav-menu.nav-menu-centered {
  float: none;
  text-align: center;
}

.navigation-landscape .nav-menu.nav-menu-centered > li {
  float: none;
}

.nav-menu > li {
  display: inline-block;
  text-align: center;
  position:relative;
  margin-top:5px;
  margin-left:40px;
}

.navigation-portrait .nav-menu > li {
  width: 100%;
  position: relative;
}

.nav-menu + .nav-menu > li:first-child {
  border-top: none;
}

.nav-menu > li > a {
  padding: 25px 0;
  display: inline-block;
  text-decoration: none;
  font-size: 20px;
  font-weight:bold;
  color: #fff;
  text-shadow:rgba(0,0,0,0.5) 0 0 3px;
  text-transform: uppercase;
}

.navigation-portrait .nav-menu > li > a {
  width: 100%;
  height: auto;
  padding: 20px 15px;
}

.nav-menu > li:hover > a {
  color:#e40421;
  text-shadow:none;
}

.submenu-indicator {
  margin-left: 6px;
  margin-top: 6px;
  float: right;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navigation-portrait .submenu-indicator {
  width: 54px;
  height: 44px;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 20000;
}

.submenu-indicator-chevron {
  height: 6px;
  width: 6px;
  display: block;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #70798b #70798b transparent;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

.navigation-portrait .submenu-indicator-chevron {
  position: absolute;
  top: 18px;
  left: 24px;
}

.nav-menu > li:hover > a .submenu-indicator-chevron,
.nav-menu > .active > a .submenu-indicator-chevron,
.nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #967ADC #967ADC transparent;
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.nav-overlay-panel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 19999;
}

.no-scroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* NAVIGATION TEXT */
.nav-text {
  margin: 25px 15px;
  display: inline-block;
  color: #70798b;
  font-size: 14px;
}

.navigation-portrait .nav-text {
  width: calc(100% - 52px);
  margin: 12px 26px 0;
}

.navigation-portrait .nav-text + ul {
  margin-top: 15px;
}

/* DROPDOWN EXTENSION */
.nav-dropdown {
  width: 240px;
  left:50%;
  top:70px;
  margin-left:-120px;
  padding: 15px 10px;
  display: none;
  position: absolute;
  list-style: none;
  white-space: nowrap;
  background:#fff;
  border:#ccc solid 1px;
  border-radius:10px;
}
.navigation-portrait .nav-dropdown {
  width: 100%;
  position: static;
  left: 0;
}
.nav-dropdown > li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align: center;
}
.nav-dropdown > li > a {
  width: 100%;
  padding: 3px 10px;
  display: inline-block;
  text-decoration: none;
  float: left;
  font-size: 15px;
  color: #555;
}

.nav-dropdown .nav-dropdown {
  min-width: 120px;
  padding: 10px 10px;
  display: none;
  position: absolute;
  list-style: none;
  white-space: nowrap;
  background:#000;
  border:#444 solid 1px;
  left: 100%;
  top:-10px;
}
.navigation-portrait .nav-dropdown .nav-dropdown {
  width: 100%;
  position: static;
  left: 0;
}
.nav-dropdown .nav-dropdown > li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align:left;
}
.nav-dropdown .nav-dropdown > li > a {
  width: 100%;
  padding: 10px 10px;
  display: inline-block;
  text-decoration: none;
  float: left;
  font-size: 13px;
  color: #ddd;
}



.nav-dropdown .submenu-indicator {
  right: 15px;
  top: 16px;
  position: absolute;
}
/* HORIZONTAL DROPDOWN EXTENSION */
.nav-dropdown-horizontal {
  width: 100%;
  left: 0;
  background-color: #fdfdfd;
  border-top: solid 1px #f0f0f0;
}

.nav-dropdown-horizontal .nav-dropdown-horizontal {
  width: 100%;
  top: 100%;
  left: 0;
}

.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
  border-top: none;
}

.nav-dropdown-horizontal > li {
  width: auto;
  clear: none;
  position: static;
}

.navigation-portrait .nav-dropdown-horizontal > li {
  width: 100%;
}

.nav-dropdown-horizontal > li > a {
  position: relative;
}

.nav-dropdown-horizontal .submenu-indicator {
  height: 18px;
  top: 11px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
  height: 42px;
  top: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/* MEGAMENU EXTENSION */
.megamenu-panel {
  min-width:120px;
  padding: 5px 20px;
  display: none;
  position: absolute;
  z-index: 98;
  text-align: left;
  border: solid 1px #444;
  background:#000;
  left:100%;
}
.megamenu-panel a {
  font-size: 13px;
  color:#ccc;
  margin:10px 0;
  display:block;
}
.navigation-portrait .megamenu-panel {
  padding: 5px 20px;
  position: static;
  display: block;
}

/* MEGAMENU LIST */
.megamenu-lists {
  width: 100%;
  display: table;
}

/* The list */
.megamenu-list {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  display: inline-block;
  float: left;
  list-style: none;
}

.megamenu-list:last-child {
  margin: 0;
  border: none;
}

.navigation-landscape .megamenu-list {
  margin: -15px 0;
  padding: 20px 0;
  border-right: solid 1px #f0f0f0;
}

.navigation-landscape .megamenu-list:last-child {
  border: none;
}

.megamenu-list > li > a {
  width: 100%;
  padding: 10px 15px;
  display: inline-block;
  color: #70798b;
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.megamenu-list > li > a:hover {
  color: #fff;
  background-color: #967ADC;
}

.megamenu-list > li.megamenu-list-title > a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
  color: #70798b;
}

.megamenu-list > li.megamenu-list-title > a:hover {
  opacity: 1;
  background-color: transparent;
}

ul.nav-menu li span.submenu-indicator { display:none; }

.nav-toggle span { display:none;}

@media (max-width:991px) {
	.nav-menu { margin:0;}
	
	.navigation-portrait .nav-menu > li > a { padding:0; margin-top:20px;}
	.nav-dropdown { width:100%; padding:0; margin:0; border:none;}
	.nav-dropdown > li { text-align:center;}
	.nav-dropdown > li > a {background: #850010; color:rgba(255,255,255,0.75); font-size:22px; padding-top:10px;}
	
	.nav-menu > li {margin-top:0; margin-left:0; padding:5px 0;}
	.nav-menu > li:first-child {margin-top:80px;}
	.nav-menu > li > a { font-family: 'NanumSquareNeoHeavy'; font-size:30px; color:#fff; width:auto !important; background:center bottom repeat-x;}
	.nav-menu > li:hover > a {color:#fff; background:url("/kor/img/sub/hover_bg.jpg") center bottom repeat-x;}
	
	.modal-dialog { right:30px;}

	.nav-toggle {
		width: 30px;
		height: 30px;
		padding: 6px 2px 0;
		position: absolute;
		top: 25px;
		left: 50%;
		margin-left:-70px;
		display: none;
		cursor: pointer;
	}

	.nav-toggle:before {
		content: "";
		position: absolute;
		width: 24px;
		height: 2px;
		background-color: #fff;
		border-radius: 10px;
		box-shadow: 0 0.5em 0 0 #fff, 0 1em 0 0 #fff;
	}
	.nav-toggle span { font-size:16px; font-weight:bold; color:#fff; display:block; width:150px; margin-top:-15px; margin-left:-5px; padding:10px 10px 10px 55px; border-radius:5px; background:#e40421;}

	.navigation-portrait .nav-toggle {
		display: block;
	}
}