@charset "utf-8";


:root {
  --color-bg1: rgb(0, 6, 67);
  --color-bg2: rgb(25, 2, 51);
  --color1: 1, 1, 249;
  --color2: 0, 0, 191;
  --color3: 77, 1, 255;
  --color4: 0, 49, 245;
  --color5: 221, 0, 255;
  --circle-size: 80%;
  --blending: hard-light;
}
@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
	z-index: -1;
}
.bg .svgBlur {
	display: none;
}
.bg .noiseBg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	mix-blend-mode: soft-light;
	opacity: 0.3;
}
.bg .gradients_box {
	filter: url(#goo) blur(40px);
	width: 100%;
	height: 100%;
}
.bg .g1 {
	position: absolute;
	background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: var(--circle-size);
	height: var(--circle-size);
	top: calc(50% - var(--circle-size) / 2);
	left: calc(50% - var(--circle-size) / 2);
	transform-origin: center center;
	animation: moveVertical 25s ease infinite;
	opacity: 1;
}
.bg .g2 {
	position: absolute;
	background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: var(--circle-size);
	height: var(--circle-size);
	top: calc(50% - var(--circle-size) / 2);
	left: calc(50% - var(--circle-size) / 2);
	transform-origin: calc(50% - 400px);
	animation: moveInCircle 15s reverse infinite;
	opacity: 1;
}
.bg .g3 {
	position: absolute;
	background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: var(--circle-size);
	height: var(--circle-size);
	top: calc(50% - var(--circle-size) / 2 + 200px);
	left: calc(50% - var(--circle-size) / 2 - 500px);
	transform-origin: calc(50% + 400px);
	animation: moveInCircle 35s linear infinite;
	opacity: 1;
}
.bg .g4 {
	position: absolute;
	background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: var(--circle-size);
	height: var(--circle-size);
	top: calc(50% - var(--circle-size) / 2);
	left: calc(50% - var(--circle-size) / 2);
	transform-origin: calc(50% - 200px);
	animation: moveHorizontal 35s ease infinite;
	opacity: 0.7;
}
.bg .g5 {
	position: absolute;
	background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
	mix-blend-mode: var(--blending);
	width: calc(var(--circle-size) * 2);
	height: calc(var(--circle-size) * 2);
	top: calc(50% - var(--circle-size));
	left: calc(80% - var(--circle-size));
	transform-origin: calc(50% - 800px) calc(50% + 200px);
	animation: moveInCircle 20s ease infinite;
	opacity: 1;
}



.inner {
	position: relative;
	width: 100%;
	max-width: 1640px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(7.5px);
	transition: background .3s;
	z-index: 25;
}
#header .inner {
	max-width: 1740px;
	height: 118px;
}
#header .logo img {
	vertical-align: middle;
}
#header .gnb .swiper-wrapper {
	justify-content: center;
}
#header .gnb .swiper-slide {
	width: auto;
}
#header .gnb .swiper-slide a {
	font-size: 18px;
	opacity: .6;
	text-transform: capitalize;
	transition: opacity .3s;
}
#header .gnb .swiper-slide a:hover {
	opacity: 1;
}
#header .h_util a {
	height: 36px;
	line-height: 36px;
	padding: 0 20px;
	border-radius: 50px;
	box-sizing: border-box;
}
#header .h_util .lang {
	width: 122px;
}
#header .h_util .lang .gt_switcher_wrapper {
	position: static!important;
}
#header .h_util .lang .gt_container--hich1m .gt_switcher {
	width: 100%;
}
#header .h_util .lang .gt_container--hich1m .gt_switcher .gt_selected {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50px;
}
#header .h_util .lang .gt_container--hich1m .gt_switcher .gt_selected a {
	width: 100%;
	font-size: 16px;
	color: var(--white);
	padding: 0 13px;
	border: 0;
}
#header .h_util .lang .gt_container--hich1m .gt_switcher .gt_selected a:hover {
	background: transparent;
}
#header .h_util .lang .gt_container--hich1m .gt_switcher .gt_selected a:after {
	top: 3px;
	background-image: url("../images/arrow_down_white.svg");
}
#header .h_util .lang .gt_container--hich1m .gt_switcher .gt_option {
	position: absolute !important;
    width: 122px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 10px;
    border: 0;
    border-radius: 10px;
	padding: 10px 0;
	overflow: hidden;
    box-sizing: border-box;
}
#header .h_util .lang .gt_container--hich1m .gt_switcher .gt_option a {
    font-size: 16px;
    color: var(--white);
    line-height: 1.2;
    height: auto;
    padding: 10px 20px;
}
#header .h_util .lang .gt_container--hich1m .gt_switcher .gt_option a:hover {
	background: transparent;
}
#header .h_util .lang .gt_container--hich1m .gt_switcher a img {
	display: none;
}
#header .menu {
	position: relative;
	display: none;
}
#header .menu a {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}
#header .menu a:before {
	content: '';
	position: absolute;
	top: 9px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 2px;
	background: var(--white);
	transition: all .3s;
}
#header .menu a:after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 20px;
	height: 2px;
	background: var(--white);
	transition: all .3s;
}
#header .menu.on a:before {
	top: 15px;
	transform: translateX(-50%) rotate(45deg);
}
#header .menu.on a:after {
	top: 15px;
	transform: translateX(-50%) rotate(-45deg);
}


.side_wrap {
	position: fixed; 
	top: -100%;
	width: 100%;
	transition: all .2s;
	z-index: 22;
	background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.5px);
}
.side_wrap.on {
	top: 73px;
}
.side_wrap .depth {
	overflow-y: auto;
	box-sizing: border-box;
}
.side_wrap .depth01 {
	position: relative;
}
.side_wrap .depth01 > a {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	font-size: 16px;
	padding: 15px 30px;
	text-transform: capitalize;
	box-sizing: border-box;
}
.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: all .3s;
}
.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}
.side_wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 20px;
	box-sizing: border-box;
}
.side_wrap .depth .depth02 li:last-child a {
	border-bottom: 0;
}
.side_wrap .depth .depth02 li a:before {
	content: '-';
	margin-right: 5px;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(3px);
	z-index: 34;
}
.not_scroll {
	overflow: hidden;
}


#container {
	position: relative;
}

#content {
	position: relative;
	width: 100%;
	max-width: 700px;
	min-height: 100vh;
	margin: 0 auto;
	padding: 160px 40px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0px 0px 1px rgba(255, 255, 255, 0.3), inset 0 0 2px rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(7.5px);
	box-sizing: border-box;
}
#content > * {
	gap: 80px;
}


#footer {
	position: relative;
}


.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
}
.modal .modal_cont {
    width: 90%;
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 101;
	background: var(--white);
	font-family: 'SUIT';
	border-radius: 30px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 30px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .bar {
	gap: 10px;
	background: var(--black);
	color: var(--white);
	padding: 16px 30px;
	border-radius: 50px;
	gap: 10px;
	margin-bottom: 40px;
	box-sizing: border-box;
}
.modal .bar h3 {
	flex: 1;
	width: 100%;
	font-size: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.modal .bar .close {
	width: 15px;
	height: 15px;
	background: url("../images/ic_close_white.svg")no-repeat 50% 50%;
}
.modal .btn_area {
	gap: 10px;
	margin-top: 40px;
	justify-content: center;
}
.modal .btn_area > * {
	padding: 16px 60px;
	border-radius: 50px;
	font-size: 20px;
	text-align: center;
	box-sizing: border-box;
}



#agree_pop .modal_cont {
	max-width: 350px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.30);
	background: rgba(255, 255, 255, 0.80);
	backdrop-filter: blur(30px);
}
#agree_pop .close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 42px;
	height: 42px;
	background: var(--white);
	border-radius: 50%;
	justify-content: center;
	z-index: 1;
}
#agree_pop .box {
	padding: 10px 0;
	box-sizing: border-box;
}
#agree_pop .box:first-child {
	margin-bottom: 40px;
}
#agree_pop .box > strong {
	display: block;
	color: var(--black);
	font-weight: 700;
	letter-spacing: 0.4px;
	margin-bottom: 14px;
}
#agree_pop .cont {
    line-height: 1.2;
    overflow-y: auto;
	min-height: 100px;
    max-height: calc(100vh - 350px);
	white-space: pre-line;
	color: var(--black);
}


.link a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: max-content;
	border-radius: 100px;
	background: rgba(0, 0, 0, 0.05);
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3), inset 0 0 5px rgba(255, 255, 255, 0.3);
	font-size: 18px;
	text-transform: uppercase;
	padding: 16px 24px;
	gap: 10px;
	transition: all .3s;
	box-sizing: border-box;
}
.link a:after {
	content: '';
	position: relative;
	right: 0;
	width: 20px;
	height: 13px;
	background: url("../images/arriw-right-long.svg")no-repeat 50% 50% / 100%;
	transition: all .3s;
}
.link a:hover {
	background: var(--key-color);
}
.link a:hover:after {
	right: -10px;
}


.tit_box {
	position: relative;
	gap: 16px;
	text-transform: capitalize;
}
.tit_box h3.tit {
	font-size: 40px;
	line-height: 1.2;
}
.tit_box p {
	font-size: 18px;
	line-height: 1.4;
}
.tit_box p.desc {
	margin-top: 4px;
}


.bg_line {
	padding-bottom: 80px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}


#fix_bottom {
	position: fixed;
	bottom: 70px;
	left: 50%;
	transform: translate(-50%);
	width: max-content;
	max-width: 90%;
	z-index: 5;
}
#fix_bottom .bg-effect {
	position: absolute;
	z-index: -3;
	inset: 0;
	backdrop-filter: blur(3px);
	filter: url(#glass-distortion);
	overflow: hidden;
	border-radius: 50px;
	isolation: isolate;
}
#fix_bottom .bg-tint {
	z-index: -2;
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50px;
}
#fix_bottom .bg-shine {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.3), inset 0 0 5px rgba(255, 255, 255, 0.3);
	border-radius: 50px;
}
#fix_bottom ul {
	padding: 20px;
	border-radius: 50px;
	gap: 16px;
	box-sizing: border-box;
}
#fix_bottom ul li a {
	display: block;
	width: 118px;
	font-size: 18px;
	font-weight: 500;
}
#fix_bottom ul li a .icon {
	display: none;
}
#fix_bottom ul li.ft05 {
	display: none;
}
#fix_bottom ul li a span {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
#fix_bottom ul li a span:before {
	content: '';
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--point);
    border-radius: 50%;
	opacity: 0;
	z-index: -1;
}
#fix_bottom ul li.active a span,
#fix_bottom ul li:hover a span {
	padding-left: 10px;
    box-sizing: border-box;
    transition: all .5s;
}
#fix_bottom ul li.active a span:before,
#fix_bottom ul li:hover a span:before {
    opacity: 1;
	left: -5px;
	transition: all .3s;
}



@media screen and (max-width: 1750px) {
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1280px) {
	#header .gnb ul {
		gap: 30px;
	}
}
@media screen and (max-width: 1024px) {
	#header {
		padding-bottom: 45px;
	}
	#header .inner {
		height: 64px;
		gap: 7px;
	}
	#header .logo {
		flex: 1;
		width: 100%;
	}
	#header .gnb {
        position: fixed;
        top: 70px;
        left: 0;
    }
	#header .gnb .swiper {
		padding: 0 20px;
		box-sizing: border-box;
	}
	#header .gnb .swiper-wrapper {
		justify-content: start;
	}
	#header .gnb .swiper-slide a {
		font-size: 15px;
	}
	#header .h_util > a {
		display: none;
	}
	#header .h_util .lang {
		width: 103px;
	}
	#header .menu {
		display: block;
	}

	#fix_bottom {
		bottom: 0;
		left: 0;
		transform: none;
		width: 100%;
		max-width: 100%;
		border-top: 1px solid var(--white);
		border-radius: 0;
		backdrop-filter: blur(7.5px);
	}
	#fix_bottom .bg-effect,
	#fix_bottom .bg-tint,
	#fix_bottom .bg-shine {
		display: none;
	}
	#fix_bottom ul {
		width: 100%;
		justify-content: center;
		padding: 0 20px 24px;
		gap: 4px;
	}
	#fix_bottom ul li {
		flex: 1;
	}
	#fix_bottom ul li a {
		width: auto;
		font-size: 14px;
		font-weight: 300;
		letter-spacing: -0.3px;
	}
	#fix_bottom ul li a .icon {
		display: block;
		padding: 18px 0 12px;
	}
	#fix_bottom ul li.ft05 {
		display: block;
	}


	.link a {
		font-size: 14px;
		padding: 12px 24px;
	}


	.tit_box {
		gap: 8px;
	}
	.tit_box h3.tit {
    	font-size: 24px;
	}
	.tit_box p {
    	font-size: 14px;
	}
}
@media screen and (max-width: 700px) {
	#content {
		padding: 140px 20px;
	}
	#content > * {
		gap: 60px;
	}
	.bg_line {
		padding-bottom: 60px;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
	#fix_bottom ul {
		padding: 0 5px 24px;
		gap: 0;
	}
	#fix_bottom ul li a {
		font-size: 13px;
	}
}