@charset "UTF-8";
@font-face {font-family: 'GongGothicMedium'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/GongGothicMedium.woff') format('woff'); font-style: normal;}
@font-face {font-family: 'InkLipquid'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/InkLipquid.woff') format('woff'); font-weight: normal; font-style: normal;}

/* font-family: 'NanumSquareLight'; */
/* font-family: 'NanumSquare'; */
/* font-family: 'NanumSquareBold'; */
/* font-family: 'NanumSquareExtraBold'; */
/* font-family: 'NanumSquareAcb'; */
/* font-family: 'NanumSquareAceb'; */
/* font-family: 'NanumSquareAcl'; */
/* font-family: 'NanumSquareAcr'; */

html,body{width: 100%; height: 100%; padding: 0; margin: 0;}

body.scrollDisable{position: fixed; width: 100%; height: 100%; min-height: 100%; overflow: hidden !important; touch-action: none;}
body.scrollBlock{width: 100%; height: 100%; min-height: 100%; overflow: hidden !important;}
body.scrollBlock::webkit-scrollbar{width: 0;}


@keyframes spin {
	to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

:root{
	--color1: #1BA3DA;
	--color2: #034B8C;
	--color3: #000000;
	--color4: #3A3A3A;
	--color5: #636363;
	--color6: #8E8E8E;
	--color7: #FFFFFF;
	
	--green: #00C73C;
	--yellow: #FFC822;
	--blue: #034B89;
}

*{box-sizing: border-box; font-family: 'NanumSquareAcr';}
ul{list-style: none; padding: 0; margin: 0;}
.mobile{display: none;}

br.mobile{display: none;}

.modal{display: none; position: fixed; left: 0; top: 0; z-index: 9999; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 20px; background-color: rgba(0,0,0,0.2);}
.modal > .inner{padding: 20px; border-radius: 20px; background-color: white;}
.modal > .inner > .title-wrap{display: flex; flex-direction: row; align-items: center; }
.modal > .inner > .title-wrap > .title{width: calc(100% - 30px);}
.modal > .inner > .title-wrap > .exit-wrap{width: 30px;}
.modal > .inner > .title-wrap > .exit-wrap > .exit{position: relative; width: 30px; height: 30px; border: none; padding: 0; margin: 0;}
.modal > .inner > .title-wrap > .exit-wrap > .exit:hover{background-color: transparent;}
.modal > .inner > .title-wrap > .exit-wrap > .exit > span{position: absolute; width: 100%; height: 5px; border-radius: 5px; background-color: var(--color1); left: 50%; top: 50%;}
.modal > .inner > .title-wrap > .exit-wrap > .exit > span:nth-child(1){transform: translate(-50%, -50%) rotate(45deg);}
.modal > .inner > .title-wrap > .exit-wrap > .exit > span:nth-child(2){transform: translate(-50%, -50%) rotate(-45deg);}
.modal > .inner > .content-wrap{padding-top: 20px;}

.modal.show{display: flex;}
#loading{z-index: 99999;}
#loading > .spinner{width: 50px; height: 50px; border: 3px solid var(--color1); border-radius: 50%; border-top-color: var(--color2); animation: spin 1s ease-in-out infinite; -webkit-animation: spin 1s ease-in-out infinite;}

#loginModal > .inner{width: 100%; max-width: 500px; background-image: url('/resources/images/bg2.png'); background-position: left top; background-size: 50%; background-repeat: no-repeat;}

.container{position: relative; width: 100%; max-width: 1320px; padding: 0 20px; margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 40px;}
.s1{grid-column-start: 1;}
.s2{grid-column-start: 2;}
.s3{grid-column-start: 3;}
.s4{grid-column-start: 4;}
.s5{grid-column-start: 5;}
.s6{grid-column-start: 6;}
.s7{grid-column-start: 7;}
.s8{grid-column-start: 8;}
.s9{grid-column-start: 9;}
.s10{grid-column-start: 10;}
.s11{grid-column-start: 11;}
.s12{grid-column-start: 12;}
.e2{grid-column-end: 2;}
.e3{grid-column-end: 3;}
.e4{grid-column-end: 4;}
.e5{grid-column-end: 5;}
.e6{grid-column-end: 6;}
.e7{grid-column-end: 7;}
.e8{grid-column-end: 8;}
.e9{grid-column-end: 9;}
.e10{grid-column-end: 10;}
.e11{grid-column-end: 11;}
.e12{grid-column-end: 12;}
.e13{grid-column-end: 13;}

.h1{font-size: 80px;}
.h2{font-size: 70px;}
.h3{font-size: 60px;}
.h4{font-size: 50px;}
.h5{font-size: 40px;}
.h6{font-size: 30px;}
.h7{font-size: 20px;}
.h8{font-size: 16px;}

.mask{mask-repeat: no-repeat; mask-position: center; mask-size: contain; -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;}
.txc{text-align: center;}
.txl{text-align: left;}
.txr{text-align: right;}

.tx-over{overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-break: break-all;}

button{background-color: transparent; padding: 0.5em; margin: 0; border-radius: 2em; border: 2px solid black; color: black;}
button.c1{border-color: var(--color1); color: var(--color1);}
button.c1:hover{color: white; background-color: var(--color1);}
button.c2{border-color: var(--color2); color: var(--color2);}
button.c2:hover{color: white; background-color: var(--color2);}
button.y{border-color: var(--yellow); color: var(--yellow);}
button.y:hover{color: white; background-color: var(--yellow);}
button.g{border-color: var(--green); color: var(--green);}
button.g:hover{color: white; background-color: var(--green);}
button.b{border-color: var(--blue); color: var(--blue);}
button.b:hover{color: white; background-color: var(--blue);}
button.r{border-color: red; color: red;}
button.r:hover{color: white; background-color: red;}

header{position: fixed; left: 0; top: 0; width: 100%; z-index: 999; background-color: transparent; padding: 20px 20px 0 20px; display: flex; flex-direction: row; align-items: flex-end; justify-content: space-between; transition: all ease .5s;}
header > .logo-wrap{display: block; padding-bottom: 20px;}
header > .logo-wrap > .logo{display: block; width: 171px; padding-top: calc(100% * 35 / 171); background-image: none; background-position: center; background-size: contain; background-repeat: no-repeat; background-color: var(--color7); mask-image: url('/resources/images/logo.png'); mask-repeat: no-repeat;  mask-position: center; mask-size: contain; -webkit-mask-image: url('/resources/images/logo.png'); -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;}
header > .nav{display: flex; flex-direction: row; gap: 50px;}
header > .nav > li > a{display: block; padding-bottom: 20px; border-bottom: 2px solid transparent; color: var(--color7); text-decoration: none; }
header > .nav > li > .sub-nav{display: none; position: fixed; left: 0; top: 75px; width: 100%; flex-direction: row; align-items: center; justify-content: center; gap: 50px; padding: 20px; background-color: transparent; box-shadow: inset 0 3px 3px 3px rgba(0,0,0,0.05);}
header > .nav > li > .sub-nav > li > a{text-decoration: none; color: var(--color7);}
header > .icons{display: flex; flex-direction: row; gap: 20px;}
header > .icons > li > a{display: block; padding-bottom: 20px;}
header > .icons .icon{display: block; width: 30px; height: 30px; background-position: center; background-size: contain; background-repeat: no-repeat; background-color: var(--color7); mask-repeat: no-repeat; mask-position: center; mask-size: contain; -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;}
header > .icons .icon.youtube{background-image: none; mask-image: url('/resources/images/icons/youtube.png'); -webkit-mask-image: url('/resources/images/icons/youtube.png');}
header > .icons .icon.blog{background-image: none; mask-image: url('/resources/images/icons/blog.png'); -webkit-mask-image: url('/resources/images/icons/blog.png');}
header > .icons .icon.instar{background-image: none; mask-image: url('/resources/images/icons/instargram.png'); -webkit-mask-image: url('/resources/images/icons/instargram.png');}
header > .side-menu-wrap{display: none; width: 20px; padding-bottom: 20px;}
header > .side-menu-wrap > button{position: relative; width: 20px; height: 20px; border: none;}
header > .side-menu-wrap > button > span{position: absolute; width: 100%; height: 3px; border-radius: 4px; background-color: white; transition: all .5s ease;}
header > .side-menu-wrap > button > span:nth-child(1){left: 0; top: 0;}
header > .side-menu-wrap > button > span:nth-child(2){left: 0; top: 50%; transform: translateY(-50%);}
header > .side-menu-wrap > button > span:nth-child(3){left: 0; bottom: 0;}

header > .side-menu{display: none; position: fixed; right: 0; top: 64.55px; width: 100%; height: calc(100vh - 64.55px); background-color: white; overflow: auto; padding: 20px;}
header > .side-menu > .nav > li > a{display: block; border-bottom: 2px solid #F2F2F2; padding: 0.5em;}
header > .side-menu > .nav > li > .sub-nav{padding: 20px;}
header > .side-menu > .nav > li > .sub-nav > li{margin-bottom: 20px;}
header > .side-menu > .nav > li > .sub-nav > li > a{text-decoration: none; color: var(--color3);}

header.scroll{background-color: white; box-shadow: 0 3px 3px 3px rgba(0,0,0,0.05);}
header.scroll > .logo-wrap > .logo{background-color: transparent; background-image: url('/resources/images/logo.png');}
header.scroll > .nav > li > a{color: var(--color3);}
header.scroll > .nav > li > .sub-nav{background-color: var(--color7);}
header.scroll > .nav > li > .sub-nav > li > a{color: var(--color3);}
header.scroll > .icons .icon{background-color: transparent;}
header.scroll > .icons .icon.youtube{background-image: url('/resources/images/icons/youtube.png');}
header.scroll > .icons .icon.blog{background-image: url('/resources/images/icons/blog.png');}
header.scroll > .icons .icon.instar{background-image: url('/resources/images/icons/instargram.png');}
header.scroll > .side-menu-wrap > button > span{background-color: var(--color1);}
header.fixed{background-color: white; box-shadow: 0 3px 3px 3px rgba(0,0,0,0.05);}
header.fixed > .logo-wrap > .logo{background-color: transparent; background-image: url('/resources/images/logo.png');}
header.fixed > .nav > li > a{color: var(--color3);}
header.fixed > .nav > li > .sub-nav{background-color: var(--color7);}
header.fixed > .nav > li > .sub-nav > li > a{color: var(--color3);}
header.fixed > .icons .icon{background-color: transparent;}
header.fixed > .icons .icon.youtube{background-image: url('/resources/images/icons/youtube.png');}
header.fixed > .icons .icon.blog{background-image: url('/resources/images/icons/blog.png');}
header.fixed > .icons .icon.instar{background-image: url('/resources/images/icons/instargram.png');}
header.fixed > .side-menu-wrap > button > span{background-color: var(--color1);}

header > .nav > li > a.active{border-bottom: 2px solid var(--color1); color: var(--color1);}
header > .nav > li.active > a{border-bottom: 2px solid var(--color1); color: var(--color1); cursor: pointer;}
header > .nav > li.active > .sub-nav{display: flex; z-index: -1;}
header > .nav > li:hover > a{border-bottom: 2px solid var(--color1); color: var(--color1); cursor: pointer;}
header > .nav > li:hover > .sub-nav{display: flex;}
header > .nav > li > .sub-nav > li > a:hover{color: var(--color2)}
header > .nav > li > .sub-nav > li > a.active{color: var(--color2);}
header > .side-menu > .nav > li > .sub-nav > li > a:hover{color: var(--color1);}
header > .side-menu > .nav > li > .sub-nav > li > a.active{color: var(--color1);}

footer{width: 100%; background-color: var(--color3); padding: 50px 0;}
footer .logo-wrap{margin-bottom: 50px;}
footer .logo-wrap > .logo{display: block; width: 214px; height: 44px; background-image: none; background-position: center; background-size: contain; background-repeat: no-repeat; background-color: var(--color7); mask-image: url('/resources/images/logo.png'); mask-repeat: no-repeat;  mask-position: center; mask-size: contain; -webkit-mask-image: url('/resources/images/logo.png'); -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;}
footer .info-list > li{display: inline-flex; color: var(--color6); margin-right: 30px; margin-bottom: 0.5em;}
footer .info-list > li > strong{color: var(--color7); margin-right: 1em;}
footer .info-list > li > strong > a{color: var(--color7);}
footer .info-list > li.br{display: block;}
footer .copyright{color: var(--color6); margin-top: 50px;}

#go-top{position: fixed; display: flex; flex-direction: row; align-items: center; justify-content: center; right: 20px; bottom: 20px; width: 50px; height: 50px; border-radius: 50%; z-index: 998; background-color: var(--color1); border: 2px solid var(--color1);}
#go-top > .mask{display: block; width: 50%; height: 50%; mask-image: url('/resources/images/icons/arrow1.png'); -webkit-mask-image: url('/resources/images/icons/arrow1.png'); background-color: white; transform: rotate(-90deg);}

#root{position: relative; width: 100%; min-height: 100%; display: flex; flex-direction: column; justify-content: space-between;}

@media(max-width: 1200px){
	br.mobile.br1{display: block !important;}
	
	header > .logo-wrap > .logo{width: 120px;}
	
	.mobile{display: block;}
	.container{gap: 0 20px;}
	header > .nav{display: none;}
	header > .icons{display: none;}
	header > .icons .icon{width: 20px; height: 20px;}
	header > .side-menu-wrap{display: block;}
	
	header.showSide{background: linear-gradient(to right, var(--color1), var(--color2));}
	header.showSide > .logo-wrap > .logo{background-color: white; background-image: none !important;}
	header.showSide > .icons{display: flex;}
	header.showSide > .icons .icon{background-color: white; background-image: none !important;}
	header.showSide > .side-menu-wrap > button > span{background-color: white;}
	header.showSide > .side-menu-wrap > button > span:nth-child(1){left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(45deg);}
	header.showSide > .side-menu-wrap > button > span:nth-child(2){display: none;}
	header.showSide > .side-menu-wrap > button > span:nth-child(3){left: 50%; bottom: 50%; transform: translate(-50%, 50%) rotate(-45deg);}
	header.showSide > .side-menu{display: block;}
}

@media(max-width: 700px){
	br.mobile.br1{display: none !important;}
	br.mobile.br2{display: block !important;}
	
	footer .info-list > li:nth-child(4){flex-direction: column;}
	footer .info-list > li:nth-child(4) > strong{margin-right: 0; margin-bottom: 1em;}
	footer .info-list > li:nth-child(5){flex-direction: column;}
	footer .info-list > li:nth-child(5) > strong{margin-right: 0; margin-bottom: 1em;}
}