/* ===== 헤더 ===== */

/* 헤더 컨테이너 */
.header {
    position: fixed; /* 고정 위치 */
    top: 0; /* 상단 고정 */
    left: 0; /* 좌측 정렬 */
    right: 0; /* 우측 정렬 */
    background: transparent; /* 투명 배경 */
    z-index: 9999; /* 최상위 레이어 */
    transition: 0.5s; /* 부드러운 전환 효과 */
}


/* 헤더 내부 컨테이너 */
.header .inner {
    display: flex; /* 플렉스 레이아웃 */
    justify-content: space-between; /* 양쪽 끝 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    height: 100px; /* 헤더 높이 */
    background: transparent; /* 투명 배경 */
}

/* 헤더 로고 */
.header .logo {
    max-width: 50px; /* 로고 최대 너비 */
}

/* 헤더 메뉴 버튼 */
.header .menu_btn {
    position: relative; /* 상대 위치 */
    z-index: 999; /* 레이어 순서 */
}

/* 헤더 메뉴 버튼 텍스트 스타일 */
.header .menu_btn button,
.header .m_menu_btn button {
    letter-spacing: 0.5px; /* 글자 간격 */
    line-height: 100px; /* 줄 높이 */
    font-weight: 700; /* 굵은 폰트 */
    text-transform: uppercase; /* 대문자 변환 */
    color: (var(--white-color)); /* 흰색 텍스트 */
}

/* 헤더 네비게이션 메뉴 */
.header .gnb {
    position: absolute; /* 절대 위치 */
    top: 64px; /* 상단 여백 */
    left: 50%; /* 가로 중앙 */
    transform: translate(-50%, 0); /* 정확한 중앙 정렬 */
    padding: 24px; /* 내부 여백 */
    background: rgba(255, 255, 255, 0.1); /* 반투명 배경 */
    opacity: 0; /* 기본적으로 숨김 */
    visibility: hidden; /* 보이지 않음 */
    transition: 0.5s; /* 부드러운 전환 효과 */
    border-radius: 8px; /* 둥근 모서리 */
    backdrop-filter: blur(10px); /* 배경 블러 효과 */
}

/* 헤더 메뉴 호버 시 네비게이션 표시 */
.header .menu_btn:hover .gnb {
    opacity: 1; /* 완전 불투명 */
    visibility: visible; /* 보이게 설정 */
}

/* 네비게이션 메뉴 링크 */
.header .gnb ul li a {
    display: block; /* 블록 요소 */
    text-align: center; /* 텍스트 중앙 정렬 */
    font-size: 16px; /* 폰트 크기 */
    line-height: 32px; /* 줄 높이 */
    white-space: nowrap; /* 줄바꿈 방지 */
}

/* 모바일 메뉴 버튼 (기본 숨김) */
.m_menu_btn {
    display: none; /* 기본적으로 숨김 */
}

/* 헤더 로고 두 번째 링크 (기본 숨김) */
.header .logo a:last-child {
    display: none; /* 기본적으로 숨김 */
}

/* 헤더 활성화 상태 (스크롤 시) */
.header.on {
    background: #000; /* 검은 배경 */
    transition: 0.5s; /* 부드러운 전환 효과 */
}

@media(max-width: 1025px) {

    .menu_btn {
        display: none;
    }

    .m_menu_btn {
        display: block;
    }

    .header .logo {
        max-width: 100px;
    }

    .header .logo a:first-child {
        display: none;
    }

    .header .logo a:last-child {
        display: block;
    }

    .header .gnb {
        z-index: 9999;
        left: unset;
        right: 16px;
        transform: translate(0, 0);
    }

    .header .gnb.on {
        opacity: 1;
        visibility: visible;
    }


}

@media(max-width: 480px) {
    .header .inner {
        height: 60px;
    }

    .header .logo {
        max-width: 80px;
    }

    .header .gnb {
        top: 50px;
    }

    .header .menu_btn button,
    .header .m_menu_btn button {
        line-height: 60px;
    }
}

section.fadeout .fp-tableCell {
    opacity: 0.2;
    transition: 0.4s;
}

section .inner_center {
    height: auto;
    margin-top: 30px;
}

section:not(.fp-auto-height, .fadeout) .fp-tableCell {
    transform: scale(0.9) translateY(0%);
    transition: 0.3s;
}

/* ===== 메인 비주얼 ===== */

/* GPU 가속 활용 - 활성 섹션 */
section.active:not(.fp-auto-height) .fp-tableCell {
    transform: scale(1) translateY(0%); /* 원래 크기로 복원 */
    transition: 0.6s ease-out; /* 부드러운 전환 효과 */
    will-change: transform; /* GPU 가속 최적화 */
}

/* 메인 비주얼 배경 */
.main_visual {
    transform: translateZ(0); /* GPU 가속 활성화 */
    will-change: transform; /* 변환 최적화 */
    position: relative; /* 상대 위치 */
    background: url(/images/main-background.jpg); /* 배경 이미지 */
    background-repeat: no-repeat; /* 반복 없음 */
    background-size: 100% 100%; /* 전체 크기로 맞춤 */
}

/* 메인 비주얼 배경 비디오 */
.main_visual video {
    position: absolute; /* 절대 위치 */
    inset: 0 0 0 0; /* 모든 방향 0 (전체 영역) */
    width: 100%; /* 너비 100% */
    height: 100%; /* 높이 100% */
    object-fit: cover; /* 비율 유지하면서 영역에 맞춤 */
    z-index: -1; /* 배경 레이어 */
}

/* 메인 비주얼 카운트다운 타이머 박스 */
.main_visual .time_box {
    display: flex; /* 플렉스 레이아웃 */
    flex-direction: column; /* 세로 방향 정렬 */
    justify-content: center; /* 세로 중앙 정렬 */
    align-items: center; /* 가로 중앙 정렬 */
    max-width: 240px; /* 최대 너비 */
    width: 100%; /* 너비 100% */
    height: 360px; /* 높이 */
    border: 1px solid rgba(255, 255, 255, 0.1); /* 반투명 테두리 */
    backdrop-filter: blur(4px); /* 배경 블러 효과 */
}

/* 메인 비주얼 카운트다운 타이머 컨테이너 */
.main_visual .time {
    display: flex; /* 플렉스 레이아웃 */
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    gap: 24px; /* 아이템 간격 */
    margin: 0 0 40px 0; /* 하단 여백 */
}

.main_visual .time_box .time_txt {
    display: block;
    margin: 0 0 16px 0;
    font-size: 160px;
    line-height: 160px;
    font-weight: 100;
    font-family: "Noto Serif KR", serif;
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.main_visual .time_box .time_txt.fade-out {
    /* transform: translateY(10px); */
    opacity: 0.1;
}

.main_visual .time_box .time_txt.fade-in {
    /* transform: translateY(-10px); */
    opacity: 1;
}

.main_visual .time_box p {
    font-weight: 100;
    font-size: 16px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.main_visual .tit {
    text-align: center;
}

@property --k {
    syntax: '<number>';
    initial-value: 0;
    inherits: false
}

svg[height='0'] {
    position: absolute
}

.main_visual strong {
    /* no pseudo needed */
    --k: 0;
    place-self: center;
    background:
        linear-gradient(90deg,
            hsl(calc(var(--k)*1turn), 95%, 65%),
            hsl(calc(var(--k)*1turn + 90deg), 95%, 65%)) text;
    color: transparent;
    font: 900 clamp(.875em, 7.25vw, 5em) sans-serif;

    filter: url(#f);
    text-align: center;
    text-transform: uppercase;
    animation: k 4s linear infinite;

    display: block;
    margin: 0 0 48px 0;
    font-size: 64px;
    line-height: 64px;
}

@keyframes k {
    to {
        --k: 1
    }
}

.main_visual .tit h2 span {
    display: block;
    margin: 0 0 48px 0;
    font-size: 64px;
    line-height: 64px;
    filter: url(#f);
    color: #fff;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


.main_visual .tit p {
    font-size: 24px;
    line-height: 32px;
}

.main_visual .scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main_visual .scroll span {
    display: block;
}

.scroll a {
    position: relative;
    font-size: 14px;
}

.scroll a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg) translate(-50%, 0);

    animation: scroll 1.5s infinite;
    box-sizing: border-box;
}

.scroll a span:nth-child(2) {
    animation: scroll02 1.5s infinite;
    top: 6px;
    transform: rotate(-45deg) translate(-50%, 0);
}


@keyframes scroll {
    0% {
        top: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 16px;
        opacity: 0;
    }
}

@keyframes scroll02 {
    0% {
        top: 6px;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 22px;
        opacity: 0;
    }
}


@media(max-width: 1025px) {
    .main_visual strong {
        margin: 0 0 24px 0;
        font-size: 48px;
        line-height: 48px;
    }

    .main_visual .tit h2 span {
        margin: 0 0 24px 0;
        font-size: 48px;
        line-height: 48px;
    }

    .main_visual .tit p {
        font-size: 16px;
        line-height: 16px;
    }

    .main_visual .time>* {
        flex: 1;
    }

    .main_visual .time_box {
        height: auto;
        max-width: unset;
        width: 100%;
        padding: 40px 40px;
    }

    .main_visual .time_box .time_txt {
        font-size: 80px;
        line-height: 80px;
    }
}

@media(max-width: 768px) {
    .main_visual strong {
        margin: 0 0 24px 0;
        font-size: 48px;
        line-height: 48px;
    }

    .main_visual .tit h2 span {
        margin: 0 0 24px 0;
        font-size: 40px;
        line-height: 40px;
    }

    .main_visual .tit p {
        font-size: 16px;
        line-height: 16px;
    }

    .main_visual .time {
        gap: 8px;
    }

    .main_visual .time_box {
        padding: 24px;
    }

    .main_visual .time_box .time_txt {
        font-size: 48px;
        line-height: 48px;
    }

    .main_visual .time_box p {
        font-size: 14px;
        line-height: 14px;
    }

    .main_visual .tit h2 {
        font-size: 24px;
        line-height: 32px;
        word-break: keep-all;
    }

    .main_visual .tit h2 br {
        display: block;
    }

    .main_visual .tit p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media(max-width: 480px) {
    .main_visual strong {
        margin: 0 0 24px 0;
        font-size: 40px;
        line-height: 40px;
    }

    .main_visual .tit h2 span {
        margin: 0 0 24px 0;
        font-size: 24px;
        line-height: 24px;
    }

    .main_visual .tit p {
        font-size: 16px;
        line-height: 16px;
    }

    .main_visual .time_box {
        padding: 16px;
    }

    .main_visual .time_box .time_txt {
        font-size: 32px;
        line-height: 32px;
    }

    .main_visual .time_box p {
        font-size: 12px;
        line-height: 12px;
    }

    .main_visual .tit h2 {
        margin: 0 0 8px 0;
        font-size: 20px;
        line-height: 26px;
    }

    .main_visual .tit p {
        font-size: 14px;
        line-height: 20px;
    }

    .scroll a {
        font-size: 12px;
    }
}

.sec02 {}

.sec02 .inner_sec02 {
    position: relative;
    display: flex;
    gap: 120px;
    margin: 0 0 0 auto;
    align-items: center;
    max-width: calc((100% - 1770px)/2 + 1770px);
}

.sec02 .inner_sec02 .left {
    flex: 0 1 330px;
    min-width: 0;

}

.sec02 .inner {

    text-align: center;
}

.sec02 .inner h2 {
    margin: 0 0 40px 0;
}

.sec02 .inner_sec02 .left .tit h2 {
    margin: 0 0 40px 0;
}

.sec02 .inner_sec02 .left .line {
    display: block;
    width: 100%;
    max-width: 330px;
    margin: 0 0 40px 0;
    height: 0.1px;
    background: rgba(255, 255, 255, 0.8);

}

.sec02 .inner_sec02 .left .tit p {
    margin: 0 0 40px 0;
}

.sec02 .inner_sec02 .left .nav_btn {
    display: flex;
    gap: 20px;
}

/* right */

.sec02 .inner_sec02 .right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    overflow: hidden;
}

.sec02 .inner_sec02 .right .top {
    /* margin: 0 0 0 30px; */
}

.sec02 .inner_sec02 .right .itm {
    /* margin: 0 30px 0 0; */
    position: relative;
}

.sec02 .inner_sec02 .right .itm::before {
    content: '';
    position: absolute;
    z-index: 1;
    inset: 0 0 0 0;
    transition: 0.5s;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.sec02 .inner_sec02 .right .right_slide {
    /* margin: auto -100px 0 0; */
}

.sec02 .inner_sec02 .right .slg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    transition: 0.5s;
    z-index: 9;
}

.sec02 .inner_sec02 .right .slg strong {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    transition: 0.5s;
}

.sec02 .inner_sec02 .right .slg p {
    opacity: 0;
    visibility: hidden;
    font-size: 24px;
    line-height: 24px;
    font-weight: 300;
    white-space: nowrap;
}

/* 포트폴리오 이미지 컨테이너 */
.sec02 .inner_sec02 .right .img_box {
    position: relative; /* 상대 위치 설정 */
    height: 280px; /* 고정 높이 설정 - 모든 이미지 동일한 크기 */
    overflow: hidden; /* 넘치는 부분 숨김 */
}

/* 포트폴리오 이미지 스타일 */
.sec02 .inner_sec02 .right .img_box img {
    width: 100%; /* 너비 100% */
    height: 100%; /* 높이 100% */
    object-fit: cover; /* 비율 유지하면서 영역에 맞춤 */
    object-position: center; /* 중앙 정렬 */
}

/* 슬라이드 페이지네이션 점 (기본 숨김) */
.sec02 .slide_m_dots {
    display: none; /* 기본적으로 숨김 */
}

/* 포트폴리오 섹션 왼쪽 텍스트 */
.sec02 .left p {
    font-size: 19px; /* 폰트 크기 */
    word-wrap: unset; /* 단어 줄바꿈 해제 */
}

/* 카운트다운 타이머 컨테이너 */
.sec02 .time {
    display: flex; /* 플렉스 레이아웃 */
    justify-content: space-between; /* 양쪽 끝 정렬 */
    margin: 0 0 16px 0; /* 하단 여백 */
    gap: 8px; /* 아이템 간격 */
}

/* 카운트다운 타이머 박스 */
.sec02 .time .time_box {
    padding: 20px 0; /* 상하 패딩 */
    display: flex; /* 플렉스 레이아웃 */
    flex-direction: column; /* 세로 방향 정렬 */
    justify-content: center; /* 세로 중앙 정렬 */
    align-items: center; /* 가로 중앙 정렬 */
    width: 100%; /* 너비 100% */
    border: 1px solid rgba(255, 255, 255, 0.1); /* 반투명 테두리 */
}

/* 카운트다운 숫자 (큰 글씨) */
.sec02 .inner_sec02 .time .time_box strong {
    font-size: 56px; /* 큰 폰트 크기 */
}

/* 카운트다운 단위 텍스트 (작은 글씨) */
.sec02 .inner_sec02 .time .time_box p {
    margin: 0; /* 여백 제거 */
    font-size: 14px; /* 작은 폰트 크기 */
    color: rgba(255, 255, 255, 0.7); /* 반투명 흰색 */
    text-transform: uppercase; /* 대문자 변환 */
    letter-spacing: 2px; /* 글자 간격 */
}



/* ===== 호버 효과 ===== */

/* 포트폴리오 아이템 호버 시 배경 오버레이 */
.sec02 .inner_sec02 .right .itm:hover::before {
    transition: 0.5s; /* 부드러운 전환 효과 */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)); /* 어두운 그라데이션 */
}

/* 포트폴리오 아이템 호버 시 텍스트 위치 변경 */
.sec02 .inner_sec02 .right .itm:hover .slg {
    bottom: 50%; /* 하단에서 중앙으로 이동 */
    transform: translate(-50%, 50%); /* 중앙 정렬 */
    transition: 0.5s; /* 부드러운 전환 효과 */
}

/* 포트폴리오 아이템 호버 시 제목 텍스트 */
.sec02 .inner_sec02 .right .itm:hover .slg strong {
    font-size: 32px; /* 호버 시 큰 폰트 크기 */
    line-height: 32px; /* 줄 높이 */
    display: block; /* 블록 요소로 변경 */
    margin: 0 0 16px 0; /* 하단 여백 */
}

/* 포트폴리오 아이템 호버 시 설명 텍스트 */
.sec02 .inner_sec02 .right .itm:hover .slg p {
    opacity: 1; /* 완전 불투명 */
    visibility: visible; /* 보이게 설정 */
    transition: 0.2s 0.5s; /* 지연된 전환 효과 */
}

/* ===== 모달 창 ===== */

/* 모달 창 컨테이너 */
.modal {
    display: none; /* 기본적으로 숨김 */
    z-index: 500; /* 레이어 순서 */
    width: 100%; /* 너비 100% */
    position: absolute; /* 절대 위치 */
    top: 50%; /* 세로 중앙 */
    left: 50%; /* 가로 중앙 */
    max-width: 1000px; /* 최대 너비 */
    transform: translate(-50%, -50%); /* 정확한 중앙 정렬 */
    background-color: rgba(0, 0, 0, 1); /* 검은 배경 */
}

/* 모달 닫기 버튼 */
.modal button {
    z-index: 999; /* 최상위 레이어 */
    position: absolute; /* 절대 위치 */
    top: 2rem; /* 상단 여백 */
    right: 1rem; /* 우측 여백 */
    background: transparent; /* 투명 배경 */
    border: 0; /* 테두리 제거 */
    color: #000; /* 검은색 텍스트 */
    font-size: 3rem; /* 큰 폰트 크기 */
}

/* 모달 내용 박스 */
.modalBox {
    position: relative; /* 상대 위치 */
    background-color: #ffffff; /* 흰색 배경 */
    text-align: center; /* 텍스트 중앙 정렬 */
}

/* 모달 내부 이미지 */
.modalBox img {
    width: 100%; /* 너비 100% */
}

/* 모달 내부 텍스트 */
.modalBox p {
    color: #ffffff; /* 흰색 텍스트 */
    background-color: #000; /* 검은 배경 */
    font-size: 2rem; /* 폰트 크기 */
    padding: .2rem; /* 패딩 */
}

@media(max-width: 1771px) {
    .sec02 .inner_sec02 {
        margin: 0 0 0 80px;
    }
}

@media(max-width: 1400px) {
    .sec02 .inner_sec02 {
        gap: 80px;
    }
}

@media(max-width: 1025px) {
    .sec02 .inner_sec02 {
        display: block;
        padding: 0 16px;
        margin: 0;
    }

    .sec02 .inner_sec02 .left {
        flex: unset;
        width: 100%;
        text-align: center;
    }

    .sec02 .inner_sec02 .left .tit h2 {
        margin: 0 0 16px 0;
    }

    .sec02 .inner_sec02 .left .tit h2 br {
        display: none;
    }

    .sec02 .inner_sec02 .left .line {
        display: none;
    }

    .sec02 .inner_sec02 .right {
        gap: 8px;
    }

    .sec02 .inner_sec02 .right .itm {
        max-width: unset;
        margin: 0 8px 0 0;
    }

    .sec02 .inner_sec02 .right .top {
        margin: 0;
    }

    .sec02 .inner_sec02 .left .nav_btn {
        display: none;
    }

    .sec02 .slide_m_dots {
        display: block;
        position: absolute;
        z-index: 9;
        bottom: -32px;
        left: 50%;
        transform: translate(-50%, 0);
        max-width: 1025px;
        width: 100%;
        padding: 0 16px;

    }

    .sec02 .slide_m_dots .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        opacity: 1;
        background: var(--white-color);
    }

    .sec02 .slide_m_dots .swiper-pagination-bullet-active {
        background: var(--pri-color);
    }

    .sec02 .inner_sec02 .left .tit p {
        margin: 0 0 24px 0;
        font-size: 16px;
        line-height: 20px;
    }

    .sec02 .left .tit {
        display: flex;
        flex-direction: column;
    }

    .sec02 .time {
        order: 1;
    }

    .sec02 .inner_sec02 .time .time_box p {
        margin: 0;
    }


    .sec02 .inner h2 {
        margin: 0 0 16px 0;
    }

    .modal {
        padding: 0 16px;
    }

    .modal button {
        top: 1.6rem;
        right: 1.5rem;
    }
}

/* ===== 모바일 반응형 (768px 이하) ===== */

@media(max-width: 768px) {
    /* 포트폴리오 아이템 모바일 스타일 */
    .sec02 .inner_sec02 .right .itm {
        overflow: hidden; /* 넘치는 부분 숨김 */
    }
    
    /* 포트폴리오 이미지 모바일 높이 */
    .sec02 .inner_sec02 .right .img_box {
        height: 200px; /* 모바일에서는 더 작은 높이 */
    }

    /* 포트폴리오 텍스트 모바일 위치 */
    .sec02 .inner_sec02 .right .slg {
        bottom: -10px; /* 하단에서 약간 위로 */
    }

    .sec02 .inner_sec02 .right .slg strong {
        font-size: 16px;
        line-height: 16px;
    }

    .sec02 .inner_sec02 .right .itm:hover .slg strong {
        margin: 0 0 4px 0;
        font-size: 24px;
        line-height: 24px;
    }

    .sec02 .inner_sec02 .right .slg p {
        font-size: 14px;
        line-height: 18px;
    }

    .sec02 .inner_sec02 .time .time_box strong {
        font-size: 32px;
    }

}

@media(max-width: 480px) {
    .sec02 .inner_sec02 .right .itm:hover .slg strong {

        font-size: 20px;
        line-height: 20px;
    }

    .sec02 .inner_sec02 .left .tit p {
        margin: 0 0 16px 0;
        font-size: 14px;
        line-height: 20px;
    }

    .sec02 .time .time_box {
        padding: 8px 0;
    }

    .sec02 .inner_sec02 .time .time_box p {
        margin: 0;
        font-size: 12px;
    }
}

/* sec03 - 모던 글래스모피즘 스타일 */
.sec03 {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #000000 100%);
    overflow: hidden;
}

/* 배경 파티클 효과 */
.sec03::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(3, 188, 244, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(3, 188, 244, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.sec03.fp-completely .animated.fadeInUpShort {
    -webkit-animation-name: fadeInUpShort;
    animation-name: fadeInUpShort;
}

.sec03 .inner {
    max-width: 1410px;
    padding: 0;
}

.sec03 .tit {
    margin: 0 0 40px 0;
    text-align: center;
}

.sec03 .tit h2 {
    margin: 0 0 16px 0;
}

.sec03 .inner_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sec03 .inner_box .video_box {
    position: relative;
    padding-top: 32.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.sec03 .inner_box .video_box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.sec03 .inner_box .video_box video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.sec03 .inner_box>* {
    flex: 1;
}

.sec03 .inner_box .txt_box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sec03 .inner_box .txt_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.sec03 .inner_box .txt_box:hover::before {
    left: 100%;
}

.sec03 .inner_box .txt_box:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(3, 188, 244, 0.3);
}

.sec03 .inner_box .txt_box p {
    font-size: 24px;
    line-height: 32px;
    word-break: unset;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.sec03 .inner_box .txt_box p:first-child {
    margin: 0 0 32px 0;
    font-weight: 500;
}





@media(max-width: 1025px) {
    .sec03 .inner {
        padding: 0 16px;
    }

    .sec03 .tit {
        margin: 0 0 40px 0;
    }

    .sec03 .inner_box {
        gap: 30px;
    }

    .sec03 .inner_box .txt_box {
        padding: 30px;
    }

    .sec03 .inner_box .txt_box p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media(max-width: 768px) {
    .sec03 .inner_box {
        display: block;
        gap: 20px;
    }

    .sec03 .inner_box .video_box {
        padding-top: 46.25%;
        margin: 0 0 20px 0;
        border-radius: 16px;
    }

    .sec03 .inner_box .txt_box {
        padding: 24px;
        border-radius: 16px;
    }

    .sec03 .inner_box .txt_box p {
        font-size: 16px;
        line-height: 22px;
    }

    .sec03 .inner_box .txt_box p:first-child {
        margin: 0 0 20px 0;
    }

    .sec03 .tit h2 {
        font-size: 36px;
    }
}

@media(max-width: 480px) {
    .sec03 .tit h2 {
        font-size: 28px;
    }

    .sec03 .inner_box .txt_box {
        padding: 20px;
    }

    .sec03 .inner_box .txt_box p {
        font-size: 14px;
        line-height: 20px;
    }
}

.sec04 {
    position: relative;

}

.sec04 .tit {
    z-index: 999;
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translate(-50%, 0);
}

.sec04 .Do_bg {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.sec04 .Do_bg>* {
    flex: 1;
}

.sec04 .Do_bg li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.5s;
    font-size: 28px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.sec04 .Do_bg li.on {
    max-width: 480px;
    /* font-size: 32px; */
    font-weight: 700;
    transition: 0.5s;
    color: #fff;
    backdrop-filter: blur(8px);
}

.sec04 .Do_bg li br {
    display: none;
}

.sec04 .sec04_bg_slide {
    position: absolute;
    inset: 0 0 0 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.sec04 .sec04_bg_slide .itm {
    position: relative;
    height: 100vh;
}

.sec04 .sec04_bg_slide .itm::before {
    content: '';
    position: absolute;
    inset: 0 0 0 0;
    background: rgba(0, 0, 0, 0.5);
}

.sec04 .sec04_bg_slide .itm01 {
    background: url(../images/sec04_itm01_bg.jpg)no-repeat center center/cover;
}

.sec04 .sec04_bg_slide .itm02 {
    background: url(../images/sec04_itm02_bg.jpg)no-repeat center center/cover;
}

.sec04 .sec04_bg_slide .itm03 {
    background: url(../images/sec04_itm03_bg.jpg)no-repeat center center/cover;
}

.sec04 .sec04_bg_slide .itm04 {
    background: url(../images/sec04_itm04_bg.jpg)no-repeat center center/cover;
}

.sec04 .sec04_bg_slide .itm05 {
    background: url(../images/sec04_itm05_bg.jpg)no-repeat center center/cover;
}


@media(max-width: 1300px) {
    .sec04 .Do_bg li {
        font-size: 18px;
        line-height: 24px;

    }
}

@media(max-width: 768px) {
    .sec04 {
        height: unset;
    }

    .sec04 .sec04_bg_slide {}

    .sec04 .tit {}

    .sec04 .Do_bg {}

    .sec04 .Do_bg>* {
        flex: unset;
    }

    .sec04 .Do_bg li {
        position: relative;
        top: unset;
        left: unset;
        transform: translate(0, 0);
        z-index: 999;

        max-width: unset;
        width: 100%;
        height: 100%;
        font-size: 24px;
        line-height: 32px;
        border: none;
        display: none;
    }

    .sec04 .Do_bg li.on {
        /* transform: translate(-50%, -50%); */
        max-width: unset;
        display: block;
        backdrop-filter: none;
        transition: 1s;
    }

    .sec04 .sec04_bg_slide .itm::before {
        background: rgba(0, 0, 0, 0.7);
        /* backdrop-filter: blur(4px); */
    }

}

@media(max-width: 480px) {
    .sec04 .tit {}
}

.sec05 {
    position: relative;
}

.sec05 .tit {
    margin: 0 0 40px 0;
}

.sec05_inner {
    position: relative;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.sec05 .top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 32px 0;
}

.sec05 .top>* {
    flex: 1;
}

.sec05 .top ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sec05 .top ul li {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    width: 100%;
}



.sec05 .top ul li label {
    font-size: 24px;
    font-weight: 700;
}

.sec05 .top ul li input {
    line-height: 64px;
    padding: 0 8px;
    border-radius: 0;
    border: none;
}

input::placeholder {
    color: #777;
}

.sec05 .top ul li select {
    padding: 0 8px;
    height: 64px;
    line-height: 64px;
    border-radius: 0;
    background: #fff;
    color: #777;
    border: none;
}

.sec05 .btn {
    display: flex;
    justify-content: end;
    gap: 16px;
}

.sec05 .btn .center {
    width: 200px;
    height: 48px;
    border: 1px solid #fff;
}

.sec05 .btn .center button span {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 48px;
    font-family: "Pretendard";
}

.sec05 .btn .inquiry__agree {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sec05 .btn .check {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sec05 .btn span {
    font-size: 14px;
    color: #fff;
}

.sec05 .btn .agree {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sec05 .btn [type="checkbox"] {
    width: 12px;
    height: 12px;
    accent-color: var(--pri-color);
}

.sec05 .agg {
    cursor: pointer;
}

.sec05 .agree_pop {
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 480px;
    background: var(--pri-color);
    padding: 24px 32px;
    overflow-y: auto;

    display: none;
}

.sec05 .agree_pop.on {
    display: block;
}

.sec05 .agree_pop .title {
    margin: 0 0 16px 0;
}


.sec05 .agree_pop .pop-esc {
    font-size: 14px;
    position: absolute;
    top: 24px;
    right: 32px;
    cursor: pointer;
}

.sec05 .agree_pop .pop-content {
    text-align: left;
    font-size: 14px;
    font-weight: 300;
}

@media(max-width: 1170px) {
    .sec05_inner {
        padding: 0 80px;
    }

    .sec05 .top {
        gap: 16px;
    }

    .sec05 .top ul {
        gap: 16px;
    }

    .sec05 .top ul li input {
        line-height: 40px;
    }

    .sec05 .top ul li select {
        height: 44px;
        line-height: 44px;
    }
}

@media(max-width: 1024px) {
    .sec05_inner {
        padding: 0 16px;
    }
}

@media(max-width: 768px) {
    .sec05 .top {
        flex-direction: column;
        gap: 16px;
        margin: 0 0 16px 0;
    }

    .sec05 .top ul {
        gap: 16px;
    }

    .sec05 .top ul li {
        gap: 8px;
    }

    .sec05 .top ul li label {
        font-size: 18px;
    }

    .sec05 .top ul li input {
        line-height: 32px;
    }

    .sec05 .top ul li select {
        height: 32px;
        line-height: 32px;
    }
}


@media(max-width: 480px) {
    .sec05 .tit {
        margin: 0 0 24px 0;
    }

    .sec05 .top {
        gap: 8px;
    }

    .sec05 .top ul {
        gap: 8px;
    }

    .sec05 .top ul li {
        gap: 8px;
    }

    .sec05 .top ul li label {
        font-size: 16px;
    }

    .sec05 .top ul li input {
        padding: 0 4px;
        line-height: 24px;
        font-size: 14px;

    }

    .sec05 .top ul li select {
        line-height: 16px;
        height: 24px;
        font-size: 14px;

    }

    .sec05 .btn {
        align-items: center;
        justify-content: center;
    }

    .sec05 .btn .check {
        gap: 4px;
    }

    .sec05 .btn span {
        font-size: 12px;
        word-break: keep-all;
    }

    .sec05 .btn .center {
        width: 100px;
        height: 32px;
    }

    .sec05 .btn .center button span {
        font-size: 14px;
        line-height: 32px;
    }

    .sec05 .agree_pop {
        font-size: 12px;
        padding: 16px;
        max-height: 70vh;
        width: 80%;
        overflow: scroll;
    }
}


.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    background: #000;
}

.footer .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer .inner .ft strong {
    display: block;
    margin: 0 0 24px 0;
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
}

.footer .inner .ft ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 0 8px 0;
}

.footer .inner .ft ul li {
    position: relative;
    font-size: 14px;
    line-height: 16px;
}

.footer .inner .ft ul li~li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translate(0, -50%);
    width: 1px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
}

.footer .inner .fb .ft_logo {
    margin: 0 0 16px 0;
    text-align: center;
}

.footer .inner .fb .ft_logo img {
    max-width: 120px;
}

.footer .inner .fb .copy {
    font-size: 14px;
    line-height: 16px;
    font-weight: 300;
}

@media(max-width: 768px) {

    .footer {
        border-top: none;
    }

    .footer .inner {
        align-items: baseline;
        gap: 0;
    }

    .footer .inner .ft strong {
        margin: 0 0 16px 0;
        text-align: left;
    }


    .footer .inner .ft {
        padding: -0 0 16px 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer .inner .fb {
        padding: 16px 0 0 0;
    }

    .footer .inner .ft ul {
        flex-direction: column;
    }

    .footer .inner .ft ul {
        gap: 10px;
        margin: 0 0 10px 0;
    }

    .footer .inner .ft ul:last-child {
        margin: 0;
    }

    .footer .inner .ft ul li~li::before {
        display: none;
    }

    .footer .inner .fb .ft_logo {
        text-align: left;
    }
}

@media(max-width: 480px) {
    .footer .inner .ft ul li {
        font-size: 12px;
        line-height: 12px;
    }
}

/********************/
/*      추가       */
/******************/
/* text glowing */
#glowing-text {
    line-height: 1;
    font-weight: bold;
    color: #0e3742;
    /* -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(0, 0, 0, 0.4)); */
    animation: glow 4s linear infinite;
}

@keyframes glow {

    0%,
    100% {
        color: #fff;
        text-shadow: none;
    }

    40% {
        color: #fff;
        text-shadow: 0 0 10px #03bcf4,
            0 0 20px #03bcf4,
            0 0 40px #03bcf4,
            0 0 80px #03bcf4,
            0 0 120px #03bcf4;
    }
}



/* ===== 카카오톡 문의하기 ===== */

/* 카카오톡 문의하기 컨테이너 */
aside {
    position: fixed; /* 고정 위치 */
    bottom: 40px; /* 하단 여백 */
    right: 40px; /* 우측 여백 */
    width: 80px; /* 너비 */
    height: 80px; /* 높이 */
    background: transparent; /* 투명 배경 */
    border-radius: 50%; /* 원형 모양 */
    transition: all 0.3s ease; /* 부드러운 전환 효과 */
}

/* 카카오톡 문의하기 호버 효과 */
aside:hover {
    transform: scale(1.05); /* 호버 시 5% 확대 */
}

/* 카카오톡 문의하기 링크 */
aside a {
    display: flex; /* 플렉스 레이아웃 */
    align-items: center; /* 세로 중앙 정렬 */
    justify-content: center; /* 가로 중앙 정렬 */
    width: 100%; /* 너비 100% */
    height: 100%; /* 높이 100% */
    text-decoration: none; /* 텍스트 장식 제거 */
}

/* 카카오톡 아이콘 */
.kakao-icon {
    width: 60px; /* 아이콘 너비 */
    height: 60px; /* 아이콘 높이 */
    border-radius: 40%; /* 둥근 모서리 */
    transition: all 0.3s ease; /* 부드러운 전환 효과 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 그림자 효과 */
}

/* 카카오톡 아이콘 호버 효과 */
.kakao-icon:hover {
    transform: translateY(-2px) scale(1.05); /* 위로 이동하며 확대 */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); /* 강한 그림자 효과 */
}

/* 카카오톡 문의하기 모바일 스타일 */
@media (max-width: 769px) {
    aside {
        bottom: 16px; /* 모바일 하단 여백 */
        right: 16px; /* 모바일 우측 여백 */
        width: 60px; /* 모바일 너비 */
        height: 60px; /* 모바일 높이 */
    }
}
