html * {
    overscroll-behavior: none;
    box-sizing: border-box;
    /* font-family: 'Noto Sans KR', sans-serif; */
    font-family: 'SUIT Variable', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    position: relative;
    font-weight: 600;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.loading-container {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: all 500ms ease-in-out;
}

body.loading .loading-container {
    opacity: 1;
    pointer-events: all;
}


header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    padding: 0 10%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 200ms ease-in-out;
    color: #fff;
    gap: 50px;
}

header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #00000080, transparent);
    transition: all 300ms ease-in;
    z-index: -1;
    backdrop-filter: blur(3px);
}

header.has-bg {
    background-color: inherit;
}

header.shown::before {
    height: 100%;
}

header,
footer {
    user-select: none;
    z-index: 10;
}

header a.logo {
    /*width: 180px;*/
    filter: invert(100%) sepia(7%) saturate(0%) hue-rotate(131deg) brightness(108%) contrast(108%);
}

/* header.shown a.logo{
    filter: none;
} */

header a.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

header .inquiry {
    background-color: var(--color-primary);
    padding: 10px 20px;
    border-radius: 5px;
}

header nav {
    flex: 1;
}

header .actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

header nav>ul {
    display: flex;
    justify-content: center;
}

/*body.portfolio header nav > ul {*/
/*    color: #000;*/
/*    transition: color 300ms ease-in;*/
/*}*/
/*body.portfolio header.shown nav > ul{*/
/*    color: #fff;*/
/*}*/


header nav>ul>li {
    position: relative;
}

header nav>ul>li.current {
    color: #000;
    font-weight: 800;
}

header nav>ul>li>a {
    display: inline-block;
    padding: 0 20px;
    line-height: 70px;
    font-weight: 700;
}

header nav>ul>li.current>a em.inquiry {
    color: #fff;
}

header nav>ul>li>a em.inquiry {
    padding: 5px 10px;
    background-color: #000;
    border-radius: 4px;
}

header nav>ul>li>ul {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 200ms ease-in;
}


header nav>ul>li:hover>ul {
    opacity: 1;
    pointer-events: visible;
}

header nav>ul>li>ul>li a {
    display: inline-block;

    text-align: center;
    line-height: 30px;
}

header nav a {
    /*font-weight: 400;*/
    transition: font-weight 200ms ease-in-out;
}

header nav a:hover {}

footer {
    position: relative;
    right: 0;
    transition: all 500ms cubic-bezier(0.86, 0.01, 0.77, 0.78);
    background-color: #000;
    border-top: 1px solid #777;
    box-sizing: border-box;
}

footer nav {
    padding: 0 10%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-transform: capitalize;
}

footer nav ul {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 14px;
    gap: 20px;
    height: 38px;
}

footer address {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 40px 10%;
    font-size: 1rem;
    color: var(--color-white);
}

footer address>div,
footer address .address_wrapper>div {
    width: 100%;
}

footer address .address_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

footer address ul.company {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}

footer address ul.company li .f_label {
    font-weight: 600;
    color: #999;
    text-transform: capitalize;
    margin-bottom: 15px;
}

footer address ul.company a {
    line-height: 1.5em;
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

footer address ul.social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 10px;
}

footer address ul.social img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center;
    border-radius: 5px;
    filter: invert(47%) sepia(1%) saturate(208%) hue-rotate(315deg) brightness(98%) contrast(82%);
}

footer .copy {
    /*padding: 10px 30px;*/
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #ccc;
}

nav.quick {
    position: fixed;
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
    font-size: 1rem;
    z-index: 10;
    transition: right 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 5px 0 0 5px;
    background-color: #ffffff80;
}

nav.quick:hover {
    right: 0;
    background-color: #ffffff60;
    backdrop-filter: blur(3px);
}

nav.quick ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

nav.quick a,
nav.quick button {
    padding: 10px;
    display: block;
    line-height: 25px;
    text-align: center;
    background-color: transparent;
    border: none;

}

nav.quick i {
    margin-right: 10px;
    line-height: 25px;
    vertical-align: bottom;
    font-size: 30px;
}

nav.quick span {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

::selection {
    background-color: var(--color-text);
    color: var(--color-light);
}

body:has(:is(button:hover, a:hover, [data-copy]:hover, label:hover)) #cursor {
    width: 60px;
    height: 60px;
    cursor: none !important;
}

#cursor {
    z-index: 10000;
    position: fixed;
    background-color: var(--color-light);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    pointer-events: none;
    top: var(--cursor-y);
    left: var(--cursor-x);
    transition: width 300ms ease-in-out, height 300ms ease-in-out;
}


#scroll-guide.shown {
    opacity: 1;
}

body.portfolio #scroll-guide {
    bottom: 68px;
}

body:has(section.portfolio-header) #scroll-guide {
    top: 450px;
    bottom: auto;
}

#scroll-guide {
    position: fixed;
    left: calc(50% - 8px);
    bottom: 8px;
    width: 16px;
    height: 30px;
    border: 1px solid var(--color-light);
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease-out;
    text-transform: uppercase;
    z-index: 8;
}

#scroll-guide::before {
    content: 'scroll';
    position: absolute;
    transform: translate(calc(-50% + 8px), -16px);
    font-size: 10px;
    font-weight: 400;
    color: var(--color-light);
    animation-name: twinkling;
    animation-iteration-count: infinite;
    animation-duration: 2400ms;
    animation-timing-function: ease-out;
}

#scroll-guide::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    background-color: var(--color-light);
    animation-name: toDown;
    animation-iteration-count: infinite;
    animation-duration: 1200ms;
    animation-timing-function: ease-out;
}

body:has(.global_menu_handle :checked) {
    overflow: hidden;
}

body:has(.global_menu_handle :checked) aside {
    left: 0;
}

aside nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-size: 30px;
    color: #fff;
    box-sizing: border-box;
    padding-bottom: 70px;
}

body:has(.global_menu_handle :checked) main {
    right: 100vw;
}

body:has(.global_menu_handle :checked) footer {
    right: 100vw;
}

.global_menu_handle .icons {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
}

.global_menu_handle .icons i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    font-size: 30px;
    transition: all 500ms cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

.global_menu_handle:has(:checked) .icons i:nth-child(1),
.global_menu_handle .icons i:nth-child(2) {
    scale: 0;
}

.global_menu_handle:has(:checked) .icons i:nth-child(2),
.global_menu_handle .icons i:nth-child(1) {
    scale: 1;
}

body:has(.global_menu_handle :checked) nav.quick {
    right: 0;
    background-color: transparent;
    color: #fff;
}

aside {
    position: fixed;
    left: 100vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9;
    background-color: #000000;
    transition: all 500ms cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

main {
    position: relative;
    right: 0;
    min-height: calc(100vh - 70px - 140px);
    transition: all 500ms cubic-bezier(0.86, 0.01, 0.77, 0.78);
}

/* Common Style END!*/
#popup-container {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #00000070;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

#popup-slider {}

.popup-swiper .swiper-slide {
    width: 500px;
    height: 500px;
    background-color: var(--color-white);
}

.popup img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

/* Main Style*/
main section {
    position: relative;
    width: 90%;
    max-width: 1024px;
    margin: auto;
    padding: 70px 0;

}

main section .background {
    position: sticky;
    top: 0;
    left: 0;
}

main section.intro {
    padding: 0;
    width: 100%;
    max-width: initial;
}

main section.intro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #00000060;
    z-index: 1;
}

main section.intro video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main section.intro .content {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    color: #fff;
    text-shadow: 0 0 50px #333;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 70px;
}

main section.intro h2 {
    font-size: 80px;
    line-height: 80px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
}

main section.intro h2 span {
    display: inline-block;
}

main section.intro h2 span.primary {
    color: #7eb4ff;
}

main section.intro h2 span.error {
    color: #f48484;
}

main section.intro p {
    font-size: 45px;
    margin-bottom: 20px;
}

p.typing-container {
    width: 730px;
    height: 130px;
    line-height: 1.5em;
}

#b_cursor {
    border-left: 2px solid #fff;
    /* 커서 스타일 */
    animation: blink .8s infinite;
    display: inline-block;
    margin-left: 3px;
    height: 45px;
    /* 폰트 크기와 동일하게 설정 */
    vertical-align: middle;
    margin-bottom: 10px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

main section.intro .banner_cs {
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .3);
    backdrop-filter: blur(3px);
    display: flex;
    gap: 30px;
    align-items: center;
}

main section.intro .banner_cs>h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: normal;
}

main section.intro .banner_cs>h3 span {
    display: block;
    font-size: 0.4em;
    margin-bottom: 20px;
    font-weight: 600;
}

main section.intro .banner_cs>ul {
    border-left: 1px solid var(--color-white);
    padding: 8px 0 8px 30px;
    text-align: left;
    font-weight: 300;
    line-height: 2em;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main section.intro .banner_cs>ul li b {
    width: 80px;
    display: inline-block;
    font-weight: 600;
    margin-right: 15px;
}

main section h2 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 40px;
}

main section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 25px;
    font-weight: 400;
}

main section.comment h3 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1em;
    /* line-height: 50px; */
}

main section.comment h3 .icon_3d {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

main section.comment h3 .icon_3d img {
    height: 80px;
    width: 80px;
    display: inline-block;
    margin: 0 8px;
    object-fit: contain;
}

main section p {
    word-break: keep-all;
}

main section.comment {
    text-align: center;
    padding: 120px 0;
    padding-bottom: 70px;
    border-top: 1px solid #ddd;
}

main section.comment p {
    font-size: 2.5rem;
    line-height: 2em;
    font-weight: 500;
}

main section.comment p .icon_3d {
    display: inline-flex;
    align-items: center;
}

main section.comment p .icon_3d img {
    height: 1.05em;
    display: inline-block;
    margin: 0 8px;
    width: 1.05em;
    object-fit: contain;
}

main section .container {
    position: relative;
    z-index: 2;
    padding: 35px;
}

main section#web .container {
    background-color: #61a1f1;
    color: #fff;
}

main section#solution .container {
    background-color: #15c4f4;
    color: #fff;
}

main section#design .container {
    background-color: #20d4b4;
    color: #fff;
}

main section#marketing .container {
    background-color: #55bc6a;
    color: #fff;
}

main section#portfolio .container {
    padding: 35px 0;
}

main section .container.round {
    border-radius: 50px;
    box-shadow: var(--shadow-container);
    background-color: #fff;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

main section .container .content {
    display: flex;
    height: 300px;
}

main section .container .content .description {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 24px;
    line-height: 2em;
    font-weight: 700;
    padding-bottom: 30px;
}

main section .container .content .media {
    width: 400px;
}

main section .container .content .media>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation-name: waveMotion;
    animation-duration: 2000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

div.portfolio_link {
    text-align: center;
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 35px;
    height: 35px;
    background-color: #000;
    border-radius: 50px;
    transition: all .4s ease;
}

div.portfolio_link a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    height: 100%;
    /* padding: 10px 20px;
    border: 2px solid #fff; */
    border-radius: 50px;
    box-sizing: border-box;
    position: relative;
    transition: all 0.5s ease;

}

div.portfolio_link a>p {
    font-size: 0;
    opacity: 0;
    transition: all .5s ease;
}

/* div.portfolio_link a::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
} */

main section ul.service_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
}

main section ul.service_list li div {
    box-shadow: var(--shadow-container);
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}

main section ul.service_list li div em {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

main section ul.service_list li div p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

main section .grid-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    word-break: keep-all;
}

main section .grid-content>em {
    color: var(--color-gray);
    text-transform: uppercase;
    font-size: 1.5rem;
}

main section .grid-content>div {
    overflow: hidden;
}

main section .grid-content h3 {
    font-size: 2.9rem;
    font-weight: 700;
    margin-bottom: 1rem;

}

main section .grid-content h4 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

main section .grid-content h5 {
    font-size: 1.5rem;
    font-weight: 550;
    margin-bottom: .8rem;
    text-transform: capitalize;
}

main section .grid-content h6 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: .8rem;
}

main section .grid-content p {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}

/* mainpage-portfolio */
main section.portfolio h2 {
    text-transform: capitalize;
    font-weight: 800;
}

main section.portfolio .container .content {
    height: auto;
}

main section.portfolio .container .description {
    font-size: 2.1rem;
    line-height: 1.5em;
    font-weight: 800;
}

main section.portfolio ul.portfolio-list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    width: 100%;
    aspect-ratio: 1/1;
    gap: 10px;
}

main section.portfolio ul.portfolio-list li {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 6px #00000050;
    transition: all 0.5s ease;
}

main section.portfolio ul.portfolio-list li:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
}

main section.portfolio ul.portfolio-list li:last-child {
    grid-column: 3/5;
    grid-row: 3/5;
}

main section.portfolio ul.portfolio-list li>a {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
}

main section.portfolio ul.portfolio-list li>a img {
    transition: transform 0.5s ease-out;
    height: 100%;
    object-fit: cover;
}

main section.portfolio ul.portfolio-list li>a .project_info {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    background-color: #00000070;
    color: var(--color-white);
    backdrop-filter: blur(1px);
    transition: opacity 0.5s ease-out;
}

main section.portfolio ul.portfolio-list li>a .project_label {
    text-transform: uppercase;
    font-weight: 400;
}

main section.portfolio ul.portfolio-list li>a .project_name {
    font-size: 1.2rem;
    font-weight: 700;
}

.portfolio_wrap {
    width: 450px;
}

.main_swiper,
.swiper_1,
.port_thum_wrap,
.portfolio_thum {
    height: 100%;
}

.main_swiper {
    height: 250px;
}

.portfolio_thum {
    width: fit-content;
    text-align: center;
}

.port_thum_wrap .portfolio_thum a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.port_thum_wrap .portfolio_thum a img {
    height: 100%;
    object-fit: cover;
}

.sub_swiper {}

.swiper_2 {
    height: 100%;
}

.portfolio_title {
    height: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 1.25rem;
}

.portfolio_title .portfolio_label {
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 0.8em;
    font-weight: 500;
}

.portfolio_title .project_name {
    font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
    width: 20px !important;
    height: 20px !important;
    margin-top: 0 !important;
    transform: translateY(-50%);
    cursor: pointer;
}

.swiper-button-next {
    background: url(/image/icon/next.png) no-repeat;
    background-size: cover;
}

.swiper-button-prev {
    background: url(/image/icon/prev.png) no-repeat;
    background-size: cover;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

@media (hover: hover) and (pointer: fine) {

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        filter: invert(29%) sepia(93%) saturate(3121%) hue-rotate(220deg) brightness(95%) contrast(91%);
    }
}

/* mainpage-portfolio end */

main section#inquiry {
    min-height: 100vh;
    position: relative;
    width: 100vw;
    max-width: initial;
    color: #fff;
    padding: 0;
}

main section#inquiry::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #00000080;
    z-index: 1;
}


main section#inquiry .background video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

main section#inquiry .container {
    padding: 70px;
}

main section#inquiry .container .form-area {
    background-color: #00000050;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    width: 1000px;
    margin: auto;
    padding: 50px 30px;
}

main section#inquiry h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

main section#inquiry h3 {
    font-size: 35px;
    line-height: normal;
    margin-bottom: 20px;
    font-weight: 800;
}

main section#inquiry p {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}

main section#inquiry .form-row {
    display: flex;
    gap: 30px;
    align-items: center;
}

main section#inquiry .form-row .form-field {
    flex: 1;
}

.form-field {
    padding: 10px 0;
}

.form-field .form-label {
    display: flex;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 700;
    justify-content: space-between;
    align-items: center;
    gap: 3px;
}

.form-field .form-label .form-description {
    font-size: 0.8rem;
    font-weight: 400;
    word-break: keep-all;
    text-align: right;
}

.form-field .form-input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px 15px;
    background-color: #cccccc80;
    border-radius: 5px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    resize: none;
    margin-bottom: 5px;
}

.form-field:has(:required) .form-label .label::after {
    content: '✱';
    color: var(--color-error);
}

.form-field .form-input[type=file] {
    font-size: 0.9rem;
    font-weight: 400;
}

.form-field .form-input[type=file]::file-selector-button {
    padding: 5px 20px;
    font-family: 'SUIT Variable', sans-serif;
    border-radius: 5px;
    background-color: #fefefe;
    border: 0;
    font-size: 12px;
    margin-right: 15px;
    cursor: pointer;
}

.form-field .form-radio,
.form-field .form-checkbox {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.form-field .form-radio label,
.form-field .form-checkbox label {
    flex: 1;
}

.form-field .form-radio label span,
.form-field .form-checkbox label span {
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 40px;
    border-radius: 10px;
    white-space: nowrap;
    padding: 0 5px;
    font-size: 0.9rem;
}



.form-field .form-radio label:has(:checked) span,
.form-field .form-checkbox label:has(:checked) span {
    background-color: #ffffff;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.form-field .form-input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-field .form-file {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    background-color: #cccccc80;
    border-radius: 5px;
}

.form-field .form-file .file-empty {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.form-field .form-file:has(.file-container:empty) .file-empty {
    display: inherit;
}

.form-action {
    display: flex;
    padding: 20px 0;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.form-action>label {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-action>label input[type="checkbox"] {
    margin: 0;
    margin-right: 5px;
}

.form-action button {
    position: relative;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 30px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
}

/*@keyframes marquee {*/
/*    0% {*/
/*        transform: translateX(0);*/
/*    }*/
/*    100% {*/
/*        transform: translateX(-50%);*/
/*    }*/
/*}*/

/* portfolio-list */
main:has(section.portfolio_list_wrapper) {
    background-color: #000;
}

body:has(section.portfolio_list_wrapper) header.shown a.logo {
    filter: invert(100%) sepia(7%) saturate(0%) hue-rotate(131deg) brightness(108%) contrast(108%);
}

body:has(section.portfolio_list_wrapper) #scroll-guide {
    display: none;
}

body:has(section.portfolio_list_wrapper) nav.quick a {
    color: #fff;
}

section.portfolio_list_wrapper .sub_title {
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    height: 320px;
    padding-top: 100px;
}

section.portfolio_list_wrapper .sub_title h2 {
    animation: bounce 1.1s both;
    font-size: 5rem;
    font-weight: 800;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

section.portfolio_list_wrapper .sub_title h2>span {
    display: inline-block;
    width: 1.15em;
}

ul.filter_label_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

ul.filter_label_wrapper li a {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--color-white);
    border-radius: 50px;
    color: #fff;
    opacity: .5;
    text-align: center;
}

ul.filter_label_wrapper li a.focus {
    background-color: var(--color-white);
    color: #000;
    opacity: 1;
}

.portfolio-container {}

ul.portfolio-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

ul.portfolio-list li.portfolio-item {
    position: relative;
    overflow: hidden;
}

ul.portfolio-list li.portfolio-item .image {
    width: 100%;
    aspect-ratio: 1;
}

ul.portfolio-list li.portfolio-item .image img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

ul.portfolio-list li.portfolio-item .image .no-image {
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    text-shadow: 0 0 5px #fff;
    width: 100%;
    height: 100%;
}

ul.portfolio-list li.portfolio-item .description {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #00000070;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(0, 100%);
    transition: transform 300ms ease-in-out;
    will-change: transform;
    pointer-events: none;
    gap: 10px;
    font-size: 1.1rem;
}


#portfolio .actions {
    display: flex;
    padding: 30px 0;
    justify-content: end;
    align-items: center;
    font-size: 1.2rem;
}

#portfolio .actions a {
    display: inline-block;
    position: relative;
    transition: all .5s ease;
}

#portfolio .actions a::before {
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #000;
    transition: width .5s ease;
}

/* portfolio-list end */

/* portfolio-view */
/* main:has(section.portfolio-header){
    background: url(/image/portfolio_bg.png) no-repeat;
    background-attachment: fixed;
} */
.portfolio-header {
    width: 100vw;
    height: 500px;
    position: relative;
    max-width: initial;
    padding: 100px 0;
}

.portfolio-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    z-index: 1;
}

.portfolio-header img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-header .title {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 80px;
}

.portfolio-header .title .title_tag_wrap {
    padding-top: 70px;
}

.portfolio-header .title ul.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 30px;
}

.portfolio-header .title a.link {
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
}

.portfolio-header .title a.link>.material-icons {
    font-size: 1.25em;
}

.portfolio-header h2 {
    margin-bottom: initial;
    font-size: 60px;
    font-weight: 800;
    line-height: 60px;
}

section.portfolio-content {
    padding: 0;
    padding-bottom: 100px;
}

section.portfolio-content .portfolio-img-wrap {}

section.portfolio-content .portfolio-img-wrap .image-wrapper {
    box-shadow: var(--shadow-opacity);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.portfolio-tool-box {
    position: sticky;
    left: 0;
    top: calc(100vh - 70px);
    /* width: 100vw; */
    padding: 0;
    background-color: #ffffff80;
    box-shadow: 0 -2px 5px #00000030;
    z-index: 11;
    box-sizing: content-box;
    backdrop-filter: blur(3px);
}

.portfolio-tool-box section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0;
    gap: 20px;
}

.portfolio-tool-box section :is(button, a) {
    background-color: var(--color-gray);
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    height: 50px;
}

.portfolio-tool-box section :is(a.info) {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-tool-box section> :first-child {
    background-color: var(--color-primary);
    flex: 1;
    padding: 0 10px;
}

.portfolio-tool-box section form.quick_cs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 50px;
    padding: 0 15px;
    border-radius: 10px;
}

.portfolio-tool-box section {
    padding: 0 10px;
}

.portfolio-tool-box section .m_quick_cs {
    display: none;
}

.portfolio-tool-box section form.quick_cs .quick_form {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 10px;
    flex: 1;
}

form.quick_cs .quick_form>input {
    border: 0;
    /* border-radius: 5px; */
    padding: 0 10px 5px;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    background-color: transparent;
    color: var(--color-white);
    font-size: 1rem;
    width: 100%;
    height: 30px;
}

form.quick_cs .quick_form>input::placeholder {
    color: var(--color-white);
    font-size: 14px;
}

form.quick_cs .quick_form>input:focus {
    border: 0;
}

form.quick_cs .quick_form>input:focus-visible {
    box-shadow: none;
    outline: 2px solid rgba(255, 255, 255, .8);
    border-radius: 5px;
}

.portfolio-tool-box section form.quick_cs>button {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 5px;
    line-height: 14px;
    font-weight: 600;
    padding: 5px 10px;
    height: 30px;
    box-sizing: border-box;
    width: 100px;
}

/* 모바일빠른상담form 모달창 */
.quick_modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #00000050;
    backdrop-filter: blur(5px);
    z-index: 999;
}

.quick_modal.on {
    display: block;
}

.quick_modal>form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 30px;
    background-color: #ffffff50;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.quick_modal>form ol.quick_form {
    width: 100%;
    padding: 20px;
    background-color: var(--color-white);
    color: #000;
    border-radius: 10px;
}

.quick_modal>form ol.quick_form li {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 10px;
    align-items: center;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 0 6px #00000020;
}

.quick_modal>form ol.quick_form li:nth-child(2) {
    margin: 10px 0;
}

.quick_modal>form ol.quick_form li label {
    padding: 5px 0;
    box-sizing: border-box;
}

.quick_modal>form ol.quick_form li input {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    border: 0;
}

.quick_modal>form ol.quick_form li input:focus {
    outline-color: #000;
}

.quick_modal>form button {
    padding: 10px;
    border: 0;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
}

.quick_modal .close_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    border: 0;
    background-color: #ffffff50;
    color: var(--color-white);
    box-shadow: inset 0 0 3px #00000030;
}

.quick_modal .close_btn>span {
    display: block;
}

/* portfolio-view end */

.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;

}

.pagination.main {
    color: #fff;
}

.pagination span,
.pagination a {
    display: inline-block;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
}

.pagination li.active span {
    background-color: #fff;
    color: #000;
}

body:has(.modal.active) {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}


main section.content-view {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 6px;
}

main section.content-view article {
    padding: 30px 20px;
}

main section.content-view article:not(:last-child) {
    border-bottom: 1px solid #eee;
}

main section.content-view h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

main section.content-view h2 {
    font-size: 20px;
    margin-bottom: 15px;
}


main section.content-view ol {
    list-style: hangul;
    padding: 0 20px;
}

main section.content-view table {
    border-collapse: collapse;
    width: 100%;
}

main section.content-view table tr {
    border-bottom: 1px solid #eee;
}

main section.content-view table td,
main section.content-view table th {
    padding: 5px 0;
    text-align: start;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #00000070;
    z-index: 100;
    pointer-events: none;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 200ms ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal.active {
    pointer-events: inherit;
    opacity: 1;
}

.modal .modal-close {
    position: absolute;
    right: 50px;
    top: 50px;
    border: none;
    background-color: initial;
    color: var(--color-white);
}

.modal .modal-close i {
    font-size: 50px;
}

.modal-container {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    width: 80%;
    max-width: 1024px;
    max-height: 90vh;
    overflow: hidden;
}

.modal .modal-container h4 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

[data-modal=location] .contact_info>p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.5em;
    font-weight: 600;
}

[data-modal=location] .contact_info {
    margin-bottom: 2rem;
}

[data-modal=location] .contact_info>ol {
    font-size: 1.5rem;
    color: #00000090;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    align-items: center;
}

[data-modal=location] .contact_info>ol b {
    font-weight: 900;
    color: #000;
    margin-right: 0.5rem;
}

[data-modal=location] .map {
    width: 100% !important;
    aspect-ratio: 5/3;
    border-radius: 5px;
    overflow: hidden;
}

[data-modal=location] .map_wrap {
    position: relative;
    box-shadow: 2px 2px 10px #00000020;
}

.root_daum_roughmap .wrap_map {
    height: 100% !important;
}

[data-modal=location] .map_wrap>ul {
    position: absolute;
    width: 320px;
    top: 10px;
    right: 15px;
    font-size: 1rem;
    color: #000;
    line-height: 20px;
    z-index: 100;
}

[data-modal=location] .map_wrap>ul h5 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-primary);
}

[data-modal=location] .map_wrap>ul li {
    padding: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(5px);
    box-shadow: 2px 2px 8px #00000020;
    border-radius: 10px;
}

[data-modal=location] .map_wrap>ul li:nth-child(2) p span {
    display: block;
    margin: 5px 0;
}

[data-modal=location] .map_wrap>ul li:first-child p {
    display: flex;
    align-items: center;
}

[data-modal=location] .map_wrap>ul li span.t_icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    margin: 0 3px 0 5px;
}


span.primary {
    color: var(--color-primary);
}

span.primary.privercy {
    color: #20d4b4;
}

span.error {
    color: var(--color-error);
}

span.success {
    color: var(--color-success);
}

span.secondary {
    color: var(--color-secondary);
}

span.info {
    color: var(--color-info)
}

iframe.location {
    width: 100%;
    aspect-ratio: 2/1;
    margin: 10px 0;
}


.underline {
    text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {

    .form-field .form-radio label:hover span,
    .form-field .form-checkbox label:hover span {
        background-color: #00000080;
    }

    main section.portfolio ul.portfolio-list li:hover {
        box-shadow: none;
    }

    main section.portfolio ul.portfolio-list li>a:hover .project_info {
        opacity: 1;
    }

    main section.portfolio ul.portfolio-list li>a:hover img {
        transform: scale(1.05);
    }

    #portfolio .actions a:hover {
        padding-right: 10px;
    }

    #portfolio .actions a:hover::before {
        width: 100%;
        box-shadow: 0 1px 2px #00000030;
    }

    /* div.portfolio_link a:hover::before{
        width: 100%;
        height: 100%;
        border-radius: 50px;
        border: 2px solid #fff;
        opacity: 1;
    } */
}

@media (hover: hover) and (pointer: fine) and (min-width: 769px) {
    div.portfolio_link:hover {
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        padding: 30px;
    }

    div.portfolio_link:hover a {
        gap: 10px;
    }

    div.portfolio_link:hover a>span {
        font-size: 2rem;
    }

    div.portfolio_link:hover a>p {
        opacity: 1;
        font-size: 2rem;
    }
}

@media (min-width: 769px) {
    html * {
        /* cursor: none !important; */
    }

    .global_menu_handle {
        display: none;
    }

}

@media (max-width: 768px) {
    html * {
        /* cursor: inherit; */
    }

    .global_menu_handle {
        display: initial;
    }

    header nav {
        display: none;
    }

    #cursor {
        display: none;
    }

    a,
    label,
    button {
        cursor: pointer;
    }
}

@media (max-width: 1440px) {
    footer address ul.company a {
        font-size: 1.6rem;
    }
}

@media (max-width: 1280px) {
    footer address .address_wrapper {
        flex-direction: row;
        justify-content: space-between;
    }

    footer address .address_wrapper>div {
        width: auto;
    }

    footer address ul.company,
    footer address ul.social {
        flex-direction: column;
    }

    footer address ul.social {
        margin-top: 0;
        justify-content: space-between;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 0 5%;
        gap: 30px;
    }

    main section.intro .content {
        gap: 60px;
    }

    main section.intro h2 {
        width: 70%;
        min-width: 670px;
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 30px;
    }

    main section.intro p {
        font-size: 35px;
    }

    #b_cursor {
        height: 35px;
    }

    p.typing-container {
        width: 600px;
        height: 100px;
    }

    main section h5 {
        font-size: 40px;
    }

    main section#portfolio .container {
        padding: 0 0 35px;
    }

    main section.portfolio h2 {
        margin-top: 10px;
        font-size: 1.5rem;
    }

    main section.portfolio .container .description {
        font-size: 1.8rem;
    }

    main section.comment {
        padding: 80px 0;
    }

    main section.comment h5 {
        font-size: 3rem;
    }

    main section.comment h5 .icon_3d img {
        height: 60px;
        width: 60px;
    }

    main section.comment p {
        font-size: 25px;
    }

    main section.comment p .icon_3d img {
        margin: 0 5px;
    }

    main section .container.round {
        margin-bottom: 30px;
    }

    main section .container .content .media {
        width: 350px;
    }

    main section .container .content .portfolio_wrap {
        width: 400px;
    }

    main section#inquiry .container .form-area {
        width: 100%;
    }

    /* footer */
    footer address {
        padding: 40px 5%;
    }

    /* portfolio_view */
    .portfolio-tool-box section {
        gap: 15px;
    }

    /* location modal */
    .modal .modal-close {
        top: 30px;
        right: 30px;
    }

    .modal .modal-close i {
        font-size: 2rem;
    }

    .modal .modal-container h4 {
        font-size: 2.2rem;
    }

    [data-modal=location] .contact_info>p {
        font-size: 1.6rem;
        line-height: 2rem;
        word-break: keep-all;
    }

    [data-modal=location] .contact_info>ol {
        font-size: 1.4rem;
        column-gap: 15px;
    }

    [data-modal=location] .map_wrap {
        box-shadow: none;
    }

    [data-modal=location] .map {
        aspect-ratio: 5/2;
        box-shadow: 2px 2px 8px #00000020;
    }

    [data-modal=location] .map_wrap>ul {
        position: initial;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    [data-modal=location] .map_wrap>ul li {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    main section {
        width: 100%;
        padding: 70px 10px 0 10px;
    }

    main section.intro h2 {
        width: 100%;
        max-width: 530px;
        font-size: 3rem;
        line-height: 1.4em;
        min-width: auto;
        margin-bottom: 25px;
    }

    main section.intro .content {
        padding-bottom: 150px;
    }

    main section.intro p {
        font-size: 1.8rem;
    }

    #b_cursor {
        height: 1.8rem;
        margin-bottom: 5px;
    }

    p.typing-container {
        width: 480px;
        height: 80px;
    }

    main section.comment {
        padding-top: 70px;
        padding-bottom: 0;
        margin-top: 30px;
    }

    main section.comment h5 {
        font-size: 2.5rem;
        line-height: 3.5rem;
        word-break: keep-all;
        margin-bottom: 40px;
    }

    main section.comment h5 .icon_3d img {
        height: 2.7rem;
        width: 2.7rem;
    }

    main section.comment p {
        font-size: 1.5rem;
        line-height: 1.7em;
    }

    .portfolio-content {
        padding: 70px 0;
    }

    main section h3 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 25px;
    }

    main section .container .content {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 50px;
    }

    main section .container.round {
        border-radius: 20px;
        padding: 30px;
    }

    div.portfolio_link {
        margin-top: 30px;
        position: initial;
        background-color: transparent;
        width: auto;
        height: auto;
    }

    div.portfolio_link a {
        width: auto;
        height: auto;
        padding: 8px 20px;
        border: 2px solid var(--color-white);
        font-size: 1.25rem;
        gap: 5px;
        background-color: #00000010;
    }

    div.portfolio_link a>span {
        font-size: 1.2em;
    }

    div.portfolio_link a>p {
        font-size: 1em;
        opacity: 1;
    }

    main section .container .content .description {
        text-align: center;
    }

    main section ul.service_list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    main section ul.service_list li div p {
        text-align: end;
    }

    main section h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }

    main section.portfolio h2 {
        margin-top: 0;
        margin-bottom: 10px;
    }

    main section .container .content .portfolio_wrap {
        width: 80%;
    }

    ul.portfolio-list {
        grid-template-columns: repeat(2, 1fr);
    }

    main section#marketing {
        padding-bottom: 70px;
    }

    main section#inquiry h3 {
        font-size: 1.7rem;
    }

    main section#inquiry .container {
        padding: 30px;
    }

    main section#inquiry .form-row {
        flex-direction: column;
        gap: 0;
    }

    main section#inquiry .form-row .form-field {
        width: 100%;
    }

    .form-field .form-radio label span,
    .form-field .form-checkbox label span {
        line-height: 35px;
    }

    .portfolio-header {
        height: 400px;
    }

    #scroll-guide {
        bottom: 78px;
    }

    footer {
        padding-bottom: 70px;
    }

    footer nav {
        padding: 0 5%;
    }

    footer nav ul {
        justify-content: center;
    }

    footer address {
        padding: 40px 5% 10px;
        flex-direction: column;
        gap: 20px;
    }

    footer address .address_wrapper {
        flex-direction: column;
    }

    footer address ul.company li {
        text-align: center;
    }

    footer address ul.company li .f_label {
        margin-bottom: 10px;
    }

    footer address ul.company a {
        font-size: 1.4rem;
        word-break: keep-all;
        line-height: 1.5em;
    }

    footer address>div.right {
        align-items: center;
        gap: 10px;
    }

    footer address ul.social {
        flex-direction: row;
    }

    footer address ul.social img {
        width: 20px;
        height: 20px;
    }

    nav.quick {
        left: 0;
        bottom: 0;
        top: auto;
        width: 100vw;
        transform: none;
        background-color: #ffffff80;
        backdrop-filter: blur(3px);
        border-radius: 0;
        transition: all 500ms cubic-bezier(0.86, 0.01, 0.77, 0.78);
    }

    nav.quick ul {
        flex-direction: row;
        gap: 0;
    }

    nav.quick ul li {
        flex: 1;
    }

    nav.quick i {
        display: block;
        margin-right: 0;
        font-size: 25px;
    }

    /* portfolio_list */
    body:has(section.portfolio_list_wrapper) nav.quick a {
        color: #000;
    }

    section.portfolio_list_wrapper {
        padding-bottom: 80px;
    }

    section.portfolio_list_wrapper .sub_title {
        height: auto;
        padding: 80px 0;
    }

    section.portfolio_list_wrapper .sub_title h2 {
        font-size: 4.5rem;
    }

    /* portfolio_view */
    body:has(section.portfolio-header) #scroll-guide {
        display: none;
    }

    .portfolio-header .title .title_tag_wrap {
        padding-top: 50px;
    }

    .portfolio-header h2 {
        font-size: 3.5rem;
        line-height: 3.5rem;
    }

    .portfolio-header .title a.link {
        font-size: 1.1rem;
    }

    .portfolio-tool-box section form.quick_cs .quick_form {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-tool-box {
        top: calc(100vh - 140px);
    }

    /* location modal */
    .modal-container {
        width: 90%;
        max-height: 80vh;
        padding: 40px 0;
    }

    .modal .modal-container h4 {
        margin-bottom: 1rem;
    }

    .location_info_wrapper {
        max-height: calc(80vh - 100px);
        overflow-y: scroll;
        overflow-x: hidden;
        padding: 10px 40px;
    }

    .location_info_wrapper::-webkit-scrollbar {
        width: 6px;
        background-color: transparent;
    }

    .location_info_wrapper::-webkit-scrollbar-thumb {
        background-color: #00000020;
        border-radius: 4px;
    }

    [data-modal=location] .map_wrap>ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 425px) {
    html {
        font-size: 14px;
    }

    header a.logo img {
        height: 30px;
    }

    main section.intro .content {
        padding-top: 80px;
        gap: 30px;
    }

    main section.intro h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }

    main section.intro p {
        font-size: 25px;
    }

    #b_cursor {
        height: 25px;
    }

    main section.intro .banner_cs {
        flex-direction: column;
        gap: 20px;
    }

    main section.intro .banner_cs>h3 span {
        margin-bottom: 10px;
    }

    main section.intro .banner_cs>ul {
        border-left: 0;
        border-top: var(--color-white) 1px solid;
        padding: 20px 20px 0;
        width: 100%;
        height: auto;
    }

    p.typing-container {
        width: 300px;
        margin: 0 auto;
        height: auto;
        min-height: 110px;
    }

    main section h5 {
        font-size: 30px;
    }

    main section.portfolio h2 {
        line-height: normal;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    main section.portfolio .container .description {
        line-height: 1.5em !important;
        font-size: 1.4rem !important;
        text-align: center !important;
    }

    main section.portfolio ul.portfolio-list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        aspect-ratio: 2 / 5;
        gap: 0;
    }

    main section.portfolio ul.portfolio-list li {
        border-radius: 0;
    }

    main section.portfolio ul.portfolio-list li:first-child,
    main section.portfolio ul.portfolio-list li:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    #portfolio .actions {
        font-size: 1rem;
        font-weight: 500;
        justify-content: center;
        padding: 25px 0;
    }

    #portfolio .actions a {
        padding: 8px 20px;
        border: 1.5px solid #000;
        border-radius: 20px;
    }

    main section.comment {
        padding: 60px 0 0;
    }

    main section.comment h5 {
        font-size: 2.3rem;
        line-height: 1.5em;
        margin-bottom: 30px;
    }

    main section.comment p {
        font-size: 1.45rem;
        line-height: 1.8em;
    }

    /* main section.comment p {
        font-size: 20px;
        line-height: 30px;
    } */
    main section h3 {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 20px;
    }

    main section .container .content .media {
        width: 90%;
    }

    main section .container .content .description {
        width: 100%;
        font-size: 18px;
        text-align: left;
        padding-bottom: 0;
        line-height: 1.8em;
    }

    main section ul.service_list li div {}

    main section ul.service_list li div em {
        font-size: 16px;
        margin-bottom: 15px;
    }

    main section ul.service_list li div p {
        font-size: 1rem;
    }

    main section .container.round {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    main section .container {
        padding: 10px 0;
    }

    main section .container .content .portfolio_wrap {
        width: 100%;
    }

    main section#inquiry .container {
        padding: 0;
    }

    main section#inquiry .container .form-area {
        border-radius: 0;
        padding: 50px 5%;
    }

    main section#inquiry h3 {
        font-size: 25px;
    }

    /* 푸터 */
    footer nav {
        padding: 8px 5%;
    }

    footer nav ul {
        flex-wrap: wrap;
        height: auto;
        row-gap: 10px;
    }

    /* portfolio_list */
    section.portfolio_list_wrapper .sub_title h2 {
        font-size: 4.2rem;
        margin-bottom: 0;
    }

    ul.filter_label_wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 40px;
    }

    ul.filter_label_wrapper li {
        width: 100%;
    }

    ul.filter_label_wrapper li a {
        padding: 5px 20px;
        width: 100%;
    }

    /* portfolio_view */
    .portfolio-header h2 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .portfolio-header .title ul.tag {
        font-size: 1.05rem;
        margin-top: 20px;
    }

    .portfolio-tool-box {
        top: calc(100vh - 140px);
    }

    .portfolio-tool-box section form.quick_cs {
        display: none;
    }

    .portfolio-tool-box section .m_quick_cs {
        display: block;
        flex: 1;
        background-color: var(--color-primary);
        font-weight: 600;
    }

    form.quick_cs .quick_form>input {
        padding: 0 5px 3px;
    }

    section.portfolio-content {
        width: 100%;
        padding: 70px 10px;
    }

    section.portfolio-content .portfolio-img-wrap {
        box-shadow: none;
        border-radius: 0;
    }

    /* location modal */
    .modal .modal-container h4 {
        font-size: 1.8rem;
    }

    .modal-container {
        padding: 30px 0;
    }

    .location_info_wrapper {
        padding: 10px;
    }

    [data-modal=location] .contact_info {
        margin-bottom: 1.8rem;
    }

    [data-modal=location] .contact_info>p {
        font-size: 1.3rem;
        line-height: 1.9rem;
    }

    [data-modal=location] .contact_info>ol {
        font-size: 1.25rem;
        padding: 15px;
        box-sizing: border-box;
        background-color: var(--color-background);
        border-radius: 10px;
    }

    [data-modal=location] .contact_info>ol li {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    [data-modal=location] .map {
        aspect-ratio: 5/3;
    }

    .location_info_wrapper {
        height: calc(100% - 60px);
    }


}

img {
    width: 100%;
    display: block;
}

/* 클릭효과 */
.portfolio-tool-box section :is(a.info):active,
.portfolio-tool-box section .m_quick_cs:active,
.quick_modal>form button:active,
.portfolio-tool-box section form.quick_cs>button:active,
.quick_modal .close_btn:active {
    transform: scale(0.95);
}