/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

:root {
    --point: #0e3e50;
    --teal: #1B5C70;
    --teal-dark: #0F3D4E;
    --teal-mid: #2A7A94;
    --teal-light: #D4E9EF;
    --slate: #3D4E57;
    --charcoal: #1C2226;
    --warm-gray: #8A8F94;
    --off-white: #F8F7F5;
    --white: #FFFFFF;
    --border: rgba(27, 92, 112, 0.12);
    --text-main: #1C2226;
    --text-sub: #5A6672;
    --text-muted: #8A8F94;

    /* banner */
    --navy-deep:#0c2d4a;
    --navy-mid:#13568f;
    --navy-light:#1a73b8;
    --ink:#0c2d4a;
    --paper:#ffffff;
    --line:#e3e8ee;
    --muted:#7a8a9a;

    /* light */
    --bg-deep:#06080a;
    --bg-floor:#0e1318;
    --teal-dim:#1a3f4e;
    --teal-bright:#5fd0e8;
    --teal-hot:#eafcff;
}


/* common */
html {
    scroll-behavior: auto; /* smooth 제거 */
}
body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body .elementor a {
    color: inherit;
    text-decoration: underline;
}
body.menu-open {
    overflow: hidden;
}
.inner-wrap {
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    max-width: 1400px;
}
.btn-common {
    background: var(--teal);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: -0.01em;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
    /* 수정 */
    height: 3rem;
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.3;
}
.btn-common:hover {
    color: white;
    background: var(--teal-mid);
    transform: translateY(-1px);
}
.btn-border {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}
.btn-border:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.grid-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.accordion-panel {
    transition: height 0.3s ease;
}
.mo-br {
    display: none;
}
.main-navigation {
    -webkit-overflow-scrolling: touch; /* iOS 관성 스크롤 */
}


/* motion */
.fadeup {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-in-out .4s;
}
.once .fadeup {
    opacity: 1;
    transform: unset;
}


/* menu */
#site-header {
    height: 110px;
    position: relative;
    z-index: 50;
}
.header-inner {
    padding: 0 50px;
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: space-between;
    background: #fff;
    position: fixed;
    z-index: 41;
    /* transition: height .5s; */
    transition: height 0.5s, top 0.5s, box-shadow 1s;
    overflow: hidden;
}
.header-inner .site-logo {
    width: 100%;
    max-width: 215px;
    height: 110px;
    display: flex;
    align-items: center;
    font-size: 0;
    /* 수정 */
    max-width: 272px;
}
.header-inner #primary-menu {
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 120px;
    list-style: none;
}
.header-inner #primary-menu > li {
    position: relative;
}
.header-inner #primary-menu > li::before {
    content: '';
    width: 1px;
    height:400px;
    display: block;
    border-left: 1px dashed rgba(180, 220, 230, 0.6);
    position: absolute;
        top: 40px;
    left: -23px;
    z-index: 1;
    opacity: 0;
    transition: opacity .5s;
}
header.hover .header-inner #primary-menu > li::before {
    opacity: 1;
}
.header-inner #primary-menu > li > a {
    font-size: 17px;
    font-weight: 600;
    line-height: 110px;
    /* 수정 */
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.015em;
}
.header-inner #primary-menu > li#menu-item-480 a,
.header-mo ul li.menu-item-480 a {
    margin-top: 3.5px;
    width: 90px;
    height: 110px;
    display: inline-block;
    color: transparent;
    background: left center / contain no-repeat url('/wp-content/uploads/2026/07/jbgo-logo-l.webp');
}
.header-mo ul li.menu-item-480 a {
    height: auto;
}
.header-inner #primary-menu a {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    /* 수정 */
    font-size: 1.125rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.header-inner #primary-menu .sub-menu {
    padding: 0;
    width: 135px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    list-style: none;
    position: absolute;
    top: 110px;
    z-index: 1;
}
.header-inner .btn-wrap {
    height: 110px;
    display: flex;
    align-items: center;
}
.header-inner .menu-ico {
    display: none;
}
.menu-ico button {
    padding: 0 !important;
    position: relative;
    width: 24px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
}
.menu-ico button:hover,
.menu-ico button:focus {
    background: transparent;
}
.menu-ico .blind {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
.menu-ico span {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #333;
    transform: translateX(-50%);
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.menu-ico span:nth-child(2) {
    top: 14px;
}

.menu-ico span:nth-child(3) {
    top: 24px;
}
.menu-ico button.active span:nth-child(2) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-ico button.active span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}
.header-mo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff; /* 원하는 배경색 */
    z-index: 30;
    overflow-y: auto;
    transition: transform 0.35s ease;
    transform: translateY(-100%); /* 기본값: 위로 숨김 */
}
.header-mo.active {
    transform: translateX(0);
}
.header-mo ul {
    padding: 0;
    list-style: none;
}
.header-mo ul#primary-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.header-mo ul li a {
    padding: 1rem 0;
    display: block;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
    color: var(--charcoal);
}
.header-mo .sub-menu li a {
    padding: 0.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
}


/* footer */
#site-footer .section-started {
    padding-top: 10rem;
    padding-bottom: 10rem;
    /* padding-top: 6.875rem; */
    /* padding-bottom: 6.875rem; */
    background: var(--teal-dark);
    position: relative;
}
#site-footer .section-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255, 255, 255, 0.025) 59px, rgba(255, 255, 255, 0.025) 60px), repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255, 255, 255, 0.025) 59px, rgba(255, 255, 255, 0.025) 60px);
}
#site-footer .section-started .inner-wrap {
    position: relative;
    z-index: 1;
}
#site-footer .section-started h2 {
    margin-bottom: 3.125rem;
    color: #fff;
}
#site-footer .section-started .sub-txt {
    margin-top: 2.5rem;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
}
#site-footer .section-started .flex-wrap {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    text-align: center;
}
/* #site-footer .section-started .flex-wrap section {
    padding: 0;
} */
#site-footer .section-started .flex-wrap .btn-common {
    padding: 0.875rem 1.5625rem;
    height: auto;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.6;
}
#site-footer .section-started .flex-wrap .btn-border {
    margin-left: 1.25rem;
}
.elementor-field-group {
    margin-bottom: 20px !important;
}
.elementor-field-group input,
.elementor-field-group select {
    width: 100%;
    max-width: 100%;
    height: 3.5rem;
    background-color: #fff;
    padding: 0 1rem;
    font-size: 1rem;
    color: var(--charcoal) !important;
    font-weight: 500 !important;
    border: none !important;
    border-radius: 6px;
    transition: 0.25s ease;
}
.elementor-field-group select option:first-child {
    color: #999;
}
.elementor-field-type-acceptance .elementor-field-subgroup {
    position: relative;
}
.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label {
    margin-left: 27px;
}
.elementor-widget-form .elementor-button[type="submit"] {
    height: 3.5rem;
    background: var(--teal);
    color: white;
    border: none;
    padding: 0 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s;
}
.elementor-widget-form .elementor-button[type="submit"]:hover {
    background: var(--teal-mid);
    transform: translateY(-1px);
}
.elementor-form .elementor-button .elementor-button-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    /* 수정 */
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.3;
}
.elementor-field-label {
    font-size: 17px;
    font-weight: 600 !important;
    margin-bottom: 9px;
}
.elementor-field-type-acceptance .elementor-field-label {
    display: none;
}
#site-footer .section-started .elementor-field-group.elementor-field-type-submit {
    position: absolute;
    right: 0;
    bottom: 30px;
}

#site-footer {
    background: var(--charcoal);
    font-size: 15px;
    color: rgba(255,255,255,0.25);
    font-weight: 500;
    /* 수정 */
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
#site-footer .footer-inner {
    margin: 0 auto;
    padding: 50px 15px;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    /* 수정 */
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
}
#site-footer .small-txt {
    justify-content: center;
}
#site-footer img {
    margin-bottom: 21px;
    width: 100%;
    max-width: 215px;
    filter: brightness(0) invert(1);
    /* 수정 */
    margin-bottom: 5rem;
    max-width: 272px;
}
#site-footer .info-txt {
    padding: 0 0 7px 0;
    display: flex;
    gap: 5px 21px;
    flex-wrap: wrap;
    list-style: none;
}
#site-footer .info-txt li {
    position: relative;
}
#site-footer .info-txt li.com-tit {
    /* width: 65px; */
}
#site-footer .info-txt li + li + li::before {
    position: absolute;
    left: -10px;
    top: 53%;
    transform: translate(-100%, -50%);
    content: "";
    display: block;
    width: 1px;
    height: 0.9em;
    background-color: rgba(255,255,255,0.25);
}
#site-footer .copyright {
    margin-top: 21px;
    font-size: 14px;
    /* 수정 */
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.6;
    letter-spacing: 0;
}


/* main page */
#main-content section {
    padding-top: 110px;
    padding-bottom: 110px;
    position: relative;
    /* 수정 */
    padding-top: 10rem;
    padding-bottom: 10rem;
}

#main-content .small-txt,
#site-footer .small-txt {
    font-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 400;
    color: var(--teal);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* 수정 */
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.6;
}
#main-content .section-hero .small-txt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(180, 220, 230, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
    /* 수정 */
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.6;
}
#main-content h2,
#site-footer h2 {
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 16px;
    /* 수정 */
    font-size: 3rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
#main-content .aniSection .small-txt {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-in-out;
}
#main-content .aniSection h2 {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-in-out .2s;
}
#main-content .aniSection.once .small-txt,
#main-content .aniSection.once h2 {
    opacity: 1;
    transform: unset;
}
#main-content .sub-txt {
    font-size: 17px;
    color: var(--warm-gray);
    line-height: 1.8;
    /* 수정 */
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
}
#main-content .bg-dark .small-txt {
    color: rgba(180, 220, 230, 0.6);
}
#main-content .bg-dark .small-txt::before {
    background: rgba(180, 220, 230, 0.4);
}
#main-content .bg-dark h2 {
    color: #fff;
}
#main-content .bg-dark .sub-txt {
    color: rgba(255,255,255,0.5);
}
#main-content .section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
#main-content .section-hero::before {
    /* content: ''; */
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.55);
}
#main-content .section-hero .inner-wrap {
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    /* min-width: 100%; */
    /* min-height: 100%; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
  }

  /* 텍스트 가독성을 위한 어둡게 처리 */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

#main-content .section-hero .tit-wrap {
    position: relative;
    z-index: 2;
}
#main-content .section-hero h2 {
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 400;
    line-height: 1.35;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    /* 수정 */
    margin-bottom: 3.875rem;
    font-weight: 600;
    font-size: 4.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: all 1s ease-in-out;
}
#main-content .section-hero strong {
    font-weight: 600;
}
#main-content .section-hero .sub-txt {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 44px;
    letter-spacing: -0.01em;
    /* 수정 */
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
    transition: all 1s ease-in-out .2s;
    opacity: 0;
    transform: translateY(100px);
}
#main-content .section-hero.active .sub-txt {
    opacity: 1;
    transform: unset;
}

#main-content .section-service .sub-txt {
    margin-bottom: 2.5rem;
}
#main-content .section-service .grid-wrap {
    gap: 10px;
}
#main-content .section-service .grid-el {
    aspect-ratio: 3 / 4;
    position: relative;
}
#main-content .section-service .grid-el .cont-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--teal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: height 1s;
    background: center / cover no-repeat url('/wp-content/uploads/2026/07/main-sevice-thumb-01.jpg');
}
#main-content .section-service .grid-el:nth-child(2) .cont-wrap {background-image: url('/wp-content/uploads/2026/07/main-sevice-thumb-02.jpg');}
#main-content .section-service .grid-el:nth-child(3) .cont-wrap {background-image: url('/wp-content/uploads/2026/07/main-sevice-thumb-03.jpg');}
#main-content .section-service .grid-el:nth-child(4) .cont-wrap {background-image: url('/wp-content/uploads/2026/07/main-sevice-thumb-04.jpg');}
#main-content .section-service .grid-el:nth-child(5) .cont-wrap {background-image: url('/wp-content/uploads/2026/07/main-sevice-thumb-05.jpg');}
#main-content .section-service .grid-el:nth-child(6) .cont-wrap {background-image: url('/wp-content/uploads/2026/07/main-sevice-thumb-06.jpg');}
#main-content .section-service .grid-el:nth-child(-n+3) .cont-wrap {
    top: 0;
}
@media screen and (min-width: 768px) {
    #main-content .section-service .grid-el.short .cont-wrap {
        height: 70%
    }
    #main-content .section-service .grid-el.long .cont-wrap {
        height: 130%
    }
    #main-content .section-service .grid-wrap.active .grid-el.short .cont-wrap,
    #main-content .section-service .grid-wrap.active .grid-el.long .cont-wrap {
        height: 100%;
    }
}
#main-content .section-service .grid-el .cont-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}
#main-content .section-service .grid-el .cont-wrap a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}
#main-content .section-service .grid-el .txt-wrap {
    width: calc(100% - 5rem);
    position: absolute;
    left: 2.5rem;
    bottom: 2.5rem;
    z-index: 1;
}
#main-content .section-service .grid-el h3 {
    margin: 0 0 9px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    /* 수정 */
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
#main-content .section-service .grid-el .e-txt {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    /* 수정 */
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.count-el { transition: all 0.5s; }
.logo-wrap{
    position:absolute;
    top: 15%;
    right: 4%;
    width:clamp(160px,22vw,500px);
    height:clamp(160px,22vw,500px);
}
.logo-glow{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background-image:radial-gradient(ellipse 100% 33.3333% at 50% 50%,
        var(--teal-hot) 0%,
        var(--teal-bright) 25%,
        var(--teal-dim) 50%,
        #1a262d 60%,
        #1a262d 100%);
    background-size:100% 300%;
    background-repeat:no-repeat;
    background-position:0 300%; /* 평소엔 빛이 화면 아래에 가려져 있는 상태 */

    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 84.53 85.04'%3E%3Cpath d='M47.62.38C-4.66-5.86-18.84,66.64,30.2,69.45c7.07.41,14.78-2.21,20.63-7.29-3.85,1.86-8.26,2.65-12.76,2.03-12.07-1.65-20.3-12.74-18.47-24.74,1.82-11.97,12.99-20.45,25.02-18.96,12.12,1.5,20.56,12.53,18.78,24.67-1.95,13.25-11.74,27.54-33.19,27.76-2.19.02-4.36-.12-6.49-.42-5.68-.8-11.06-2.7-15.59-5.56-1.09-.69-2.11-1.43-3.07-2.21,6.2,10.38,16.89,18,29.97,19.87,23.54,3.37,45.66-13.12,49.08-36.75C87.49,24.35,71.01,3.17,47.62.38Z' fill='%23fff'/%3E%3C/svg%3E");
            mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 84.53 85.04'%3E%3Cpath d='M47.62.38C-4.66-5.86-18.84,66.64,30.2,69.45c7.07.41,14.78-2.21,20.63-7.29-3.85,1.86-8.26,2.65-12.76,2.03-12.07-1.65-20.3-12.74-18.47-24.74,1.82-11.97,12.99-20.45,25.02-18.96,12.12,1.5,20.56,12.53,18.78,24.67-1.95,13.25-11.74,27.54-33.19,27.76-2.19.02-4.36-.12-6.49-.42-5.68-.8-11.06-2.7-15.59-5.56-1.09-.69-2.11-1.43-3.07-2.21,6.2,10.38,16.89,18,29.97,19.87,23.54,3.37,45.66-13.12,49.08-36.75C87.49,24.35,71.01,3.17,47.62.38Z' fill='%23fff'/%3E%3C/svg%3E");
    -webkit-mask-size:contain;
            mask-size:contain;
    -webkit-mask-repeat:no-repeat;
            mask-repeat:no-repeat;
    -webkit-mask-position:center;
            mask-position:center;
    will-change:background-position;
}
.section-number.active .stage .logo-glow{
    animation: reveal-loop 15s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
}
@keyframes reveal-loop{
    0%, 10%   { background-position:0 100%; }
    10%, 100% { background-position:0 0%; }
}
#main-content .section-number {
    background: var(--charcoal);
}
#main-content .section-number .sub-txt {
    margin-bottom: 5rem;
}
#main-content .section-number .cont-wrap {
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 1;
}
#main-content .section-number .cont-wrap + .cont-wrap {
    margin-top: 25px;
}
#main-content .section-number .cont-wrap .stat-item {
    padding: 40px 35px;
    height: 270px;
    width: 40%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}
#main-content .section-number .cont-wrap .wide {
    width: 60%;
}
#main-content .section-number .cont-wrap .stat-item .stat-num {
    font-size: 80px;
    color: var(--teal-mid);
    font-weight: 600;
    font-family: "Google Sans Flex", "Noto Sans KR", sans-serif;
}
#main-content .section-number .cont-wrap .stat-item .stat-num .count-el + span,
#main-content .section-number .cont-wrap .stat-item .stat-num .count-el span {
    font-size: 70px;
    vertical-align: 3px;
}
#main-content .section-number .cont-wrap .stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    /* 수정 */
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0;
}

.page-template-case .page-sub-title-wrap {
    margin-bottom: 5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-sub);
    line-height: 1.6;
    text-align: center;
}
.page-template-case .page-sub-title-wrap .sub-tit {
    font-size: 2rem;
    color: var(--charcoal);
    font-weight: 700;
}
#main-content .section-cases {
    padding-bottom: 0;
    overflow: hidden;
}
.section-cases .list-wrap {
    margin-top: 2.5rem;
    padding: 0;
    /* grid-template-columns: repeat(4, 1fr); */
    /* gap: 2rem 0.75rem; */
}
.section-cases .list-wrap .case-item {
    border: 1px solid rgba(180, 220, 230, 0.5);
    border-radius: 1.25rem;
    overflow: hidden;
}
.section-cases .list-wrap .case-item .img-wrap {
    padding-top: 56.25%;
    background: linear-gradient(130deg, var(--teal-mid), var(--teal-dark));
    position: relative;
    overflow: hidden;
}
#case-studies .section-cases .list-wrap .case-item .img-wrap img,
#main-content .section-cases .list-wrap .case-item .img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-cases .list-wrap .case-item .txt-wrap {
    padding: 2.5rem 2.5rem 2rem;
}
.section-cases .list-wrap .case-item .txt-wrap .cat {
    padding: 0 .65rem;
    display: inline-block;
    font-weight: 700;
    font-size: .8rem;
    color: #fff;
    line-height: 1.75rem;
    background: var(--teal-bright);
    border-radius: 2rem;
}
.section-cases .list-wrap .case-item .txt-wrap .cat.ico {
    background: #fff;
    border: 1px solid var(--line);
}
.section-cases .list-wrap .case-item .txt-wrap .tit {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--charcoal);
    line-height: 1.5;
    letter-spacing: -0.02em;
}
.section-cases .list-wrap .case-item .txt-wrap .meta-wrap p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.case-slider-wrap {
    position: relative;
}

.case-swiper {
    overflow: hidden;
}

.case-item {
    height: auto; /* swiper-slide 높이 자동 맞춤 */
}

.case-swiper-prev,
.case-swiper-next {
    /* width: 2.25rem;
    height: 2.25rem; */
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
}

.case-swiper-prev:hover,
.case-swiper-next:hover,
.case-swiper-prev:focus,
.case-swiper-next:focus {
    background: transparent;
}

.case-swiper-prev {
    left: 0;
    transform: translateX(-100%);
}

.case-swiper-next {
    right: 0;
    transform: translateX(100%);
}

.case-swiper-prev::before,
.case-swiper-next::before {
    content: '';
    display: block;
    width: 3rem;
    height: 3rem;
    border-top: 2px solid var(--teal-light);
    border-right: 2px solid var(--teal-light);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.case-swiper-prev::before {
    transform: rotate(-135deg);
    margin-left: 6px;
}

.case-swiper-next::before {
    transform: rotate(45deg);
    margin-right: 6px;
}

.case-swiper-prev:hover::before,
.case-swiper-next:hover::before {
    border-color: var(--teal-mid);
}

.case-swiper-prev:hover::before {
    transform: rotate(-135deg) translate(2px, 2px);
}

.case-swiper-next:hover::before {
    transform: rotate(45deg) translate(2px, 2px);
}

.case-swiper-prev:focus-visible,
.case-swiper-next:focus-visible {
    outline: 2px solid var(--teal-mid);
    outline-offset: 4px;
}

.case-swiper-prev.swiper-button-disabled,
.case-swiper-next.swiper-button-disabled {
    opacity: 0.25;
    pointer-events: none;
}

@media (min-width: 1025px) {
    .page-id-435 #case-pin-section {
        overflow: hidden;
        opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    }

    .page-id-435 .case-horizontal-track {
        /* overflow: hidden; */
    }

    .page-id-435 #case-list {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: max-content !important; /* 카드 8개가 다 늘어선 실제 너비 */
        gap: 24px;
        will-change: transform;
    }

    .page-id-435 .case-item {
        flex: 0 0 320px; /* 카드 1개 너비 - 디자인에 맞게 조정 */
    }
}

.section-location .grid-wrap {
    margin-top: 2.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.5;
    letter-spacing: -0.02em;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.section-location .grid-wrap .grid-el {
    border-radius: 15px;
}
.section-location .grid-wrap .map {
    padding-top: 65.25%;
    background: var(--teal-light);
    overflow: hidden;
    position: relative;
}
.section-location .grid-wrap .map .root_daum_roughmap_landing {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section-location .grid-wrap .map .root_daum_roughmap .wrap_map {
    height: 100%;
}
.section-location .grid-wrap .map .root_daum_roughmap .map_border {
    display: none;
}
.section-location .grid-wrap .map .root_daum_roughmap .cont {
    display: none;
}
.section-location .grid-wrap .loc-tabs button {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.section-location .grid-wrap .loc-tabs button.active {
    color: var(--white);
    background-color: var(--teal-mid) !important;
    border-color: var(--teal-mid);
}
.section-location .grid-wrap .loc-tabs button:hover {
    background-color: transparent;
}
.section-location .grid-wrap .info {
    padding: 3.125rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--teal);
}
.section-location .grid-wrap .info ul {
    padding: 0;
    list-style: none;
}
.section-location .grid-wrap .info .flex-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-location .grid-wrap .info .flex-wrap a {
    color: var(--white);
}
.section-location .grid-wrap .info .s-txt {
    margin-left: 48px;
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255,255,255,0.25);
    line-height: 1.3rem;
    letter-spacing: -0.015em;
}
.section-location .grid-wrap .info .s-txt span {
    margin-right: 3px;
    width: 1.3rem;
    height: 1.3rem;
    display: inline-block;
    font-size: .8rem;
    color: #fff;
    font-weight: bold;
    line-height: 1.3rem;
    text-align: center;
    background: #39b64a;
    border-radius: 1rem;
    vertical-align: 1.5px;
    opacity: .85;
}
.section-location .grid-wrap .info .s-txt span.three {background: #ff7d22;}
.section-location .grid-wrap .info .s-txt span.one {background: #0052A4;}
.section-location .grid-wrap .info .s-txt span.four {background: #00A5DE;}
.section-location .grid-wrap ul li svg {
    width: 40px;
    fill: #fff;
}
.section-location .grid-wrap .grid-wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.section-location .grid-wrap .grid-wrap a,
.section-location .grid-wrap .grid-wrap button {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    border: 1px solid rgba(180, 220, 230, 0.2);
    border-radius: 17px;
    transition: all 0.25s;
}
.section-location .grid-wrap .grid-wrap a:hover,
.section-location .grid-wrap .grid-wrap button:hover,
.section-location .grid-wrap .grid-wrap button:focus {
    background: rgba(255,255,255,0.08);
}
.section-location .grid-wrap .map-li .ico {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: #fff;
}
.section-location .grid-wrap .map-li button svg {
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: var(--teal);
}
.section-location .grid-wrap .map-li .ico.naver {
    background: #5BCE36;
}
.section-location .grid-wrap .map-li .ico.kakao {
    background: #F9E000;
}
.section-location .grid-wrap .map-li .txt {
    margin: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
    will-change: opacity;
}
.section-location .grid-wrap .map-li .txt.is-fading {
    opacity: 0;
}

#main-content .section-related {
    padding: 0 0 2rem;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: textLoop 400s linear infinite;
}

.section-related ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    font-weight: 700;
}

.section-related ul li {
    padding-right: 4rem;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes textLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        /* 트랙 전체 폭의 절반(= 로고 목록 1벌 분량)만큼 이동 */
        transform: translate3d(-50%, 0, 0);
    }
}



/* common page */
.common-page .el-inner {
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.common-page .page-title-wrap {
    padding: 5rem 0;
    text-align: center;
}
.common-page .page-title-wrap .parent-tit {
    font-size: 1.125rem;
    color: var(--teal-bright);
    font-weight: 500;
    line-height: 1.4;
}
.common-page .page-title-wrap .page-tit {
    font-size: 4.25rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
.common-page .page-bg-img {
    padding: 20vh 160px;
    width: 100%;
    height: 200vh; /* 아래 설명 참고: 고정 유지 구간을 200vh로 만들려면 100vh(txt-wrap) + 200vh */
    position: relative;
    transition: padding 1s ease-in-out .3s;
}
.common-page .page-bg-img .bg-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 1; */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all .5s linear .8s;
}
.common-page .page-bg-img.active .bg-overlay {
    opacity: 1;
    /* transition: all .5s linear .8s; */
}
.common-page .page-bg-img .txt-wrap {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background: var(--teal-light);
    border-radius: 2rem;
    transition: border-radius 1s ease-in-out .3s;
    background: center / cover no-repeat url('/wp-content/uploads/2026/07/greeting-bg-01.jpg');
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 0; /* fixed 헤더 등과 겹치면 조정 */
}
.common-page#organization .page-bg-img .txt-wrap {
    background-image: url('/wp-content/uploads/2026/07/greeting-bg-02.jpg');
}
.common-page#members .page-bg-img .txt-wrap {
    background-image: url('/wp-content/uploads/2026/07/greeting-bg-03.jpg');
}
.common-page#location .page-bg-img .txt-wrap {
    background-image: url('/wp-content/uploads/2026/07/greeting-bg-04.jpg');
}
.common-page .page-bg-img.active {
    padding: 0;
    transition: padding 1s ease-in-out;
}
.common-page .page-bg-img.active .txt-wrap {
    border-radius: 0;
    transition: border-radius 1s ease-in-out;
    /* position/top/left 관련 규칙은 전부 삭제 */
}
.common-page .page-bg-img .img-sec-tit {
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    font-weight: 500;
    font-size: 4.5rem;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateX(100px);
    transition: all .5s linear;
    position: relative;
    z-index: 1;
}
.common-page .page-bg-img.active .img-sec-tit {
    opacity: 1;
    transform: unset;
    transition: all .5s linear .8s;
}

/* 구성원 */
.section-member {
    margin: 0 !important;
    padding-top: 5rem;
    padding-right: 15px;
    padding-left: 15px;
}
.section-member:first-child {
    margin-top: 5rem !important;
}
.section-member:last-child {
    margin-bottom: 10rem !important;
}
.section-member > .elementor-container {
    gap: 2.5rem;
}
.section-member h2 {
    padding-bottom: .5rem;
    margin-bottom: 1.25rem;
    font-weight: 700 !important;
    font-size: 1.75rem;
    color: var(--charcoal);
    line-height: 1.5;
    letter-spacing: -0.02em;
    border-bottom: 1px solid var(--line);
    font-size: 2rem;
}
.section-member p {
    margin-bottom: 0;
    font-size: 1.125rem;
    /* font-size: 0.875rem; */
    /* font-size: 1.5rem; */
    font-weight: 700;
    line-height: 1.6;
    color: var(--teal);
    /* color: var(--charcoal); */
}
.section-member ul {
    padding: 0;
    font-size: 0.875rem;
    font-size: 1.125rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
    list-style: none;
}
.section-member .elementor-widget-image img {
    border-radius: 1.25rem;
}
.section-member .txt-wrap {
    padding: 0 0 0 1.75rem;
}
.section-member .meta-top p,
.section-member .meta-bottom p {
    font-size: 0.875rem;
}
.section-member .meta-bottom {
    margin-top: 1.5rem;
}
/* .section-member .meta-bottom .special-item ul {
    margin-top: .2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
} */
/* .section-member .meta-bottom .special-item ul li {
    padding: 0 1rem;
    font-weight: 700 !important;
    color: var(--teal-mid) !important;
    line-height: 2.25rem;
    letter-spacing: -0.02em;
    background: var(--teal-light);
    border-radius: 2rem;
} */

/* 오시는길 */
.common-page .section-location {
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.section-location .accordion {
    border-top: 2px solid var(--charcoal);
}
.section-location .accordion-item {
    border-bottom: 1px solid var(--line);
}
.section-location .accordion-item > button {
    padding: 2.5rem;
    padding-left: 3rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 600;
    font-size: 2rem;
    color: var(--charcoal);
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-align: left;
    border: none;
    border-radius: 0;
    position: relative;
}
.section-location .accordion-item > button:hover,
.section-location .accordion-item > button:focus {
    background: none;
}
.section-location .accordion-item > button::after {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: transform 0.2s ease;
    transform: rotate(180deg);
    position: absolute;
    right: 2rem;
}
.section-location .accordion-item > button[aria-expanded="true"]::after {
    transform: rotate(0);
}
.section-location .accordion-item > button p {
    min-width: 200px;
    margin: 0;
}
.section-location .accordion-item > button span {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0;
}
.section-location .accordion-item > button span.add {
    min-width: min(510px, 50%);
}
.section-location .accordion-item > button[aria-expanded="true"] span {
    opacity: 0;

}
.common-page .section-location .grid-wrap {
    margin: 0;
    margin-bottom: 5rem;
    color: #000;
}
.common-page .section-location .grid-wrap ul {
    display: flex;
    flex-wrap: wrap;
}
.common-page .section-location .grid-wrap ul li {
    margin-bottom: .9rem;
}
.common-page .section-location .grid-wrap ul li:first-child {
    width: 100%;
}
.common-page .section-location .grid-wrap ul li + li {
    width: 50%;
}
.common-page .section-location .grid-wrap ul li svg {
    fill: var(--teal-mid);
}
.common-page .section-location .grid-wrap .info {
    background: transparent;
    /* border: 1px solid var(--line); */
}
.common-page .section-location .grid-wrap .info .s-txt {
    margin-top: 3px;
    margin-left: 0;
    color: var(--muted);
}
.common-page .section-location .grid-wrap .grid-wrap a, .common-page .section-location .grid-wrap .grid-wrap button {
    color: var(--muted);
    border: 1px solid var(--line);
    /* background: var(--teal); */
}
.common-page .section-location .grid-wrap .grid-wrap button:focus {
    background: var(--white);
}
.common-page .section-location .grid-wrap .grid-wrap {
    margin: 0;
}
.common-page .section-location .grid-wrap .info .flex-wrap a {
    color: var(--charcoal);
}

/* 업무영역 */
.service-page.common-page .page-bg-img {
    /* padding: 8.5rem 0 5.25rem; */
    padding: 0;
    height: auto;
    transition: none;
    background: center / cover no-repeat url('/wp-content/uploads/2026/07/service-bg-1.jpg');
    position: relative;
    overflow: hidden;
    aspect-ratio: unset;
}
.service-page.common-page .page-bg-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit; /* 부모의 background-image를 그대로 상속받음 → url 중복 작성 불필요 */
    transform: scale(1.08);
    animation: bgZoomFade 1.8s ease-out forwards;
    z-index: 0;
}
.service-page.common-page .page-bg-img .txt-wrap {
    /* margin: 0 auto; */
    /* width: 100%; */
    /* max-width: 1400px; */
    padding: 8.5rem 15px 5.25rem;
    height: auto;
    display: block;
    position: relative;
    transform: none;
    text-align: center;
    border-radius: 0;
    background: rgba(0,0,0,.35);
    z-index: 1;
}
@keyframes bgZoomFade {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}
.page-id-31 .service-page.common-page .page-bg-img {background-image: url('/wp-content/uploads/2026/07/service-bg-2.jpg');}
.page-id-32 .service-page.common-page .page-bg-img {background-image: url('/wp-content/uploads/2026/07/service-bg-3.jpg');}
.page-id-33 .service-page.common-page .page-bg-img {background-image: url('/wp-content/uploads/2026/07/service-bg-4.jpg');}
.page-id-34 .service-page.common-page .page-bg-img {background-image: url('/wp-content/uploads/2026/07/service-bg-5.jpg');}
.page-id-35 .service-page.common-page .page-bg-img {background-image: url('/wp-content/uploads/2026/07/service-bg-6.jpg');}
.service-page.common-page .page-bg-img .img-sec-tit {
    max-width: 100%;
    transition: none;
    opacity: 0;
    transform: translateY(15px);
    animation: textFadeUp 0.8s ease-out 0.5s forwards;
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}
.service-page.common-page .page-bg-img .page-tit {
    opacity: 0;
    transform: translateY(15px);
    animation: textFadeUp 0.8s ease-out 0.8s forwards;
    font-size: 4.25rem;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #fff;
}
@keyframes textFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.service-page.common-page .mobile-nav-select {
    display: none;
}
.service-page.common-page .service-nav-wrap nav {
    display: flex;
    justify-content: center;
}
.service-page.common-page .service-nav-wrap ul {
    margin-top: 10rem;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    text-align: center;
    border-radius: 2.5rem;
    overflow: hidden;
}
.service-page.common-page .service-nav-wrap ul li {
    /* width: 16.6666%; */
    background: rgba(0,0,0,0.025);
}
.service-page.common-page .service-nav-wrap ul li a {
    padding: 0 2.5rem;
    width: 100%;
    display: inline-block;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
    line-height: 4rem;
    letter-spacing: 0px;
}
.service-page.common-page .service-nav-wrap ul li.current-menu-item a {
    background: var(--teal);
    color: #fff;
    border-radius: 2.5rem;
}
.service-top {
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.service-top .elementor-container {
    gap: .75rem;
}
.page-id-31 .service-top .elementor-container {
    flex-wrap: wrap;
}
.page-id-31 .service-top .elementor-container .elementor-column {
    width: calc((100% - 1.5rem)/3);
}
.service-top .elementor-container .elementor-column {
    height: 14.75rem;
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(130deg, var(--teal-mid), var(--teal-dark));
    background: center / cover no-repeat url('/wp-content/uploads/2026/07/s-1-1.webp');
}
.page-id-30 .service-top .elementor-container .elementor-column:nth-child(2) {background-image: url('/wp-content/uploads/2026/07/s-1-2.webp');}
.page-id-30 .service-top .elementor-container .elementor-column:nth-child(3) {background-image: url('/wp-content/uploads/2026/07/s-1-3.webp');}
.page-id-30 .service-top .elementor-container .elementor-column:nth-child(4) {background-image: url('/wp-content/uploads/2026/07/s-1-4.webp');}

.page-id-31 .service-top .elementor-container .elementor-column:nth-child(1) {background-image: url('/wp-content/uploads/2026/07/s-2-1.webp');}
.page-id-31 .service-top .elementor-container .elementor-column:nth-child(2) {background-image: url('/wp-content/uploads/2026/07/s-2-2.webp');}
.page-id-31 .service-top .elementor-container .elementor-column:nth-child(3) {background-image: url('/wp-content/uploads/2026/07/s-2-3.webp');}
.page-id-31 .service-top .elementor-container .elementor-column:nth-child(4) {background-image: url('/wp-content/uploads/2026/07/s-2-4.webp');}
.page-id-31 .service-top .elementor-container .elementor-column:nth-child(5) {background-image: url('/wp-content/uploads/2026/07/s-2-5.webp');}
.page-id-31 .service-top .elementor-container .elementor-column:nth-child(6) {background-image: url('/wp-content/uploads/2026/07/s-2-6.webp');}

.page-id-32 .service-top .elementor-container .elementor-column:nth-child(1) {background-image: url('/wp-content/uploads/2026/07/s-3-1-3.webp');}
.page-id-32 .service-top .elementor-container .elementor-column:nth-child(2) {background-image: url('/wp-content/uploads/2026/07/s-3-2-3.webp');}
.page-id-32 .service-top .elementor-container .elementor-column:nth-child(3) {background-image: url('/wp-content/uploads/2026/07/s-3-3-3.webp');}
.page-id-32 .service-top .elementor-container .elementor-column:nth-child(4) {background-image: url('/wp-content/uploads/2026/07/s-3-4-3.webp');}

.page-id-33 .service-top .elementor-container .elementor-column:nth-child(1) {background-image: url('/wp-content/uploads/2026/07/s-4-1.webp');}
.page-id-33 .service-top .elementor-container .elementor-column:nth-child(2) {background-image: url('/wp-content/uploads/2026/07/s-4-2.webp');}
.page-id-33 .service-top .elementor-container .elementor-column:nth-child(3) {background-image: url('/wp-content/uploads/2026/07/s-4-3.webp');}
.page-id-33 .service-top .elementor-container .elementor-column:nth-child(4) {background-image: url('/wp-content/uploads/2026/07/s-4-4.webp');}

.page-id-34 .service-top .elementor-container .elementor-column:nth-child(1) {background-image: url('/wp-content/uploads/2026/07/s-5-1.webp');}
.page-id-34 .service-top .elementor-container .elementor-column:nth-child(2) {background-image: url('/wp-content/uploads/2026/07/s-5-2.webp');}
.page-id-34 .service-top .elementor-container .elementor-column:nth-child(3) {background-image: url('/wp-content/uploads/2026/07/s-5-3-2.webp');}
.page-id-34 .service-top .elementor-container .elementor-column:nth-child(4) {background-image: url('/wp-content/uploads/2026/07/s-5-4-2.webp');}

.page-id-35 .service-top .elementor-container .elementor-column:nth-child(1) {background-image: url('/wp-content/uploads/2026/07/s-6-1.webp');}
.page-id-35 .service-top .elementor-container .elementor-column:nth-child(2) {background-image: url('/wp-content/uploads/2026/07/s-6-2.webp');}
.page-id-35 .service-top .elementor-container .elementor-column:nth-child(3) {background-image: url('/wp-content/uploads/2026/07/s-6-3.webp');}
.page-id-35 .service-top .elementor-container .elementor-column:nth-child(4) {background-image: url('/wp-content/uploads/2026/07/s-6-4.webp');}

.service-top .elementor-container .elementor-column p {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.5;
    letter-spacing: -0.02em;
}
.service-mid {
    background: rgba(0,0,0,.025);
}
.service-mid > div {
    background: right center / 220px no-repeat url('/wp-content/uploads/2026/07/s-bg-ico-2.webp');
}
.service-mid p {
    margin: 0;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 2.75rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
.service-mid .elementor-container {
    min-height: 22.25rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.service-bottom {
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.service-bottom .elementor-container {
    /* gap: .3rem; */
}
.service-bottom .elementor-column .elementor-column {
    padding: 5rem;
}
.service-bottom .elementor-column.col1 {
    border-right: 1px solid var(--teal-dark);
    border-bottom: 1px solid var(--teal-dark);
}
.page-id-31 .service-bottom .elementor-column.col3 {
    border-bottom: 1px solid var(--teal-dark);
}
.service-bottom .elementor-column.col4::before {
    content: '';
    position: absolute;
    width: calc(100% - 10px);
    height: 1px;
    background: var(--teal-dark);
    top: 0;
    right: 0;
}
.service-bottom .elementor-column.col4::after {
    content: '';
    position: absolute;
    width: 1px;
    height: calc(100% - 10px);
    background: var(--teal-dark);
    bottom: 0;
    left: 0;
}
.service-bottom span {
    padding: .6rem 1rem .4rem;
    display: inline-block;
    font-weight: 700 !important;
    font-size: 4.25rem;
    font-size: 1.0625rem !important;
    color: var(--teal-mid) !important;
    line-height: 1.35;
    letter-spacing: -0.02em;
    background: var(--teal-light);
    border-radius: 2rem;
}
.service-bottom span::before {
    content: 'Case ';
}
.service-bottom .col2 span {color:#1F8A5C !important;background:#DCEDE4;}
.service-bottom .col3 span {color:#B5762A !important;background:#EFE3D6;}
.service-bottom .col4 span {color:#6E4FA0 !important;background:#E6DFF2;}
.service-bottom .col5 span {color:#B14C5E !important;background:#F2DFE2;}
.service-bottom .col6 span {color:#3B7A94 !important;background:#DDE8EF;}
.service-bottom h2 {
    margin-bottom: 0.75rem;
    font-weight: 700 !important;
    font-size: 2rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
.service-bottom .elementor-widget-text-editor {
    margin-bottom: 0.75rem;
    color: var(--text-sub);
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0;
}


/* case */
#case-studies.common-page .el-inner {
    padding-top: 0;
}


/* process */
#procedure.common-page .process-cont .inner-wrap {
    max-width: 1000px;
    /* display: grid;
    grid-template-columns: 1fr 2fr; */
}
#procedure.common-page .process-cont .sec-tit {
    margin-top: 1.35rem;
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
#procedure.common-page .process-cont {
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-image: linear-gradient(345deg, var(--teal-dim) 0%, var(--navy-deep) 40%, var(--teal) 100%);
}
#procedure.common-page .process-cont ul {
    padding-left: 0;
    /* display: flex; */
    /* display: grid; */
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    list-style: none;
}
#procedure.common-page .process-cont ul li {
    /* margin-top: 5rem; */
    position: relative;
    /* text-align: center; */
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
#procedure.common-page .process-cont ul li.active {
    opacity: 1;
    transform: translateY(0);
}
#procedure.common-page .process-cont ul li .txt-wrap {
    margin-bottom: 1rem;
    padding: 1.5rem 2.5rem;
    min-height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border-radius: 1.25rem;
    background-image: linear-gradient(206deg, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-backdrop-filter: blur(1.25rem);
    backdrop-filter: blur(1.25rem);
    overflow: hidden;
}
#procedure.common-page .process-cont ul li .txt-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
#procedure.common-page .process-cont ul li .txt-wrap span {
    padding-right: .5rem;
    font-size: 4rem;
    font-size: 10.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .075);
    position: absolute;
    top: 64%;
    left: 2rem;
    transform: translateY(-50%);
    font-family: "Open Sans", sans-serif;
    line-height: 1;
    top: 50%;
}
#procedure.common-page .process-cont ul li .num {
    display: none;
    width: 120px;
    position: absolute;
    color: rgba(255,255,255,0.8);
    font-weight: 800;
    font-size: 5rem;
    line-height: 1;
    top: 50%;
    left: 0;
    transform: translate(-65%, -50%);
    z-index: 1;
}
#procedure.common-page .process-cont ul li .tit {
    margin: 0;
    padding-left: 3.5rem;
    /* width: 50%; */
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--white);
    line-height: 1.5;
    letter-spacing: -0.02em;
}
#procedure.common-page .process-cont ul li .txt {
    margin: 0;
    width: 37%;
    font-weight: 400;
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0;
}
#procedure.common-page .el-inner .process-el .elementor-widget-wrap .elementor-widget-text-editor ul {
    padding-left: 1rem;
}


/* contact */
#inquiry .elementor-field-group input, #inquiry .elementor-field-group select, #inquiry .elementor-field-group textarea {
    background: var(--off-white);
    border: none;
    border-radius: 6px;
}
#inquiry .elementor-field-group input:focus, #inquiry .elementor-field-group select:focus, #inquiry .elementor-field-group textarea:focus {
    box-shadow: inset 0 0 0 1px var(--teal-light);
}
#inquiry .elementor-field-group textarea {
    padding: 1rem;
    color: var(--charcoal);
    font-weight: 500;
}
.elementor-field-type-html .privacy-tit {
    font-size: 17px;
    color: var(--charcoal);
    font-weight: 600 !important;
    margin-bottom: 9px;
}
.elementor-field-type-html .privacy-txt {
    padding: 1.25rem 1.25rem .5rem;
    border: 1px solid var(--line);
    border-radius: 6px;
}
.contact-info > div {
    min-height: 20rem;
    align-content: center;
}
.contact-info > div {
    background: 94% center / 220px no-repeat url('/wp-content/uploads/2026/07/c-bg-ico.webp');
}


@media (min-width: 2000px) {
    .inner-wrap,
    .common-page .page-bg-img .img-sec-tit,
    #site-footer .footer-inner,
    .el-inner-1400 > .elementor-container { max-width: 1600px !important; }
}



@media (min-width: 1451px) {

    header.hover .header-inner {
        height: 510px;
        box-shadow: 0 1.875rem 5rem 0 rgba(0, 0, 0, 0.08);
        transition: height 0.5s, top 0.5s, box-shadow .2s;
    }

}



@media (max-width: 1450px) {

    .main-navigation, #site-header .btn-wrap {
        display: none;
    }
    .header-inner {
        padding-right: 15px;
        padding-left: 15px;
    }
    .header-inner .menu-ico {
        display: flex;
        align-items: center;
    }
    .mo-family-site-wrap {
        display: none;
        position: fixed;
        bottom: 0;
        overflow: hidden;
    }
    .header-mo .mo-family-site-wrap ul {
        height: 0;
        transition: height .3s linear;
    }
    .mo-family-site-wrap button {
        color: var(--white);
        background: var(--teal);
        border: none;
    }

    .service-top > div,
    .service-mid > div,
    .service-bottom > div {
        padding-right: 15px;
        padding-left: 15px;
    }
}


@media (max-width: 1450px) and (min-width: 768px) {
    
    .header-mo {
        padding: 0 50px;
        padding-top: 10rem;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        transform: translateY(-100%);
    }
    .header-mo.active {
        transform: translateY(0);
    }
    .header-mo ul#primary-menu > li {
        border-left: 1px dashed var(--teal-light);
        padding-left: 2rem;
    }

}



@media (max-width: 1024px) and (min-width: 768px) {
    .except-tablet {
        display: none;
    }

    .header-mo {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-mo ul#primary-menu > li {
        padding-left: 1rem;
    }

    .service-page.common-page .elementor-column.elementor-col-25 {
        width: calc((100% - .75rem) / 2);
    }
}



@media (max-width: 1024px) {
    .btn-common {
        padding-top: 0;
        padding-bottom: 0;
        font-size: 1rem;
        font-weight: 600;
        line-height: 3rem;
    }
    .only-pc {
        display: none;
    }

    #site-footer .section-started {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    #site-footer .footer-inner {
        display: block;
    }
    #site-footer .section-started .flex-wrap {
        display: block;
    }
    #site-footer .section-started .sub-txt {
        margin-top: 0;
        margin-bottom: 3rem;
        font-size: 1.25rem;
    }

    #main-content section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    #main-content .section-hero h2 {
        font-size: 3rem;
    }
    #main-content .section-hero .sub-txt {
        font-size: 1.25rem;
    }
    #main-content .small-txt,
    #site-footer .small-txt {
        font-size: 1rem;
    }
    #main-content h2, #site-footer h2 {
        font-size: 2.25rem;
    }
    #main-content .sub-txt {
        font-size: 1.125rem;
    }
    #main-content .section-service .grid-el .txt-wrap {
        left: 1.5rem;
        bottom: 1.5rem;
    }
    #main-content .section-service .grid-el h3 {
        font-size: 1.875rem;
    }
    #main-content .section-service .grid-el .e-txt {
        font-size: .875rem;
        font-size: 1rem;
    }
    #main-content .section-number .cont-wrap .stat-item {
        height: auto;
    }
    #main-content .section-number .cont-wrap .stat-item .stat-num {
        font-size: 2.5rem;
    }
    #main-content .section-number .cont-wrap .stat-item .stat-num .count-el + span,
    #main-content .section-number .cont-wrap .stat-item .stat-num .count-el span {
        padding-left: 1px;
        font-size: 2rem;
        vertical-align: 2px;
    }
    .section-cases .list-wrap .case-item .txt-wrap .cat {
        font-size: .7rem;
        line-height: 1.5rem;
    }
    .section-cases .list-wrap .case-item .txt-wrap .tit {
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.6;
    }
    .section-cases .list-wrap .case-item .txt-wrap .meta-wrap p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    .section-location .grid-wrap {
        font-size: 1.125rem;
    }
    .section-location .grid-wrap .info {
        padding: 1.5rem;
    }
    .section-location .grid-wrap .info {
        padding: 1.5rem 1.25rem;
    }
    .section-location .grid-wrap .info .s-txt {
        margin-top: 3px;
        margin-left: 35px;
        font-size: .875rem;
    }
    .section-location .grid-wrap .info .s-txt span {
        width: 1.1rem;
        height: 1.1rem;
        font-size: .725rem;
        line-height: 1.1rem;
    }
    .section-location .grid-wrap .map-li .ico {
        width: 2.5rem;
        height: 2.5rem;
    }
    .section-location .grid-wrap ul li svg {
        width: 30px;
    }
    .section-location .grid-wrap .grid-wrap a, .section-location .grid-wrap .grid-wrap button {
        padding: .8rem .5rem .5rem;
        font-size: .8125rem;
    }
    .section-location .accordion-item > button {
        font-size: 1.25rem;
        font-weight: 700;
    }
    .section-location .grid-wrap .loc-tabs {
        margin-bottom: 1.5rem;
    }
    .section-location .grid-wrap .loc-tabs button {
        font-size: 0.875rem;
        font-weight: 600;
        line-height: 2rem;
        height: 2rem;
        padding: 0 .8rem;
    }
    #site-footer .section-started .flex-wrap .btn-common {
        font-size: 1rem;
    }
    #site-footer .section-started .flex-wrap .btn-border {
        margin-left: .3rem;
    }

    .common-page .el-inner {
        padding-top: 5rem;
        padding-bottom: 7.5rem;
    }
    .common-page .page-bg-img {
        padding: 0;
        height: auto;
        aspect-ratio: 3 / 4;
    }
    .common-page .page-bg-img .txt-wrap {
        padding: 1.5rem;
        height: 100%;
        border-radius: 0;
    }
    .common-page .page-bg-img .bg-overlay {
        opacity: 0;
        animation: fadeIn 1s ease forwards;
    }
    .common-page .page-bg-img .img-sec-tit {
        font-size: 2.15rem;
        opacity: 0;
        transform: translateY(20px); /* 기존 초기 transform 값으로 교체 */
        animation: fadeInUp 1s ease .5s forwards;
    }
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: unset;
        }
    }
    
    .common-page .page-title-wrap .parent-tit {
        font-size: 1rem;
    }
    .common-page .page-title-wrap .page-tit {
        margin-bottom: 0;
        font-size: 2.5rem;
    }
    .common-page .section-location .grid-wrap {
        font-size: 1.025rem;
    }
    .common-page .section-location .grid-wrap .grid-wrap {
        margin-top: 1.5rem;
    }

    .service-page.common-page .page-bg-img .img-sec-tit {
        font-size: 1rem;
    }
    .service-page.common-page .page-bg-img .page-tit {
        font-size: 2.5rem;
    }
    #services-menu .menu-item a {
        padding: 0 1.7rem;
        font-size: 1rem;
        font-weight: 600;
        line-height: 3rem;
    }
    .section-member > .elementor-container {
        gap: 1.25rem;
    }
    .section-member .elementor-column.elementor-col-33 {
        /* width: calc(33.333% - 1.25rem); */
    }
    .section-member .elementor-column.elementor-col-66 {
        width: calc(66.666% - 1.25rem);
    }
    .section-member .elementor-column.elementor-col-66 > div {
        padding: 2.5rem !important;
    }
    .section-member h2 {
        font-size: 1.5rem;
    }
    .section-member p {
        font-size: 0.875rem;
    }
    /* .section-member .meta-bottom .special-item ul li {
        font-size: .875rem;
    } */
    
    .service-mid > div {
        background-position-x: 97%;
    }
    .service-mid p {
        font-size: 2rem;
    }
    .service-bottom .elementor-column .elementor-column {
        padding: 5rem 1.5rem;
    }
    .service-bottom span {
        font-size: .875rem !important;
    }
    .service-bottom h2 {
        font-size: 1.5rem;
    }
    .service-bottom .elementor-widget-text-editor {
        margin: 0;
        font-size: 1rem;
    }

    .page-template-case .page-sub-title-wrap{
        font-size: 1rem;
    }
    .page-template-case .page-sub-title-wrap .sub-tit {
        font-size: 1.625rem;
        line-height: 1.5;
    }

    #procedure.common-page .process-cont ul li .tit {
        font-size: 1.5rem;
    }
    #procedure.common-page .process-cont ul li .txt {
        font-size: 1rem;
    }
}


@media (max-width: 820px) {
    .section-member .meta-bottom {
        margin-top: 1rem;
    }
    .section-member .meta-top > div,
    .section-member .meta-bottom > div {
        flex-direction: column;
        gap: 1rem;
    }
    .section-member .meta-top div > div,
    .section-member .meta-bottom div > div {
        width: 100%;
    }
    
    .section-location .accordion-item > button span {
        display: none;
    }
    .common-page .section-location .grid-wrap .info ul li:nth-child(n+4) {
        width: 100%;
    }
}


@media (min-width: 768px) {
    .section-location .grid-wrap .map {
        height: 100%;
    }
}


@media (max-width: 767px) {
    .pc-br {
        display: none;
    }
    .mo-br {
        display: block;
    }

    #site-header {
        height: 70px;
    }
    .header-inner {
        height: 70px;
    }
    .header-inner .site-logo {
        height: 70px;
    }
    .header-inner .site-logo img {
        width: auto;
        height: 40px;
    }
    .header-mo {
        top: 70px;
        left: auto;
        right: 0;
        width: 100%;       /* 원하는 폭으로 조정 */
        max-width: 430px;
        height: calc(100vh - 70px);
        transform: translateX(100%); /* 기본: 오른쪽 바깥에 숨김 */
    }
    .header-mo.active {
        transform: translateX(0);
    }
    .header-mo ul#primary-menu {
        display: block;
    }
    .header-mo ul li a {
        padding: 1rem 1.5rem;
        font-size: 1.0625rem;
        line-height: 1.2;
    }
    .header-mo .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }
    .header-mo .sub-menu li a {
        padding: 0.7rem 1.5rem 0.7rem 2rem;
        font-size: 1rem;
    }
    .header-mo ul li.menu-item-480 a {
        padding: 0.7rem 1.5rem 0.7rem 2rem;
        width: 100%;
        height: auto;
        background-size: 78px;
        background-position-x: 1.4rem;
    }

    #site-footer .footer-inner {
        padding-top: 3rem;
        padding-bottom: 6rem;
    }
    #site-footer img {
        margin-bottom: 1.5rem;
        max-width: 226px;
    }
    #site-footer .com-info-wrap + .com-info-wrap {
        margin-top: .5rem;
    }
    #site-footer .info-txt {
        padding-bottom: 5px;
        flex-wrap: wrap;
        gap: 5px 10px;
    }
    #site-footer .info-txt li {
        font-size: .8125rem;
    }
    #site-footer .info-txt li.com-tit {
        width: 100%;
    }
    #site-footer .info-txt li:nth-child(2n+1):not(:first-child):before {
        display: none;
    }
    #site-footer .info-txt li + li::before {
        display: none;
    }
    #site-footer .info-txt li + li + li::before {
        left: -4px;
    }
    #site-footer .info-txt li a {
        color: inherit;
    }
    .footer-family-site .family-site-toggle {
        padding: 0.875rem 1.5625rem;
        font-weight: 600;
        font-size: 0.875rem;
        line-height: 1.3;
        letter-spacing: 0;
    }
    #site-footer .copyright {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    #site-footer .section-started .elementor-field-group.elementor-field-type-submit {
        position: static;
    }
    

    #main-content .aniSection .small-txt {
        margin-bottom: 0;
    }
    #main-content .section-hero {
        min-height: calc(100vh - 140px);
    }
    #main-content .section-hero h2 {
        margin-bottom: 1rem;
    }
    #main-content .section-service .grid-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    #main-content .section-service .grid-el {
        aspect-ratio: 1/1;
    }
    #main-content .section-service .sub-txt {
        margin-bottom: 3rem;
        text-align: left;
    }
    #main-content .section-number .cont-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }
    #main-content .section-number .cont-wrap .stat-item {
        width: 100%;
    }
    #main-content .section-number .cont-wrap + .cont-wrap {
        margin-top: 20px;
    }
    .logo-wrap {
        top: 22%;
        right: 3%;
    }
    .section-cases .case-swiper {
        overflow: visible;
    }
    .section-cases .list-wrap .case-item .txt-wrap {
        padding: 1.5rem;
    }
    .case-slider-wrap .swiper-btn {
        display: none;
    }
    .section-location .grid-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .section-location .grid-wrap .grid-wrap {
        gap: 5px;
    }
    .section-location .grid-wrap .info .flex-wrap {
        align-items: flex-start;
        gap: 5px;
    }
    
    .section-member:first-child {
        margin-top: 2.5rem !important;
    }
    .section-member {
        padding-top: 2.5rem;
    }
    .section-member:last-child {
        margin-bottom: 5rem !important;
    }
    .section-member > .elementor-container {
        gap: 1rem;
    }
    .section-member .elementor-column.elementor-col-66 {
        width: 100%;
    }
    .section-member .elementor-column.elementor-col-66 > div {
        padding: 2.5rem 1.5rem !important;
    }

    /* 모든 섹션 공통 — small-txt, 타이틀(h2), 서브타이틀만 애니메이션 */
    #main-content section .small-txt,
    #main-content section .tit-wrap h2,
    #main-content section .tit-wrap .sub-txt {
        opacity: 0 !important;
        transform: translateY(60px) !important;
        transition: opacity .8s ease-in-out, transform .8s ease-in-out !important;
    }
    #main-content section .tit-wrap h2 { transition-delay: .1s !important; }
    #main-content section .tit-wrap .sub-txt { transition-delay: .2s !important; }

    #main-content section.once .small-txt,
    #main-content section.once .tit-wrap h2,
    #main-content section.once .tit-wrap .sub-txt {
        opacity: 1 !important;
        transform: unset !important;
    }

    /* 나머지 요소는 애니메이션 제거, 즉시 노출 */
    #main-content .fadeup,
    #main-content .section-service .grid-wrap,
    #main-content .section-service .cont-wrap,
    #main-content .logo-glow,
    #main-content .stat-item {
        opacity: 1 !important;
        transform: unset !important;
        animation: none !important;
        transition: none !important;
    }

    #services-menu {
        display: none;
    }
    .service-page.common-page .mobile-nav-select {
        display: block;
        width: 100%;
        height: 3.25rem;
        margin-top: 5rem;
        padding: 0 1.5rem;
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.2;
        color: var(--charcoal);
        background: #fff url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23666' d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") no-repeat right 16px center;
        background-size: 20px;
        border: 1px solid #ddd;
        border-radius: 6px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
    }
    .service-top {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .service-bottom {
        padding: 0;
    }
    .service-mid > div {
        background: 107% 114% / 220px no-repeat url('/wp-content/uploads/2026/07/s-bg-ico-2.webp')
    }
    .service-mid .elementor-widget-wrap {
        /* padding: 0 !important; */
    }
    .service-bottom .elementor-column .elementor-column {
        padding: 4rem 0 3.5rem;
    }
    .service-bottom .elementor-column .elementor-column {
        border-bottom: 1px solid var(--charcoal);
    }
    .service-bottom .elementor-column.col1 {
        border-right: none;
    }
    body:not(.page-id-31) .service-bottom .elementor-column.col4,
    .page-id-31 .service-bottom .elementor-column.col6 {
        border-bottom: none;
    }
    .service-bottom .elementor-column.col4::before,
    .service-bottom .elementor-column.col4::after {
        display: none;
    }
    .service-bottom .elementor-inner-column .elementor-widget-wrap {
        padding: 0 !important;
    }
    .page-id-31 .service-top .elementor-container .elementor-column {
        width: 100%;
    }

    .common-page .section-location {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .common-page .page-title-wrap .parent-tit {
        margin-bottom: 0;
    }
    .section-location .accordion-item > button {
        padding: 1.5rem 0.75rem 1.5rem 1rem;
    }
    
    .common-page .section-location .grid-wrap {
        margin-bottom: 3rem;
    }
    .common-page .section-location .grid-wrap .info {
        padding-left: 0;
        padding-right: 0;
    }
    .common-page .section-location .grid-wrap .info ul li {
        margin-bottom: .5rem;
    }
    

    .section-cases.kboard-list .list-wrap {
        margin-top: 3rem;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    #procedure.common-page .process-cont {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    #procedure.common-page .process-cont ul li .tit {
        padding: 0 0 .5rem 0;
    }
    #procedure.common-page .process-cont ul li .txt-wrap {
        padding-left: 3.5rem;
        padding: 1.5rem;
        min-height: 143px;
        display: block;
    }
    #procedure.common-page .process-cont ul li .txt {
        width: 100%;
    }
    #procedure.common-page .process-cont ul li .txt-wrap span {
        font-size: 9rem;
        /* top: 60%; */
        left: -2.7rem;
    }
    #procedure.common-page .process-cont ul li:last-child .txt-wrap {
        display: flex;
    }

    .contact-info > div {
        background: 101% 92% / 150px no-repeat url('/wp-content/uploads/2026/07/c-bg-ico.webp');
    }
    
}

@media (max-width: 420px) {
    .hero-video {
        object-position: 59% 50%;
    }
}


@media (max-width: 384px) {
    html {
        font-size: 14.6px;
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}


@media (prefers-reduced-motion: reduce) {
    #main-content .aniSection .small-txt,
    #main-content .aniSection h2 {
        transition: all 1s ease-in-out !important;
    }
    #main-content .section-hero h2 {
        transition: all 1s ease-in-out !important;
    }
    #main-content .section-hero .sub-txt {
        transition: all 1s ease-in-out .2s !important;
    }
    #main-content .section-service .grid-el .cont-wrap {
        transition: height 1s !important;
    }
    .fadeup {
        transition: all 1s ease-in-out .4s !important;
    }

    /* 헤더 관련 */
    .header-inner {
        transition: height 0.5s, top 0.5s, box-shadow 1s !important;
    }
    .header-inner #primary-menu > li::before {
        transition: opacity .5s !important;
    }
    .menu-ico span {
        transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease !important;
    }
    .header-mo {
        transition: transform 0.35s ease !important;
    }
    .mo-family-site-wrap ul {
        transition: height .3s linear !important;
    }

    /* 일반 페이지 템플릿 - 오시는길/조직도/구성원 등 */
    .common-page .page-bg-img {
        transition: padding 1s ease-in-out .3s !important;
    }
    .common-page .page-bg-img.active {
        transition: padding 1s ease-in-out !important;
    }
    .common-page .page-bg-img .txt-wrap {
        transition: border-radius 1s ease-in-out .3s !important;
    }
    .common-page .page-bg-img.active .txt-wrap {
        transition: border-radius 1s ease-in-out !important;
    }
    .common-page .page-bg-img .bg-overlay {
        transition: all .5s linear .8s !important;
    }
    .common-page .page-bg-img .img-sec-tit {
        transition: all .5s linear !important;
    }
    .common-page .page-bg-img.active .img-sec-tit {
        transition: all .5s linear .8s !important;
    }

    /* 오시는길 - 아코디언 화살표 */
    .section-location .accordion-item > button::after {
        transition: transform 0.2s ease !important;
    }

    /* 절차 페이지 - 순차 등장 리스트 */
    #procedure.common-page .process-cont ul li {
        transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
    }
}

@media (prefers-reduced-motion: reduce) and (max-width: 767px) {
    .header-mo .sub-menu {
        transition: max-height 0.35s ease !important;
    }
}

@media (prefers-reduced-motion: reduce) and (min-width: 1451px) {
    header.hover .header-inner {
        transition: height 0.5s, top 0.5s, box-shadow .2s !important;
    }
}