@import url("http://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700");

/* Header */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 55px;
    z-index: 100;
    background: rgba(7, 7, 48, 0);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.header:after, .header:before {
    clear: both;
}

.header.header_bg {
    background: #070730;
}

.header .logo {
    display: block;
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
}

.header .logo img {
    width: 28px;
}

.header .btn_menu {
    position: absolute;
    top: 20px;
    left: 5%;
    cursor: pointer;
}

.header .btn_menu > img {
    width: 20px;
}

.header .side_screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: none;
}

.header .side_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 130%;
    background: #070730;
    z-index: 900;
    overflow: hidden;
}

.header .side_menu .gnb {
    position: absolute;
    width: 80%;
    top: 13%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.tab_location {
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.header .side_menu .gnb .nav_item .nav_link {
    position: relative;
    display: block;
    padding: 15px 0;
    font-size: 13px;
    color: #ffffff;
}

.header .side_menu .gnb li:nth-child(5) .nav_link {
    padding: 15px 0 10px;
}

.header .side_menu .gnb .nav_item .nav_link:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    opacity: 0.5;
}

.header .side_menu .gnb li:nth-child(5) .nav_link:after {
    content: none;
}

.dropdown-content {
    padding-top: 5px;
    width: 100%;
    height: 50px;
}

.dropdown-content a {
    display: block;
    padding-left: 13px;
    width: 100%;
    height: 25px;
    text-decoration: none;
    color: white;
    font-size: 11px;
}

.dropdown-content a:hover {
    color: white;
}

.header .side_menu .gnb .select_lang {
    width: 100%;
    margin-top: 35px;
    font-size: 0;
}

.header .side_menu .gnb .select_lang .btn_lang {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    font-size: 14px;
    color: #ffffff;
}

.header .side_menu .gnb .select_lang .btn_lang:last-child:after {
    background-color: transparent;
}

.header .side_menu .gnb .select_lang .btn_lang:after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    background: #ffffff;
}

.header .side_menu .gnb .select_lang .btn_lang.is-active {
    color: #f06262 !important;
}

.header .side_menu .btn_close {
    position: absolute;
    top: 20px;
    left: 5%;
}

.header .side_menu .btn_close img {
    width: 20px;
}

html.is_side_open .side_menu {
    display: block !important;
}

html.is_side_open .side_screen {
    display: block !important;
}

.sub_nav {
    margin-top: 55px;
    width: 100%;
    height: 50px;
    background: white;
}

.sub_box {
    height: 50px;
}

.empty_bar {
    height: 9px;
    background-color: #efefef;
}

.sub_nav .sub_box li {
    float: left;
    margin-top: 17px;
    width: 50%;
    text-align: center;
    font-family: Roboto;
    font-size: 12pt;
    font-weight: 400;
}

.sub_nav .sub_box li a {
    color: #6e6e6e;
}

.sub_nav .sub_box li:first-child a {
    display: block;
    width: 100%;
    border-right: 1px solid #cecece;
}

.sub_nav .sub_box .active a {
    font-weight: bold;
    letter-spacing: 0.9px;
    color: #070730;
}

#news_wrapper {
    clear: both;
}