﻿@charset "UTF-8";

@font-face {
    font-family: "Google Sans Flex";
    src: url("/ClientUI/font/GoogleSansFlex/GoogleSansFlex-VariableFont_GRAD,ROND,opsz,slnt,wdth,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    font-family: "Google Sans Flex", "Pretendard", "Noto Sans KR", sans-serif;
    overflow-x: hidden;
}
video{
    width: 100%;
}
#section1 {
    position: relative;
    height: 100dvh;
    overflow: hidden;
}
#section1 .video-wrapper{
    position: relative;
    display: flex;
    min-height: 100dvh;
    overflow: hidden;
}
#section1 .video-slider{
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background-color: #000000;
}
#section1 .video-wrapper .hero-video{
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100dvh;
    object-fit: cover;
    transform: translateX(0);
}
#section1 .video-wrapper .hero-video.is-next{
    transform: translateX(100%);
}
#section1 .video-slider.is-sliding-prev .hero-video.is-next{
    transform: translateX(-100%);
}
#section1 .video-slider.is-sliding-next .hero-video.is-current{
    transform: translateX(-100%);
    transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}
#section1 .video-slider.is-sliding-next .hero-video.is-next{
    transform: translateX(0);
    transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}
#section1 .video-slider.is-sliding-prev .hero-video.is-current{
    transform: translateX(100%);
    transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}
#section1 .video-slider.is-sliding-prev .hero-video.is-next{
    transform: translateX(0);
    transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}
#section1 .video-wrapper .text-wrapper{
    position: absolute;
    left: clamp(2rem, 8vw, 15rem);
    bottom: clamp(10rem, 18.25rem, 16rem);
    z-index: 2;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    width: min(100% - 4rem, 42rem);
    opacity: 0;
    transform: translateY(4rem);
    transition: opacity 2s ease, transform 2s cubic-bezier(.22, 1, .36, 1);
}
#section1.active .video-wrapper .text-wrapper,
#section1.is-active .video-wrapper .text-wrapper{
    opacity: 1;
    transform: translateY(0);
}
#section1 .video-wrapper .text-wrapper .main-text{
    font-size: 3.5rem;
    font-weight: 700;

}
#section1 .video-wrapper .text-wrapper .sub-text{
    font-size: 1.25rem;
    margin-top: .75rem;
}
#section1 .video-wrapper .text-wrapper .btn-wrapper{
    display: flex;
    gap: .75rem;
    margin-top: 2rem;

}
#section1 .video-wrapper .text-wrapper .btn-wrapper .btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9375rem 1.5rem;
    border-radius: 6.25rem;
    border: 1px solid #FFFFFFA3;
    color : #FFFFFF;
    background-color: transparent;
    cursor: pointer;
    font-weight: 400;
    overflow: hidden;
    transition: background-color .28s ease, border-color .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease, padding-right .28s ease;
}
#section1 .video-wrapper .text-wrapper .btn-wrapper .btn::after{
    content: "";
    display: inline-block;
    width: 0;
    height: .875rem;
    opacity: 0;
    transform: translateX(-.375rem);
    margin-left: 0;
    background: center / contain no-repeat url("/ClientUI/images/icon/LinkArrow.svg");
    transition: width .28s ease, opacity .24s ease, transform .28s ease, margin-left .28s ease;
}
#section1 .video-wrapper .text-wrapper .btn-wrapper .btn:hover{
    background-color: #1B5DD7;
    border-color: #1B5DD7;
    color: #FFFFFF;
    box-shadow: 0 .75rem 1.875rem rgba(0, 0, 0, 0.18);
    padding-right: 1.875rem;
    font-weight: 600;
}
#section1 .video-wrapper .text-wrapper .btn-wrapper .btn:hover::after{
    width: .875rem;
    opacity: 1;
    transform: translateX(0);
    margin-left: .5rem;
}
#section1 .video-wrapper .text-wrapper .btn-wrapper .btn:active{
    transform: translateY(1px);
}
#section1 .video-controls{
    position: absolute;
    left: clamp(2rem, 8vw, 15rem);
    bottom: clamp(7.75rem, calc(8vh + 6rem), 10.25rem);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .25rem;
}
#section1 .video-controls .control-btn{
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 0;
    background: center / contain no-repeat transparent;
    cursor: pointer;
    transition: none;
}
#section1 .video-controls .control-btn.pause{
    background-image: url("/ClientUI/images/icon/pause.svg");
}
#section1 .video-controls .control-btn.pause.is-paused{
    background-image: url("/ClientUI/images/ui/icons/play.svg");
}
#section1 .video-controls .control-btn.prev{
    background-image: url("/ClientUI/images/icon/left.svg");
}
#section1 .video-controls .control-btn.next{
    background-image: url("/ClientUI/images/icon/right.svg");
}
#section1 .section1-reference-panel.is-empty{
    display: none;
}
#section1 .section1-reference-panel{
    --panel-width: min(24.125rem, calc(100vw - 4rem));
    --panel-close-distance: calc(100% + 1.25rem);
    --panel-close-shift: calc(var(--panel-width) + 1.25rem);
    --panel-slide-duration: 1.2s;
    --panel-slide-ease: cubic-bezier(.22, 1, .36, 1);
    --panel-fade-ease: ease;
    --panel-enter-delay: .2s;
    --panel-transition-move: transform var(--panel-slide-duration) var(--panel-slide-ease);
    --panel-transition-fade: opacity var(--panel-slide-duration) var(--panel-fade-ease);
    position: absolute;
    right: clamp(.25rem, 2vw, 3rem);
    top: 50%;
    z-index: 2;
    width: var(--panel-width);
    transform: translateY(-43%);
    opacity: 0;
    transition:
            opacity var(--panel-slide-duration) var(--panel-fade-ease) var(--panel-enter-delay),
            transform var(--panel-slide-duration) var(--panel-slide-ease) var(--panel-enter-delay);
}
#section1.active .section1-reference-panel,
#section1.is-active .section1-reference-panel{
    opacity: 1;
    transform: translateY(-50%);
}
#section1 .section1-reference-panel .panel-content{
    opacity: 0;
    transform: translateX(var(--panel-close-distance));
    transition: var(--panel-transition-move), var(--panel-transition-fade);
}
#section1.active .section1-reference-panel .panel-content,
#section1.is-active .section1-reference-panel .panel-content{
    opacity: 1;
    transform: translateX(0);
}
#section1 .section1-reference-panel.is-closed .panel-content{
    opacity: 0;
    transform: translateX(var(--panel-close-distance));
    pointer-events: none;
    transition: var(--panel-transition-move), var(--panel-transition-fade);
}
#section1 .section1-reference-panel .panel-arrow{
    position: absolute;
    left: -3.75rem;
    top: 50%;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 50%;
    background: #1B5DD7;
    cursor: pointer;
    z-index: 2;
    transform: translateX(0);
    transition: var(--panel-transition-move);
}
#section1 .section1-reference-panel.is-closed .panel-arrow{
    transform: translateX(var(--panel-close-shift));
}
#section1 .section1-reference-panel .panel-arrow::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: .625rem;
    height: .625rem;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    transform: translate(-60%, -50%) rotate(45deg);
    transition: transform .28s ease;
}
#section1 .section1-reference-panel.is-closed .panel-arrow::before{
    transform: translate(-40%, -50%) rotate(-135deg);
}
#section1 .section1-reference-panel .panel-hero{
    min-height: 24rem;
    /*padding: 2.5rem;*/
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, .28);
}
#section1 .section1-reference-panel .panel-title{
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: -.04em;
}
#section1 .section1-reference-panel .panel-news{
    display: grid;
    grid-template-columns: 10rem 1fr;
    gap: 1rem;
    margin-top: 1rem;
    padding: .75rem;
    border-radius: 1rem;
    background-color: #FFFFFF;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .16);
    cursor: pointer;
}
#section1 .section1-reference-panel .panel-news img{
    width: 100%;
    height: 7rem;
    object-fit: cover;
    border-radius: .5rem;
}
#section1 .section1-reference-panel .news-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}
#section1 .section1-reference-panel .news-category{
    color: #505050;
    font-size: .875rem;
    font-weight: 500;
}
#section1 .section1-reference-panel .news-title{
    color: #111111;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.55;
}
#section1 .section1-reference-panel .news-control{
    cursor: default;
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #777777;
    font-size: .875rem;
}
#section1 .section1-reference-panel .news-control .prev,
#section1 .section1-reference-panel .news-control .next{
    width: 10px;
    height: 10px;
    border-top: 1.5px solid #111111;
    border-left: 1.5px solid #111111;
    /*padding: .5rem;*/
    cursor: pointer;
}
#section1 .section1-reference-panel .news-control .prev{
    transform: rotate(-45deg);
}
#section1 .section1-reference-panel .news-control .next{
    transform: rotate(135deg);
}
/* Section 2 */

#section2 {
    padding: 12.5rem 15rem 5rem;
}
#section2 .solution-wrapper{
    display: flex;
    gap: 3rem;
    flex-direction: column;
}
#section2 .solution-wrapper .main-text{
    font-weight: 700;
    font-size: 3rem;
    color: #111111;
    opacity: 0;
    transform: translateY(4rem);
    transition: opacity 2s ease, transform 2s cubic-bezier(.22, 1, .36, 1);
}
#section2 .solution-wrapper .card-wrapper{
    display: flex;
    gap: 1.5rem;
    width: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    opacity: 0;
    transform: translateY(4rem);
    transition: opacity 2s ease .12s, transform 2s cubic-bezier(.22, 1, .36, 1) .12s;
}
#section2.active .solution-wrapper .main-text,
#section2.active .solution-wrapper .card-wrapper{
    opacity: 1;
    transform: translateY(0);
}
#section2 .solution-wrapper .card-wrapper::-webkit-scrollbar{
    display: none;
}
#section2 .solution-wrapper .card-wrapper .card{
    flex: .28 1 0;
    height: 37.5rem;
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: flex-grow .45s cubic-bezier(.22, 1, .36, 1), transform .32s ease, box-shadow .32s ease, filter .32s ease;
}
#section2 .solution-wrapper .card-wrapper .card::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
#section2 .solution-wrapper .card-wrapper .card .content-wrapper{
    position: absolute;
    bottom: 3.25rem;
    left: 2.25rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: left .45s cubic-bezier(.22, 1, .36, 1);
}
#section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper{
    left: 3.75rem;
}
#section2 .solution-wrapper .card-wrapper .card .content-wrapper .title{
    font-family: Google Sans Flex;
    font-weight: 700;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 136%;
    letter-spacing: -2%;
    color :#FFFFFF;
    transition: font-size .45s cubic-bezier(.22, 1, .36, 1), opacity .28s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}
#section2 .solution-wrapper .card-wrapper .card .content-wrapper .subject{
    font-family: Google Sans Flex;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: -1%;
    vertical-align: middle;

    color: #FFFFFF;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(.75rem);
    overflow: hidden;
    transition: opacity .28s ease, transform .28s ease, max-height .28s ease, margin-top .28s ease;
}
#section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    width: fit-content;

    height: 3rem;
    max-height: 0;
    padding: 0;
    border-radius: 999px;
    border: 0 solid #FFFFFFA3;
    color: #FFFFFF;
    font-size: .9375rem;
    font-weight: 500;
    background-color: transparent;
    cursor: pointer;
    opacity: 0;
    transform: translateY(.75rem);
    pointer-events: none;
    overflow: hidden;
    transition: background-color .28s ease, border-color .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease, padding-right .28s ease, opacity .28s ease, margin-top .28s ease, max-height .28s ease, padding-top .28s ease, padding-bottom .28s ease, border-width .28s ease;
}
#section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn::after{
    content: "";
    display: inline-block;
    width: 0;
    height: .875rem;
    opacity: 0;
    transform: translateX(-.375rem);
    margin-left: 0;
    background: center / contain no-repeat url("/ClientUI/images/icon/LinkArrow.svg");
    transition: width .28s ease, opacity .24s ease, transform .28s ease, margin-left .28s ease;
}
#section2 .solution-wrapper .card-wrapper .card img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), filter .32s ease;
}
#section2 .solution-wrapper .card-wrapper .card:hover,
#section2 .solution-wrapper .card-wrapper .card.is-active{
    flex: 1 1 0;
    box-shadow: 0 1.25rem 2.5rem rgba(17, 17, 17, 0.14);
}
#section2 .solution-wrapper .card-wrapper .card:hover .content-wrapper .title,
#section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .title{
    font-size: 64px;
}
#section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .subject{
    margin-top: .5rem;
    max-height: 5rem;
    opacity: 1;
    transform: translateY(0);
}
#section2 .solution-wrapper .card-wrapper .card:hover .content-wrapper .btn,
#section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .btn{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 1.5rem;
    max-height: 3rem;
    width: fit-content;
    /* min-width: 10rem; */
    height: 3rem;
    padding: .9375rem 1.5rem;
    border-radius: 999px;
    border-width: 1px;
    font-size: .9375rem;
}
#section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn:hover{
    background-color: #1B5DD7;
    border-color: #1B5DD7;
    color: #FFFFFF;
    box-shadow: 0 .75rem 1.875rem rgba(0, 0, 0, 0.18);
    padding-right: 1.875rem;
}
#section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn:hover::after{
    width: .875rem;
    opacity: 1;
    transform: translateX(0);
    margin-left: .5rem;
}
#section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn:active{
    transform: translateY(1px);
}
#section2 .solution-wrapper .card-wrapper .card:hover img,
#section2 .solution-wrapper .card-wrapper .card.is-active img{
    transform: scaleX(-1) scale(1.02);
}
#section2 .solution-wrapper .card-wrapper .card:not(.is-active):not(:hover) img{
    filter: saturate(.92) brightness(.96);
}
#section3 {
    padding: 12.5rem 15rem 11.25rem;
}
#section3.active .header, #section3.active .content-wrapper{
    width: 100%;
}
#section3 .header,
#section3 .content-wrapper{
    opacity: 0;
    transform: translateY(7.5rem);
}
#section3 .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3.75rem;
}
#section3 .btn-wrapper button,
#section3 .btn-wrapper .btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9375rem 1.5rem;
    border-radius: 6.25rem;
    border: 1px solid #11111129;
    color: #111111;
    background-color: transparent;
    cursor: pointer;
    font-size: .9375rem;
    font-weight: 500;
    overflow: hidden;
    /* transition: background-color 2s ease, border-color .28s ease, color .28s ease, transform 2s ease, box-shadow .28s ease, padding-right .28s ease; */
}
#section3 .btn-wrapper button::after,
#section3 .btn-wrapper .btn::after{
    content: "";
    display: inline-block;
    width: 0;
    height: .875rem;
    opacity: 0;
    transform: translateX(-.375rem);
    margin-left: 0;
    background: center / contain no-repeat url("/ClientUI/images/icon/LinkArrow.svg");
    transition: width .28s ease, opacity .24s ease, transform .28s ease, margin-left .28s ease;
}
#section3 .btn-wrapper button:hover,
#section3 .btn-wrapper .btn:hover{
    background-color: #1B5DD7;
    border-color: #1B5DD7;
    color: #FFFFFF;
    box-shadow: 0 .75rem 1.875rem rgba(0, 0, 0, 0.18);
    padding-right: 1.875rem;
}
#section3 .btn-wrapper button:hover::after,
#section3 .btn-wrapper .btn:hover::after{
    width: .875rem;
    opacity: 1;
    transform: translateX(0);
    margin-left: .5rem;
}
#section3 .btn-wrapper button:active,
#section3 .btn-wrapper .btn:active{
    transform: translateY(1px);
}
#section3 .header{
    display: flex;
    justify-content: space-between;
    transition: opacity 2s ease, transform 2s cubic-bezier(.22, 1, .36, 1);
}
#section3 .header .title{
    color: #111111;
    font-size: 3rem;
    font-weight: 700;
    white-space: nowrap;
}
#section3 .header .filter{
    display: flex;
    flex-direction: row;
    gap: .5rem;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#section3 .header .filter::-webkit-scrollbar{
    display: none;
}
#section3 .header .filter .text{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.0625rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #767676;
    cursor: pointer;
    border-radius: 100px;
    white-space: nowrap;
    transition: background-color .28s ease, color .28s ease, box-shadow .28s ease;
}
#section3 .header .filter .text::after{
    content: "";
    display: inline-block;
    width: 0;
    height: .875rem;
    margin-left: 0;
    opacity: 0;
    background: center / contain no-repeat url("/ClientUI/images/icon/wind.svg");
    transition: width .28s ease, margin-left .28s ease, opacity .28s ease;
}
#section3 .header .filter .text.active{
    background-color: #1B5DD7;
    border-radius: 100px;
    color: #FFFFFF;
}
#section3 .header .filter .text.active::after{
    width: .875rem;
    margin-left: .5rem;
    opacity: 1;
}
#section3 .content-wrapper{
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap:1.5rem;
    margin-top: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: opacity 2s ease , transform 2s cubic-bezier(.22, 1, .36, 1) ;
}
#section3 .content-wrapper.is-dragging{
    cursor: grabbing;
    user-select: none;
}
#section3 .content-wrapper::-webkit-scrollbar{
    display: none;
}
#section3.active .header,
#section3.active .content-wrapper{
    opacity: 1;
    transform: translateY(0);
}
#section3 .content-wrapper .content{
    border-radius: 1rem;
    background-color: #F3F4F6;
}
#section3 .content-wrapper .content{
    flex: 0 0 20rem;
    min-width: 20rem;
    border-radius: 1rem;
    background-color: #FFFFFF;
    border: 1px solid #E6E8EA;
}
#section3 .content-wrapper .content .selectors{
    padding: 1.25rem 1.25rem 0 1.25rem;
    display: none;
    gap: .75rem;
    align-items: center;
}
#section3 .content-wrapper .content .selectors .new{
    width: fit-content;
    background-color: #E8EFFB;
    border-radius: 50px;
    color: #1B5DD7;
    font-size: .875rem;
    padding: .2188rem .5rem;
    margin-right: .75rem;
}
#section3 .content-wrapper .content .selectors .group{
    display: none;
    gap: .25rem;
}
#section3 .content-wrapper .content .selectors .selector{
    background-color: #FFFFFF;
    border: 1px solid #0000001F;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
}
#section3 .content-wrapper .content .selectors .selector.active{
    background-color: #5F91FE;
    border-color: #5F91FE;
}
#section3 .content-wrapper .content .img-wrapper{
    height: 225px;
    padding: 48px 85px;
    align-items: center;
    display: flex;
}
#section3 .content-wrapper .content .img-wrapper img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
#section3 .content-wrapper .content .desc-wrapper{
    display: flex;
    padding: 1.5rem 2rem 2.5rem 2rem;
    flex-direction: column;

}
#section3 .content-wrapper .content .desc-wrapper .kewords{
    display: flex;
    justify-content: center;
    gap: .375rem;
    flex-wrap: wrap;
}
#section3 .content-wrapper .content .desc-wrapper .kewords .keyword{
    padding :.25rem .5rem;
    background-color: #F4F5F6;
    color: #58616A;
    border-radius: .25rem;
    white-space: nowrap;
    font-size: .8125rem;
}
#section3 .content-wrapper .content .desc-wrapper .title{
    display: flex;
    justify-content: center;
    text-align: center;
    white-space: wrap;
    color: #131416;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 1rem;
}
#section3 .content-wrapper .content .desc-wrapper .subject {
    color: #58616A;
    font-size: .875rem;
    font-weight: 400;
    margin-top: .5rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}
#section3 .content-wrapper .content .desc-wrapper .subject span{
    display: inline-flex;
    align-items: center;
    margin-left: .0375rem;
}
#section3 .content-wrapper .content .desc-wrapper .subject span::before{
    content: "";
    width: 1px;
    height: .75rem;
    margin-right: .375rem;
    background-color: #D9DDE1;
}

#section4{
    background-color: #152C72;
    height: 61.25rem;
    position: relative;
    outline: none;
    width: 100%;
}
#section4 .earth-mask{
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
#section4 .img-rotator{
    position: absolute;
    width: 100%;
    top: 39.25rem;
    left: 50%;
    transform: translate3d(-50%, 0, 0) rotate(0deg);
    transform-origin: center center;
    will-change: transform;
    z-index: 50;
}
#section4 .img-rotator > img{
    display: block;
    width: 100%;
    opacity: var(--section4-img-opacity, 0);
    box-shadow: 0px 0px 250px 0px #3075FF;
    border-radius: 50%;
    transform: translate3d(0, 3rem, 0) scale(var(--section4-img-scale, 1.5));
    transform-origin: center center;
    transition: transform 2s cubic-bezier(.22, 1, .36, 1), opacity 2s ease;
    will-change: transform, opacity;
}
#section4.active .img-rotator > img,
#section4.is-focused .img-rotator > img,
#section4:focus .img-rotator > img,
#section4:focus-within .img-rotator > img{
    opacity: var(--section4-img-focus-opacity, 1);
    transform: translate3d(0, 0, 0) scale(var(--section4-img-focus-scale, 1));
}
#section4.active .img-rotator,
#section4.is-focused .img-rotator,
#section4:focus .img-rotator,
#section4:focus-within .img-rotator{
    animation: section4FocusRotate var(--section4-img-focus-rotate-duration, 12s) linear var(--section4-img-focus-rotate-delay, 2s) infinite;
}
#section4:focus-visible{
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .45);
}
#section4 .text-wrapper{
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: absolute;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    inset: 0;
    top: 12.5rem;
    transform: translateY(6rem);
    opacity: 0;
    transition: opacity 2s ease 1s, transform 2s cubic-bezier(.22, 1, .36, 1) 1s;
    z-index: 1;
}
#section4.active .text-wrapper,
#section4.is-focused .text-wrapper,
#section4:focus .text-wrapper,
#section4:focus-within .text-wrapper{
    opacity: 1;
    transform: translateY(0);
}
#section4 .text-wrapper .desc-wrapper{
    font-weight: 700;
    font-size: 3.75rem;
    line-height: 140%;
    letter-spacing: -2%;
}
#section4 .text-wrapper .content-wrapper{
    display: flex;
    gap:4rem;
}
#section4 .text-wrapper .content-wrapper .content{
    display: flex;
    flex-direction: column;
}
#section4 .text-wrapper .content-wrapper .content .title{
    font-size: 1rem;
    font-weight: 500;
}
#section4 .text-wrapper .content-wrapper .content .data{
    font-weight: 600;
    font-size: 9.375rem;
    line-height: 120%;
    letter-spacing: 6%;
}
#section4 .select-wrapper{
    display: flex;
    position: absolute;
    bottom: -8.84375rem;
    z-index: 99;
    height: fit-content;
    gap: 1rem;
    width: 100%;
    padding-top: .5rem;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: visible;
    -ms-overflow-style: none;
    scrollbar-width: none;
    justify-content: center;

}
#section4 .select-wrapper::-webkit-scrollbar{
    display: none;
}
#section4 .select-wrapper .select-item{
    display: flex;
    flex: 0 0 auto;
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 140%;
    letter-spacing: -2%;
    width: 17.6875rem;
    height: 17.6875rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    background-color: #2D64D7;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease;
}
#section4 .select-wrapper .select-item::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 24, 40, .08) 0%, rgba(16, 24, 40, .22) 100%);
    opacity: 1;
    transition: opacity .35s ease;
}
#section4 .select-wrapper .select-item img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .35s ease, filter .35s ease;
    /* transform: scaleX(-1); */
    border-radius: 0;
}
#section4 .select-wrapper .select-item .title-wrapper{
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    width: 100%;
    height: auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}
#section4 .select-wrapper .select-item .title{
    width: 100%;
    height: fit-content;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    transition: transform .35s ease, color .35s ease;
}
#section4 .select-wrapper .select-item .comment{
    font-weight: 400;
    font-size: 1rem;
    line-height: 160%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-top: .625rem;
    max-width: 12rem;
    opacity: 0;
    transform: translateY(.75rem);
    transition: opacity .35s ease, transform .35s ease;
}
#section4 .select-wrapper .select-item .btn{
    display: flex;
    justify-content: end;
    align-items: flex-end;
    width: 100%;
    opacity: 0;
    transform: translateY(.75rem);
    transition: opacity .35s ease, transform .35s ease;
    flex: 1;
}
#section4 .select-wrapper .select-item .btn::before{
    content: "";
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #FFFFFF url("/ClientUI/images/icon/LinkArrowColor.svg") center / 1rem 1rem no-repeat;
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .16);
}
#section4 .select-wrapper .select-item:hover{
    transform: translateY(-.25rem);
    /* box-shadow: 0 1.25rem 2.5rem rgba(17, 17, 17, 0.18); */
}
#section4 .select-wrapper .select-item:hover::after{
    opacity: 0;
}
#section4 .select-wrapper .select-item:hover img{
    opacity: 0;
    transform: scale(1.04);
    filter: saturate(.9);
}
#section4 .select-wrapper .select-item:hover .comment,
#section4 .select-wrapper .select-item:hover .btn{
    opacity: 1;
    transform: translateY(0);
}

@keyframes section4FocusRotate{
    from{
        transform: translate3d(-50%, 0, 0) rotate(0deg);
    }
    to{
        transform: translate3d(-50%, 0, 0) rotate(calc(var(--section4-img-focus-rotate, 12deg) + 360deg));
    }
}
#section5 .title{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
#section5 .title span{
    color: #111111;
    font-weight: 700;
    font-size: 3rem;
}
#section5{
    padding: 21.9375rem 15rem 11.25rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(2.5rem);
    transition: opacity .8s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}
#section5 .top-btn-wrapper{
    padding: 0.5rem 0;
}
#section5 .news-more{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9375rem 1.375rem;
    border: 1px solid #CDD1D5;
    color:#131416;
    angle: 0 deg;
    background-color: #ffffff;
    border-radius: 6.25rem;
    align-content: center;
    cursor: pointer;
    overflow: hidden;
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    transition: background-color .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease, padding-right .28s ease;
}
#section5 .news-more::after{
    content: "";
    display: inline-block;
    width: 0;
    height: .875rem;
    opacity: 0;
    transform: translateX(-.375rem);
    margin-left: 0;
    background: center / contain no-repeat url("/ClientUI/images/icon/LinkArrow.svg");
    transition: width .28s ease, opacity .24s ease, transform .28s ease, margin-left .28s ease;
}
#section5 .news-more:hover{
    background-color: #1B5DD7;
    border-color: #1B5DD7;
    color: #FFFFFF;
    box-shadow: 0 .75rem 1.875rem rgba(0, 0, 0, 0.18);
    padding-right: 1.875rem;
}
#section5 .news-more:hover::after{
    width: .875rem;
    opacity: 1;
    transform: translateX(0);
    margin-left: .5rem;
}
#section5 .news-more:active{
    transform: translateY(1px);
}
#section5 .content-wrapper{
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: 1.5rem;
}
#section5 .content-wrapper .content{
    display: flex;
    flex-direction: column;
    min-width: 0;
    cursor: pointer;


}
#section5 .content-wrapper .content .img-box{
    border-radius: .75rem;
    width: 100%;
    height: 14.5rem;
    overflow: hidden;
}
#section5 .content-wrapper .content .label-wrapper{
    display: flex;
    flex-direction: column;

}
#section5 .content-wrapper .content .label-wrapper .category{
    margin-top: 1.75rem;
    font-weight: 400;
    font-size: .9375rem;
    color: #464C53;
}
#section5 .content-wrapper .content .label-wrapper .title{
    margin-top: .5rem;
    font-weight: 600;
    font-size: 20px;
}
#section5 .content-wrapper .content .label-wrapper .date{
    margin-top: 1.75rem;
    font-weight: 400;
    font-size: .8125rem;
    color: #999999;
}
#section5 .btn-wrapper{
    margin-top: 3.75rem;
    display: flex;
    gap: .5rem;
    justify-content: center;
}
#section5 .btn-wrapper button,
#section5 .btn-wrapper .btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9375rem 1.5rem;
    border-radius: 6.25rem;
    border: 1px solid #CDD1D5;
    color: #131416;
    background-color: transparent;
    cursor: pointer;
    font-weight: 400;
    overflow: hidden;
    font-size: .9375rem;
    transition: background-color .28s ease, border-color .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease, padding-right .28s ease;
}
#section5 .btn-wrapper button::after,
#section5 .btn-wrapper .btn::after{
    content: "";
    display: inline-block;
    width: 0;
    height: .875rem;
    opacity: 0;
    transform: translateX(-.375rem);
    margin-left: 0;
    background: center / contain no-repeat url("/ClientUI/images/icon/LinkArrow.svg");
    transition: width .28s ease, opacity .24s ease, transform .28s ease, margin-left .28s ease;
}
#section5 .btn-wrapper button:hover,
#section5 .btn-wrapper .btn:hover{
    background-color: #1B5DD7;
    border-color: #1B5DD7;
    color: #FFFFFF;
    box-shadow: 0 .75rem 1.875rem rgba(0, 0, 0, 0.18);
    padding-right: 1.875rem;
    font-weight: 600;
}
#section5 .btn-wrapper button:hover::after,
#section5 .btn-wrapper .btn:hover::after{
    width: .875rem;
    opacity: 1;
    transform: translateX(0);
    margin-left: .5rem;
}
#section5 .btn-wrapper button:active,
#section5 .btn-wrapper .btn:active{
    transform: translateY(1px);
}
#section5 .content-wrapper .content .img-box img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
#section5.active{
    opacity: 1;
    transform: translateY(0);
}
#section6 {
    /* height: 61.25rem; */
    padding: 0 2.5rem 2.5rem 2.5rem;
}
#section6 .content-container{
    border-radius: 24px;
    background-image: url("/ClientUI/images/contents/section6Web.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: translateY(2.5rem);
    transition: opacity 2s ease, transform 2s cubic-bezier(.22, 1, .36, 1);
}
#section6 .content-container .content-wrapper{
    padding: 8.6875rem 12.5rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    overflow: hidden;
}
#section6 .content-container .content-wrapper .desc-wrapper{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateY(2.5rem);
    transition: opacity 2s ease .3s, transform 2s cubic-bezier(.22, 1, .36, 1) .3s;
}

#section6 .content-container .content-wrapper .desc-wrapper .title{
    font-family: Google Sans Flex;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 136%;
    letter-spacing: -2%;
    vertical-align: middle;
    color: #FFFFFF;
    max-width: 25.5625rem;
}
#section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper{
    display: flex;
    gap: .75rem;
}
#section6 .content-container .content-wrapper .story-link{
    display: none;
}
#section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFFA3;
    border-radius: 6.25rem;
    padding: .75rem;
    cursor: pointer;
    height: 100%;
}

#section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn.text{
    position: relative;
    padding: .9375rem 1.5rem;
    font-size: .9375rem;
    font-weight: 400;
    color: #FFFFFF;
    overflow: hidden;
    transition: background-color .28s ease, border-color .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease, padding-right .28s ease;
}
#section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn.text::after{
    content: "";
    display: inline-block;
    width: 0;
    height: .875rem;
    opacity: 0;
    transform: translateX(-.375rem);
    margin-left: 0;
    background: center / contain no-repeat url("/ClientUI/images/icon/LinkArrow.svg");
    transition: width .28s ease, opacity .24s ease, transform .28s ease, margin-left .28s ease;
}
#section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn.text:hover{
    background-color: #1B5DD7;
    border-color: #1B5DD7;
    color: #FFFFFF;
    box-shadow: 0 .75rem 1.875rem rgba(0, 0, 0, 0.18);
    padding-right: 1.875rem;
    font-weight: 600;
}
#section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn.text:hover::after{
    width: .875rem;
    opacity: 1;
    transform: translateX(0);
    margin-left: .5rem;
}
#section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn.text:active{
    transform: translateY(1px);
}
#section6 .content-container .content-wrapper .card-flex{
    display: flex;
    align-self: flex-start;
    width: calc(100% + 25rem);
    max-width: none;
    margin-left: -12.5rem;
    overflow: hidden;
    gap: 1rem;
    opacity: 0;
    /* transform: translateY(2.5rem); */
    transition: opacity 2s ease .9s, transform 2s cubic-bezier(.22, 1, .36, 1) .9s;
    /* mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%); */
}
#section6 .content-container .content-wrapper .card-flex .card-track{
    display: flex;
    flex: 0 0 auto;
    gap: 1rem;
    min-width: max-content;
    animation: section6Marquee var(--section6-marquee-duration, 36s) linear infinite;
}
#section6 .content-container .content-wrapper .card-flex .card .img-wrapper {
    width: 21.25rem;
    height: 18.75rem;

}
#section6 .content-container .content-wrapper .card-flex .card{
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    border-radius: 1rem;
    overflow: hidden;
    width: 21.25rem;
    cursor: pointer;
}
#section6 .content-container .content-wrapper .card-flex .card .img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#section6 .content-container .content-wrapper .card-flex .card .comment-wrapper{
    background: #FFFFFF;
    padding: 1rem 1.25rem;
    display: flex;
    gap: .75rem;
    border-radius: 0 0 1rem 1rem;
}
#section6 .content-container .content-wrapper .card-flex .card .comment-wrapper .ico{
    width: 2.25rem;
    height: 2.25rem;
}
#section6 .content-container .content-wrapper .card-flex .card .comment-wrapper .ico img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
#section6 .content-container .content-wrapper .card-flex .card .comment-wrapper .text{
    font-family: Google Sans Flex;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: -2%;
    vertical-align: middle;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    word-break: keep-all;
}
@keyframes section6Marquee{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(calc(-100% - 1rem));
    }
}
#section6.active .content-container{
    opacity: 1;
    transform: translateY(0);
}
#section6.active .content-container .content-wrapper .desc-wrapper{
    opacity: 1;
    transform: translateY(0);
}
#section6.active .content-container .content-wrapper .card-flex{
    opacity: 1;
    /* transform: translateY(0); */
}
#section7 {
    padding: 7.5rem 15rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(7.5rem);
    transition: opacity 2.5s ease, transform 2.5s cubic-bezier(.22, 1, .36, 1);
}
#section7 .title{
    font-weight: 700;
    font-size: 3rem;
    color: #111111;
}
#section7 .link-wrapper{
    position: relative;
    margin-top: 3rem;
    height: 22.5rem;
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 1.25rem;
}

#section7 .link-wrapper > *{
    position: relative;
    z-index: 1;
}

#section7 .link-wrapper div{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: background .32s ease;
}
#section7 .link-wrapper .links:hover{
    /* background: linear-gradient(180deg, rgba(18, 44, 108, 0.12) 0%, rgba(24, 62, 138, 0.2) 42%, rgba(18, 54, 124, 0.28) 100%); */
    /* -webkit-backdrop-filter: blur(12px); */
    /* backdrop-filter: blur(12px); */
    opacity: 1;
    cursor: pointer;
}
#section7 .link-wrapper .links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    opacity: 1;
    text-decoration: none;
    transition: background .32s ease, opacity .28s ease;
    flex :1;
}
#section7 .link-wrapper:has(.links:hover) .links:not(:hover){
    opacity: 0.58;
}
#section7 .link-wrapper .links + .links{
    position: relative;
}
#section7 .link-wrapper .links .title{
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 600;
}
#section7 .link-wrapper .links .subject{
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 400;
    margin-top: .75rem;

}
#section7 .link-wrapper .links .btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    max-height: 0;
    padding: 0 1.5rem;
    border-radius: 6.25rem;
    border: 1px solid #FFFFFFA3;
    color: #FFFFFF;
    background-color: transparent;
    cursor: pointer;
    font-weight: 400;
    overflow: hidden;
    box-shadow: none;
    opacity: 0;
    transform: translateY(.875rem);
    pointer-events: none;
    transition: background-color .28s ease, border-color .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease, padding-right .28s ease, opacity .28s ease, margin-top .28s ease, max-height .28s ease, padding-top .28s ease, padding-bottom .28s ease, border-width .28s ease;
}
#section7 .link-wrapper .links .btn::after{
    content: "";
    display: inline-block;
    width: 0;
    height: .875rem;
    opacity: 0;
    transform: translateX(-.375rem);
    margin-left: 0;
    background: center / contain no-repeat url("/ClientUI/images/icon/LinkArrow.svg");
    transition: width .28s ease, opacity .24s ease, transform .28s ease, margin-left .28s ease;
}
#section7 .link-wrapper .links:hover .btn{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 2rem;
    max-height: 3rem;
    padding: .9375rem 1.5rem;
    border-width: 1px;
    background-color: transparent;
    border-color: #FFFFFFA3;
    color: #FFFFFF;
    box-shadow: none;
    font-weight: 400;
}
#section7 .link-wrapper .links:hover .btn::after{
    width: 0;
    opacity: 0;
    transform: translateX(-.375rem);
    margin-left: 0;
}
#section7 .link-wrapper .links .btn:hover{
    background-color: #1B5DD7;
    border-color: #1B5DD7;
    color: #FFFFFF;
    box-shadow: 0 .75rem 1.875rem rgba(0, 0, 0, 0.18);
    padding-right: 1.875rem;
    font-weight: 600;
}
#section7 .link-wrapper .links .btn:hover::after{
    width: .875rem;
    opacity: 1;
    transform: translateX(0);
    margin-left: .5rem;
}
#section7 .link-wrapper .links .btn:active{
    transform: translateY(1px);
}
@media (min-width: 64.0625rem) {
    #section7 .link-wrapper{
        background-image: url("/ClientUI/images/contents/section7-bg1.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        transition: background-image .32s ease, background-size .32s ease, background-position .32s ease;
    }

    #section7 .link-wrapper:has(.links:nth-child(1):hover),
    #section7 .link-wrapper:has(.links:nth-child(1):focus),
    #section7 .link-wrapper:has(.links:nth-child(1):focus-visible){
        background-image: url("/ClientUI/images/contents/section7-bg2.png");
    }

    #section7 .link-wrapper:has(.links:nth-child(2):hover),
    #section7 .link-wrapper:has(.links:nth-child(2):focus),
    #section7 .link-wrapper:has(.links:nth-child(2):focus-visible){
        background-image: url("/ClientUI/images/contents/section7-bg3.png");
    }

    #section7 .link-wrapper:has(.links:nth-child(3):hover),
    #section7 .link-wrapper:has(.links:nth-child(3):focus),
    #section7 .link-wrapper:has(.links:nth-child(3):focus-visible){
        background-image: url("/ClientUI/images/contents/section7-bg4.png");
    }

    #section7 .link-wrapper .links + .links::before{
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 1px;
        height: 180px;
        background: #FFFFFF52;
        transform: translateY(-50%);
        z-index: 2;
    }
}
#section7 .site-wrappeer{
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 1.5rem;
    margin-top: 3.75rem;
}
#section7 .site {
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    background-color: #F3F4F6;
    border-radius: 1rem;
    align-items: center;
    transition: background-color .28s ease, box-shadow .28s ease, transform .28s ease;
    cursor: pointer;
}
#section7 .site:hover {
    background-color: #1B5DD7;
    box-shadow: 0 1rem 2rem rgba(27, 93, 215, 0.2);
    transform: translateY(-2px);
}
#section7 .site .text-wrapper{
    display: flex;
    flex-direction: column;
    gap: .75rem;
    height: 100%;
}
#section7 .site .text-wrapper .title{
    color: #111111;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color .28s ease;
}
#section7 .site .text-wrapper .subject{
    font-size: 1rem;
    font-weight: 400;
    color: #505050;
    transition: color .28s ease;
}
#section7 .site:hover .text-wrapper .title,
#section7 .site:hover .text-wrapper .subject{
    color: #FFFFFF;
}
#section7 .site .btn{
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    border: 0;
    border-radius: 50%;
    background: #FFFFFF url("/ClientUI/images/icon/LinkArrowColor.svg") center / 1rem 1rem no-repeat;
    cursor: pointer;
    opacity: 0;
    transform: scale(.92);
    pointer-events: none;
    transition: opacity .28s ease, transform .32s ease, box-shadow .28s ease;
}
#section7 .site:hover .btn{
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, 0.18);
}
#section7.active{
    opacity: 1;
    transform: translateY(0);
}
.mobile{
    display: none;
}
.mobile-only{
    display: none;
}
@media (min-width: 1025px ) and (max-width: 90rem){
    #section2,#section3,#section5,#section7{
        padding: 12.5rem 6.25rem 5rem;
    }
}
/* Tablet only: 768px ~ 1024px */
@media (min-width: 48rem) and (max-width: 64rem){
    .mobile{
        display: block;
    }
    .desktop-only{
        display: none;
    }
    .mobile-only{
        display: inline;
    }
    #section1 .video-wrapper .text-wrapper{
        left: clamp(2rem, 6vw, 2.5rem);
        bottom: clamp(7rem, 14vh, 8.5rem);
        width: min(100% - 4rem, 36rem);
    }

    #section1 .video-wrapper .text-wrapper .main-text{
        font-size: 2rem;
    }
    #section1 .video-controls{
        left: clamp(2rem, 6vw, 2.5rem);
        bottom: 3rem;
    }
    #section1 .section1-reference-panel{
        /* display: none; */
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: .75rem;
    }
    #section1 .section1-reference-panel .panel-arrow{
        position: relative;
        left: auto;
        top: auto;
    }
    #section1 .section1-reference-panel.is-closed .panel-arrow{
        transform: none;
    }
    #section1 .section1-reference-panel.is-closed{
        pointer-events: none;
    }
    #section1 .section1-reference-panel.is-closed .panel-arrow{
        pointer-events: auto;
    }
    #section2 {
        padding: 6.25rem 0;
    }
    #section2 .solution-wrapper .main-text{
        font-size: 1.75rem;
        margin-left: 1.25rem;
    }
    #section2 .solution-wrapper .card-wrapper{
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0 1.25rem;
        box-sizing: border-box;
        gap: 1rem;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover, #section2 .solution-wrapper .card-wrapper .card.is-active{
        /* flex: initial; */

    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper{
        flex-direction: row;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover .content-wrapper .title, #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .title{
        font-size: 1.5rem;
        white-space: normal;
    }
    #section2 .solution-wrapper .card-wrapper .card{
        height: 20rem;
        /* min-width: 16.25rem;
        max-width: 16.25rem; */
        flex: 1;
        transition: none;
    }

    #section2 .solution-wrapper .card-wrapper .card .content-wrapper{
        bottom: 2rem;
        left: 1.75rem;
        align-items: center;
        transition: none;
        justify-content: space-between;
        width: calc(100% - 48px);
        gap: .75rem;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .subject,
    #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .subject{
        display: none;
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        transform: none;
    }
    #section2 .solution-wrapper .card-wrapper .card img,
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .title{
        transition: none;
        font-size: 1.5rem;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .title{
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
        line-height: 1.25;
        word-break: keep-all;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover img, #section2 .solution-wrapper .card-wrapper .card.is-active img{
        transform: scaleX(-1) scale(1.0)
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn{
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-top: 0;
        max-height: 2.5rem;
        width: 2.5rem;
        min-width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        border-width: 0;
        font-size: 0;
        line-height: 0;
        color: transparent;
        text-indent: -9999px;
        white-space: nowrap;
        overflow: hidden;
        transition: none;
        border-radius: 50%;
        border: 1px solid #FFFFFF;
        flex: 0 0 2.5rem;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn::after{
        width: .75rem;
        height: .75rem;
        opacity: 1;
        transform: none;
        margin-left: 0;
        transition: none;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover, #section2 .solution-wrapper .card-wrapper .card.is-active{
        box-shadow: none;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover .content-wrapper .btn,
    #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .btn{
        width: 2.5rem;
        min-width: 2.5rem;
        height: 2.5rem;
        max-height: 2.5rem;
        margin-top: 0;
        padding: 0;
        border-radius: 50%;
        border: 1px solid #FFFFFF;
        font-size: 0;
        line-height: 0;
        color: transparent;
        text-indent: -9999px;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn:hover{
        background-color: transparent;
        border-color: #FFFFFF;
        color: transparent;
        box-shadow: none;
        padding-right: 0;
        font-weight: 500;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn:hover::after{
        width: .75rem;
        opacity: 1;
        transform: none;
        margin-left: 0;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover .content-wrapper .btn::after,
    #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .btn::after{
        width: .75rem;
        height: .75rem;
    }
    #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper{
        left: 1.75rem;
    }
    #section3{
        padding: 0 0 6.25rem 0;
    }
    #section3 .header .title{
        font-size: 1.75rem;
    }
    #section3.active .header{
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-direction: column;
        gap: 1.125rem;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0 1.25rem;
        box-sizing: border-box;
    }
    #section3.active .content-wrapper{
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0 1.25rem;
        box-sizing: border-box;
        display: flex;
        gap: 1rem;
    }
    #section3.active .header::-webkit-scrollbar,
    #section3.active .content-wrapper::-webkit-scrollbar{
        display: none;
    }
    #section3 .header .filter .text{
        border-radius: 6.25rem;
        border: 1px solid #0000001F;

        font-size: .9375rem;
    }
    #section3 .content-wrapper .content .desc-wrapper .kewords .keyword{
        font-size: .75rem;
    }
    #section3 .content-wrapper .content .desc-wrapper .subject{
        white-space: wrap;
    }
    #section3 .content-wrapper .content .desc-wrapper .subject span::before{
        display: none;
    }
    /* #section3 .content-wrapper .content .desc-wrapper .subject,
    #section3 .content-wrapper .content .desc-wrapper .kewords .keyword{
        white-space: nowrap;
    } */
    #section3 .content-wrapper .content .selectors{
        padding: 1rem 1rem 0 1rem;
    }
    #section3 .content-wrapper .content{
        flex: 0 0 16rem;
        min-width: 16rem;
    }
    #section3 .content-wrapper .content .img-wrapper{
        height: 11.5rem;
        padding: .75rem 1.5rem 0;
    }
    #section3 .content-wrapper .content .img-wrapper img{
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        margin: 0 auto;
    }
    #section3 .content-wrapper .content .desc-wrapper{
        padding: 1.25rem 1rem 1.5rem;
    }
    #section3 .content-wrapper .content .desc-wrapper .title{
        font-size: 1rem;
    }
    #section4{
        height: 50rem;
        overflow: hidden;
    }
    #section4 .earth-mask{
        inset: auto 0 0 0;
        height: 100%;
    }
    #section4 .img-rotator{
        top: 49%;
        left: 50%;
        width: 19.25rem;
        transform: translateX(-50%);
    }
    #section4 .text-wrapper{
        inset: auto 0 0 0;
        top: 4.75rem;
        gap: 1.25rem;
        padding: 0 1.25rem;
        transform: none;
        opacity: 1;
        transition: none;
    }
    #section4 .text-wrapper .desc-wrapper{
        font-size: 2.0625rem;
        line-height: 1.4;
        padding: 0;
        /* max-width: 18rem; */
    }
    #section4 .text-wrapper .content-wrapper{
        gap: .5rem;
    }
    #section4 .text-wrapper .content-wrapper .content{
        align-items: center;
    }
    #section4 .text-wrapper .content-wrapper .content .title{
        font-size: 1rem;
        font-weight: 500;
    }
    #section4 .text-wrapper .content-wrapper .content .data{
        font-size: 4rem;
        line-height: 1;
    }
    #section4 .select-wrapper{
        bottom: 5rem;
        justify-content: center;
        gap: .75rem;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 1.25rem;
        box-sizing: border-box;
    }
    #section4 .select-wrapper .select-item{
        width: 9.375rem;
        height: 9.375rem;
        cursor: default;
        transition: none;
        box-shadow: none;
        border-radius: .875rem;
    }
    #section4 .select-wrapper .select-item::after{
        opacity: 1;
        transition: none;
    }
    #section4 .select-wrapper .select-item:hover{
        transform: none;
        box-shadow: none;
    }
    #section4 .select-wrapper .select-item:hover img{
        opacity: 1;
        transform: none;
        filter: none;
    }
    #section4 .select-wrapper .select-item:hover .comment,
    #section4 .select-wrapper .select-item:hover .btn{
        opacity: 0;
        transform: translateY(.75rem);
    }
    #section4 .select-wrapper .select-item .title-wrapper{
        justify-content: space-between;
        height: auto;
        padding: .875rem;
    }
    #section4 .select-wrapper .select-item .title{
        font-size: 1rem;
        line-height: 1.3;
    }
    #section4 .select-wrapper .select-item .comment{
        display: none;
    }
    #section4 .select-wrapper .select-item .btn{
        opacity: 1;
        transform: none;
        justify-content: flex-end;
        transition: none;
    }
    #section4 .select-wrapper .select-item .btn::before{
        width: 2rem;
        height: 2rem;
        border: 1px solid #FFFFFFA3;
        background: transparent url("/ClientUI/images/icon/LinkArrow.svg") center / .75rem .75rem no-repeat;
        box-shadow: none;
        transition: none;
    }
    #section5{
        padding: 6.25rem 1.25rem 6.25rem;
    }
    #section5 .title{
        font-size: 1.75rem;
    }
    #section5 .content-wrapper{
        display: grid;
        grid-template-columns: repeat(2,2fr);
        margin-top: 1.75rem;
        row-gap: 1.75rem;
        column-gap: .75rem;
    }
    #section5 .content-wrapper .content{
        min-width: 0;
    }
    #section5 .content-wrapper .content .img-box{
        height: fit-content;
    }
    #section5 .content-wrapper .content .label-wrapper{
        padding: 0 .25rem;
    }
    #section5 .content-wrapper .content .label-wrapper .title{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: .375rem;
        font-size: 1rem;
    }
    #section5 .btn-wrapper button, #section5 .btn-wrapper .btn{
        font-family: Google Sans Flex;
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 120%;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #131416;
        border: 1px solid #CDD1D5;
    }
    #section5 .content-wrapper .content .label-wrapper .date{
        font-size: .8125rem;
        margin-top: .625rem;
    }
    #section5 .content-wrapper .content .label-wrapper .category{
        margin-top: 1rem;
    }
    #section6{
        padding: 0;
    }
    #section6 .content-container{
        border-radius: 0;
        background-image: url("/ClientUI/images/contents/section6Mo.png");
    }
    #section6 .content-container .content-wrapper .card-flex .card .img-wrapper {
        width: 15rem;
        height: 13.75rem;

    }
    #section6 .content-container .content-wrapper{
        padding: 6.25rem 2.5rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper{
        gap: 1.25rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper .title{
        font-size: 1.75rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper{
        gap: .75rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn{
        padding: .8125rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .story-link-inline{
        display: none;
    }
    #section6 .content-container .content-wrapper .story-link{
        display: flex;
        justify-content: center;
        /* margin-top: -2rem; */
    }
    #section6 .content-container .content-wrapper .story-link .btn.text{
        width: fit-content;
        margin: 0 auto;
        padding: .9063rem 1.5rem;
        border-radius: 6.25rem;
        border: 1px solid #FFFFFFA3;
        color: #FFFFFF;
    }
    #section6 .content-container .content-wrapper{
        gap: 4rem;
    }
    #section6 .content-container .content-wrapper .card-flex{
        width: calc(100% + 5rem);
        margin-left: -2.5rem;
    }
    #section6 .content-container .content-wrapper .card-flex .card{
        width: 15rem;
    }
    #section6 .content-container .content-wrapper .card-flex .card .comment-wrapper .ico{
        display: none;
    }
    #section6 .content-container .content-wrapper .card-flex .card .comment-wrapper .text{
        font-size: .875rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #section7{
        padding: 6.25rem 1.25rem;
    }
    #section7 .title{
        font-size: 1.75rem;
    }
    #section7 .site{
        padding: 1.5rem;
    }
    #section7 .site-wrappeer{
        grid-template-columns: repeat(2, 2fr);
        margin-top: .9375rem;
        gap: 1rem;
    }
    #section7 .site .text-wrapper .title{
        font-size: 1.125rem;
    }
    #section7 .site .text-wrapper .subject{
        font-size: .875rem;
    }
    #section7 .site .btn{
        display: none;
    }
    #section7 .link-wrapper{
        margin-top: 1.75rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow: visible;
        background: none;
        border-radius: 0;
        box-sizing: border-box;
    }
    #section7 .link-wrapper::before{
        display: none;
    }
    #section7 .link-wrapper .links + .links::before{
        display: none;
    }
    #section7 .link-wrapper .links{
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 9.75rem;
        padding: 1.5rem;
        border-radius: 1rem;
        overflow: hidden;
        opacity: 1;
        text-align: left;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    /* #section7 .link-wrapper .links + .links::before{
        inset: 0;
        top: 0;
        bottom: 0;
        left: 0;
        width: auto;
        background: rgba(0, 0, 0, 0.38);
        z-index: 0;
    } */
    #section7 .link-wrapper .links:active{
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 1;
    }
    #section7 .link-wrapper .links:active::before{
        background: rgba(0, 0, 0, 0.38);
    }
    #section7 .link-wrapper .links:nth-child(1){
        background-image: url("/ClientUI/images/contents/section7-mo-nth-1.png");
    }
    #section7 .link-wrapper .links:nth-child(2){
        background-image: url("/ClientUI/images/contents/section7-mo-nth-2.png");
    }
    #section7 .link-wrapper .links:nth-child(3){
        background-image: url("/ClientUI/images/contents/section7-mo-nth-3.png");
    }
    #section7 .link-wrapper .links > *{
        position: relative;
        z-index: 1;
    }
    #section7 .link-wrapper div{
        width: 100%;
        align-items: flex-start;
        justify-content: center;
    }
    #section7 .link-wrapper .links .title{
        font-size: 1.25rem;
        line-height: 1.2;
    }
    #section7 .link-wrapper .links .subject{
        margin-top: .625rem;
        font-size: .875rem;
        line-height: 1.5;
        max-width: 100%;
        word-break: keep-all;
    }
    #section7 .link-wrapper .links .btn{
        display: none;
    }
    #section1 .video-wrapper .text-wrapper .btn-wrapper .btn:hover,
    #section3 .btn-wrapper button:hover,
    #section3 .btn-wrapper .btn:hover,
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn.text:hover,
    #section5 .btn-wrapper button:hover,
    #section5 .btn-wrapper .btn:hover{
        background-color: transparent;
        box-shadow: none;
        padding-right: 1.5rem;
        font-weight: 400;
    }
    #section1 .video-wrapper .text-wrapper .btn-wrapper .btn:hover,
    #section3 .btn-wrapper button:hover,
    #section3 .btn-wrapper .btn:hover{
        border-color: #FFFFFFA3;
        color: #FFFFFF;
    }
    #section5 .btn-wrapper button:hover,
    #section5 .btn-wrapper .btn:hover{
        border-color: #11111133;
        color: #111111;
    }
    #section1 .video-wrapper .text-wrapper .btn-wrapper .btn:hover::after,
    #section3 .btn-wrapper button:hover::after,
    #section3 .btn-wrapper .btn:hover::after,
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn.text:hover::after,
    #section5 .btn-wrapper button:hover::after,
    #section5 .btn-wrapper .btn:hover::after{
        width: 0;
        opacity: 0;
        transform: translateX(-.375rem);
        margin-left: 0;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover:not(.is-active){
        /* flex: initial; */
        box-shadow: none;
        flex: 1;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover:not(.is-active) img{
        transform: scaleX(-1) scale(1);
    }
    #section7 .link-wrapper .links:hover{
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .8;
        cursor: default;
    }
    #section7 .link-wrapper:has(.links:hover) .links:not(:hover){
        opacity: 1;
    }
    #section7 .link-wrapper .links:hover .btn{
        opacity: 0;
        transform: translateY(.875rem);
        pointer-events: none;
        margin-top: 0;
        max-height: 0;
        padding: 0 1.5rem;
        border-width: 0;
    }
    #section7 .link-wrapper .links:hover .btn::after,
    #section7 .link-wrapper .links .btn:hover::after{
        width: 0;
        opacity: 0;
        transform: translateX(-.375rem);
        margin-left: 0;
    }
    #section7 .link-wrapper .links .btn:hover{
        padding-right: 1.5rem;
        box-shadow: 0 .75rem 1.875rem rgba(0, 0, 0, 0.18);
    }
    #section7 .site:hover{
        background-color: #F3F4F6;
        box-shadow: none;
        transform: none;
    }
    #section7 .link-wrapper .links:hover,
    #section7 .link-wrapper .links:active,
    #section7 .link-wrapper .links:focus,
    #section7 .link-wrapper .links:focus-visible{
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 1;
        cursor: default;
    }
    #section7 .link-wrapper .links:nth-child(1):hover,
    #section7 .link-wrapper .links:nth-child(1):active,
    #section7 .link-wrapper .links:nth-child(1):focus,
    #section7 .link-wrapper .links:nth-child(1):focus-visible{
        background-image: url("/ClientUI/images/contents/section7-mo-nth-1.png");
    }
    #section7 .link-wrapper .links:nth-child(2):hover,
    #section7 .link-wrapper .links:nth-child(2):active,
    #section7 .link-wrapper .links:nth-child(2):focus,
    #section7 .link-wrapper .links:nth-child(2):focus-visible{
        background-image: url("/ClientUI/images/contents/section7-mo-nth-2.png");
    }
    #section7 .link-wrapper .links:nth-child(3):hover,
    #section7 .link-wrapper .links:nth-child(3):active,
    #section7 .link-wrapper .links:nth-child(3):focus,
    #section7 .link-wrapper .links:nth-child(3):focus-visible{
        background-image: url("/ClientUI/images/contents/section7-mo-nth-3.png");
    }
    /* #section7 .link-wrapper .links:hover::before,
    #section7 .link-wrapper .links:active::before,
    #section7 .link-wrapper .links:focus::before,
    #section7 .link-wrapper .links:focus-visible::before{
        background: rgba(0, 0, 0, 0.38);
    } */
    #section7 .site:hover .text-wrapper .title{
        color: #111111;
    }
    #section7 .site:hover .text-wrapper .subject{
        color: #505050;
    }
    #section7 .site:hover .btn{
        opacity: 0;
        transform: scale(.92);
        pointer-events: none;
        box-shadow: none;
    }
    button,
    .btn,
    button::after,
    .btn::after{
        transition: none;
    }
    #section7 .site:hover{

    }

}

@media (max-width: 47.9375rem){
    .mobile{
        display: block;
    }
    .desktop-only{
        display: none;
    }
    .mobile-only{
        display: inline;
    }
    /*#section1 .video-slider{*/
    /*    background: url("/ClientUI/images/main/main_video_thumbnail.jpg") center / cover no-repeat;*/
    /*}*/
    #section1 .video-slider .hero-video{
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s ease;
    }
    #section1 .video-slider .hero-video.is-mobile-video-playing{
        opacity: 1;
        visibility: visible;
    }
    #section1 .video-wrapper .text-wrapper{
        left: clamp(2rem, 6vw, 2.5rem);
        bottom: clamp(12rem, 14vh, 13.5rem);
        width: min(100% - 4rem, 36rem);
    }

    #section1 .video-wrapper .text-wrapper .main-text{
        font-weight: 700;
        font-style: Bold;
        font-size: 2rem;
        leading-trim: NONE;
        line-height: 130%;
        letter-spacing: -4%;
        vertical-align: middle;

    }
    #section1 .video-controls{
        left: clamp(2rem, 6vw, 2.5rem);
        bottom: 8rem;
    }
    #section1 .section1-reference-panel{
        /* display: none; */
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: .75rem;
        top: 5.5rem;
        right: 1.25rem;
        transform: none;
    }
    #section1.active .section1-reference-panel,
    #section1.is-active .section1-reference-panel{
        transform: none;
    }
    #section1 .section1-reference-panel .panel-hero{
        padding: 1.5rem;
        min-height : calc(100dvh - 473px);
    }
    #section1 .section1-reference-panel .panel-title{
        font-weight: 600;
        font-style: SemiBold;
        font-size: 20px;
        leading-trim: NONE;
        line-height: 150%;
        letter-spacing: -2%;
        vertical-align: middle;
    }
    #section1 .section1-reference-panel .news-category{
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 120%;
        letter-spacing: -1%;
        margin-top: .5rem;
    }
    #section1 .section1-reference-panel .news-title{
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 140%;
        letter-spacing: -2%;

    }
    #section1 .section1-reference-panel .panel-arrow{
        position: relative;
        left: auto;
        top: auto;
    }
    #section1 .section1-reference-panel .panel-content{
        transform: none;
    }
    #section1 .section1-reference-panel.is-closed .panel-content{
        transform: none;
    }
    #section1 .section1-reference-panel.is-closed .panel-arrow{
        transform: none;
    }
    #section1 .section1-reference-panel.is-closed{
        pointer-events: none;
    }
    #section1 .section1-reference-panel.is-closed .panel-arrow{
        pointer-events: auto;
    }
    #section2 {
        padding: 6.25rem 0;
    }
    #section2 .solution-wrapper .main-text{
        font-size: 1.75rem;
        margin-left: 1.25rem;
    }
    #section2 .solution-wrapper .card-wrapper{
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0 1.25rem;
        box-sizing: border-box;
        gap: 1rem;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover, #section2 .solution-wrapper .card-wrapper .card.is-active{
        flex: initial;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper{
        flex-direction: row;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover .content-wrapper .title, #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .title{
        font-size: 1.5rem;
        white-space: normal;
    }
    #section2 .solution-wrapper .card-wrapper .card{
        height: 20rem;
        min-width: 16.25rem;
        max-width: 16.25rem;
        transition: none;
    }

    #section2 .solution-wrapper .card-wrapper .card .content-wrapper{
        bottom: 2rem;
        left: 1.75rem;
        align-items: center;
        transition: none;
        justify-content: space-between;
        width: calc(100% - 48px);
        gap: .75rem;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .subject,
    #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .subject{
        display: none;
        max-height: 0;
        margin-top: 0;
        opacity: 0;
        transform: none;
    }
    #section2 .solution-wrapper .card-wrapper .card img,
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .title{
        transition: none;
        font-size: 1.5rem;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .title{
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
        line-height: 1.25;
        word-break: keep-all;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover img, #section2 .solution-wrapper .card-wrapper .card.is-active img{
        transform: scaleX(-1) scale(1.0)
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn{
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-top: 0;
        max-height: 2.5rem;
        width: 2.5rem;
        min-width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        border-width: 0;
        font-size: 0;
        line-height: 0;
        color: transparent;
        text-indent: -9999px;
        white-space: nowrap;
        overflow: hidden;
        transition: none;
        border-radius: 50%;
        border: 1px solid #FFFFFF;
        flex: 0 0 2.5rem;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn::after{
        width: .75rem;
        height: .75rem;
        opacity: 1;
        transform: none;
        margin-left: 0;
        transition: none;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover, #section2 .solution-wrapper .card-wrapper .card.is-active{
        box-shadow: none;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover .content-wrapper .btn,
    #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .btn{
        width: 2.5rem;
        min-width: 2.5rem;
        height: 2.5rem;
        max-height: 2.5rem;
        margin-top: 0;
        padding: 0;
        border-radius: 50%;
        border: 1px solid #FFFFFF;
        font-size: 0;
        line-height: 0;
        color: transparent;
        text-indent: -9999px;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn:hover{
        background-color: transparent;
        border-color: #FFFFFF;
        color: transparent;
        box-shadow: none;
        padding-right: 0;
        font-weight: 500;
    }
    #section2 .solution-wrapper .card-wrapper .card .content-wrapper .btn:hover::after{
        width: .75rem;
        opacity: 1;
        transform: none;
        margin-left: 0;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover .content-wrapper .btn::after,
    #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper .btn::after{
        width: .75rem;
        height: .75rem;
    }
    #section2 .solution-wrapper .card-wrapper .card.is-active .content-wrapper{
        left: 1.75rem;
    }
    #section3{
        padding: 0 0 6.25rem 0;
    }
    #section3 .header .title{
        font-size: 1.75rem;
    }
    #section3.active .header{
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        flex-direction: column;
        gap: 1.125rem;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0 1.25rem;
        box-sizing: border-box;
    }
    #section3.active .content-wrapper{
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 0 1.25rem;
        box-sizing: border-box;
        display: flex;
        gap: 1rem;
    }
    #section3.active .header::-webkit-scrollbar,
    #section3.active .content-wrapper::-webkit-scrollbar{
        display: none;
    }
    #section3 .header .filter .text{
        border-radius: 6.25rem;
        border: 1px solid #0000001F;

        font-size: .9375rem;
    }
    #section3 .content-wrapper .content .desc-wrapper .kewords .keyword{
        font-size: .75rem;
    }
    #section3 .content-wrapper .content .desc-wrapper .subject{
        white-space: wrap;
    }
    #section3 .content-wrapper .content .desc-wrapper .subject span::before{
        display: none;
    }
    /* #section3 .content-wrapper .content .desc-wrapper .subject,
    #section3 .content-wrapper .content .desc-wrapper .kewords .keyword{
        white-space: nowrap;
    } */
    #section3 .content-wrapper .content .selectors{
        padding: 1rem 1rem 0 1rem;
    }
    #section3 .content-wrapper .content{
        flex: 0 0 16rem;
        min-width: 16rem;
    }
    #section3 .content-wrapper .content .img-wrapper{
        height: 11.5rem;
        padding: .75rem 1.5rem 0;
    }
    #section3 .content-wrapper .content .img-wrapper img{
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        margin: 0 auto;
    }
    #section3 .content-wrapper .content .desc-wrapper{
        padding: 1.25rem 1rem 1.5rem;
    }
    #section3 .content-wrapper .content .desc-wrapper .title{
        font-size: 1rem;
    }
    #section4{
        height: 50rem;
        overflow: hidden;
    }
    #section4 .earth-mask{
        inset: auto 0 0 0;
        height: 100%;
    }
    #section4 .img-rotator{
        top: 49%;
        left: 50%;
        width: 19.25rem;
        transform: translateX(-50%);
    }
    #section4 .text-wrapper{
        inset: auto 0 0 0;
        top: 4.75rem;
        gap: 1.25rem;
        padding: 0 1.25rem;
        transform: none;
        opacity: 1;
        transition: none;
    }
    #section4 .text-wrapper .desc-wrapper{
        font-size: 2.0625rem;
        line-height: 1.4;
        padding: 0;
        /* max-width: 18rem; */
    }
    #section4 .text-wrapper .content-wrapper{
        gap: .5rem;
    }
    #section4 .text-wrapper .content-wrapper .content{
        align-items: center;
    }
    #section4 .text-wrapper .content-wrapper .content .title{
        font-size: 1rem;
        font-weight: 500;
    }
    #section4 .text-wrapper .content-wrapper .content .data{
        font-size: 4rem;
        line-height: 1;
    }
    #section4 .select-wrapper{
        bottom: 5rem;
        justify-content: flex-start;
        gap: .75rem;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 1.25rem;
        box-sizing: border-box;
    }
    #section4 .select-wrapper .select-item{
        width: 9.375rem;
        height: 9.375rem;
        cursor: default;
        transition: none;
        box-shadow: none;
        border-radius: .875rem;
    }
    #section4 .select-wrapper .select-item::after{
        opacity: 1;
        transition: none;
    }
    #section4 .select-wrapper .select-item:hover{
        transform: none;
        box-shadow: none;
    }
    #section4 .select-wrapper .select-item:hover img{
        opacity: 1;
        transform: none;
        filter: none;
    }
    #section4 .select-wrapper .select-item:hover .comment,
    #section4 .select-wrapper .select-item:hover .btn{
        opacity: 0;
        transform: translateY(.75rem);
    }
    #section4 .select-wrapper .select-item .title-wrapper{
        justify-content: space-between;
        height: auto;
        padding: .875rem;
    }
    #section4 .select-wrapper .select-item .title{
        font-size: 1rem;
        line-height: 1.3;
    }
    #section4 .select-wrapper .select-item .comment{
        display: none;
    }
    #section4 .select-wrapper .select-item .btn{
        opacity: 1;
        transform: none;
        justify-content: flex-end;
        transition: none;
    }
    #section4 .select-wrapper .select-item .btn::before{
        width: 2rem;
        height: 2rem;
        border: 1px solid #FFFFFFA3;
        background: transparent url("/ClientUI/images/icon/LinkArrow.svg") center / .75rem .75rem no-repeat;
        box-shadow: none;
        transition: none;
    }
    #section5{
        padding: 6.25rem 1.25rem 6.25rem;
    }
    #section5 .title{
        font-size: 1.75rem;
    }
    #section5 .content-wrapper{
        display: grid;
        grid-template-columns: repeat(2,2fr);
        margin-top: 1.75rem;
        row-gap: 1.75rem;
        column-gap: .75rem;
    }
    #section5 .content-wrapper .content{
        min-width: 0;
    }
    #section5 .content-wrapper .content .img-box{
        height: 7.5rem;
    }
    #section5 .content-wrapper .content .label-wrapper{
        padding: 0 .25rem;
    }
    #section5 .content-wrapper .content .label-wrapper .title{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: .375rem;
        font-size: 1rem;
    }
    #section5 .btn-wrapper button, #section5 .btn-wrapper .btn{
        font-family: Google Sans Flex;
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 120%;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #131416;
        border: 1px solid #CDD1D5;
    }
    #section5 .content-wrapper .content .label-wrapper .date{
        font-size: .8125rem;
        margin-top: .625rem;
    }
    #section5 .content-wrapper .content .label-wrapper .category{
        margin-top: 1rem;
    }
    #section6{
        padding: 0;
    }
    #section6 .content-container{
        border-radius: 0;
        background-image: url("/ClientUI/images/contents/section6Mo.png");
    }
    #section6 .content-container .content-wrapper .card-flex .card .img-wrapper {
        width: 15rem;
        height: 13.75rem;

    }
    #section6 .content-container .content-wrapper{
        padding: 6.25rem 2.5rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper{
        gap: 1.25rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper .title{
        font-size: 1.75rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper{
        gap: .75rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn{
        padding: .8125rem;
    }
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .story-link-inline{
        display: none;
    }
    #section6 .content-container .content-wrapper .story-link{
        display: flex;
        justify-content: center;
        /* margin-top: -2rem; */
    }
    #section6 .content-container .content-wrapper .story-link .btn.text{
        width: fit-content;
        margin: 0 auto;
        padding: .9063rem 1.5rem;
        border-radius: 6.25rem;
        border: 1px solid #FFFFFFA3;
        color: #FFFFFF;
        text-decoration-line: none;
    }
    #section6 .content-container .content-wrapper{
        gap: 4rem;
    }
    #section6 .content-container .content-wrapper .card-flex{
        width: calc(100% + 5rem);
        margin-left: -2.5rem;
    }
    #section6 .content-container .content-wrapper .card-flex .card{
        width: 15rem;
    }
    #section6 .content-container .content-wrapper .card-flex .card .comment-wrapper .ico{
        display: none;
    }
    #section6 .content-container .content-wrapper .card-flex .card .comment-wrapper .text{
        font-size: .875rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #section7{
        padding: 6.25rem 1.25rem;
    }
    #section7 .title{

        font-weight: 700;
        font-style: Bold;
        font-size: 1.75rem;
        leading-trim: NONE;
        line-height: 130%;
        letter-spacing: -2%;
        vertical-align: middle;

    }
    #section7 .site{
        padding: 1.5rem;
    }
    #section7 .site-wrappeer{
        grid-template-columns: repeat(2, 2fr);
        margin-top: .9375rem;
        gap: 1rem;
    }
    #section7 .site .text-wrapper .title{
        font-size: 1.125rem;
    }
    #section7 .site .text-wrapper .subject{
        font-size: .875rem;
    }
    #section7 .site .btn{
        display: none;
    }
    #section7 .link-wrapper{
        margin-top: 1.75rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        height: auto;
        overflow: visible;
        background: none;
        border-radius: 0;
        box-sizing: border-box;
    }
    #section7 .link-wrapper::before{
        display: none;
    }
    #section7 .link-wrapper .links + .links::before{
        display: none;
    }
    #section7 .link-wrapper .links{
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 9.75rem;
        padding: 1.5rem;
        border-radius: 1rem;
        overflow: hidden;
        opacity: 1;
        text-align: left;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        position: relative;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    /* #section7 .link-wrapper .links + .links::before{
        inset: 0;
        top: 0;
        bottom: 0;
        left: 0;
        width: auto;
        background: rgba(0, 0, 0, 0.38);
        z-index: 0;
    } */
    #section7 .link-wrapper .links:active{
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 1;
    }
    #section7 .link-wrapper .links:active::before{
        background: rgba(0, 0, 0, 0.38);
    }
    #section7 .link-wrapper .links:nth-child(1){
        background-image: url("/ClientUI/images/contents/section7-mo-nth-1.png");
    }
    #section7 .link-wrapper .links:nth-child(2){
        background-image: url("/ClientUI/images/contents/section7-mo-nth-2.png");
    }
    #section7 .link-wrapper .links:nth-child(3){
        background-image: url("/ClientUI/images/contents/section7-mo-nth-3.png");
    }

    #section7 .link-wrapper .links > *{
        position: relative;
        z-index: 1;
    }
    #section7 .link-wrapper div{
        width: 100%;
        align-items: flex-start;
        justify-content: center;
    }
    #section7 .link-wrapper .links .title{
        font-size: 1.25rem;
        line-height: 1.2;
    }
    #section7 .link-wrapper .links .subject{
        margin-top: .625rem;
        font-size: .875rem;
        line-height: 1.5;
        max-width: 100%;
        word-break: keep-all;
    }
    #section7 .link-wrapper .links .btn{
        display: none;
    }
    #section1 .video-wrapper .text-wrapper .btn-wrapper .btn:hover,
    #section3 .btn-wrapper button:hover,
    #section3 .btn-wrapper .btn:hover,
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn.text:hover,
    #section5 .btn-wrapper button:hover,
    #section5 .btn-wrapper .btn:hover{
        background-color: transparent;
        box-shadow: none;
        padding-right: 1.5rem;
        font-weight: 400;
    }
    #section1 .video-wrapper .text-wrapper .btn-wrapper .btn:hover,
    #section3 .btn-wrapper button:hover,
    #section3 .btn-wrapper .btn:hover{
        border-color: #FFFFFFA3;
        color: #FFFFFF;
    }
    #section5 .btn-wrapper button:hover,
    #section5 .btn-wrapper .btn:hover{
        border-color: #11111133;
        color: #111111;
    }
    #section1 .video-wrapper .text-wrapper .btn-wrapper .btn:hover::after,
    #section3 .btn-wrapper button:hover::after,
    #section3 .btn-wrapper .btn:hover::after,
    #section6 .content-container .content-wrapper .desc-wrapper .btn-wrapper .btn.text:hover::after,
    #section5 .btn-wrapper button:hover::after,
    #section5 .btn-wrapper .btn:hover::after{
        width: 0;
        opacity: 0;
        transform: translateX(-.375rem);
        margin-left: 0;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover:not(.is-active){
        flex: initial;
        box-shadow: none;
    }
    #section2 .solution-wrapper .card-wrapper .card:hover:not(.is-active) img{
        transform: scaleX(-1) scale(1);
    }
    #section7 .link-wrapper .links:hover{
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: .8;
        cursor: default;
    }
    #section7 .link-wrapper:has(.links:hover) .links:not(:hover){
        opacity: 1;
    }
    #section7 .link-wrapper .links:hover .btn{
        opacity: 0;
        transform: translateY(.875rem);
        pointer-events: none;
        margin-top: 0;
        max-height: 0;
        padding: 0 1.5rem;
        border-width: 0;
    }
    #section7 .link-wrapper .links:hover .btn::after,
    #section7 .link-wrapper .links .btn:hover::after{
        width: 0;
        opacity: 0;
        transform: translateX(-.375rem);
        margin-left: 0;
    }
    #section7 .link-wrapper .links .btn:hover{
        padding-right: 1.5rem;
        box-shadow: 0 .75rem 1.875rem rgba(0, 0, 0, 0.18);
    }
    #section7 .site:hover{
        background-color: #F3F4F6;
        box-shadow: none;
        transform: none;
    }
    #section7 .link-wrapper .links:hover,
    #section7 .link-wrapper .links:active,
    #section7 .link-wrapper .links:focus,
    #section7 .link-wrapper .links:focus-visible{
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 1;
        cursor: default;
    }
    /*#section7 .link-wrapper .links:nth-child(1):hover,*/
    /*#section7 .link-wrapper .links:nth-child(1):active,*/
    /*#section7 .link-wrapper .links:nth-child(1):focus,*/
    /*#section7 .link-wrapper .links:nth-child(1):focus-visible{*/
    /*    background-image: url("/ClientUI/images/contents/section7-mo-nth-1.png");*/
    /*}*/
    /*#section7 .link-wrapper .links:nth-child(2):hover,*/
    /*#section7 .link-wrapper .links:nth-child(2):active,*/
    /*#section7 .link-wrapper .links:nth-child(2):focus,*/
    /*#section7 .link-wrapper .links:nth-child(2):focus-visible{*/
    /*    background-image: url("/ClientUI/images/contents/section7-mo-nth-2.png");*/
    /*}*/
    /*#section7 .link-wrapper .links:nth-child(3):hover,*/
    /*#section7 .link-wrapper .links:nth-child(3):active,*/
    /*#section7 .link-wrapper .links:nth-child(3):focus,*/
    /*#section7 .link-wrapper .links:nth-child(3):focus-visible{*/
    /*    background-image: url("/ClientUI/images/contents/section7-mo-nth-3.png");*/
    /*}*/
    /* #section7 .link-wrapper .links:hover::before,
    #section7 .link-wrapper .links:active::before,
    #section7 .link-wrapper .links:focus::before,
    #section7 .link-wrapper .links:focus-visible::before{
        background: rgba(0, 0, 0, 0.38);
    } */
    #section7 .site:hover .text-wrapper .title{
        color: #111111;
    }
    #section7 .site:hover .text-wrapper .subject{
        color: #505050;
    }
    #section7 .site:hover .btn{
        opacity: 0;
        transform: scale(.92);
        pointer-events: none;
        box-shadow: none;
    }
    button,
    .btn,
    button::after,
    .btn::after{
        transition: none;
    }
    #section7 .site:hover{

    }

}

@media (hover: none), (pointer: coarse){
    #section3 .btn-wrapper button:hover,
    #section3 .btn-wrapper .btn:hover{
        background-color: transparent !important;
        border-color: #11111129 !important;
        color: #111111 !important;
        box-shadow: none !important;
        padding-right: 1.5rem !important;
        transform: none !important;
    }
    #section3 .btn-wrapper button:hover::after,
    #section3 .btn-wrapper .btn:hover::after{
        width: 0 !important;
        opacity: 0 !important;
        transform: translateX(-.375rem) !important;
        margin-left: 0 !important;
    }
    #section4 .select-wrapper .select-item:hover{
        background: #111111 !important;
        box-shadow: none !important;
    }
    #section4 .select-wrapper .select-item:hover::after{
        opacity: 1 !important;
    }
    #section4 .select-wrapper .select-item:hover img{
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
    #section4 .select-wrapper .select-item:hover .comment,
    #section4 .select-wrapper .select-item:hover .btn{
        transform: none !important;
    }
    #section4 .select-wrapper .select-item .btn:hover,
    #section4 .select-wrapper .select-item .btn:active,
    #section4 .select-wrapper .select-item .btn:focus,
    #section4 .select-wrapper .select-item .btn:focus-visible{
        opacity: 1 !important;
        transform: none !important;
    }
    #section4 .select-wrapper .select-item:hover .btn,
    #section4 .select-wrapper .select-item .btn:hover,
    #section4 .select-wrapper .select-item .btn:active,
    #section4 .select-wrapper .select-item .btn:focus,
    #section4 .select-wrapper .select-item .btn:focus-visible{
        opacity: 1 !important;
        transform: none !important;
    }
    #section4 .select-wrapper .select-item .btn:hover::before,
    #section4 .select-wrapper .select-item .btn:active::before,
    #section4 .select-wrapper .select-item .btn:focus::before,
    #section4 .select-wrapper .select-item .btn:focus-visible::before{
        opacity: 1 !important;
        transform: none !important;
    }
}
