/* CSS Document */

/* ADVERTISING BANEER */
input[id="close-nanner"] {
    display: none;
}
input[id="close-nanner"]:checked ~ .advertising-banner {
    display: none;
}
.advertising-banner {
    position: relative;
    display: block;
    width: 1920px;
    height: 160px;
    margin: 0px auto;
}
.advertising-banner > label {
    position: absolute;
    top: 20px;
    right: 60px;
    cursor: pointer;
}

/* header */
.header {
    width: 1920px;
    height: 105px;
    margin: 0px auto;
}

.navbar {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 28px 45px 0px;
}
.logo {
    padding-right: 82px;
}
.navbar > ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}
.navbar > ul > li > a {
    text-decoration: none;
    font-family: '굴림', Gulim, Arial, sans-serif;
	color: #2a2a2a;
	font-size: 0.88em;
	font-weight: 400;
	line-height: 1.429;
}
.navbar > ul > li:not(:last-child) > a {
	margin-right: 54px;
}
.header-current-language {
    position: absolute;
    right: 163px;
    width: 45px;
    height: 12px;
    line-height: 12px;
    text-decoration: none;
    text-align: center;
    font-family: '굴림', Gulim, Arial, sans-serif;
	color: #2a2a2a;
	font-size: 0.88em;
	font-weight: 400;
}
.header-current-language:hover::after {
    content: url("/front2/assets/img-pc/hub/lang-hover.png");
    margin-left: 8px;
}
#change-language {
    position: absolute;
    bottom: -10px;
    transform: translateY(100%);
    width: 45px;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border: 1px solid #000000;
	border-radius: 3px;
    background-color: rgba(255,255,255,0.9);
    z-index: 100000;
}
.header-current-language:hover > #change-language {
    display: flex;
}
#change-language > .change-language {
    width: 45px;
    line-height: 32px;
    text-align: center;
    text-decoration: none;        
    font-family: 'Hind', sans-serif;
    color: #000000;
	font-size: 0.81em;
    font-weight: 600; 
    box-sizing: border-box;
}
#change-language > .change-language:not(:last-child) {
    border-bottom: 1px solid #000000;
}
#change-language > .change-language:hover {
    color: #41748f;
}