/* font*/

/*@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Medium.otf') format('opentype');
    font-weight: 500; 
}
@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Regular.otf') format('opentype');
    font-weight: 400; 
}*/

@font-face {
    font-family: LGSmHa;
    font-weight: 300;
    src: url(../fonts/LGSmHaL.woff) format("woff")
}

@font-face {
    font-family: LGSmHa;
    font-weight: 400;
    src: url(../fonts/LGSmHaR.woff) format("woff")
}
@font-face {
    font-family: LGSmHa;
    font-weight: 500;
    src: url(../fonts/LGSmHaSB.woff) format("woff")
}

@font-face {
    font-family: LGSmHa;
    font-weight: 700;
    src: url(../fonts/LGSmHaB.woff) format("woff")
}


body{
	background-color: #f5f5fa;
	color:#2C3238;
	font-size:1rem;
	line-height: 1.25rem;
	font-weight:400;
	padding:0;
	margin:0;
	/*overflow:hidden;*/
}

* {
	transition: 0.22s ease-out;
	font-family: LGSmHa, NotoSansKR, 'Noto Sans KR','Noto Sans',sans-serif, Roboto, 'Helvetica Neue', 'Segoe UI',
	'Apple SD Gothic Neo', 'Malgun Gothic', 'Apple Color Emoji';
	box-sizing: content-box;
}

html,body,header,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,
del,dfn,em,img,ins,kbd,q,samp,small,strong,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,
label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,
figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{
	margin:0;
	padding:0;
	border:0;
	outline:0;
	vertical-align:baseline;
	/*background:transparent;*/
	 -webkit-box-sizing:border-box
	 -moz-box-sizing:border-box;
	 box-sizing:border-box 
}

::-webkit-scrollbar {
    width: 8px;  /* 스크롤바의 너비 */
}

::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #cbd4de; /* 스크롤바의 색상 */
    
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: #f6f7f9;;  /*스크롤바 뒷 배경 색상*/
}

*, dt, dd { 
	margin:0; padding:0; 
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box 
}
*:before,*:after { 
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

ul, li, ol, dl, dt, dd{
	list-style: none;
	list-style-position: inside;
	margin:0;
	padding:0;
}
em{
	color:E24750;
	font-style: normal;
}
h2{
	margin:0;
}
a{
	text-decoration: none;
	color:#2C3238;
}
iframe{
	width: 100%;
    height: 100%;
}
iframe::-webkit-scrollbar {
    width: 8px;  /* 스크롤바의 너비 */
}

iframe::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #cbd4de; /* 스크롤바의 색상 */
    
    border-radius: 10px;
}

iframe::-webkit-scrollbar-track {
    background: #f6f7f9;;  /*스크롤바 뒷 배경 색상*/
}
.mobile-only{
	display:none;
}
.arrow {
    position: relative;
}
.arrow::after {
    position: absolute;
    left: 0; 
    top: 0; 
    content: '';
    width: 100%; /* 사이즈 */
    height:100%; /* 사이즈 */
    border-top: 2px solid #fff; /* 선 두께 */
    border-right: 2px solid #fff; /* 선 두께 */
}
#wrap{
	display:flex;
	flex-direction: column;
    align-items: center;
}
section{
	position: relative;
	width:100%;
	height:100vh;
	min-height:660px;
	display:flex;
	justify-content: center;
}
.container {
	display:flex;
	flex: 1 1 1440px;
	align-items: center;
	justify-content: center;
	max-width:1440px;
	height:100%;
}
.container .content{
	display:flex;
	width:90%;
	height:80%;
	flex-direction: column;
    align-items: center;
	box-sizing: border-box;
	overflow: hidden;
	margin-top:-1rem;
}
.content > .pc-only{
	font-size: initial;
}
section  .container  .content .heading{
	width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
        transform: translate3d(0, 100%, 0);
	}
    to {
		opacity: 1;
		transform: translateZ(0);
	}
}
@keyframes fadeInUp2 {
	0% {
		opacity: 0;
        transform: translate3d(0, 30%, 0);
	}
    to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.content h2{
	display:flex;
	width: 100%;
    font-size: 3.25rem;
    font-weight: 500;
    padding-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    justify-content: center;
    align-items: center;
}
.content h2 + .sub-text{
	font-size: 1.25rem;
    line-height: 1.5em;
	text-align:center;
	word-break:keep-all;
	color:#424952;
}
#main{
	width:100%;
	height:100vh;
	display:flex;
	justify-content: center;
	background-color: #9EAAB6;
	background-image: url('../images/bg_main.png');
	background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center top;
}
#main  .container{
	position: relative;
	max-width:1440px;
	width:100%;
	height:100vh;
	padding-top:0;
	background-image: url('../images/img_hands.png');
    background-repeat: no-repeat;
    background-position: right bottom;;
	background-size: 50% auto;
}
#main .content{
	height:90%;
    align-items: unset;
	padding-top:0;
	margin-top:0;
}
#main .content .circles{
	position:absolute;
	top:100px;
	left:0;
	width:100%;
	height:calc(100% - 100px);
	overflow:hidden;
}
.circles .move{
	border-radius:50%;
	border:6px solid #fff;
	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
	transform: translatey(0px);
}
#main .content .circles .circle{
	opacity: 0; /* 투명하게 설정 */
    transition: opacity 1s ease-in-out;
}
#main .content .circles .circle.w1{
	position:absolute;
	top: 400px;
    right:120px;
	width:60px;
	height:60px;
	background-color:rgba(255,255,255,0.4);
	border-radius:50%;
	border:none;
	animation: float4 10s ease-in-out infinite;
}
#main .content .circles .circle.w2{
	position:absolute;
	top:460px;
	left:360px;
	width:140px;
	height:140px;
	background-color:rgba(255,255,255,0.2);
	border-radius:50%;
	border:none;
	animation: float4 8s ease-in-out infinite;
}
#main .content .circles .circle.one{
	position: absolute;
    top: 440px;
    left: 480px;
    width: 314px;
    height: 314px;
    border-radius: 50%;;
	background: #fc6b74 url('../images/circle01.png')no-repeat 50% 50%;
    animation: float1 4s ease-in-out infinite;
}
#main .content .circles .circle.two{
	position:absolute;
	top:500px;
	left:740px;
	width:100px;
	height:100px;
	background: #ffff32 url('../images/circle02.png')no-repeat 50% 50%;
	border-radius:50%;
	border:4px solid #fff;
	animation: float3 9s ease-in-out infinite;
}
#main .content .circles .circle.three{
	position: absolute;
    top: 420px;
    left: 100px;
    width: 80px;
    height: 80px;
    background: greenyellow url('../images/circle03.png')no-repeat 50% 50%;
    border-radius: 50%;
    border: 4px solid #fff;
    animation: float1 6s ease-in-out infinite;
}
#main .content .circles .circle.four{
	position: absolute;
    bottom: 160px;
    left: 260px;
    width: 120px;
    height: 120px;
    background: greenyellow url('../images/circle04.png')no-repeat 50% 50%;
    border-radius: 50%;
    border: 4px solid #fff;
    animation: float3 10s ease-in-out infinite;
}
#main .content .circles .circle.five{
	position: absolute;
    top: 40px;
    right:540px;
    width: 150px;
    height: 150px;
	background: greenyellow url('../images/circle05.png')no-repeat 50% 50%;
    border-radius: 50%;
    border: 4px solid #fff;
    animation: float1 6s ease-in-out infinite;
}
#main .content .circles .circle.six{
	position:absolute;
	top:100px;
	right:100px;
	width:200px;
	height:200px;
	background: #ffff32 url('../images/circle07.png')no-repeat 50% 50%;
	border-radius:50%;
	border:4px solid #fff;
	animation: float2 5s ease-in-out infinite;
}
#main .content .circles .circle.seven{
	position:absolute;
	top:100px;
	right:100px;
	width:200px;
	height:200px;
	background: #ffff32 url('../images/circle08.png')no-repeat 50% 50%;
	border-radius:50%;
	border:4px solid #fff;
	animation: float2 5s ease-in-out infinite;
	display:none;
}
@keyframes float1 {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.4);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.1);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.4);
		transform: translatey(0px);
	}
}
@keyframes float2 {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.4);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.1);
		transform : translate(10px, 20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.4);
		transform: translatey(0px);
	}
}
@keyframes float3 {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform : translate(10px, -30px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}
@keyframes float4 {
	0% {
		/*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
		transform: translatey(0px);
		animation-delay: 0.2s;
	}
	50% {
		/*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
		transform : translate(30px, 30px);
	}
	75% {
		/*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
		transform : translate(10px, 20px);
	}
	100% {
		/*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
		transform: translatey(0px);
	}
}
#main  .content header{	
	display:flex;
	height:5.6rem;
	padding:0 0 4rem;
}
#main  .content header .logo{
	height: 100%;
    background: url(../images/mTalk.svg) no-repeat left 50%;
    width: 140px;
    background-size: auto 100%;
}
#main .content header .nav{
	display: flex;
    gap: 2rem;	
	margin-left: auto;
}
#main .content header .nav a{
	font-size:1.125rem;
	color:#2C3238;
}
#main .content header .nav a:hover{
	color:#fff;
}
#main .content header .nav span{
	margin-left:50px;
}
#main .content .headline{
	max-width:40rem;
	font-family: LGSmHa;
	font-weight:500;
	position: relative;
    animation: fadeInUp 1.4s;
	background-image: ;
}

#main .content .headline .slogan-en{
	color:#ffffff;
	font-size:1.625rem;
}
#main .content .headline .slogan{
	font-size:4rem;
	line-height:1.4em;
	font-weight:500;
	margin:0;
	padding: 1.4rem 0 2rem 0;
	word-break:keep-all;
}
#main .content .headline p{
	width:90%;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6em;
    color: #555555;
    padding: 0;
    margin: 0;
	word-break:keep-all;
}
.section .down{    
	position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
	display:none;
}
#main .content .quick{
	z-index:20;
	position: fixed;
    top: 30%;
    right: 2rem;
    width: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
#main .content .quick:after{
	position:absolute;
	content:"";
	width:1px;
	height:100%;
	background-color:#dfdfdf;

}
#main .content .quick li{
	z-index:1;
}
#main .content .quick li a{
	display:block;
	text-indent:-10000;
	width:12px;
	height:12px;
	border-radius:50%;
	background-color:#dfdfdf;
}
#main .content .quick li a:hover,
#main .content .quick li a.active{
	border:1px solid #E24750;
	background-color:#E24750;
}
#download{
	display:flex;
    align-items: center;
	text-align: center;
	background-color: #ffffff;
}
#download .content h1{
	font-family: LGSmHa;
	font-size:50px;
	padding-top:70px;
	font-weight:700;
	line-height:1.4em;
	margin:0;
	padding:0;
	text-align:center;
}
#download h1+p{
	text-align:center;
}
#download ul.items{
	width:90%;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
	align-content: space-evenly;
    flex-wrap: wrap;
    gap: 1.5rem;
	padding: 0;
}
#download ul.items li{
	display:flex;
	height:60%;
	max-height: 100%;
	max-width: 50%;
    min-width: 140px;
    flex: 1 1 22%;
	flex-direction: column;
    align-items: center;
	border-radius:1rem;
	border:1px solid #eee;
	background-color:#fff;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;    
}
#download ul.items li:hover{
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
#download ul.items li.qr:hover{
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;   
}
#download ul.items li a{
	width:100%;
	height:100%;
	display: flex;
    flex-direction: column;
}
#download ul.items li.qr{
	padding:1.5rem;
}
ul.items li dl{
	display:flex;
	height: calc(100% - 4.5rem);
	flex:1 1 auto;
	flex-direction: column;
	align-items: center;
	text-align :center;
	justify-content: center;
	padding:1.5rem 0;
}
ul.items li dt{
	width:64px;
	height:64px;
	
}
ul.items li.windows dt{
	background: url(../images/icon_windows.svg) no-repeat 50% 50%;
	background-size:cover;
}
ul.items li.Android dt{
	width:70px;
	background: url(../images/icon_android.svg) no-repeat 50% 50%;
	background-size:cover;
}
ul.items li.ios dt{
	background: url(../images/icon_ios.svg) no-repeat 50% 50%;
	background-size:cover;
}

ul.items li .name{
	padding-top:1.5rem;
	font-weight:700;
	font-size:1.5rem;
}
ul.items li .version{
	padding-top:0.5;
	font-weight:400;
	font-size:1rem;
}
ul.items li span{
	display:flex;
	flex:0 0 4.5rem;
	width:100%;
	height:4.5rem;
	color:#ffffff;
	font-size:1.5rem;
	font-weight:500;
	background-color:#1B2025;
	bottom:0;
	border-radius: 0 0 1rem 1rem;
	align-items: center;
    justify-content: center;
}

ul.items li.qr div.qrcode{
	width:80%;
	height:calc(100% - 4rem);
	background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
	background-image:  url(../images/qrcode.svg) ;
}
ul.items li.qr div img{
	width:150px;
	height:150px;
	border:1px solid black;
}
ul.items li.qr div.discription{
	font-size:12px;
	font-family:NotoSansKR;
	font-weight:400;
	color:#E24750;
	padding-top:1.5rem;
	text-align:center;
	word-break: keep-all;
}
#download .btn-patch{
	text-align:center;
	padding: 2rem 0 0;
}
#download .btn-patch .install-guide{
	display:flex;
	gap:0.5rem;
}
#download .btn-patch .text-caution{
	padding-top:1rem;
	font-size:1rem;
}
#download .btn-patch .text-caution em{
	font-size: 1rem;
    text-align: center;
    /* justify-content: center; */
    display: inline-block;
}
#download .btn-patch a{
	display:inline-flex;
	align-items:center;
	height: 3.5rem;
    width: auto;
    font-size: 1.2rem;
    padding: 0 2rem;
    color: #E24750;
    border-radius: 50px;
    border: 1px solid #E24750;
    gap: 0.8rem;
	background-color:#ffffff;
	cursor: pointer;
}
#download .btn-patch a:hover{
	background-color:#E24750;;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; 
	color:#FFFFFF;
}
section h2{
	display: flex;
    flex: 0 0 100px;
	font-family:LGSmHa;
	font-weight:500;
	font-size:50px;
}
section em{
    display: flex;
    flex: 0 0 40px;
	align-items: center;
	font-family: LGSmHa;
    font-weight: 500;
    font-size: 1.5rem;
}
#intro{
	display:flex;
	flex-direction: column;
    align-items: center;
	background-color:#F3F7FC;
}
#intro .service{
	display:flex;
	flex: 1 1 auto;
	background:url('../images/img_service.png')no-repeat 50% 20%;
	background-size: 40% auto;
}
#intro h1{
	padding-bottom:10px;
}
#intro .service{
	width:100%;
	display:grid;
	/*padding:50px 0 80px;*/
	grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: 1fr 1fr 2fr;
	grid-template-areas: 
	"home - chat"
	"message - noti"
	"info info info";
}

#intro .service dl{
	font-family:NotoSansKR;
	font-size:1rem;
	font-weight:400;
	display: flex;
    flex-direction: column;
	gap:10px;
    width: 100%;
}
#intro .service dt{
	font-family:LGSmHa;
	font-weight:500;
	font-size:24px;
}
#intro .service dd{
	color:#56606B;
}
#intro .service dl:nth-child(odd){
	align-items:flex-end;
}
.home{
	grid-area: home;
	place-self:end end;
}
.chat{
	grid-area: chat;
	place-self:end start;
}
.message{
	grid-area: message;
	place-self:end end;
}
.noti{
	grid-area: noti;
	place-self:end start;
}
.info{
	grid-area:info;
	place-self:end center ;
	text-align:center;
	font-size:1.375rem;
	font-weight:500;
	line-height:1.6em;
	background-color:#F3F7FC;
	color:#424952;
    word-break: keep-all;
}
#window{
    text-align: center;
	background-color:#fffafa;;
}
#window h1 + div{
	line-height: 1.5em;
    text-align: center;
    font-size: 20px;
}
.slider-container{
	display:flex;
	flex:1 1 auto;

}
#window ul.slider{
	display:flex;
	flex:1 1 auto;
	justify-content: space-around;
	flex-wrap: wrap;
	width:100%;
	padding-top:7rem;
}
#window .slider li{
	flex: 1 1 auto;
	width: 25%;
	padding: 0 1rem;
}
#window .slider li dl{
	width:100%;
	height:100%;
	display: flex;
	flex-direction: column;    
    align-items: center;
	text-align:center;
}
#window .slider li dt{
	width:100%;
	flex:1 1 auto;
}
#window li.mybox  dt{
	background:url('../images/mobile_service01.png') no-repeat  50% top ;
	background-size:70% auto;
}
#window li.reservation dt{
	background:url('../images/mobile_service02.png') no-repeat  50% top ;
	background-size:70% auto;
}
#window li.organization dt {
	background:url('../images/mobile_service03.png') no-repeat  50% top ;
	background-size:70% auto;
}
#window li.notification dt{
	background:url('../images/mobile_service04.png') no-repeat  50% top ;
	background-size:70% auto;
}
#window li dd{
	padding-top:30px;
	width: 100%;
    flex: 0 0 10rem;
    background-color: #fffafa;;
}
#window li dd div:first-child{
	padding-bottom:1.6rem;
	font-size:1.5rem;
	font-weight:500;
}
#window li dd div + div{
    font-size: 1rem;
	line-height: 1.4em;
    font-weight: 400;
	word-break: keep-all;
	color: #56606B;
}
#channel{
	background-color: #ffffff;
}
#channel .img{
	width:100%;
	flex: 1 1 auto;
	background:url('../images/channel01_bg.png') no-repeat  50% bottom ;
	background-size: auto 100%;
}
#communication ul{
	width:100%;
	display:flex;
	flex:1 1 auto;
	justify-content: space-around;
	flex-wrap: wrap;
	padding-top:7rem;
}
#communication{
	background-color:#F5F9FD;
}
#communication ul li{
	display:flex;
	height: 100%;
    flex: 0 0 22%;
	flex-direction: column;
    align-items: center;
	border-radius:1rem;
	border:1px solid #eee;
	background-color:#fff;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;  
}
#communication ul dl{
	width:100%;
	height:100%;
	display: flex;
	flex-direction: column;    
    align-items: center;
	text-align:center;
    
	/*box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;*/
}
#communication ul dt{
	width:100%;
	flex: 1 1 auto;	
	background-size:cover !important;
}
#communication .search{
	background:url('../images/img_search.png') no-repeat  50% top ;
}
#communication .state{
	background:url('../images/img_state.png') no-repeat  50% top ;
}
#communication .translate{
	background:url('../images/img_translate.png') no-repeat  50% top ;
}
#communication .message{
	background:url('../images/img_message.png') no-repeat  50% top ;
}
#communication ul dd{
	width:100%;
	display: flex;
	flex: 0 0 30%;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	background-color:#363636;
	color: #E9EEF3;;
	font-size:0.938rem;
	word-break: keep-all;
	padding:1rem;
	gap:1rem;
	border-top: 1px solid rgb(255,255,255,0.4);
}
#communication ul dd div:first-child{
    color: #fff;    
	font-size:1.375rem;
}
#communication ul dd div:nth-child(2){
	font-size: 0.9375rem;
	color:rgba(255, 255, 255, 0.8)
}

#security{
	background-color:#fffafa;
}
#security ul{
	width:100%;
	display: flex;
    flex: 1 1 auto;
	justify-content: space-between;
	padding:7rem 1rem 0;
	gap: 5%;
}
#security ul li{
	position:relative;
	display:flex;
	height: 100%;
    flex: 1 1 auto;
	flex-direction: column;
    align-items: center;
	border-radius:1rem;
	border:1px solid #eee;
	background-color:#fff;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; 
	padding:3.75rem 1.5rem 2rem;
	word-break: keep-all;
}
#security ul li dl{
	width: 100%;
	height:100%;
	display:flex;
	flex-direction:column;
	gap:2rem;
}
#security ul li:nth-child(1){
	background-color:#9ACD5A 
}
#security ul li:nth-child(1) dl{
	background:url('../images/icon_server.svg') no-repeat  right bottom;
}
#security ul li:nth-child(2){
	background-color:#56C0C0;
}
#security ul li:nth-child(2) dl{
	background:url('../images/icon_security.svg') no-repeat  right bottom;
}
#security ul li:nth-child(3){
	background-color:#5EA1D1;
}
#security ul li:nth-child(3) dl{
	background:url('../images/icon_lock.svg') no-repeat  right bottom;
}
#security ul dt{
	font-size:1.75rem;
	font-weight:600;
	color:#fff;
	line-height:2.5rem;
	text-align:center;
}
#security ul dd{
	font-size:1.125rem;
	line-height:1.625rem;
	color:rgba(0, 0, 0, 0.60);
	text-align:center;
}
#admin{
	flex-direction: column;
	background-color:#ffffff; 
}
#admin .section-area{
	width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
#admin .container{
	flex: 1 1 auto;
}
#admin ul.detail{
	width:100%;
	display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    padding-top: 4rem;
	gap: 4%;
}
#admin ul.detail li{
	flex:0 0 30%;
	gap:5%;
	border: 1px solid rgb(0, 0, 0, 0.4);
}
#admin ul.detail .function{
	background: url(../images/img_function.png) no-repeat 20% bottom;
    background-size: auto 100%;
	border:none;
}
#admin ul.detail li:nth-child(2){
	background: url(../images/admin01.png) no-repeat left center;
    background-size: cover;
}
#admin ul.detail li:nth-child(3){
	background: url(../images/admin02.png) no-repeat left center;
    background-size: cover;
}
#admin ul.detail li:nth-child(4){
	background: url(../images/admin03.png) no-repeat left center;
    background-size: cover;
}
#admin ul.detail li:nth-child(5){
	background: url(../images/admin04.png) no-repeat left center;
    background-size: cover;
}
#admin ul.detail li:nth-child(6){
	background: url(../images/admin05.png) no-repeat left center;
    background-size: cover;
}
.footer {
	display: flex;
    justify-content: center;
	background-color:#2C3238;
	height:10rem;
	color:rgba(255, 255, 255, 0.7)
}
.footer .container{
	display: flex;
	height:100%;
    align-items: center;
	font-size:0.813rem;
}
.footer .content{
	height: 100%;
    flex-direction: row;
	margin-top:0;
}
.footer .logo{
	display:inline-flex;
	flex:0 0 160px;
	height:60px;
	background: url(../images/logo_bottom.png) no-repeat left top;
}
.footer ul{
	flex-direction: column;
}
.footer a{
	font-size:0.938rem;
	color:rgba(255, 255, 255, 0.9);
	cursor: pointer;
}
.footer .address{
	padding-top:4px;
}
.footer .address span:first-child{
	padding-right:30px;
}
.footer a:hover{
	color:#fff;
}

/* 휠아이콘 *******************************************************************/
/* 전체 아이콘 스타일 */
.scroll-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 70px;
}

/* 마우스 모양 */
scroll-icon .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #ccc;
  border-radius: 12px;
  position: relative;
}

/* 마우스 휠 */
scroll-icon .wheel {
  width: 4px;
  height: 8px;
  background-color: #ccc;
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel-move 1.5s infinite;
}

/* 아래쪽 화살표 */
scroll-icon .arrow {
  position: relative;
  width: 24px;
  height: 20px;
}

/* 화살표 모양 */
scroll-icon .arrow {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 20px;
    overflow: hidden;
    vertical-align: middle;
  }

 scroll-icon .arrow:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height:10px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(-135deg);
    border-top: 2px solid #ccc;
    border-left: 2px solid #ccc;
  }

  .scroll-icon-w .mouse{
	border: 2px solid #fff;
  }
  .scroll-icon-w .wheel{
	background-color: #fff;
  }
  .scroll-icon-w .arrow:before{
	border-top: 2px solid #fff;
    border-left: 2px solid #fff;
  }

/* 애니메이션 */
.arrow {
  /*animation: arrow-bounce 1.5s infinite;*/
}

/*모달 *******************************************************************/

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* 기본적으로 숨김 */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 모달 내용 */
.modal-container {
	display:flex;
	flex-direction: column;
	min-width:40%;
	min-height:30%;
	max-width:1200px;
	max-height:90%;
	position:relative;
    background: white;
    padding: 1.5rem 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	gap:1.5rem;
}

/* 모달 활성화 시 표시 */
.modal-overlay.active {
    display: flex;
}

.modal-header{
	display:flex;
	flex:0 0 2.5rem;
	align-items:center;
	width:100%;
	height:2.5rem;
	border-bottom:1px solid #eee;
}
.modal-title{
	font-size:1.3rem;
	font-weight:500;
	}
.close-modal{
    position: absolute;
	top: 1rem;
    right: 1rem;
    width: 2rem;
    height:  2rem;
	margin-left:auto;
	cursor: pointer;
}
.close-modal span{
	content: "";
    position: absolute;
    width: 80%;
    height: 2px;
	top:50%;
	left:10%;
    background: #666;
    transform: rotate(45deg);
}
.close-modal span:nth-child(2){
	transform: rotate(-45deg);
}
.modal-content{
	width: 100%;
	display:flex;
	flex:1 1 auto;
	overflow:auto;
	overflow-x: hidden;
}

.faqs-section{
	width: 100%;
}
.modal-content #faq dl{	
	border-bottom:1px solid #eee;
}
.faqs-section dl{
	width: 100%;
	background-color: #fff;
    color: #422952;
    cursor: pointer;
    text-align: left;
    border-bottom:1px solid #eee;
    outline: none;
}
.question{
	position:relative;
	width:100%;
	cursor: pointer;
	padding:1.4rem 0;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 1.063rem;
	transition: 0.4s;
	padding-right:3rem;
}
.question:after{
	position: absolute;
    right: 10;
    top: 40%;
    content: '';
    width: 0.7rem;
    height: 0.7rem;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(135deg);
}
.question.active:after{
	transform: rotate(315deg);
}
.question a{
	color: #2C3238;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.question a span{
	width: 1.5rem;
	height:1.5rem;
	border-radius:50%;
	background:#000;
}
.question a span:after{
	width: 1.5rem;
	height:1.5rem;
	content:"Q";
	color:#fff;
	display:flex;
	align-items:center;
	justify-content: center;
	font-size: 0.9rem;
}
.question.active + .answer {
	animation: sweep 0.5s ease-in-out;
}
/*.question:hover {
  background-color: #ccc; 
}
*/
.answer {
	display: flex;
    width: 100%;
    padding-bottom: 1rem;
    gap: 1rem;
    font-size: 1rem;
    display: none;
    background-color: white;
    overflow: hidden;
    line-height: 1.4em;
}
.answer p, .answer b{
    font-size: inherit;
}
.answer span{
	width: 1.5rem;
	height:1.5rem;
	border-radius:50%;
	background:#E24750;
}
.answer span:after{
	width: 1.5rem;
	height:1.5rem;
	content:"A";
	color:#fff;
	display:flex;
	align-items:center;
	justify-content: center;
	font-size: 0.9rem;
}
.answer .conWrap{
	color:#424952;
	line-height:1.4em;
	word-break:keep-all;
}
#modal1 .modal-container{
	width:900px;
	height:80%;
}
#modal3 .modal-container{
	width:90%;
	height:90%;
}
#modal3 .modal-content{
	overflow-y: scroll;
}
#modal3 .modal-detail{
	display: flex;
    flex: 1 1 auto;
	align-items: flex-start;
	margin: -1rem -2rem 1rem;
}

@keyframes sweep {
	0% {
		opacity: 0;
        margin-top: -10px;
	}
	100% {
		opacity: 1;
        margin-top: 0px;
	}
}

/* 화살표 바운스 애니메이션 */
@keyframes arrow-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.5;
  }
}

/* 휠 애니메이션 */
@keyframes wheel-move {
  0%, 100% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 16px;
    opacity: 0.5;
  }
}

/*태블릿 가로 *******************************************************************/
@media all and (min-width:769px) and (max-width:1023px){
	*{
		font-size:87.5%;
	}
	.container{
		width:100%;
	}
	.content h2{
		font-size:3.714rem;
	}
	.content h2 + .sub-text{
		font-size:1.286rem
	}
	#main .container{
		background-size: 50% auto;
	}
	#main .content{
		height:90%
	}
	#main .content header .nav a{
		font-size:1.286rem;
	}
	#main .content .headline .slogan-en{
		font-size:1.714rem;
	}
	#download ul.items li.qr div.qrcode{
		width:80%;
	}
	#intro .service{
	    background-size: 70% auto;
	}
	#main .content .headline p{
		font-size:1.286rem
	}
	#intro .service dl.pc-only{
		display:none;
	}
	#communication ul dd div:nth-child(1){
		font-size:1.429rem;
	}
	#communication ul dd div:nth-child(2){
		font-size:0.9286rem;
	}
	#window ul.slider{
		gap:0;
	}
	#window ul.slider li{
		flex: 1 1 auto;
		width: 25%;
		padding: 0 0.5rem;
	}
	#security ul dd{
		font-size:1.286rem;
	}
	#admin .function{
		background-size: 100% auto;
	}
	#footer ul li:nth-child(2),
	#footer ul li:nth-child(3){
		font-size:0.8rem;
	}
	#footer ul li.address span{
		font-size:0.8rem;
	}
	.question a{
		font-size:1.143rem;
	}
	.answer .conWrap{
		font-size: 1.071rem;
	}
	#modal1 .modal-container{
		width:90%;
	}
}

/*모바일 가로 & 태블릿 세로 ********************************************************/
@media all and (min-width:480px) and (max-width:767px){
	*{
		font-size:75%;
	}
	.container{
		width:100%;
	}
	.container .content{
		height:80%
	}
	.content h2{
		padding-top: 0;
		padding-bottom: 0;
	}
	.content h2 + .sub-text{
		font-size:1.25rem;
		line-height: 1.667rem;
	}
	.pc-only{
		display:none !important;
	}
	#main .container{
		background:none;
	}
	#main .content{
		height:90%;
	}
	#main .content header .logo{
		height:1.5rem;
	}
	#main .content header .nav {
		position: absolute;
        top: 25rem;
        z-index: 10;
        display: flex;
		width: 50%;
        justify-content: space-between;
        gap: 1rem;
    }
	#main .content header .nav a{
        height: 3.4rem;
		font-size:1.333rem;
        padding: 0.8rem 1.6rem;
        color: #fff;
        background-color: #000;
        border-radius: 2rem;
        align-items: center;
        justify-content: center;
        display: flex;
        flex: 0 0 50%;
	}
	#main .content header{
		padding: 0 0 4rem;
	}
	#main .content .headline .slogan-en{
		font-size:1.667rem
	}
	#main .content .headline .slogan{
		font-size:3.667rem;
	}
	#main .content .headline .slogan +p{
		display:none;
	}
	#main .content .quick{
		right:1.5rem;
	}
	#main .content .circles .circle.five{
		top: 380px;
        left: 300;
	}
	#download ul.items{
		position: relative;
        align-content: center;
        width: 90%;
        padding: 3rem 0;
        display: grid;
        grid-template-rows: repeat(2, minmax(46%, 1fr));
        grid-template-columns: repeat(2, minmax(46%, 1fr));
        gap: 8%;
        height: calc(100% - 300px);
	}
	#download ul.items li{
		max-width: 100%;
		height: 100%;
	}
	
	ul.items li dt {
		width: 50px;
		height: 50px;
	}
	#download ul.items li .name{
		line-height:1.667rem;
	}
	#download .sub-text .pc-only{
		display:block !important;
		font-size: initial;
	}
	#intro .heading h2 span.pc-only{
		display:none;
	}
	#intro .service{
	    background-size: 70% auto;
	}
	#intro .service dl.pc-only{
		display:none;
	}
	#intro .info{
		font-size:1.5rem;
	}
	#window li dd div:first-child{
		font-size:1.667rem;
	}
	#window li dd{
		flex: 0 0 12rem;
	}
	#window li dd div + div{
		font-size:1.083rem;
	}
	#window .slider li.reservation{
		display:none;
	}
	#channel .img{
		background-size: auto 80%  ;
	}
	#communication ul{
		width:90%;
		flex-direction: column;
	}
	#communication ul dl{
		flex-direction: row;
        text-align: left;
	}
	#communication ul dt{
	    height: 100%;
	}
	#communication ul dd{    
		flex: 0 0 74%;
        height: 100%;
        justify-content: center;
        align-items: flex-start;
        padding: 0 2rem;
        line-height: 1.5rem;
	}
	#communication ul dd div + div{
		font-size:1rem;
	}
	#security ul{
		flex-direction:column;
	}
	#security ul li{
		padding: 2rem;
	}
	#security ul li dl{
	    padding-right: 8rem;
	}
	#security ul li:nth-child(1) dl,
	#security ul li:nth-child(2) dl,
	#security ul li:nth-child(3) dl{
		background-size:auto 60%;
		justify-content: center;
	}
	#admin ul.detail{
		width:88%;
		padding-top: 2rem;
	}
	#admin ul.detail li{
		flex: 0 0 45%;
	}
	#admin ul.detail li:nth-child(1){
		flex: 0 0 100%;
	}
	#admin ul li.pc-only{
		display:none;
	}
	#footer ul li:nth-child(2),
	#footer ul li:nth-child(3){
		font-size:0.9rem;
	}
	#footer ul li.address span{
		font-size:0.9rem;
	}
	.question{
		font-size:1.5rem;
	}
	.question a{
		font-size:1.25rem;
	}
	.answer{
		font-size:1.4rem;
	}
	.answer .conWrap{
		font-size:1.167rem;
	}
	#modal1 .modal-container{
		width:90%;
	}
	.modal-title{
		font-size:1.5rem;
	}
	.modal-content .discription{
		font-size:1.2rem;
	}
}

/* Extra Small Devices, Phones : ~ 480px */
@media all and (max-width:479px) {
	*{
		font-size:75%;
	}
	.pc-only{
		display:none !important;
	}
	body{
		font-size:75%;
	}
	.container{
		width:100%;
	}
	.container .content{
		margin-top: -1rem;
	}
	.content h2 {
		font-size:2.5rem;
	}
	section h2{
	    flex: 0 0 4rem;
	}
	section em{
		flex: 0 0 40px;
		font-size: 1.083rem;
	}
	.content h2 + .sub-text{
		width:100%;
		font-size:1.167rem;
	}
	#main{
		background-size:auto 100%;
		background-repeat: no-repeat;
		background-position: center top;
	}
	#main .content header .nav {
		position: absolute;
        top: 18rem;
        z-index: 10;
        display: flex;
		width: 70%;
        justify-content: space-between;
        gap: 1rem;
    }
	#main .content header .nav a{
        height: 3.4rem;
        padding: 0.8rem 1.6rem;
        color: #fff;
		font-size:1.333rem;
        background-color: #1B2025;
        border-radius: 2rem;
        align-items: center;
        justify-content: center;
        display: flex;
        flex: 0 0 50%;
	}
	#main .container{
		background-image:none;
	}
	#main .content{
		width:100%;
		min-width:360px;
	}
	#main .content{
		padding:0 2rem;
		margin-top:0;
	}
	#main .content header{
		padding: 0 0 3rem;
        height: 4.5rem;
	}
	#main .content .headline{
		width:90%;
	}
	#main .content .headline .slogan-en{
		font-size:1.667rem;
	}
	#main .content .headline .slogan{
		font-size: 2.333rem;
		padding:1rem 0 2rem;
	}
	#main .content .headline p{
		color:#fff;
		font-size:1rem;
		font-weight: 400;
		display:none;
	}
	#main .content .quick{
		right:1rem;
	}
	#main .content .down{
		display:none;
	}
	#main .content .circles .circle.five{
		top: 20px;
		right: 40px;
		width: 80px;
		height: 80px;
	}
	#main .content .circles .circle.six{
		 top: 140px;
	}
	#download ul.items{
		position: relative;
        align-content: space-evenly;
        width: 90%;
        padding: 10% 0 6% 0;
        gap:5%;
        flex: 1 1 auto;
	}
	#download ul.items li{
		height:30%;
		max-width:100%;
		flex: 0 0 100%;
		
	}
	#download ul.items li.qr{
		display:none;
	}
	#download ul.items li a{
		display:flex;
		flex-direction: row;
		align-items: center;
        padding: 1rem 2rem;
	}
	ul.items li dt{
		width:3.4rem ;
		height:3.4rem;
	}
	ul.items li dl{
		width: 100%;
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
        gap: 2rem;
		text-align:left
		padding: 0;
		text-align:left;
	}
	ul.items li.android dl{
		gap:1.5rem;
	}
	ul.items li.android dt{
		width:3.9rem ;
	}
	ul.items li dl .name{
		font-size: 1.667rem;
		padding:0 0 0.8rem;
	}
	ul.items li .version{
		font-size: 1.25rem;
	}
	ul.items li span {
		width: 3rem;
        height: 3rem;
        border-radius: 50%;
        text-indent: -10000;
        flex: 0 0 3rem;
		/*background: url(../images/icon_download.svg) no-repeat 50% 50%;*/
		background:#1B2025 url(../images/icon_download_w.svg) no-repeat 50% 50%;
        background-size: 70% auto;
	}
	#download .btn-patch {
		padding-top: 10%;
		text-align: center;
		display:block;
	}
	#download .btn-patch .text-caution em{
		display: flex;
		line-height:1.5rem;
		justify-content: center;
	}
	#intro .service{
		display:flex;
		flex-direction:column;
		justify-content: flex-end;
		background-size: 86% auto;
		background-position-y: 30%;
	}
	#intro .service .info{
		font-size: 1.25rem;
		padding-bottom:1rem;
		color:rgba(0, 0, 0, 0.6);
	}
	#channel .img{
		background-size: 120% auto;
	}
	#communication ul{
		width:90%;
		flex-direction:column;
		padding-top:2rem;
		gap:1rem;
	}
	#communication ul dl{
		flex-direction: row;
        text-align: left;
	}
	#communication ul dt{
	    height: 100%;
		background-size:cover !important;
	}
	#communication ul dd{    
		flex: 0 0 74%;
        height: 100%;
        justify-content: center;
        align-items: flex-start;
        padding: 0 1.5rem;
        line-height: 1.5rem;
		gap:0.5rem;
	}
	#communication ul dd div:first-child{
		font-size: 1.2rem;
		font-weight:500;
	}
	#communication ul dd div:nth-child(2){
		font-size:0.9rem;
	}
	#window li.mybox dt{
		background-position-y: 0;
	}
	#window li dd{
		flex: 0 0 120px;
	}
	#window li dd div:first-child{
		font-size:1.6rem;
	}
	#window li dd div + div{
		font-size:1.1rem;
		height:3rem;
	}
	#security ul{
		flex-direction:column;
		padding:2rem 1rem 0;
	}
	#security ul li{
		padding: 1.5rem 2rem;
	}
	#security ul li dl{
	    padding-right: 6rem;
		gap:1rem;
	}
	#security ul dt{
		font-size: 1.6rem;
		text-align:left;
	}
	#security ul dd{
		font-size: 1rem;
		text-align:left;
		line-height:1.5rem;
	}
	#security ul li:nth-child(1) dl,
	#security ul li:nth-child(2) dl,
	#security ul li:nth-child(3) dl{
		background-size:auto 80%;
		justify-content: center;
	}

	/* 전체 슬라이더 컨테이너 */
	.slider-container {
		position: relative;
		flex: 1 1 auto;
		width: 90%; /* 화면 크기에 맞게 */
		overflow: hidden;
		max-width: 400px; /* 최대 크기 제한 */
		margin: 0 auto; /* 가운데 정렬 */
	}

	/* 슬라이더 자체 */
	#window ul.slider {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		transition: transform 0.3s ease-in-out; /* 부드러운 슬라이드 효과 */
		padding: 0;
		margin: 0;
		flex-wrap: nowrap;
		position: relative;
		height: 100%;
		gap:0
	}

	/* 슬라이드 아이템 */
	#window .slider li.slide-item {
		min-width: 100%; /* 슬라이드 하나는 화면의 100% 차지 */
		width:100%;
		box-sizing: border-box;
		padding: 20px;
	}

	/* 버튼 스타일 */
	.slider-btn {
	position: absolute;
	top: 40%;
	width:30px;
	height:30px;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
	}
	.slider-btn .arrow{
		display:block;
		width:100%;
		height:100%;
	}
	.slider-btn:disabled {
		opacity: 0.3;
		color:#ddd;
		cursor: not-allowed;
	}	
	.slider-btn.mobile-only{
		display:block;
	}
	.prev-btn{
		left:0.5rem;
	}
	.prev-btn .arrow:after {
		transform: rotate(225deg); /* 각도 */
	}
	.next-btn{
		right:0.5rem;
	}
	.next-btn .arrow:after {
		transform: rotate(45deg); /* 각도 */
	}


	/* 버튼 호버 효과 
	.slider-btn:hover {
		background:  rgba(0, 0, 0, 1);
	}*/

	#admin ul.detail{
		width:90%;
		padding-top: 2rem;
	}
	#admin ul.detail li:first-child{
		flex: 0 0 100%;
	}
	#admin ul.detail li{
		flex: 0 0 45%;
	}
	.footer .logo{
		display:none;
	}
	#footer ul li:nth-child(2),
	#footer ul li:nth-child(3){
		font-size:0.8rem;
	}
	#footer ul li.address span{
		display:block;
		padding-right:0;
		font-size:0.8rem;
	}
	.modal-title{
		font-size:1.5rem;
	}
	#modal1 .modal-container,
	#modal3 .modal-container{
		width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
	}
	.question{
		font-size:1.4rem;
		line-height:1.4em;
	}
	.question a{
		font-size:1.333rem;
		font-weight:500;
	}
	.answer{
		font-size:1.4rem;
	}
	.answer .conWrap{
		font-size:1.25rem;
	}
	.answer .conWrap p{
		padding-top:1rem;
	}
	.modal-content .discription{
		font-size:1.2rem;
	}
	#modal2 .modal-container{
		width: 90%;
		height: 60%;
	}
	#modal2 .modal-content .qr{		
		display: flex;
		flex-direction: column;
		height: 80%;
		justify-content: center;
		align-items: center;
	}
	.install-guide a svg{
		display:none;
	}

}
