@charset "UTF-8";
/*-------------------------------------------------
-------------------------------------------------*/
/* Main container */
#visual {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#visual .txt {position: absolute; right: 55px; top: 110px; z-index: 10; color: #fff; opacity: 0.7;}

/* Video background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.carousel-video.active {
    opacity: 1;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.07);
    z-index: 2;
}

/* Hero section */
.hero-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding-top: 78px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    color: #ffffff;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 85px;
    line-height: 106.25px;
    margin: 0;
}

.hero-subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 25px;
    margin: 0 0 24px 0;
}

/* Video indicators */
.video-indicators {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Bottom navigation cards */
.bottom-navigation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0 16px;
}

.nav-card {
    width: 320px;
    height: 112px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(223, 223, 223, 0.2);
}

.nav-card:last-child {
    border-right: none;
}

.nav-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 100%;
}

.nav-card-text h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.5;
}

.nav-card-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-card-link span {
    color: #9e9e9e;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.45px;
    line-height: 1.5;
}

.nav-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

/* 2번째, 3번째 nav-card 아이콘 크기 확대 */
.nav-card:nth-child(2) .nav-card-icon img,
.nav-card:nth-child(3) .nav-card-icon img {
    width: 52px;
    height: 52px;
}

/* Portal card (special styling) */
.portal-card {
    backdrop-filter: blur(15px);
    background: linear-gradient(279deg, rgba(2, 171, 255, 0.33) 4.04%, rgba(48, 255, 207, 0.33) 94.57%);
}

.portal-content {
    justify-content: center;
}

.portal-text {
    text-align: center;
}

.portal-text h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portal-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.portal-link span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.45px;
}

/* Responsive design */
@media (max-width: 1280px) {
    .bottom-navigation {max-width: 100%;}
    .hero-title {
        font-size: 60px;
        line-height: 70px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .nav-card {
        width: 256px;
        max-width: 25%;
    }
}

@media (max-width: 1024px) {
    
    .hero-title {
        font-size: 40px;
        line-height: 50px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin: 0 0 16px 0;
    }
    
    .video-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    /* .bottom-navigation {
        flex-direction: column;
        align-items: stretch;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        padding: 0;
    }
    
    .nav-card {
        width: 224px;
        margin: 0 auto;
    } */
}


@media (max-width: 768px) {
    #visual {height: auto; background-color: #000;}
    #visual .txt {right: 20px; top: 20px; font-size: 10px;}
    .video-background {position: static; height: 30rem;}
    /*.bottom-navigation {position: static; width: 100%; padding: 0; flex-wrap: wrap; gap: 1px; transform: inherit;}*/
	.bottom-navigation {position: relative; left:0; z-index:11; width: 100%; padding: 0; flex-wrap: wrap; gap: 1px; transform: inherit;}
    .nav-card {max-width: inherit; width: calc(50% - 0.5px);}
    .nav-card-link span {font-size: 14px; white-space: nowrap;}
    .hero-section {padding: 0 0 200px;}
    .hero-content {gap: 0;}
    .hero-title {font-size: 30px;}
    .hero-subtitle {font-size: 14px;}
}

/* Hover effects */
.nav-card:hover {
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

.portal-card:hover {
    background: 
        linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%),
        linear-gradient(279deg, rgba(2, 171, 255, 0.33) 4.04%, rgba(48, 255, 207, 0.33) 94.57%);
    transition: background 0.3s ease;
}

.nav-card:hover .nav-card-link span {
    color: #ffffff;
    transition: color 0.3s ease;
}

.nav-card:hover .nav-card-link svg path {
    stroke: #ffffff;
    transition: stroke 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.nav-card {
    animation: fadeInUp 0.8s ease-out;
}

.nav-card:nth-child(1) { animation-delay: 0.1s; }
.nav-card:nth-child(2) { animation-delay: 0.2s; }
.nav-card:nth-child(3) { animation-delay: 0.3s; }
.nav-card:nth-child(4) { animation-delay: 0.4s; } 

.section{position: relative;}

.floor1{height:900px;}
.floor1 .container{padding-top:190px; width:1280px;}
.pic-list {margin: 0 -27px; word-break: keep-all;}
.pic-list::after{clear:both; display:block; content:"";}
.pic-list>li{float:left; width: calc(33.33% - 54px); margin:0 27px;}
.pic-list>li>a{display:block;}
.pic-list>li .figure{position: relative;}
.pic-list>li .figure .photo{width: 390px; height: 468px; position: relative;}
.pic-list>li .figure .photo img{position: relative; z-index:2; transition:all .5s;}
.pic-list>li .figure .photo::after{content:""; width:100%; height:100%; border:7px solid #f5f3f3; position:absolute; top:0; left:0; z-index:1;}
.pic-list>li .figure .figcaption{background-color: #fff; position: relative; bottom: 60px; left:10%; width: 90%; padding: 30px 0 0 30px; transition:all .5s; z-index:4;}
.pic-list>li .figure .figcaption .tag{font-size:2.9rem; font-weight:900; display:block;}
.pic-list>li .figure .figcaption .title{ display:block; margin:15px 0 10px; letter-spacing:-.05em;  font-size:2.3rem;}
.pic-list>li .figure .figcaption .desc{font-size:1.6rem; color:#666;} 

.pic-list>li:hover .figure .photo img{transform:translate(-35px,-35px);}
.pic-list>li:hover .figcaption{background:transparent; bottom:50px; }

.floor2{background:url('../../images/mps/main/bg_sec2.jpg') center / cover no-repeat; height:540px; position: relative;}
.floor2 .container{height:100%; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);}
.floor2 .container .bx-pager{text-align: center; position: absolute; bottom: 35px; left: 0; width: 100%;}
.floor2 .container .bx-pager .bx-pager-item{display:inline-block;}
.floor2 .container .bx-pager .bx-pager-item .bx-pager-link{display:block; width: 10px; height: 10px; margin:0 4px; color: transparent; border:3px solid #fff; overflow: hidden;}
.floor2 .container .bx-pager .bx-pager-item .bx-pager-link.active{background-color: #fff;}
.floor2 .container .bx-prev{width: 76px; height: 76px; border:1px solid #add6d9; display:block; text-align: center; font-size:0; line-height: 0; position:absolute; top:50%; left:0; margin-top: -38px;}
.floor2 .container .bx-prev::after{content: ""; border-width:6px; border-style: solid; border-color: transparent #fff transparent transparent;
position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); margin-left: -3px;}
.floor2 .container .bx-next{width: 76px; height: 76px; border:1px solid #add6d9; display:block; text-align: center; font-size:0; line-height: 0; position:absolute; top:50%; right:0; margin-top: -38px;}
.floor2 .container .bx-next::after{content: ""; border-width: 6px; border-style: solid; border-color: transparent transparent transparent #fff;
position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); margin-left:3px;}
.floor2 .infograph-list > li {visibility:hidden;}
.floor2 .infograph-list > li.active {visibility:visible;}

/* type1 */
.chart-gauge{font-size: 1.5rem; text-anchor: middle;	max-width:400px; max-height:400px; position: absolute; top: 0; left: 0;}
.chart-gauge-base {fill: none; stroke: #c4c4c4; stroke-width:10;}
.chart-gauge-primary {fill: none; stroke:#2b4071; stroke-width:10;}
.chart-gauge-secondary {fill: none; stroke:#3f6abf; stroke-width:10;}
.chart-gauge-3rd {fill: none; stroke: #b4e7fd; stroke-width:10;}
.chart-gauge-4th {fill: none; stroke: #fce8ae; stroke-width:10;}

/* type2 */
.chart-wrap{position: relative; width:350px; height:350px; color:#fff; float:left;}
.chart-wrap .title{font-size:2.9rem; opacity:0; transform:translateY(-20px); transition:all .5s; position: relative; display:block;}
.chart-wrap .value{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:100%; text-align: center; font-size:3.8rem; font-weight: 500; opacity:0; transition:all .5s;}
.chart-wrap .value .sub-title{font-size:2rem; display:block; font-weight: 400;}
.chart-wrap .value em{font-weight:500; font-size:4.8rem;}
.chart-wrap .value span{font-size:1.7rem; font-weight: 400;}
.chart-wrap .value span.total{display:block; /*color:#add4dd;*/ color:#fff;}
.data-list{width:calc(100% - 350px); color:#fff; float:right; padding:40px;}
.data-list>li{height: 100px; border-bottom:1px solid rgba(255,255,255,.2); padding:25px 0 25px 60px; position: relative; overflow:hidden; opacity:0; transform:translateX(-20px); transition:all .5s;}
.data-list>li::before{width: 10px; height: 10px; background-color: #20dfd8; border-radius:50%; content:""; position:absolute; top:50%; margin-top:-5px; left:22px;}
.data-list>li:nth-child(2)::before{background-color: #c45dde;}
.data-list>li:nth-child(3)::before{background-color: #b5ea3d;}
.data-list>li .subject{width:50%; float:left;}
.data-list>li .subject span{display:block; font-weight: 500; font-size:2.5rem;}
.data-list>li .result{width:50%; float:right; text-align: right;}
.data-list>li .result span{font-size:4rem; display:inline-block; margin-left:10px;}

.data-list.type2>li{width:50%; float:left;}
.data-list.type2>li .result span{font-size:3rem;}
.data-list.type2>li:nth-child(1)::before{background-color: #2b4071;}
.data-list.type2>li:nth-child(2)::before{background-color: #3f6abf;}
.data-list.type2>li:nth-child(3)::before{background-color: #b4e7fd;}
.data-list.type2>li:nth-child(4)::before{background-color: #fce8ae;}

.subject-area{width: calc(100% - 400px); color: #fff; float: right; padding: 10px 70px; height:100px; position: relative; opacity:0; transform:translateY(-20px); transition:all .5s;}
.subject-area::before{content:""; width:23px; height:100px; background:url('../../images/mps/main/bg_close1.png') 0 0 no-repeat; position:absolute; top:0; left:0;}
.subject-area::after{content:""; width:23px; height:100px; background:url('../../images/mps/main/bg_close2.png') 0 0 no-repeat; position:absolute; top:0; right:0;}
.subject-area strong{font-size:6.2rem; font-weight:400; float:left; font-weight: 200;}
.subject-area .desc{/*color:#afc4d9;*/ color:#fff; margin-left: 140px; margin-top: 18px;}
.subject-area .desc em{display:block; font-size:2.3rem; color:#fff;}


.chart-gauge2{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size: 1.5rem; text-anchor: middle; stroke-linecap: round; width:100%;}
.chart-gauge2.big{max-width:350px; max-height:350px;}
.chart-gauge2.mid{max-width:310px; max-height:310px;}
.chart-gauge2.small{max-width:270px; max-height:270px;}
.chart-gauge2-primary{fill: none; stroke:url(#linear); stroke-width: 3.8;}
.chart-gauge2-secondary{fill: none; stroke:url(#linear2); stroke-width: 3.8;}
.chart-gauge2-3rd{fill: none; stroke: url(#linear3); stroke-width: 3.8;}

@keyframes load-gauge {
	to {stroke-dashoffset: 0;}
}
.infograph-list>li .inner{width: 75%; margin: 0 auto; height: 540px; padding:90px 0;}
.infograph-list>li.active .chart-gauge2-primary,
.infograph-list>li.active .chart-gauge2-secondary,
.infograph-list>li.active .chart-gauge2-3rd,
.infograph-list>li.active .chart-gauge-primary,
.infograph-list>li.active .chart-gauge-secondary,
.infograph-list>li.active .chart-gauge-3rd,
.infograph-list>li.active .chart-gauge-4th{animation: load-gauge cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;}

/* IE핵 */
_:-ms-input-placeholder, :root .infograph-list>li .chart-wrap{background:url('../../images/mps/main/bg_graph2.png') center no-repeat;}
_:-ms-input-placeholder, :root .infograph-list>li.first .chart-wrap{background:url('../../images/mps/main/bg_graph1.png') center no-repeat;}
_:-ms-input-placeholder, :root .chart-wrap svg{display:none;}


.infograph-list>li.active .chart-wrap .value{opacity:1;}
.infograph-list>li.active .chart-wrap .title{opacity:1; transform:translateY(0);}
.infograph-list>li.active .data-list>li:nth-child(1){transition-delay:.3s; opacity:1; transform:translateX(0);}
.infograph-list>li.active .data-list>li:nth-child(2){transition-delay:.4s; opacity:1; transform:translateX(0);}
.infograph-list>li.active .data-list>li:nth-child(3){transition-delay:.5s; opacity:1; transform:translateX(0);}
.infograph-list>li.active .data-list>li:nth-child(4){transition-delay:.6s; opacity:1; transform:translateX(0);}

.infograph-list>li.active .subject-area{opacity:1; transform:translateY(0);}

.floor3{background-color: #f4f5f6; height: 390px; padding:100px 0;}
.floor3 .container{position:relative;}
.floor3 .bx-controls-direction{position: absolute; bottom:0; left:0;}
.floor3 .bx-controls-direction>a{width:38px; height: 40px; background-color:#fff; display:inline-block; position: relative;}
.floor3 .bx-controls-direction>a.bx-prev::before{content:""; width:1px; height: 18px; background-color: #dbdddf; position:absolute; top:11px; right:0;}
.floor3 .bx-controls-direction>a.bx-prev::after{content: ""; border-width:5px; border-style: solid; border-color: transparent #333 transparent transparent; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); margin-left: -2px;}
.floor3 .bx-controls-direction>a.bx-next::after{content: ""; border-width:5px; border-style: solid; border-color: transparent transparent transparent #333; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); margin-left:2px;}
.title-area{width:320px; float:left;}
.brief{width:calc(100% - 320px); float:left;}
.brief-list{overflow:hidden;}
.brief-list>li{width:300px; height: 186px; background-color: #fff; position: relative;}
.brief-list>li::before{content:""; width: 10px; height: 10px; background-color: #cb3685; border-radius:50%; position:absolute; top:20px; right:20px;}
.brief-list>li>a{display:block; padding:45px; line-height: 1.4;}
.brief-list>li>a>span{color:#cb3685; display:block; margin-bottom: 20px; font-size:1.9rem;}
.brief-list>li.complete{}
.brief-list>li.complete::before{background-color: #d4d4d4;}
.brief-list>li.complete>a{color:#737373;}
.brief-list>li.complete>a>span{/*color: #d4d4d4;*/ color:#333;}

@media(max-width:1400px){
	.container{width:100%;}
}

@media(max-width:1280px){
	#visual::after{display:none;}
	#visual .container{left:45px;right:45px;}
	#visual .container .title{font-size:3.5rem;}
	#visual .container .desc{margin-bottom: 0; font-size:1.6rem;}
	#visual .container .quick a{width:220px;font-size:1.6rem;line-height:50px;}
	#visual.intro .container .btn{display:none;}

	.pic-list{margin:0 -15px;}
	.pic-list > li{width: calc(33.33% - 30px);  margin:0 15px;}
	.pic-list > li .figure{}
	.pic-list > li .figure .photo{width:100%; height:inherit;}
	.pic-list > li .figure .photo img{width:100%;}
	.pic-list > li > a:hover
	.figure .photo img{transform:translate(0,0);}
	.pic-list>li:hover .figure .photo img{transform:translate(-15px,-15px);}
	.pic-list > li > a:hover .figcaption{background-color:#fff; bottom:60px;}

	.section,
	.fp-tableCell{height:inherit !important;}
	.floor1 .container{width:100%;}
	.floor1{height:inherit;}
	.floor1 .container{padding:50px;}
	.floor2,
	.infograph-list > li .inner{height:inherit; width:100%; }
	.infograph-list > li .inner{padding:45px 0;}
	.chart-wrap{transform:scale(.75); float:inherit; margin: 0 auto;}
	.floor2 .container{position: relative; top:0; left:0; transform:translate(0,0);}
	.data-list{float: inherit; width: 100%; padding: 20px; margin-top:110px;}
	.data-list > li{height:80px; padding-top: 20px;}
	.data-list > li .subject span{font-size:1.5rem;}
	.data-list > li .result span{font-size:2rem;}
	.subject-area{width: calc(100% - 30px); padding: 10px 20px; margin: 110px 15px 0;}
	.subject-area strong{font-size:3.1rem; margin-top: 17px; margin-left: 10px;}
	.subject-area .desc{font-size: 1.1rem; margin-left: 80px;}
	.data-list.type2{overflow: hidden;}
	.data-list.type2>li{width:100%; padding: 0;height: 60px; padding-top:10px;}
	.data-list.type2 > li .subject{padding-left:60px;}
	.floor2 .container .bx-prev{left: 30px; margin-top: -78px;}
	.floor2 .container .bx-next{right: 30px; margin-top: -78px;}
	.title-area{width:100%; margin-bottom: 20px;}
	.brief{width:100%; float:inherit;}
	.floor3 {height: inherit; padding: 25px 25px;}
	.floor3 .bx-controls-direction {position: absolute; bottom:inherit; top: -15px; right:0; left:inherit;}
	.title-area .title{margin-bottom: 10px;}

}


@media(max-width:768px){
	#visual{margin-top:60px;}
	#visual .container{left:5%; bottom:10%;}
	#visual .container .quick{position:relative;margin:20px 0 0 0;}
	#visual .container .quick a{width:180px;padding:0 15px;font-size:1.3rem;line-height:40px;}
	#visual .container .quick a::after{right:15px;}
	.floor1 .container{padding:25px;}
	.pic-list {margin: 0;}
	.pic-list > li {float:inherit; width:100%; margin:0; }
	.pic-list > li .figure .photo{height: 240px !important; overflow:hidden;}
	.pic-list > li .figure .photo{height:inherit;}
	.pic-list > li .figure .figcaption{left: 5%; width: 95%; padding: 30px 0 0 30px;}
}

@media(max-width:425px){
	.pic-list > li .figure .photo{width:100%;}
	.pic-list > li .figure .photo img{width:100%;}
}
