/* 헤더 */
.header_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    z-index: 1000;
    padding: 15px 24px;
    font-family: "PretendardM", sans-serif;
}
/* 헤더 로고 */
.header_wrap img {
    width: 40px;
    height: 40px;
}
/* 헤더 - 메뉴 */
.header_wrap .header_menu_area {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_wrap .header_menu_area li:first-child {
    padding-right: 10px;
}
/* 헤더 - 트리거 메뉴 */
.menu-trigger {
    position: relative;
    margin-left: 10px;
    width: 20px;
    height: 20px;
}
.menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.menu-trigger span {
    background-color: #fff;
    border-radius: 4px;
    height: 3px;
    
    position: absolute;
    left: 0;
}

.menu-trigger span:nth-child(1) {
    width: 80%;
}
.menu-trigger span:nth-child(2) {
    width: 120%;
}
.menu-trigger span:nth-child(3) {
    width: 75%;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger span:nth-of-type(2) {
    top: 8px;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

.menu-trigger.active-1 span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
    width: 140%;
}
.menu-trigger.active-1 span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger.active-1 span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
    width: 140%;
}

/* 헤더 - 서브메뉴 */
.header_sub_menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: white;
    transition: right 0.4s ease-in-out;
    z-index: 9;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}
.header_sub_menu.active {
    right: 0;
}
.header_sub_menu li {
    padding: 15px 0;
    margin: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header_sub_menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    text-align: left;
}

/*  */
/*  */
/*  */
/*  */
/*  */

/* 섹션 */
section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    width: 100%;
    height: calc(100vh - 92px);
    padding-top: 92px;
}
/* 오버레이 */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: 
    radial-gradient(circle, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.2) 70%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    
    z-index: 0;   
}
/* 섹션 - 배경 */
.sec_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.sec_bg.sec01_bg {
    background-image: url("/img/sec01_bg.png");
}
.sec_bg.sec02_bg {
    background-image: url("/img/sec02_bg_01.png"), url("/img/sec02_bg_02.png");
    background-size: 300% , 120%;  
    background-repeat: no-repeat, no-repeat;
    background-position: center, center bottom;
}
.sec_bg.sec03_bg {
    background-color: #222 !important;
}
.sec_bg.sec04_bg {
    background-image: url("/img/sec04_bg_01.png");
    background-size: 400%;
}
/* 섹션 - 공통 */
.sec_wrap {
    margin-top: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}
.sec_wrap .sec_text_area {
    font-family: "gmarket sans", sans-serif;
    width: 100%;
    margin-bottom: 50px;
}
.sec_wrap .sec_text_area:nth-child(3) {
    margin-top: 0px;
}

.sec_wrap .sec_text_area h2 {
    font-size: 34px;
    line-height: 2.6rem;
}
.sec_wrap .sec_text_area h2 span {
    font-weight: bold;
    font-size: 34px;
}
.sec_wrap .sec_text_area h3 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6rem ;
}
.text-focus-in {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }
        100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.sec_wrap .sec_btn {
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    width: 200px;
    height: 43px;
    padding: 10px 30px;
    gap: 10px;

    border: 1px solid #14ae5c;
    border-radius: 35px;
    background-color: #000;
    
    white-space: nowrap;
    cursor: pointer; 
}
.btn4 {
    width: 240px !important;
}
.sec_wrap .sec_btn a {
    text-align: center;
    font-size: 18px;
} 
.sec_wrap .sec_btn img {
    width: 16px;
    height: 24px;
}
.sec_wrap .sec_btn.btn-ani {
    overflow: hidden;
    text-decoration: none;
    text-transform: uppercase;
}
.sec_wrap .sec_btn.btn-ani span {
    position: absolute;
    background: #fff;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: animate 1s linear forwards;
}
@keyframes animate {
    0% {
        width: 0px;
        height: 0px;
        opacity: 0.5;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

/* 섹션 01 */
.docSlider-page {
    overflow: hidden !important;
}
.sec_wrap .sec01_img {
    margin: 0 auto;
    width: 210px;
    height: 215px;
    margin-bottom: 100px;
}
.sec_wrap .sec_balloon_area span {
    border: 1px solid #14ae5c;
    border-radius: 35px;
    padding: 10px 30px;
    background-color: #16000080;
    color: #00BD87;
}

/* 섹션 02 */
.sec_wrap .sec_icon_area {
    width: 100%;
    height: 300px;
    align-items: center;
    justify-content: center;
}
.sec_wrap .sec_icon_area .icon.icn01 {
    width: 45px;
    height: 45px;

    position: absolute;
    top: 45%;
    left: 15%;
}
.sec_wrap .sec_icon_area .icon.icn02 {
    width: 45px;
    height: 45px;

    position: absolute;
    top: 48%;
    left: 60%;
}
.sec_wrap .sec_icon_area .icon.icn03 {
    width: 50px;
    height: 50px;

    position: absolute;
    top: 58%;
    left: 79%;
}
.sec_wrap .sec_icon_area .icon.icn04 {
    width: 64px;
    height: 64px;

    position: absolute;
    top: 54%;
    left: 26.5%;
}
/* 섹션 03 */

.sec_box_area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}
.sec_box_area .sec_box {
    width: 200px !important;
    height: 200px !important;
    border: 1px solid transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.sec_box_area .sec_box::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    transform: scale(0.85);
    -webkit-filter: blur(5vw);
    -moz-filter: blur(5vw);
    -ms-filter: blur(5vw);
    filter: blur(5vw);
    background-size: 200% 200%;
}
.sec_box_area .sec_box.box.variant::after {
    background: linear-gradient(270deg, #0fff37, #79cbd2);
}
.sec_box_area .sec_box.box.box.contained::after {
    background: linear-gradient(270deg, #fff397, #ffb764);
}
.sec_box_area .sec_box img {
    max-width: 122px;
}
@property --pos-x {
	syntax: '<percentage>';
	initial-value: 11.14%;
	inherits: false;
}

@property --pos-y {
	syntax: '<percentage>';
	initial-value: 140%;
	inherits: false;
}

@property --spread-x {
	syntax: '<percentage>';
	initial-value: 150%;
	inherits: false;
}

@property --spread-y {
	syntax: '<percentage>';
	initial-value: 180.06%;
	inherits: false;
}

@property --color-1 {
	syntax: '<color>';
	initial-value: #000;
	inherits: false;
}

@property --color-2 {
	syntax: '<color>';
	initial-value: #08012c;
	inherits: false;
}

@property --color-3 {
	syntax: '<color>';
	initial-value: #4e1e40;
	inherits: false;
}

@property --color-4 {
	syntax: '<color>';
	initial-value: #70464e;
	inherits: false;
}

@property --color-5 {
	syntax: '<color>';
	initial-value: #88394c;
	inherits: false;
}

@property --border-angle {
	syntax: '<angle>';
	initial-value: 20deg;
	inherits: true;
}

@property --border-color-1 {
	syntax: '<color>';
	initial-value: hsla(340, 75%, 60%, 0.2);
	inherits: true;
}

@property --border-color-2 {
	syntax: '<color>';
	initial-value: hsla(340, 75%, 40%, 0.75);
	inherits: true;
}

@property --stop-1 {
	syntax: '<percentage>';
	initial-value: 37.35%;
	inherits: false;
}

@property --stop-2 {
	syntax: '<percentage>';
	initial-value: 61.36%;
	inherits: false;
}

@property --stop-3 {
	syntax: '<percentage>';
	initial-value: 78.42%;
	inherits: false;
}

@property --stop-4 {
	syntax: '<percentage>';
	initial-value: 89.52%;
	inherits: false;
}

@property --stop-5 {
	syntax: '<percentage>';
	initial-value: 100%;
	inherits: false;
}
.box {
	border-radius: 11px;
	padding: 16px 36px;
	min-width: 132px;
	font-size: 16px;
	line-height: 19px;
	font: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	letter-spacing: inherit;
	font-weight: 500;
	color: rgba(255 255 255 / 95%);
	border: none;
	position: relative;
	appearance: none;
	background: radial-gradient(
		var(--spread-x) var(--spread-y) at var(--pos-x) var(--pos-y),
		var(--color-1) var(--stop-1),
		var(--color-2) var(--stop-2),
		var(--color-3) var(--stop-3),
		var(--color-4) var(--stop-4),
		var(--color-5) var(--stop-5)
	);
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.95);
	outline: none;
	-webkit-tap-highlight-color: transparent;
	transition:
		--pos-x 0.5s,
		--pos-y 0.5s,
		--spread-x 0.5s,
		--spread-y 0.5s,
		--color-1 0.5s,
		--color-2 0.5s,
		--color-3 0.5s,
		--color-4 0.5s,
		--color-5 0.5s,
		--border-angle 0.5s,
		--border-color-1 0.5s,
		--border-color-2 0.5s,
		--stop-1 0.5s,
		--stop-2 0.5s,
		--stop-3 0.5s,
		--stop-4 0.5s,
		--stop-5 0.5s;
}
.box::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background-image: linear-gradient(var(--border-angle), var(--border-color-1), var(--border-color-2));
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
}
.box.variant {
	--color-1: #000022;
	--color-2: #1f3f6d;
	--color-3: #469396;
	--color-4: #f1ffa5;
	--color-5: hsla(250, 80%, 2.5%, 1);

	--pos-x: 40%;
	--pos-y: 140%;
	--spread-x: 130%;
	--spread-y: 170.06%;
	--stop-1: 37.35%;
	--stop-2: 61.36%;
	--stop-3: 78.42%;
	--stop-4: 93.52%;
	--stop-5: 100%;

	--border-angle: 180deg;
	--border-color-1: hsla(320, 75%, 90%, 0.9);
	--border-color-2: hsla(320, 50%, 90%, 0.1);
}
.box.contained {
    --color-1: #191209;  
    --color-2: #dcb700;  
    --color-3: #ffffff;  
    --color-4: #d4bb40;  
    --color-5: rgb(193, 148, 58); 
    

	--pos-x: 40%;
	--pos-y: 140%;
	--spread-x: 130%;
	--spread-y: 170.06%;
	--stop-1: 37.35%;
	--stop-2: 61.36%;
	--stop-3: 78.42%;
	--stop-4: 93.52%;
	--stop-5: 100%;

	--border-angle: 180deg;
	--border-color-1: hsla(320, 75%, 90%, 0.9);
	--border-color-2: hsla(320, 50%, 90%, 0.1);
}

.sec_box_area .swiper-wrapper{
    display: flex;
    height: auto !important;
}
.sec_box_area .swiper-slide {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec_flow_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 375px !important;
}
.sec_flow_wrap .sec_flow_area {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sec_flow_wrap .sec_flow_area ul {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.sec_flow_wrap .sec_flow_area.flow_t ul {
    animation: rolling 60s linear infinite;
    margin-bottom: 0;
}
.sec_flow_wrap .sec_flow_area.flow_b ul {
    animation: rolling-rtl 60s linear infinite;
}
.sec_flow_wrap .sec_flow_area ul li {
    padding: 10px 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
}
.sec_flow_wrap .sec_flow_area ul li img {
    max-width: 100px;
}
@keyframes rolling {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes rolling-rtl {
    from {
        transform: translateX(-30%);
    }
    to {
        transform: translateX(50);
    }
}

/* 섹션 4 */
.sec04_img {
    width: 270px;
}