@charset "utf-8";
/* 색 설정 */
:root { --main-color: #216AE2; --black-color: #222; --white-color: #fff; }

/* size */
@media screen and (max-width: 1250px) { } /* tablet */
@media screen and (max-width: 650px) { 
    * { word-break: keep-all; overflow-wrap: break-word; }
    body { word-break: keep-all; overflow-wrap: break-word; }
    p, h1, h2, h3, h4, h5, h6, span, div, a, li { word-break: keep-all; overflow-wrap: break-word; }
} /* mobile */

/* 스크롤 커스텀 */
html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-thumb { background-color: var(--main-color); border-radius: 10px; }

/* 드래그 블록 커스텀 */
::selection { background-color: var(--main-color); color: #fff; }

/* default */
* { font-size: inherit; font-weight: inherit; font-family: inherit; color: inherit; box-sizing: border-box; letter-spacing: inherit; line-height: inherit; }
body { font-family: 'Pretendard', sans-serif; font-weight: 400; font-size: 16px; letter-spacing: -0.04em; }
section { display: block; }
a { color: inherit; }
.sec_top { padding-top: 80px; }
.inner { width: 1200px; margin: 0 auto; }
.paging_box { padding: 10px 0; display: flex; align-items: center; justify-content: center; }
select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background: url('../img/common/select-icon.png') no-repeat 98% 50% #fff !important; }
select::-ms-expand { display: none; }
p { word-break: keep-all; overflow-wrap: break-word; }
@media screen and (max-width: 1250px) { .inner { width: 100%; padding: 0 10px; } } /* tablet */
@media screen and (max-width: 650px) { 
    .paging_box { font-size: 13px; }
    * { word-break: keep-all; overflow-wrap: break-word; }
    body, p, h1, h2, h3, h4, h5, h6, span, div, a, li { word-break: keep-all; overflow-wrap: break-word; }
} /* mobile */

/* 헤더 */
#header { position: fixed; top: 0; left: 0; right: 0; background: var(--white-color); border-bottom: 1px solid #E4E4E4; z-index: 1000; }
#header .header-inner { width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
#header .logo { display: flex; align-items: center; }
#header .logo img { height: 40px; width: auto; }
#header .gnb { display: flex; align-items: center; }
#header .gnb .gnb-list { display: flex; align-items: center; gap: 48px; list-style: none; margin: 0; padding: 0; }
#header .gnb .gnb-list li a { font-size: 16px; color: var(--black-color); text-decoration: none; font-weight: 500; transition: color 0.3s ease; white-space: nowrap; }
#header .gnb .gnb-list li a:hover { color: var(--main-color); }
#header .gnb .gnb-list li:last-child a { padding: 10px 20px; color: #216AE2; background: #F2F7FF; border-radius: 100px; }
#header .gnb .mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
#header .gnb .mobile-menu-btn span { display: block; width: 25px; height: 3px; background: var(--black-color); transition: all 0.3s ease; transform-origin: center; }
#header .gnb .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
#header .gnb .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
#header .gnb .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translateX(3px) translateY(-12px); }

@media screen and (max-width: 1250px) { 
    #header .header-inner { width: 100%; padding: 20px 20px; } 
    #header .gnb .gnb-list { gap: 20px; } 
    #header .gnb .gnb-list li a { font-size: 15px; }
}
@media screen and (max-width: 936px) { 
    #header .gnb .gnb-list { display: none; } 
    #header .gnb .mobile-menu-btn{ display: flex; } 
    #header .logo img { height: 35px; } 
    .sec_top { padding-top: 75px; } 
}

@media screen and (max-width: 650px) { 
    .sec_top { padding-top: 61px; } 
    #header .header-inner { padding: 15px 20px; } 
    #header .logo img { height: 30px; } 
}

/* 포트폴리오 헤더 */
.portfolio-header { height: 80px; }
.portfolio-header .header-inner { justify-content: space-between; height: 100%; }
.portfolio-header-back { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #7F7F7F; font-size: 14px; font-weight: 400; transition: opacity 0.3s ease; }
.portfolio-header-back:hover { opacity: 0.7; }
.portfolio-header-back img { width: auto; height: auto; }
.portfolio-header .logo { position: absolute; left: 50%; transform: translateX(-50%); }
.portfolio-header-right { width: 120px; }

/* 포트폴리오 페이지 sec_top 조정 */
.sub.sec_top { padding-top: 80px; }

@media screen and (max-width: 1250px) { 
    .portfolio-header .header-inner { padding: 20px; } 
    .sub.sec_top { padding-top: 80px; }
}
@media screen and (max-width: 936px) { 
    .portfolio-header { height: 68px; }
    .portfolio-header .logo img { height: 28px; } 
    .sub.sec_top { padding-top: 68px; }
}
@media screen and (max-width: 650px) { 
    .portfolio-header { height: 54px; }
    .portfolio-header .header-inner { padding: 15px 20px; } 
    .portfolio-header-back { font-size: 12px; gap: 6px; } 
    .portfolio-header-back span { display: none; } 
    .portfolio-header-back img { width: 18px; height: auto; } 
    .portfolio-header .logo img { height: 24px; } 
    .portfolio-header-right { width: 80px; } 
    .sub.sec_top { padding-top: 54px; }
}

/* 모바일 메뉴 */
.mobile-menu { position: fixed; top: 80px; left: 0; right: 0; background: var(--white-color); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); z-index: 999; max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.5s ease; padding: 0; }
.mobile-menu.active { max-height: 1000px; padding: 20px 0; }
.mobile-menu .mobile-menu-list { list-style: none; margin: 0; padding: 0; }
.mobile-menu .mobile-menu-list li { border-bottom: 1px solid #eee; }
.mobile-menu .mobile-menu-list li:last-child { border-bottom: none; }
.mobile-menu .mobile-menu-list li a { display: block; padding: 15px 20px; color: var(--black-color); text-decoration: none; font-size: 16px; transition: background 0.3s ease; }
.mobile-menu .mobile-menu-list li a:hover { background: #f5f5f5; color: var(--main-color); }

@media screen and (max-width: 936px) { 
    .mobile-menu { top: 75px; }
    .mobile-menu.active { padding: 0; }
}
@media screen and (max-width: 650px) { 
    .mobile-menu { top: 61px; } 
}

/* 푸터 */
#footer { background: #000; }
#footer .footer-inner { width: 1200px; margin: 0 auto; padding: 40px 0; }
#footer .footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
#footer .footer-logo { display: flex; align-items: center; }
#footer .footer-logo img { width: 243px; height: auto; }
#footer .footer-menu { display: flex; align-items: center; gap: 22px; }
#footer .footer-menu a { font-size: 16px; color: #fff; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
#footer .footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; border-top: 1px solid #fff; padding-top: 16px; }
#footer .business-info { color: #fff; }
#footer .business-info-title { font-size: 16px; font-weight: 900; color: #fff; margin: 0 0 8px 0; }
#footer .business-info-address { font-size: 14px; color: #7f7f7f; margin: 0 0 2px 0; }
#footer .business-info-registration { font-size: 14px; color: #7f7f7f; margin: 0 0 2px 0; }
#footer .business-info-email { font-size: 14px; color: #7f7f7f; margin: 0; }
#footer .kakao-channel-wrapper { display: flex; flex-direction: column; gap: 8px; }
#footer .kakao-channel { display: flex; align-items: center; gap: 8px; }
#footer .kakao-channel img { width: auto; height: auto; }
#footer .kakao-channel-name { font-size: 16px; font-weight: 900; color: #fff; }
#footer .customer-service { display: flex; align-items: flex-start; gap: 16px; font-size: 14px; color: #7f7f7f; }
#footer .customer-service-phone { color: #7f7f7f; }
#footer .customer-service-time { display: flex; flex-direction: column; gap: 2px; color: #7f7f7f; }
#footer .footer-copyright { font-size: 12px; color: #fff; margin: 30px 0 0 0; text-align: right; align-self: flex-end; }

@media screen and (max-width: 1250px) { 
    #footer .footer-inner { width: 100%; padding: 40px 20px; } 
    #footer .footer-bottom { flex-direction: column; gap: 30px; } 
    #footer .kakao-channel-wrapper { width: 100%; } 
    #footer .footer-copyright { text-align: left; align-self: flex-start; } 
}
@media screen and (max-width: 650px) { 
    #footer .footer-inner { padding: 30px 20px; } 
    #footer .footer-top { flex-direction: column; gap: 20px; margin-bottom: 20px; align-items: flex-start; } 
    #footer .footer-logo img { width: 180px; } 
    #footer .footer-menu { flex-wrap: wrap; gap: 15px; } 
    #footer .footer-menu a { font-size: 14px; } 
    #footer .footer-bottom { flex-direction: column; gap: 24px; padding-top: 20px; } 
    #footer .business-info-title { font-size: 14px; margin: 0 0 6px 0; } 
    #footer .business-info-address { font-size: 13px; } 
    #footer .business-info-registration { font-size: 13px; } 
    #footer .business-info-email { font-size: 13px; } 
    #footer .kakao-channel-wrapper { width: 100%; gap: 12px; } 
    #footer .kakao-channel-name { font-size: 14px; } 
    #footer .customer-service { flex-direction: column; gap: 8px; align-items: flex-start; } 
    #footer .footer-copyright { text-align: left; align-self: flex-start; margin: 20px 0 0 0; font-size: 11px; } 
}

/* 섹션1 */
.main .section1 { position: relative; overflow: hidden; background-image: url('../img/main/section1/background.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 80px 0; }
.main .section1 .inner { position: relative; padding: 0; display: flex; flex-direction: column; align-items: center; }
.main .section1 .section1-title { font-size: 42px; font-weight: 500; color: var(--black-color); margin: 0 0 6px 0; text-align: center; }
.main .section1 .section1-title-bold { font-weight: 700; }
.main .section1 .section1-subtitle { font-size: 28px; font-weight: 700; margin: 0 0 30px 0; text-align: center; background: linear-gradient(to right, rgba(33, 106, 226, 1), rgba(26, 58, 111, 1)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; word-break: keep-all; overflow-wrap: break-word; }
.main .section1 .section1-swiper { overflow: visible; width: 100%; }
.main .section1 .swiper{ position: relative; }
.main .section1 .swiper-wrapper { flex-direction: row; }
.main .section1 .swiper-slide { display: flex; flex-direction: column; }
.main .section1 .slide-item { width: 100%; height: 600px; background-image: url('../img/main/section1/example.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; border-radius: 10px; box-shadow: 0 4px 17px 0 rgba(0, 0, 0, 0.35); }
.main .section1 .slide-footer { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.main .section1 .slide-title { font-size: 24px; font-weight: 700; color: var(--black-color); margin: 0; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.main .section1 .slide-controls { display: flex; align-items: center; gap: 16px; }
.main .section1 .section1-prev, .main .section1 .section1-next { position: static; width: auto; height: auto; margin: 0; background: none; border: none; cursor: pointer; padding: 0; }
.main .section1 .section1-prev img, .main .section1 .section1-next img { width: 24px; height: 24px; display: block; }
.main .section1 .section1-pagination { position: static; width: 200px; height: 9px; background: #D8DCE2; border-radius: 100px; overflow: hidden; }
.main .section1 .section1-pagination .swiper-pagination-progressbar-fill { background: var(--main-color); border-radius: 100px !important; }
.main .section1 .slide-counter { font-size: 16px; font-weight: 500; color: #7f7f7f; }
.main .section1 .slide-counter .current-slide { color: #216AE2; }

@media screen and (max-width: 1250px) { 
    .main .section1 .inner { padding: 0 20px; } 
    .main .section1 { padding: 60px 0; } 
    .main .section1 .section1-title { font-size: 36px; margin: 0 0 6px 0; } 
    .main .section1 .section1-subtitle { font-size: 24px; margin: 0 0 30px 0; } 
    .main .section1 .slide-title { font-size: 20px; } 
    .main .section1 .section1-pagination { width: 150px; } 
    .main .section1 .slide-counter { font-size: 14px; } 
}
@media screen and (max-width: 650px) { 
    .main .section1 { padding: 40px 0; } 
    .main .section1 .inner { padding: 0 20px; } 
    .main .section1 .section1-title { font-size: 24px; margin: 0 0 6px 0; } 
    .main .section1 .section1-subtitle { font-size: 18px; margin: 0 0 20px 0; } 
    .main .section1 .slide-item { height: 60vw; } 
    .main .section1 .slide-footer { flex-direction: column; align-items: center; gap: 16px; margin-top: 16px; } 
    .main .section1 .slide-title { font-size: 18px; width: 100%; text-align: center; } 
    .main .section1 .slide-controls { width: 100%; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; } 
    .main .section1 .section1-prev img, .main .section1 .section1-next img { width: 16px; height: 16px; } 
    .main .section1 .section1-pagination { width: 120px; height: 8px; flex-shrink: 0; } 
    .main .section1 .slide-counter { font-size: 12px; } 
}

/* 섹션2 */
.main .section2 { background: linear-gradient(90deg, rgba(26, 58, 111, 0.00) 0%, #1A3A6F 100%), #306BCD; padding: 20px 0; overflow: hidden; }
.main .section2-scroll { width: 100%; overflow: hidden; }
.main .section2-scroll-inner { display: flex; align-items: center; gap: 40px; animation: section2-scroll 50s linear infinite; white-space: nowrap; width: fit-content; }
.main .section2-dot { width: 4px; height: 4px; background: #fff; border-radius: 50%; flex-shrink: 0; }
.main .section2-logo-item { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.main .section2-logo-item img { height: 24px; width: auto; }
.main .section2-logo-text { font-size: 20px; font-weight: 700; color: #fff; }
@keyframes section2-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media screen and (max-width: 1250px) { 
    .main .section2 { padding: 16px 0; } 
    .main .section2-logo-text { font-size: 18px; } 
    .main .section2-logo-item img { height: 20px; } 
    .main .section2-scroll-inner { gap: 32px; animation: section2-scroll 45s linear infinite; } 
}
@media screen and (max-width: 650px) { 
    .main .section2 { padding: 12px 0; } 
    .main .section2-logo-text { font-size: 14px; } 
    .main .section2-logo-item { gap: 8px; } 
    .main .section2-logo-item img { height: 16px; } 
    .main .section2-scroll-inner { gap: 24px; animation: section2-scroll 40s linear infinite; } 
    .main .section2-dot { width: 3px; height: 3px; } 
}

/* 섹션3 */
.main .section3 { padding: 80px 0; }
.main .section3 .inner { padding: 0; }
.main .section3-subtitle { font-size: 32px; font-weight: 300; color: #222; margin: 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section-title { font-size: 38px; font-weight: 700; color: #333; margin: 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section3-title { font-size: 38px; font-weight: 700; color: #333; margin: 0 0 60px 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section3-items { display: flex; gap: 24px; flex-wrap: wrap; }
.main .section3-item { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; text-align: left; background: #F5F7F9; border-radius: 4px; padding: 30px; transition: background-color 0.3s ease; }
.main .section3-item-icon { width: auto; height: auto; margin-bottom: 20px; }
.main .section3-item-title { font-size: 24px; font-weight: 700; color: #333; margin: 0 0 16px 0; text-align: left; word-break: keep-all; overflow-wrap: break-word; transition: color 0.3s ease; }
.main .section3-item-text { font-size: 18px; font-weight: 300; color: #333; margin: 0; line-height: 1.6; text-align: left; word-break: keep-all; overflow-wrap: break-word; transition: color 0.3s ease; }
.main .section3-description { font-size: 22px; font-weight: 400; color: #333; margin: 26px 0 0 0; text-align: center; line-height: 1.6; word-break: keep-all; overflow-wrap: break-word; }

.main .section3-item:hover{ background-color: #216AE2; }
.main .section3-item:hover .section3-item-title{ color: #fff; }
.main .section3-item:hover .section3-item-text{ color: #fff; }

@media screen and (max-width: 1250px) { 
    .main .section3 { padding: 60px 0; } 
    .main .section3 .inner { padding: 0 20px; } 
    .main .section3-subtitle { font-size: 28px; } 
    .main .section3-title { font-size: 32px; margin: 0 0 40px 0; } 
    .main .section3-items { gap: 20px; } 
    .main .section3-item { padding: 24px; } 
    .main .section3-item-title { font-size: 20px; } 
    .main .section3-item-text { font-size: 16px; } 
}
@media screen and (max-width: 950px) { 
    .main .section3-items { gap: 20px; } 
    .main .section3-item { width: calc(50% - 10px); flex: 0 0 calc(50% - 10px); } 
}
@media screen and (max-width: 650px) { 
    .main .section3 { padding: 40px 0; } 
    .main .section3-subtitle { font-size: 20px; } 
    .main .section3-title { font-size: 24px; margin: 0 0 30px 0; } 
    .main .section3-items { gap: 12px; } 
    .main .section3-item { padding: 16px; width: calc(50% - 6px); flex: 0 0 calc(50% - 6px); } 
    .main .section3-item-icon { margin-bottom: 16px; } 
    .main .section3-item-title { font-size: 18px; margin: 0 0 12px 0; } 
    .main .section3-item-text { font-size: 14px; } 
    .main .section3-description { font-size: 16px; margin: 40px 0 0 0; padding: 0 20px; } 
}

/* 섹션4 */
.main .section4 { padding: 80px 0; }
.main .section4 .inner { padding: 0; }
.main .section4-title { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; margin: 0; }
.main .section4-bar { width: 1px; height: 100px; background: #777; flex-shrink: 0; }
.main .section4-title-text { font-size: 42px; font-weight: 300; color: var(--black-color); text-align: center; word-break: keep-all; overflow-wrap: break-word; }

@media screen and (max-width: 1250px) { 
    .main .section4 { padding: 60px 0; } 
    .main .section4 .inner { padding: 0 20px; } 
    .main .section4-title-text { font-size: 36px; } 
    .main .section4-bar { height: 80px; } 
    .main .section4-title { gap: 24px; } 
}
@media screen and (max-width: 650px) { 
    .main .section4 { padding: 40px 0; } 
    .main .section4-title-text { font-size: 24px; } 
    .main .section4-bar { height: 60px; } 
    .main .section4-title { gap: 20px; } 
}

/* 섹션5 */
.main .section5 { display: flex; gap: 0; }
.main .section-bg-left { background: #F3F6FF; }
.main .section-bg-right { background: #F9FAFB; }
.main .section5-left { padding: 80px 0; width: 50%; display: flex; align-items: center; justify-content: center; }
.main .section5-right { width: 50%; padding: 80px 0; display: flex; align-items: center; }
.main .section6-left { width: 50%; padding: 80px 0; display: flex; align-items: center; justify-content: flex-end; }
.main .section-content { padding: 0 60px; }
.main .section-content-title1 { font-size: 20px; font-weight: 700; color: #216AE2; margin: 0; word-break: keep-all; overflow-wrap: break-word; }
.main .section-content-title2 { font-size: 38px; font-weight: 700; color: #222; margin: 10px 0 0 0; word-break: keep-all; overflow-wrap: break-word; }
.main .section-content-text { font-size: 20px; color: #333; line-height: 1.5em; margin: 30px 0 0 0; word-break: keep-all; overflow-wrap: break-word; }
.main .section-content-text br { display: block; }
.main .section6-left .section-content { padding: 0 50px 0 60px; text-align: right; }
.main .section6-left .section-content-title1 { text-align: right; }
.main .section6-left .section-content-title2 { text-align: right; }
.main .section6-left .section-content-text { text-align: right; }

.main .section5-circles { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.main .section5-circle-row { display: flex; gap: 40px; justify-content: center; }
.main .section5-circle-item { position: relative; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(30px); }
.main .section5-circle-item.animate { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.main .section5-circle { width: 180px; height: 180px; }
.main .section5-circle-content { position: absolute; text-align: center; }
.main .section5-circle-title { font-size: 20px; font-weight: 700; color: #216AE2; margin: 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; word-break: keep-all; overflow-wrap: break-word; }
.main .section5-circle-title br { display: block; }
.main .section5-circle-text { font-size: 18px; font-weight: 300; color: var(--black-color); margin: 18px 0 0 0; line-height: 1.4; word-break: keep-all; overflow-wrap: break-word; }
.main .section5-circle-text br { display: block; }

@media screen and (max-width: 1250px) { 
    .main .section5 { flex-direction: column; } 
    .main .section5-left { width: 100%; padding: 60px 0; order: 2; } 
    .main .section5-right { width: 100%; padding: 60px 0; order: 1; } 
    .main .section-content { padding: 0 40px; } 
    .main .section-content-title1 { font-size: 18px; } 
    .main .section-content-title2 { font-size: 32px; } 
    .main .section-content-text { font-size: 18px; } 
    .main .section5-circles { gap: 30px; } 
    .main .section5-circle-row { gap: 30px; } 
    .main .section5-circle { width: 150px; height: 150px; } 
    .main .section5-circle-title { font-size: 18px; } 
    .main .section5-circle-text { font-size: 16px; } 
}
@media screen and (max-width: 650px) { 
    .main .section5-left { padding: 40px 0; } 
    .main .section5-right { padding: 40px 0; } 
    .main .section5-right .section-content { width: 100%; padding: 0 20px; text-align: center; } 
    .main .section5-right .section-content-title1 { text-align: center; } 
    .main .section5-right .section-content-title2 { text-align: center; } 
    .main .section5-right .section-content-text { text-align: center; } 
    .main .section-content { padding: 0 20px; } 
    .main .section-content-title1 { font-size: 16px; } 
    .main .section-content-title2 { font-size: 24px; } 
    .main .section-content-text { font-size: 16px; margin: 24px 0 0 0; }
    .main .section-content-text br { display: none; }
    .main .section6-left .section-content { padding: 0 20px 0 50px; } 
    .main .section5-circles { gap: 3vw; } 
    .main .section5-circle-row { gap: 2vw; flex-wrap: nowrap; justify-content: center; } 
    .main .section5-circle-row:first-child { gap: 2vw; } 
    .main .section5-circle-row:last-child { gap: 2vw; } 
    .main .section5-circle { width: 24vw; height: 24vw; max-width: 120px; max-height: 120px; } 
    .main .section5-circle-content { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px; box-sizing: border-box; } 
    .main .section5-circle-title { font-size: 3vw; line-height: 1.2; } 
    .main .section5-circle-text { font-size: 3vw; margin: 1vw 0 0 0; line-height: 1.3; } 
}

/* 섹션6 */
.main .section6 { display: flex; gap: 0; }
.main .section6-left { width: 50%; padding: 80px 0; display: flex; align-items: center; justify-content: flex-end; }
.main .section6-left-content { padding: 0 50px 0 60px; text-align: right; }
.main .section6-left-title1 { font-size: 20px; font-weight: 700; color: #216AE2; margin: 0; text-align: right; }
.main .section6-left-title2 { font-size: 38px; font-weight: 700; color: #222; margin: 3px 0 0 0; text-align: right; }
.main .section6-left-text { font-size: 20px; color: #333; line-height: 1.5em; margin: 30px 0 0 0; text-align: right; }
.main .section6-left-text br { display: block; }
.main .section6-right { width: 50%; padding: 80px 0; display: flex; align-items: center; justify-content: center; }
.main .section6-right-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; padding: 0 60px; }
.main .section6-right-item { position: relative; padding: 30px 20px; background: #F9F9F9; border-radius: 10px; box-shadow: 0 0 10px 0 rgba(33, 106, 226, 0.10); text-align: center; opacity: 0; transform: translateY(30px); }
.main .section6-right-item.animate { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.main .section6-right-item-icon { position: absolute; top: -20px; left: -22px; width: 60px; height: 60px; object-fit: contain; }
.main .section6-right-item-title { font-size: 20px; font-weight: 700; color: #333; margin: 20px 0 0 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section6-right-item-text { font-size: 18px; color: #333; margin: 8px 0 0 0; line-height: 1.5; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section6-right-item-text br { display: block; }

@media screen and (max-width: 1250px) { 
    .main .section6 { flex-direction: column; } 
    .main .section6-left { width: 100%; padding: 60px 0; justify-content: center; } 
    .main .section6-right { width: 100%; padding: 60px 0; } 
    .main .section6-left .section-content { padding: 0 40px; text-align: center; } 
    .main .section6-left .section-content-title1 { text-align: center; } 
    .main .section6-left .section-content-title2 { text-align: center; } 
    .main .section6-left .section-content-text { text-align: center; } 
    .main .section6-right-items { padding: 0 40px; gap: 30px; } 
    .main .section6-right-item { padding: 24px; } 
    .main .section6-right-item-title { font-size: 18px; } 
    .main .section6-right-item-text { font-size: 16px; } 
}
@media screen and (max-width: 650px) { 
    .main .section6-left { padding: 40px 0; } 
    .main .section6-right { padding: 40px 0; } 
    .main .section6-left .section-content { padding: 0 20px; } 
    .main .section6-right-items { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; } 
    .main .section6-right-item { padding: 20px; } 
    .main .section6-right-item-icon { width: 50px; height: 50px; top: -15px; left: 20px; } 
    .main .section6-right-item-title { font-size: 16px; margin: 16px 0 0 0; } 
    .main .section6-right-item-text { font-size: 14px; margin: 6px 0 0 0; } 
    .main .section-content-text br { display: none; }
}

/* 섹션7 */
.main .section7 { display: flex; gap: 0; }
.main .section7-left { padding: 80px 0; width: 50%; position: relative; display: flex; align-items: center; justify-content: center; }
.main .section7-left-images { position: relative; display: flex; align-items: center; justify-content: center; }
.main .section7-item1 { width: auto; height: auto; padding-right: 210px; padding-bottom: 140px; opacity: 0; transform: translateY(30px); }
.main .section7-item1.animate { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.main .section7-item2 { position: absolute; top: 140px; left: 210px; width: auto; height: auto; z-index: 2; opacity: 0; transform: translateY(30px); }
.main .section7-item2.animate { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.main .section7-right { width: 50%; padding: 80px 0; display: flex; align-items: center; }

@media screen and (max-width: 1250px) { 
    .main .section7 { flex-direction: column; } 
    .main .section7-left { width: 100%; padding: 60px 0; } 
    .main .section7-right { width: 100%; padding: 60px 0; } 
    .main .section-content { padding: 0 40px; } 
    .main .section-content-title1 { font-size: 18px; } 
    .main .section-content-title2 { font-size: 32px; } 
    .main .section-content-text { font-size: 18px; } 
    .main .section7-item1 { padding-right: 150px; padding-bottom: 100px; } 
    .main .section7-item2 { top: 100px; left: 150px; } 
}
@media screen and (max-width: 750px) { 
    .main .section7-item1 { width: 79vw; padding-right: 10vw; padding-bottom: 20vw;} 
    .main .section7-item2 { width: 70vw; top: 20vw; left: 10vw; } 
}
@media screen and (max-width: 650px) { 
    .main .section7-left { padding: 40px 0; order: 2; } 
    .main .section7-right { padding: 40px 0; order: 1; } 
    .main .section7-right .section-content { width: 100%; padding: 0 20px; text-align: center; } 
    .main .section7-right .section-content-title1 { text-align: center; } 
    .main .section7-right .section-content-title2 { text-align: center; } 
    .main .section7-right .section-content-text { text-align: center; } 
    .main .section-content-title1 { font-size: 16px; } 
    .main .section-content-title2 { font-size: 24px; } 
    .main .section-content-text { font-size: 16px; } 
    .main .section-content-text br { display: none; } 
}

/* 섹션8 */
.main .section8 { background: linear-gradient(97deg, #306BCD 0%, #24509A 50%, #183667 100%); padding: 86px 0; }
.main .section8 .inner { padding: 0; }
.main .section8-content { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.main .section8-star { width: auto; height: auto; }
.main .section8-title { font-size: 32px; font-weight: 400; color: #fff; margin: 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; line-height: 1.25em; }
.main .section8-title strong { font-weight: 700; }
.main .section8-text { font-size: 20px; font-weight: 400; color: #fff; margin: 21px 0 0 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; line-height: 1.5em; }
.main .section8-text br { display: block; }
.main .section8-items { display: flex; gap: 54px; margin-top: 30px; justify-content: center; flex-wrap: wrap; }
.main .section8-item { display: flex; align-items: center; gap: 20px; border-radius: 4px; border: 2px solid #FFF; box-shadow: 0 4px 39px 0 rgba(193, 167, 142, 0.25); padding: 19px 35px; }
.main .section8-item-icon { width: auto; height: auto; flex-shrink: 0; }
.main .section8-item-content { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.main .section8-item-text { font-size: 18px; font-weight: 400; color: #fff; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section8-item-number { font-size: 40px; font-weight: 900; color: #fff; line-height: 1; min-width: 80px; text-align: center; display: inline-block; }
.main .section8-item-percent { font-size: 20px; font-weight: 900; }

@media screen and (max-width: 1250px) { 
    .main .section8 { padding: 60px 0; } 
    .main .section8 .inner { padding: 0 20px; } 
    .main .section8-title { font-size: 28px; } 
    .main .section8-text { font-size: 18px; margin: 18px 0 0 0; } 
    .main .section8-content { gap: 24px; } 
    .main .section8-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 24px; max-width: 800px; margin-left: auto; margin-right: auto; } 
    .main .section8-item { padding: 16px 28px; gap: 16px; width: 100%; } 
    .main .section8-item:nth-child(3) { grid-column: 1 / -1; justify-self: center; max-width: calc(50% - 15px); } 
    .main .section8-item-text { font-size: 16px; } 
    .main .section8-item-number { font-size: 36px; min-width: 70px; } 
    .main .section8-item-percent { font-size: 18px; } 
}
@media screen and (max-width: 650px) { 
    .main .section8 { padding: 40px 0; } 
    .main .section8-star { width: 60px; height: auto; } 
    .main .section8-title { font-size: 20px; } 
    .main .section8-text { font-size: 16px; margin: 16px 0 0 0; } 
    .main .section8-text br { display: none; } 
    .main .section8-content { gap: 20px; } 
    .main .section8-items { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 20px; max-width: 100%; } 
    .main .section8-item { width: 100%; max-width: 300px; padding: 16px 24px; gap: 12px; justify-self: center; } 
    .main .section8-item:nth-child(3) { grid-column: 1; max-width: 300px; } 
    .main .section8-item-icon { width: 24px; height: auto; } 
    .main .section8-item-text { font-size: 14px; } 
    .main .section8-item-number { font-size: 28px; min-width: 60px; } 
    .main .section8-item-percent { font-size: 16px; } 
}

/* 섹션9 */
.main .section9 { padding: 80px 0; background-color: #F9FAFB; color: #333; }
.main .section9 .inner { padding: 0; }
.main .section9-title { font-size: 38px; font-weight: 400; color: #333; margin: 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; line-height: 1.25; }
.main .section9-title strong { font-weight: 700; }
.main .section9-title br { display: block; }
.main .section9-text { font-size: 20px; font-weight: 300; color: #333; margin: 12px 0 0 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; line-height: 1.25; }
.main .section9-tabs { display: flex; justify-content: center; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.main .section9-tab { padding: 10px 15px; border-radius: 4px; background-color: #fff; color: #898D95; font-size: 16px; font-weight: 400; border: none; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; }
.main .section9-tab:hover { background-color: #F2F7FF; color: #216AE2; }
.main .section9-tab.active { background-color: #F2F7FF; color: #216AE2; }
.main .section9-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.main .section9-item { display: flex; flex-direction: column; min-width: 0; text-decoration: none; color: inherit; }
.main .section9-item-image { width: 100%; aspect-ratio: 4 / 5; border-radius: 10px; background-size: cover; background-position: center; background-repeat: no-repeat; background-color: #e0e0e0; flex-shrink: 0; }
.main .section9-item-title { font-size: 22px; font-weight: 700; color: #333; margin: 14px 0 0 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-break: keep-all; width: 100%; }
.main .section9-more { display: flex; justify-content: center; margin-top: 49px; }
.main .section9-more-btn { padding: 8px 30px; border-radius: 38px; color: #fff; background-color: #216AE2; box-shadow: 0 4px 13px 0 rgba(168, 194, 189, 0.35); border: none; cursor: pointer; font-size: 16px; font-weight: 500; transition: all 0.3s ease; }
.main .section9-more-btn:hover { opacity: 0.9; }

@media screen and (max-width: 1250px) { 
    .main .section9 { padding: 60px 0; } 
    .main .section9 .inner { padding: 0 20px; } 
    .main .section9-title { font-size: 32px; } 
    .main .section9-text { font-size: 18px; margin: 24px 0 0 0; } 
    .main .section9-tabs { margin-top: 32px; gap: 10px; } 
    .main .section9-tab { padding: 8px 12px; font-size: 15px; } 
    .main .section9-items { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; } 
    .main .section9-item-image { aspect-ratio: 4 / 5; } 
    .main .section9-item-title { font-size: 20px; margin: 12px 0 0 0; } 
    .main .section9-more { margin-top: 40px; } 
    .main .section9-more-btn { padding: 7px 24px; font-size: 15px; } 
}
@media screen and (max-width: 650px) { 
    .main .section9 { padding: 40px 0; } 
    .main .section9-title { font-size: 24px; } 
    .main .section9-text { font-size: 16px; margin: 20px 0 0 0; } 
    .main .section9-tabs { margin-top: 24px; gap: 8px; } 
    .main .section9-tab { padding: 8px 12px; font-size: 14px; } 
    .main .section9-items { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; } 
    .main .section9-item-image { aspect-ratio: 4 / 5; } 
    .main .section9-item-title { font-size: 18px; margin: 12px 0 0 0; } 
    .main .section9-more { margin-top: 32px; } 
    .main .section9-more-btn { padding: 6px 20px; font-size: 14px; } 
}

/* 섹션10 */
.main .section10 { padding: 80px 0; }
.main .section10 .inner { padding: 0; }
.main .section10-title { font-size: 38px; font-weight: 700; color: #333; margin: 0 0 60px 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section10-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.main .section10-item { position: relative; background: #fff; border-radius: 10px; padding: 30px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); }
.main .section10-step { position: absolute; top: 0; left: 0; padding: 4px 18px; border-radius: 4px; color: #fff; background-color: #216AE2; box-shadow: 4px 8px 9px 0 rgba(0, 0, 0, 0.10); font-size: 14px; font-weight: 700; }
.main .section10-item-content { display: flex; gap: 20px; align-items: center; }
.main .section10-item-icon { width: auto; height: auto; max-width: 127px; max-height: 127px; flex-shrink: 0; }
.main .section10-item-text { flex: 1; }
.main .section10-item-title { font-size: 24px; font-weight: 700; color: #216AE2; line-height: 1.5; margin: 0; word-break: keep-all; overflow-wrap: break-word; }
.main .section10-item-text1 { font-size: 18px; font-weight: 500; color: #333; line-height: 1.5; margin: 4px 0 0 0; word-break: keep-all; overflow-wrap: break-word; }
.main .section10-item-text2 { font-size: 18px; font-weight: 300; color: #333; line-height: 1.5; margin-top: 20px;  word-break: keep-all; overflow-wrap: break-word; }

@media screen and (max-width: 1250px) { 
    .main .section10 { padding: 60px 0; } 
    .main .section10 .inner { padding: 0 20px; } 
    .main .section10-title { font-size: 32px; margin: 0 0 40px 0; } 
    .main .section10-items { gap: 20px; } 
    .main .section10-item { padding: 24px; } 
    .main .section10-item-content { gap: 16px; } 
    .main .section10-item-icon { max-width: 100px; max-height: 100px; } 
    .main .section10-item-title { font-size: 22px; } 
    .main .section10-item-text1, .main .section10-item-text2 { font-size: 16px; } 
}
@media screen and (max-width: 900px) { 
    .main .section10-items { grid-template-columns: 1fr; } 
    .main .section10-item-text2 br { display: none; } 
}
@media screen and (max-width: 650px) { 
    .main .section10 { padding: 40px 0; } 
    .main .section10-title { font-size: 24px; margin: 0 0 30px 0; } 
    .main .section10-items { grid-template-columns: 1fr; gap: 16px; } 
    .main .section10-item { padding: 20px; } 
    .main .section10-item-content { gap: 12px; } 
    .main .section10-item-icon { max-width: 80px; max-height: 80px; } 
    .main .section10-item-title { font-size: 20px; } 
    .main .section10-item-text1, .main .section10-item-text2 { font-size: 14px; } 
}

/* 섹션11 */
.main .section11 { position: relative; overflow: hidden; padding: 80px 0; background-color: #F9F9F9; }
.main .section11 .inner { padding: 0; }
.main .section11-title { font-size: 38px; font-weight: 700; color: #333; margin: 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section11-text { font-size: 20px; font-weight: 300; color: #333; margin: 10px 0 0 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; line-height: 1.5; }
.main .section11-text br { display: block; }
.main .section11-swiper { margin-top: 60px; padding: 0 0 50px 0; }
.main .section11-swiper .swiper-wrapper { align-items: stretch; }
.main .section11-swiper .swiper-slide { height: auto; display: flex; }
.main .section11-item {  background-image: url('../img/main/section11/item-bg.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; height: 100%; width: 100%; box-shadow: 6px 10px 8px 0 rgba(0, 0, 0, 0.10); }
.main .section11-item-title { line-height: 1.25; padding: 32px 26px; color: #fff; font-weight: 700; font-size: 24px; word-break: keep-all; overflow-wrap: break-word; background-color: #216AE2; flex-shrink: 0; }
.main .section11-item-content { line-height: 1.5em; padding: 20px; font-size: 18px; font-weight: 700; color: #333; min-height: 345px; flex-grow: 1; word-break: keep-all; overflow-wrap: break-word; }

@media screen and (max-width: 1250px) { 
    .main .section11 { padding: 60px 0; } 
    .main .section11 .inner { padding: 0 20px; } 
    .main .section11-title { font-size: 32px; } 
    .main .section11-text { font-size: 18px; margin: 24px 0 0 0; } 
    .main .section11-swiper { margin-top: 40px; } 
    .main .section11-item-title { padding: 24px 20px; font-size: 22px; } 
    .main .section11-item-content { padding: 16px; font-size: 16px; min-height: 300px; } 
}
@media screen and (max-width: 650px) { 
    .main .section11 { padding: 40px 0; } 
    .main .section11-title { font-size: 24px; } 
    .main .section11-text { font-size: 16px; margin: 20px 0 0 0; } 
    .main .section11-text br { display: none; } 
    .main .section11-swiper { margin-top: 30px; } 
    .main .section11-item{ background-position: left bottom; border-radius: 10px; }
    .main .section11-item-title { padding: 15px 16px; font-size: 18px; } 
    .main .section11-item-content { padding: 16px; font-size: 14px; min-height: 46vw; } 
}
@media screen and (max-width: 450px) { 
    .main .section11-item-content br{ display: none; }
}

/* 섹션12 */
.main .section12 { padding: 80px 0; background-image: url('../img/main/section12/background.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.main .section12 .inner { padding: 0; }
.main .section12-title { font-size: 38px; font-weight: 700; color: #333; margin: 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section12-text { font-size: 20px; font-weight: 300; color: #333; margin: 4px 0 0 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; line-height: 1.5; }
.main .section12 .content-wrap{ margin: 40px auto 0 auto; max-width: 1100px; position: relative; height: 700px; }
.main .section12 .content-wrap .content-image{ position: absolute; width: auto; height: auto; max-width: 100%; opacity: 0; transform: translateY(30px); }
.main .section12 .content-wrap .content-image.animate { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.main .section12 .content-wrap .content-image.item1{ left: 0; top: 0; }
.main .section12 .content-wrap .content-image.item2{ left: 21.4%; top: 3.7%; z-index: 2; }
.main .section12 .content-wrap .content-image.item3{ right: 24.1%; top: 0; }
.main .section12 .content-wrap .content-image.item4{ right: 0; top: 16.9%; }
.main .section12 .content-wrap .content-image.item5{ right: 26%; top: 30.4%; z-index: 1; }
.main .section12 .content-wrap .content-image.item6{ left: 2.4%; bottom: 8.1%; }
.main .section12 .content-wrap .content-image.item7{ left: 32.3%; bottom: 0; }
.main .section12 .content-wrap .content-image.item8{ right: 0; bottom: 0; }

@media screen and (max-width: 1250px) { 
    .main .section12 { padding: 60px 0; } 
    .main .section12 .inner { padding: 0 20px; } 
    .main .section12-title { font-size: 32px; } 
    .main .section12-text { font-size: 18px; margin: 24px 0 0 0; } 
    .main .section12 .content-wrap{ height: 65vw; }
    .main .section12 .content-wrap .content-image.item1{ width: 24vw; }
    .main .section12 .content-wrap .content-image.item2{ width: 27.5vw; }
    .main .section12 .content-wrap .content-image.item3{ width: 22vw; }
    .main .section12 .content-wrap .content-image.item4{ width: 26vw; }
    .main .section12 .content-wrap .content-image.item5{ width: 27.5vw; }
    .main .section12 .content-wrap .content-image.item6{ width: 25vw; }
    .main .section12 .content-wrap .content-image.item7{ width: 22vw; }
    .main .section12 .content-wrap .content-image.item8{ width: 24vw; }
}
@media screen and (max-width: 950px) { 
    .main .section12-title { font-size: 28px; } 
    .main .section12-text { font-size: 16px; margin: 20px 0 0 0; } 
}
@media screen and (max-width: 650px) { 
    .main .section12 { padding: 40px 0; } 
    .main .section12-title { font-size: 24px; } 
    .main .section12-text { font-size: 14px; margin: 16px 0 0 0; } 
}

/* 섹션13 */
.main .section13 { padding: 80px 0; }
.main .section13 .inner { padding: 0; }
.main .section13-title { font-size: 38px; font-weight: 700; color: #333; margin: 0 0 60px 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section13-items { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.main .section13-item { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit; }
.main .section13-item:hover { opacity: 0.9; }
.main .section13-item-image { width: 100%; height: 216px; object-fit: cover; }
.main .section13-item-title { padding: 20px 10px; background-color: #F9FAFB; text-align: center; font-size: 24px; font-weight: 400; margin: 0; word-break: keep-all; overflow-wrap: break-word; }

@media screen and (max-width: 1250px) { 
    .main .section13 { padding: 60px 0; } 
    .main .section13 .inner { padding: 0 20px; } 
    .main .section13-title { font-size: 32px; margin: 0 0 40px 0; } 
    .main .section13-items { gap: 20px; } 
    .main .section13-item-image { height: 180px; } 
    .main .section13-item-title { padding: 16px 8px; font-size: 18px; } 
}
@media screen and (max-width: 650px) { 
    .main .section13 { padding: 40px 0; } 
    .main .section13-title { font-size: 24px; margin: 0 0 30px 0; } 
    .main .section13-items { flex-direction: column; gap: 16px; } 
    .main .section13-item { width: 100%; max-width: 400px; margin: 0 auto; } 
    .main .section13-item-image { height: 200px; } 
    .main .section13-item-title { padding: 16px 8px; font-size: 16px; } 
}

/* 섹션14 */
.main .section14 { padding: 80px 0; }
.main .section14 .inner { padding: 0; }
.main .section14-content { display: flex; align-items: center; gap: 60px; }
.main .section14-left { flex: 1; }
.main .section14-title { font-size: 38px; font-weight: 700; color: #333; margin: 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; line-height: 1.5; }
.main .section14-title br { display: block; }
.main .section14-right { width: 690px; flex-shrink: 0; }
.main .section14-faq { display: flex; flex-direction: column; gap: 12px; }
.main .section14-faq-item { border-radius: 10px; overflow: hidden; }
.main .section14-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px; background-color: #F5F7FF; border: none; cursor: pointer; text-align: left; border-radius: 10px; transition: border-radius 0.3s ease; }
.main .section14-faq-item.active .section14-faq-question { border-radius: 10px 10px 0 0; }
.main .section14-faq-question-text { font-size: 20px; font-weight: 500; color: #333; word-break: keep-all; overflow-wrap: break-word; }
.main .section14-faq-toggle { width: 24px; height: 24px; transition: transform 0.3s ease; flex-shrink: 0; }
.main .section14-faq-item.active .section14-faq-toggle { transform: rotate(180deg); }
.main .section14-faq-answer { max-height: 0; overflow: hidden; padding: 0 20px; background-color: #fff; opacity: 0; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease; }
.main .section14-faq-item.active .section14-faq-answer { background-color: #F5F7FF; max-height: 1000px; padding: 20px; opacity: 1; border-radius: 0 0 10px 10px; background-image: url('../img/main/section14/jb-icon.png'); background-repeat: no-repeat; background-position: 20px 20px; background-size: auto; }
.main .section14-faq-answer-text { display: inline-block; font-size: 18px; font-weight: 500; color: #333; line-height: 1.6; word-break: keep-all; overflow-wrap: break-word; padding-left: 40px; }

@media screen and (max-width: 1250px) { 
    .main .section14 { padding: 60px 0; } 
    .main .section14 .inner { padding: 0 20px; } 
    .main .section14-content { flex-direction: column; gap: 40px; align-items: flex-start; } 
    .main .section14-left { width: 100%; } 
    .main .section14-title { font-size: 32px; text-align: center; } 
    .main .section14-right { width: 100%; max-width: 690px; } 
    .main .section14-faq-question-text { font-size: 18px; } 
    .main .section14-faq-question { padding: 16px; } 
    .main .section14-faq-answer { padding: 0 16px; } 
    .main .section14-faq-item.active .section14-faq-answer { padding: 16px; } 
    .main .section14-faq-answer-text { font-size: 16px; } 
}
@media screen and (max-width: 650px) { 
    .main .section14 { padding: 40px 0; } 
    .main .section14-content { gap: 30px; } 
    .main .section14-title { font-size: 24px; } 
    .main .section14-right { max-width: 100%; } 
    .main .section14-faq-question-text { font-size: 16px; } 
    .main .section14-faq-question { padding: 14px; } 
    .main .section14-faq-toggle { width: 20px; height: 20px; } 
    .main .section14-faq-answer { padding: 0 14px; } 
    .main .section14-faq-item.active .section14-faq-answer { padding: 14px; } 
    .main .section14-faq-answer-text { padding-top: 5px; font-size: 14px; } 
}

/* 섹션15 */
.main .section15 { padding: 80px 0; background-color: #306BCD; }
.main .section15 .inner { padding: 0; }
.main .section15-title { font-size: 38px; font-weight: 500; color: #fff; margin: 0 0 60px 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section15-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.main .section15-item { height: 125px; border-radius: 10px; background-size: cover; background-position: center; background-repeat: no-repeat; box-shadow: 0 16px 31px 0 rgba(0, 0, 0, 0.10); }



@media screen and (max-width: 1250px) { 
    .main .section15 { padding: 60px 0; } 
    .main .section15 .inner { padding: 0 20px; } 
    .main .section15-title { font-size: 32px; margin: 0 0 40px 0; } 
    .main .section15-items { grid-template-columns: repeat(3, 1fr); gap: 20px; } 
    .main .section15-item { height: 100px; } 
}
@media screen and (max-width: 900px) { 
    .main .section15-items { grid-template-columns: repeat(2, 1fr); gap: 16px; } 
    .main .section15-item { height: 90px; } 
}
@media screen and (max-width: 650px) { 
    .main .section15 { padding: 40px 0; } 
    .main .section15-title { font-size: 24px; margin: 0 0 30px 0; } 
    .main .section15-items { grid-template-columns: repeat(2, 1fr); gap: 12px; } 
    .main .section15-item { height: 20vw; } 
}

/* 섹션16 */
.main .section16 { padding: 80px 0; background-image: url('../img/main/section16/background.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.main .section16 .inner { padding: 0; }
.main .section16-content { display: flex; gap: 24px; }
.main .section16-left { box-shadow: 2px 4px 10px 0 rgba(51, 51, 51, 0.15); flex: 1; background-color: #306BCD; border: 1px solid #fff; border-radius: 20px; padding: 20px 50px 50px 50px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 30px; }
.main .section16-icon { width: auto; height: auto; }
.main .section16-title { font-size: 32px; font-weight: 500; color: #fff; margin: 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section16-title strong { font-weight: 700; }
.main .section16-promises { width: 100%; display: flex; flex-direction: column; gap: 16px; }
.main .section16-promise-item { display: flex; flex-direction: column; gap: 8px; }
.main .section16-promise-number { font-size: 13px; color: #fff; font-weight: 500; }
.main .section16-promise-content { padding: 20px 15px; border-radius: 6px; background-color: #fff; color: #333; font-size: 16px; font-weight: 500; line-height: 1.6; word-break: keep-all; overflow-wrap: break-word; }
.main .section16-promise-content strong { color: #216AE2; font-weight: 700; }
.main .section16-promise-content small { font-size: 14px; display: block; margin-top: 8px; }
.main .section16-right { flex: 1; background-color: #fff; border: 1px solid #fff; border-radius: 20px; padding: 20px 50px 50px 50px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 30px; box-shadow: 2px 4px 10px 0 rgba(51, 51, 51, 0.15); }
.main .section16-title-right { font-size: 32px; font-weight: 700; color: #216AE2; margin: 0; text-align: center; word-break: keep-all; overflow-wrap: break-word; }
.main .section16-form { width: 100%; display: flex; flex-direction: column; gap: 20px; }
.main .section16-form-group { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.main .section16-label { font-size: 16px; font-weight: 500; color: #333; }
.main .section16-required { color: #EB5757; margin-left: 4px; }
.main .section16-input, .main .section16-textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; font-size: 16px; font-weight: 500; color: #333; font-family: inherit; box-sizing: border-box; }
.main .section16-input { border-radius: 0; }
.main .section16-input:focus, .main .section16-textarea:focus { outline: none; border-color: #216AE2; }
.main .section16-textarea { resize: none; min-height: 120px; }
.main .section16-checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #333; cursor: pointer; }
.main .section16-checkbox { width: 18px; height: 18px; cursor: pointer; }
.main .section16-privacy-text { color: #7F7F7F; }
.main .section16-privacy-link { color: #222; text-decoration: none; margin-left: 4px; }
.main .section16-privacy-link:hover { text-decoration: underline; }
.main .section16-submit-btn { margin: 50px auto 0 auto; width: 312px; padding: 16px; background: #222; color: #fff; border: none; border-radius: 30px; font-weight: 700; cursor: pointer; transition: background-color 0.3s ease; }
.main .section16-submit-btn:hover { background-color: #333; }
.main .section16-divider { width: 100%; height: 1px; background-color: #D9E8FF; margin: 30px 0; }
.main .section16-contact { display: flex; flex-direction: column; gap: 12px; }
.main .section16-contact-item { display: flex; gap: 12px; font-size: 20px; }
.main .section16-contact-label { width: 110px; flex-shrink: 0; font-weight: 300; color: #333; }
.main .section16-contact-value { font-weight: 500; color: #333; }

@media screen and (max-width: 1250px) { 
    .main .section16 { padding: 60px 0; } 
    .main .section16 .inner { padding: 0 20px; } 
    .main .section16-content { flex-direction: column; gap: 20px; } 
    .main .section16-left { padding: 20px 30px 40px 30px; } 
    .main .section16-right { padding: 20px 30px 40px 30px; } 
    .main .section16-title { font-size: 28px; } 
    .main .section16-title-right { font-size: 28px; } 
}
@media screen and (max-width: 900px) { 
    .main .section16-left { padding: 20px 20px 30px 20px; gap: 20px; } 
    .main .section16-right { padding: 20px 20px 30px 20px; gap: 20px; } 
    .main .section16-title { font-size: 24px; } 
    .main .section16-title-right { font-size: 24px; } 
    .main .section16-promise-content { font-size: 14px; padding: 16px 12px; } 
    .main .section16-submit-btn { width: 100%; max-width: 312px; } 
    .main .section16-contact{ width: 100%; }
}
@media screen and (max-width: 650px) { 
    .main .section16 { padding: 40px 0; } 
    .main .section16-left { padding: 20px 15px 30px 15px; gap: 20px; } 
    .main .section16-right { padding: 20px 15px 30px 15px; gap: 20px; } 
    .main .section16-title { font-size: 20px; } 
    .main .section16-title-right { font-size: 20px; } 
    .main .section16-icon { max-width: 60px; } 
    .main .section16-promises { gap: 12px; } 
    .main .section16-promise-number { font-size: 12px; } 
    .main .section16-promise-content { font-size: 13px; padding: 14px 10px; } 
    .main .section16-promise-content small { font-size: 12px; } 
    .main .section16-label { font-size: 14px; } 
    .main .section16-input, .main .section16-textarea { font-size: 14px; padding: 10px 12px; } 
    .main .section16-textarea { min-height: 100px; } 
    .main .section16-checkbox-label { font-size: 12px; } 
    .main .section16-submit-btn { width: 100%; max-width: 280px; padding: 14px; font-size: 16px; margin: 30px auto 0 auto; } 
    .main .section16-divider { margin: 20px 0; } 
    .main .section16-contact-item { font-size: 16px; flex-direction: column; gap: 4px; } 
    .main .section16-contact-label { width: auto; } 
    .main .section16-contact-value { word-break: keep-all; overflow-wrap: break-word; } 
}


/* 플로팅 아이콘 */
.floating-icons{ font-size: 14px; text-align: center; position: fixed; right: 10px; bottom: 180px; z-index: 99; padding: 15px 5px 34px 5px ; border-radius: 100px; background-color: rgba(255, 255, 255, 0.8);  }
.floating-icons > li + li{ margin-top: 10px; }
.floating-icons .img-wrap{ width: 40px; height: 40px; border-radius: 50%; background-color: #2F6ACC; box-shadow: 5px 6px 4px 0 rgba(0, 0, 0, 0.05); margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.floating-icons .text{ margin-top: 5px; }

@media screen and (max-width: 650px) { 
    .floating-icons{ padding: 10px 5px 10px 5px ; bottom: 200px; }
    .floating-icons .img-wrap{ width: 30px; height: 30px;}
    .floating-icons .img-wrap img{ width: 15px; }
    .floating-icons .text{ display: none; }
}


/* .bottom-apply */
.bottom-apply{ transition: opacity .5s, visibility .5s; position: fixed; width: 100%; display: flex; align-items: center; justify-content: center; z-index: 99; bottom: 64px; }
.bottom-apply.hide{ opacity: 0; visibility: hidden; }
.bottom-apply .apply-arti{ display: flex; align-items: center; gap: 18px; border-radius: 100px; padding: 12px 24px; padding-left: 56px; color: #fff; width: 100%; max-width: 1200px; background-color: rgba(43, 43, 43, 0.90); box-shadow: 7px 11px 11px 0 rgba(0, 0, 0, 0.25); backdrop-filter: blur(2px); }  
.bottom-apply .apply-arti .form-list{ flex-grow: 1; display: flex; align-items: center; gap: 47px; }
.bottom-apply .apply-arti .form-list > li{ width: calc( 100% / 3); }
.bottom-apply .apply-arti .form-list label{ border-bottom: 1px solid #7C7C7C; display: flex; gap: 10px; align-items: flex-end; }
.bottom-apply .apply-arti .form-list label .label{ flex-shrink: 0; font-size: 20px; line-height: 1.5em; font-weight: 700; }
.bottom-apply .apply-arti .form-list label .ipt{ background: transparent; padding-bottom: 5px; border: none;  }
.bottom-apply .apply-arti .form-list label .ipt:focus{ -webkit-box-shadow:none !important; border: none !important; }
.bottom-apply .apply-arti .form-list label .ipt:focus-visible{   outline: none !important; }
.bottom-apply .apply-arti .form-list label .ipt::placeholder{ color: #404040; }
.bottom-apply .apply-arti .form-list label select.ipt{ background-repeat: no-repeat; background-position: right center; padding-right: 30px; background-image: url('../img/bottom-apply/select-arrow.svg'); }
.bottom-apply .apply-arti .form-list label select.ipt option{ background-color: #222; }
.bottom-apply .apply-arti .agreeCheckDiv{ flex-shrink: 0; }
.bottom-apply .apply-arti .agreeCheckDiv label input[type="checkbox"] + .textBox{ color: #fff; }
.bottom-apply .apply-arti .agreeCheckDiv label input[type="checkbox"] + .textBox::before{ border-radius: 4px; }
.bottom-apply .apply-arti .agreeCheckDiv label input[type="checkbox"]:checked + .textBox::before{ border: 1px solid #124137; background-image: url('../img/bottom-apply/check-icon.png');  }
.bottom-apply .apply-arti .submit-btn{background: #306BCD; border: none; flex-shrink: 0; padding: 1px; border-radius: 100px; }
.bottom-apply .apply-arti .submit-btn .button{ line-height: 1.5em; font-weight: 700; border-radius: 100px; background-color: #000; padding: 9px 49px; color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; }

@media screen and (max-width: 1250px) { 
    .bottom-apply{ padding: 0 3vw; bottom: 36px; }
    .bottom-apply .apply-arti .submit-btn .button{ padding: 9px 30px; }
    .bottom-apply .apply-arti .form-list{ gap: 20px; }
}
@media screen and (max-width:1200px) { 
    .bottom-apply .apply-arti .submit-btn .button{ font-size: 16px; padding: 9px 20px; }
    .bottom-apply .apply-arti .submit-btn .button .icon{ width: 17px; }
}
@media screen and (max-width:1100px) { 
    .bottom-apply .apply-arti { padding: 20px; align-items: center; flex-wrap: wrap; border-radius: 10px; gap: 10px; }
    .bottom-apply .apply-arti .form-list{ width: 100%; }
    .bottom-apply .apply-arti .agreeCheckDiv{ flex-grow: 1; }
}
@media screen and (max-width: 650px) { 
    .bottom-apply{ bottom: 20px; }
    .bottom-apply .apply-arti .form-list{ gap: 10px; flex-wrap: wrap; }
    .bottom-apply .apply-arti .form-list > li{ width: calc((100% / 2) - 5px); } 
    .bottom-apply .apply-arti .form-list > li:nth-child(1){ width: 100%; }
    .bottom-apply .apply-arti .form-list label .label{ font-size: 18px; }
    .bottom-apply .apply-arti .form-list label .ipt{ font-size: 14px; }
    .agreeCheckDiv label input[type="checkbox"] + .textBox{ font-size: 12px; }
    .bottom-apply .apply-arti .submit-btn .button{ font-size: 14px; padding: 9px 15px; gap: 5px; }
    .bottom-apply .apply-arti .submit-btn .button .icon{ width: 15px; }
}

/* 포트폴리오 배너 섹션 */
.portfolio { background-color: #F9FAFB; }
.portfolio .portfolio-banner-section { position: relative; overflow: hidden; background-image: url('../img/portfolio/onjo_family/banner-backgroun.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 120px 0; min-height: 600px; display: flex; align-items: center; }
.portfolio .portfolio-banner-section .inner { width: 1200px; margin: 0 auto; padding: 0; }
.portfolio .portfolio-banner-content { display: flex; align-items: center; gap: 60px; }
.portfolio .portfolio-banner-left { flex: 1; display: flex; flex-direction: column; gap: 30px; }
.portfolio .portfolio-banner-logo { margin-bottom: 10px; }
.portfolio .portfolio-banner-logo img { width: auto; height: auto; max-width: 200px; }
.portfolio .portfolio-banner-title { font-size: 32px; font-weight: 700; color: var(--white-color); margin: 0; line-height: 1.4; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-banner-title br { display: block; }
.portfolio .portfolio-banner-description { word-break: keep-all; font-size: 18px; font-weight: 400; color: #fff; margin: 0; line-height: 1.6; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-banner-info { display: flex; flex-direction: column; gap: 16px; padding: 20px 0; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }
.portfolio .portfolio-banner-info-item { display: flex; align-items: center; gap: 20px; }
.portfolio .portfolio-banner-info-label { font-size: 16px; font-weight: 500; color: #fff; min-width: 80px; flex-shrink: 0; }
.portfolio .portfolio-banner-info-value { flex-grow: 1; text-align: right; font-size: 16px; font-weight: 400; color: #fff; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-banner-info-value a { color: #fff; text-decoration: underline; transition: opacity 0.3s ease; }
.portfolio .portfolio-banner-info-value a:hover { opacity: 0.8; }
.portfolio .portfolio-banner-right { flex-shrink: 0; }
.portfolio .portfolio-banner-image { width: 734px; height: 413px; object-fit: cover; border-radius: 20px; }

@media screen and (max-width: 1250px) { 
    .portfolio .portfolio-banner-section { padding: 100px 0; min-height: auto; } 
    .portfolio .portfolio-banner-section .inner { width: 100%; padding: 0 20px; } 
    .portfolio .portfolio-banner-content { gap: 40px; } 
    .portfolio .portfolio-banner-image { width: 100%; max-width: 600px; height: auto; aspect-ratio: 734 / 413; } 
}
@media screen and (max-width: 950px) { 
    .portfolio .portfolio-banner-content { flex-direction: column; gap: 40px; } 
    .portfolio .portfolio-banner-left { width: 100%; } 
    .portfolio .portfolio-banner-right { width: 100%; display: flex; justify-content: center; } 
    .portfolio .portfolio-banner-image { width: 100%; max-width: 100%; } 
    .portfolio .portfolio-banner-title { font-size: 28px; } 
    .portfolio .portfolio-banner-description { font-size: 16px; } 
}
@media screen and (max-width: 650px) { 
    .portfolio .portfolio-banner-section { padding: 60px 0; } 
    .portfolio .portfolio-banner-section .inner { padding: 0 20px; } 
    .portfolio .portfolio-banner-left { gap: 20px; } 
    .portfolio .portfolio-banner-logo img { max-width: 150px; } 
    .portfolio .portfolio-banner-title { font-size: 24px; } 
    .portfolio .portfolio-banner-description { font-size: 15px; } 
    .portfolio .portfolio-banner-description br{ display: none; }
    .portfolio .portfolio-banner-info { gap: 12px; padding: 16px 0; } 
    .portfolio .portfolio-banner-info-item { flex-direction: column; align-items: flex-start; gap: 8px; } 
    .portfolio .portfolio-banner-info-label { min-width: auto; font-size: 14px; } 
    .portfolio .portfolio-banner-info-value { font-size: 14px; } 
    .portfolio .portfolio-banner-image { border-radius: 15px; } 
}

/* 포트폴리오 디렉션 섹션 */
.portfolio .portfolio-direction-section { background-color: #F9FAFB; padding: 80px 0; }
.portfolio .portfolio-direction-section .inner { width: 1200px; margin: 0 auto; padding: 0; }
.portfolio .portfolio-direction-content { display: flex; gap: 60px; align-items: flex-start; }
.portfolio .portfolio-direction-left { flex: 1; }
.portfolio .portfolio-direction-right { flex: 1; }
.portfolio .portfolio-direction-title { font-size: 32px; font-weight: 700; color: #222; margin: 0 0 40px 0; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-direction-title-blue { color: #216AE2; }
.portfolio .portfolio-direction-item { margin-bottom: 30px; display: flex; gap: 5px; align-items: flex-start; }
.portfolio .portfolio-direction-item:last-child { margin-bottom: 0; }
.portfolio .portfolio-direction-item-title { font-size: 16px; color: #222; margin: 0; flex-shrink: 0; width: 60px; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-direction-item-title-blue { color: #216AE2; }
.portfolio .portfolio-direction-item-content { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.portfolio .portfolio-direction-item-text { font-size: 16px; font-weight: 400; color: #333; margin: 0; line-height: 1.6; padding-left: 12px; position: relative; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-direction-item-text::before { content: '-'; position: absolute; left: 0; color: #333; }
.portfolio .portfolio-direction-item-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.portfolio .portfolio-direction-item-list li { font-size: 16px; font-weight: 400; color: #333; line-height: 1.6; padding-left: 12px; position: relative; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-direction-item-list li::before { content: '-'; position: absolute; left: 0; color: #333; }
.portfolio .portfolio-direction-divider { width: 100%; height: 1px; background-color: #e6e6e6; margin: 30px 0; }

@media screen and (max-width: 1250px) { 
    .portfolio .portfolio-direction-section { padding: 60px 0; } 
    .portfolio .portfolio-direction-section .inner { width: 100%; padding: 0 20px; } 
    .portfolio .portfolio-direction-content { gap: 40px; } 
    .portfolio .portfolio-direction-title { font-size: 28px; margin: 0 0 30px 0; } 
    .portfolio .portfolio-direction-item-list li { font-size: 15px; } 
}
@media screen and (max-width: 950px) { 
    .portfolio .portfolio-direction-content { flex-direction: column; gap: 40px; } 
    .portfolio .portfolio-direction-divider { width: 100%; height: 1px; margin: 0 0 20px 0; } 
    .portfolio .portfolio-direction-left{ width: 100%; }
    .portfolio .portfolio-direction-right{ width: 100%; }
}
@media screen and (max-width: 650px) { 
    .portfolio .portfolio-direction-section { padding: 40px 0; } 
    .portfolio .portfolio-direction-section .inner { padding: 0 20px; } 
    .portfolio .portfolio-direction-content { gap: 30px; } 
    .portfolio .portfolio-direction-title { font-size: 24px; margin: 0 0 24px 0; } 
    .portfolio .portfolio-direction-item { margin-bottom: 24px; flex-direction: column; gap: 8px; } 
    .portfolio .portfolio-direction-item-title { font-size: 14px; margin: 0; width: auto; } 
    .portfolio .portfolio-direction-item-text { font-size: 14px; margin: 0 0 12px 0; } 
    .portfolio .portfolio-direction-item-list { gap: 6px; } 
    .portfolio .portfolio-direction-item-list li { font-size: 13px; } 
    .portfolio .portfolio-direction-divider { margin: 24px 0; } 
}

/* 포트폴리오 디바이스 섹션 */
.portfolio .portfolio-device-section { padding: 80px 0; }
.portfolio .portfolio-device-section .inner { width: 1200px; margin: 0 auto; padding: 0; }
.portfolio .portfolio-device-header { margin-bottom: 20px; }
.portfolio .portfolio-device-title { font-size: 28px; font-weight: 700; color: #222; margin: 0; display: inline-flex; align-items: flex-start; gap: 8px; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-device-dot { width: 5.877px; height: 5.877px; background-color: #216AE2; border-radius: 50%; flex-shrink: 0; }
.portfolio .portfolio-device-description { font-size: 16px; font-weight: 400; color: #333; margin: 0 0 60px 0; line-height: 1.6; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-device-images { position: relative; display: flex; align-items: flex-end; justify-content: flex-start; min-height: 400px; padding-right: 0; }
.portfolio .portfolio-device-image { max-width: 90%; position: absolute; width: auto; height: auto; }
.portfolio .portfolio-device-pc { position: static; }
.portfolio .portfolio-device-tablet { z-index: 2; right: 10%; }
.portfolio .portfolio-device-mobile { z-index: 3; right: 0; }

@media screen and (max-width: 1250px) { 
    .portfolio .portfolio-device-section { padding: 60px 0; } 
    .portfolio .portfolio-device-section .inner { width: 100%; padding: 0 20px; } 
    .portfolio .portfolio-device-title { font-size: 24px; } 
    .portfolio .portfolio-device-description { font-size: 15px; margin: 0 0 40px 0; } 
    .portfolio .portfolio-device-images { min-height: 300px; } 
    .portfolio .portfolio-device-tablet { width: 25vw; }
    .portfolio .portfolio-device-mobile { width: 15vw; }
}
@media screen and (max-width: 650px) { 
    .portfolio .portfolio-device-section { padding: 40px 0; } 
    .portfolio .portfolio-device-section .inner { padding: 0 20px; } 
    .portfolio .portfolio-device-title { font-size: 20px; } 
    .portfolio .portfolio-device-dot { width: 4px; height: 4px; } 
    .portfolio .portfolio-device-description { font-size: 14px; margin: 0 0 30px 0; } 
    .portfolio .portfolio-device-images { min-height: 250px; } 
}

/* 포트폴리오 디자인 섹션 */
.portfolio .portfolio-design-section { padding: 80px 0; }
.portfolio .portfolio-design-section .inner { width: 1200px; margin: 0 auto; padding: 0; }
.portfolio .portfolio-design-content { display: flex; gap: 60px; align-items: flex-start; }
.portfolio .portfolio-design-left { flex: 1; }
.portfolio .portfolio-design-right { flex: 1; }
.portfolio .portfolio-design-title { font-size: 28px; font-weight: 700; color: #222; margin: 0 0 40px 0; display: inline-flex; align-items: flex-start; gap: 8px; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-design-dot { width: 5.877px; height: 5.877px; background-color: #216AE2; border-radius: 50%; flex-shrink: 0; }
.portfolio .portfolio-color-list { display: flex; flex-direction: column; }
.portfolio .portfolio-color-item { display: flex; align-items: center; gap: 16px; padding: 40px 20px; border-radius: 0; }
.portfolio .portfolio-color-item:nth-child(1) { background-color: #182A23; }
.portfolio .portfolio-color-item:nth-child(2) { background-color: #EFEFEF; }
.portfolio .portfolio-color-item:nth-child(3) { background-color: #313131; }
.portfolio .portfolio-color-circle { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; }
.portfolio .portfolio-color-info { display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 16px; flex: 1; }
.portfolio .portfolio-color-name { font-size: 16px; font-weight: 400; color: #fff; }
.portfolio .portfolio-color-item:nth-child(2) .portfolio-color-name { color: #333; }
.portfolio .portfolio-color-hex { font-size: 20px; font-weight: 400; color: #fff; }
.portfolio .portfolio-color-item:nth-child(2) .portfolio-color-hex { color: #333; }
.portfolio .portfolio-design-divider { width: 100%; height: 1px; background-color: #e6e6e6; margin: 0 0 30px 0; }
.portfolio .portfolio-font-name { font-size: 37px; font-weight: 500; color: #333; margin: 0 0 10px 0; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-type-wrapper { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.portfolio .portfolio-type-wrapper + .portfolio-design-divider{ margin-top: 40px; }
.portfolio .portfolio-type-left { display: flex; flex-direction: column; gap: 10px; }
.portfolio .portfolio-type-names { display: flex; flex-direction: column; gap: 16px; }
.portfolio .portfolio-type-weights { display: flex; gap: 7px; }
.portfolio .portfolio-type-name { font-size: 16px; font-weight: 400; color: #333; }
.portfolio .portfolio-type-weight { font-size: 16px; font-weight: 400; color: #333; }
.portfolio .portfolio-type-right { display: flex; align-items: flex-start; }
.portfolio .portfolio-type-text { text-align: right; font-size: 27px; font-weight: 500; color: #333; margin: 0; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-type-text b{ font-weight: 700; }

@media screen and (max-width: 1250px) { 
    .portfolio .portfolio-design-section { padding: 60px 0; } 
    .portfolio .portfolio-design-section .inner { width: 100%; padding: 0 20px; } 
    .portfolio .portfolio-design-content { gap: 40px; } 
    .portfolio .portfolio-design-title { font-size: 24px; margin: 0 0 30px 0; } 
    .portfolio .portfolio-color-list { gap: 16px; } 
    .portfolio .portfolio-color-item { padding: 14px; } 
    .portfolio .portfolio-color-name { font-size: 15px; } 
    .portfolio .portfolio-color-hex { font-size: 13px; } 
    .portfolio .portfolio-font-name { font-size: 32px; margin: 0 0 24px 0; }
    .portfolio .portfolio-type-text { font-size: 24px; } 
}
@media screen and (max-width: 950px) { 
    .portfolio .portfolio-design-content { flex-direction: column; gap: 40px; } 
    .portfolio .portfolio-design-left{ width:100%; }
    .portfolio .portfolio-design-right{ width: 100%; }
}
@media screen and (max-width: 650px) { 
    .portfolio .portfolio-design-section { padding: 40px 0; } 
    .portfolio .portfolio-design-section .inner { padding: 0 20px; } 
    .portfolio .portfolio-design-content { gap: 30px; } 
    .portfolio .portfolio-design-title { font-size: 20px; margin: 0 0 24px 0; } 
    .portfolio .portfolio-design-dot { width: 4px; height: 4px; } 
    .portfolio .portfolio-color-list { gap: 12px; } 
    .portfolio .portfolio-color-item { padding: 12px; gap: 12px; } 
    .portfolio .portfolio-color-circle { width: 20px; height: 20px; } 
    .portfolio .portfolio-color-name { font-size: 14px; } 
    .portfolio .portfolio-color-hex { font-size: 12px; } 
    .portfolio .portfolio-design-divider { margin: 0 0 24px 0; }
    .portfolio .portfolio-font-name { font-size: 24px; margin: 0 0 20px 0; }
    .portfolio .portfolio-type-wrapper { gap: 20px; }
    .portfolio .portfolio-type-left { gap: 12px; }
    .portfolio .portfolio-type-names { gap: 12px; }
    .portfolio .portfolio-type-weights { gap: 5px; }
    .portfolio .portfolio-type-name { font-size: 14px; }
    .portfolio .portfolio-type-weight { font-size: 14px; }
    .portfolio .portfolio-type-text { font-size: 20px; } 
}

/* 포트폴리오 디자인 래퍼 */
.portfolio .portfolio-design-wrapper { position: relative; background-image: url('../img/portfolio/onjo_family/section-background.png'); background-size: 100% auto; background-position: top center; background-repeat: no-repeat; }
/* 포트폴리오 컨셉 섹션 */
.portfolio .portfolio-concept-section { padding: 120px 0 60px 0; }
.portfolio .portfolio-concept-section .inner { width: 1200px; margin: 0 auto; padding: 0; }
.portfolio .portfolio-concept-title { font-size: 32px; font-weight: 700; color: #fff; margin: 0 0 40px 0; display: inline-flex; align-items: flex-start; gap: 8px; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-concept-dot { width: 5.877px; height: 5.877px; background-color: #fff; border-radius: 50%; flex-shrink: 0; }
.portfolio .portfolio-concept-content { display: flex; flex-direction: column; gap: 24px; }
.portfolio .portfolio-concept-subtitle { font-size: 20px; font-weight: 700; color: #fff; margin: 0; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-concept-text { word-break: keep-all; font-size: 18px; font-weight: 400; color: #fff; margin: 0; line-height: 1.8; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-concept-text br { display: block; }

@media screen and (max-width: 1250px) { 
    .portfolio .portfolio-concept-section { padding: 100px 0 40px 0; } 
    .portfolio .portfolio-concept-section .inner { width: 100%; padding: 0 20px; } 
    .portfolio .portfolio-concept-title { font-size: 28px; margin: 0 0 30px 0; } 
    .portfolio .portfolio-concept-content { gap: 20px; } 
    .portfolio .portfolio-concept-subtitle { font-size: 18px; } 
    .portfolio .portfolio-concept-text { font-size: 16px; } 
    .portfolio .portfolio-overview-section { padding: 0 0 60px 0; } 
}
@media screen and (max-width: 650px) { 
    .portfolio .portfolio-design-wrapper { background-size: 1200px; }
    .portfolio .portfolio-concept-section { padding: 60px 0 30px 0; } 
    .portfolio .portfolio-concept-section .inner { padding: 0 20px; } 
    .portfolio .portfolio-concept-title { font-size: 24px; margin: 0 0 24px 0; }
    .portfolio .portfolio-concept-dot { width: 4px; height: 4px; }
    .portfolio .portfolio-concept-content { gap: 16px; } 
    .portfolio .portfolio-concept-subtitle { font-size: 16px; } 
    .portfolio .portfolio-concept-subtitle br{ display: none; }
    .portfolio .portfolio-concept-text { font-size: 14px; line-height: 1.6; }
    .portfolio .portfolio-concept-text br { display: none; } 
}

/* 포트폴리오 오버뷰 섹션 */
.portfolio .portfolio-overview-section { padding: 400px 0 40px 0; }
.portfolio .portfolio-overview-section .inner { width: 1200px; margin: 0 auto; padding: 0; }
.portfolio .portfolio-overview-title { font-size: 32px; font-weight: 700; color: #222; margin: 0 0 40px 0; display: inline-flex; align-items: flex-start; gap: 8px; word-break: keep-all; overflow-wrap: break-word; }
.portfolio .portfolio-overview-dot { width: 5.877px; height: 5.877px; background-color: #216AE2; border-radius: 50%; flex-shrink: 0; }
.portfolio .portfolio-overview-image-wrapper { width: 100%; display: flex; justify-content: center; }
.portfolio .portfolio-overview-image { border-radius:10px; width: 100%; height: auto; max-width: 100%; box-shadow: 11px 16px 13px 0 rgba(0, 0, 0, 0.15); }

@media screen and (max-width: 1250px) { 
    .portfolio .portfolio-overview-section .inner { width: 100%; padding: 0 20px; } 
    .portfolio .portfolio-overview-title { font-size: 28px; margin: 0 0 30px 0; } 
}
@media screen and (max-width: 650px) { 
    .portfolio .portfolio-overview-section { padding: 300px 0 40px 0; } 
    .portfolio .portfolio-overview-section .inner { padding: 0 20px; } 
    .portfolio .portfolio-overview-title { font-size: 24px; margin: 0 0 24px 0; } 
    .portfolio .portfolio-overview-dot { width: 4px; height: 4px; } 
}

/* 포트폴리오 이미지 섹션 */
.portfolio .portfolio-images-section { padding: 80px 0; }
.portfolio .portfolio-images-section .inner { width: 1200px; margin: 0 auto; padding: 0; }
.portfolio .portfolio-images-content { display: flex; align-items: flex-start; gap: 36px; }
.portfolio .portfolio-images-left { background-image: url('../img/portfolio/onjo_family/line-background.png'); background-size: cover; background-repeat: no-repeat; background-position: top center; flex: 1; display: flex; flex-direction: column; gap: 76px; }
.portfolio .portfolio-images-right { background-image: url('../img/portfolio/onjo_family/right-line-background.png'); background-size: cover; background-repeat: no-repeat; background-position: top center; flex: 1; display: flex; flex-direction: column; gap: 76px; }
.portfolio .portfolio-image-item { border-radius: 10px; box-shadow: 11px 16px 13px 0 rgba(0, 0, 0, 0.15); width: 100%; height: auto; display: block; }
.portfolio .portfolio-images-divider { width: 2px; background: linear-gradient(270deg, rgba(24, 42, 35, 0.00) 0%, #182A23 50%, rgba(24, 42, 35, 0.00) 100%); flex-shrink: 0; align-self: stretch; }

@media screen and (max-width: 1250px) { 
    .portfolio .portfolio-images-section { padding: 60px 0; } 
    .portfolio .portfolio-images-section .inner { width: 100%; padding: 0 20px; } 
    .portfolio .portfolio-images-content { gap: 20px; } 
    .portfolio .portfolio-images-left { gap: 40px; } 
    .portfolio .portfolio-images-right { gap: 40px; } 
    .portfolio .portfolio-images-divider { width: 1px; } 
}
@media screen and (max-width: 650px) { 
    .portfolio .portfolio-images-section { padding: 40px 0; } 
    .portfolio .portfolio-images-section .inner { padding: 0 20px; } 
    .portfolio .portfolio-images-content { flex-direction: column; gap: 0; } 
    .portfolio .portfolio-images-left { gap: 24px; width: 100%; } 
    .portfolio .portfolio-images-right { gap: 24px; width: 100%; } 
    .portfolio .portfolio-images-divider { width: 100%; height: 2px; margin: 24px 0; } 
}

/* 포트폴리오 백 버튼 섹션 */
.portfolio .portfolio-back-section { padding: 80px 0; }
.portfolio .portfolio-back-section .inner { width: 1200px; margin: 0 auto; padding: 0; display: flex; justify-content: center; align-items: center; }
.portfolio .portfolio-back-btn { font-size: 20px; font-weight: 500; display: inline-block; padding: 10px 30px; background: #182A23; color: #fff; text-decoration: none; border-radius: 5px; font-size: 16px; font-weight: 400; transition: opacity 0.3s ease; }
.portfolio .portfolio-back-btn:hover { opacity: 0.8; }

@media screen and (max-width: 1250px) { 
    .portfolio .portfolio-back-section { padding: 60px 0; } 
    .portfolio .portfolio-back-section .inner { width: 100%; padding: 0 20px; } 
}
@media screen and (max-width: 650px) { 
    .portfolio .portfolio-back-section { padding: 40px 0; } 
    .portfolio .portfolio-back-section .inner { padding: 0 20px; } 
    .portfolio .portfolio-back-btn { font-size: 14px; padding: 8px 24px; } 
}
