@charset "utf-8";

/*-------------------------------------------------
Author : WEB,Seo
Create date : 2025. 01. 17
Last update : 
-------------------------------------------------*/

/* ========== import ========== */
@import url('/resources/css/default/jquery-ui.css');
@import url('/resources/css/default/normalize.css');
@import url('/resources/css/assets/fonts.css');
@import url('/resources/css/assets/mixin.css');
@import url('/resources/css/assets/screen-ui.css');


/* ========== default setting ========== */
html {
    font: 400 10px/1.2 'pretendard', sans-serif;
    overflow-x: hidden;
    overflow-y: scroll
}

body {
    font-size: 1.6rem;
    font-family: 'pretendard', sans-serif;
    letter-spacing: -0.02em;
    word-break: keep-all;
    color: #1a1a1a;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    width: 10px;
    background: rgba(0, 0, 0, 0.3);
    /* 스크롤바 색상 */
    border-radius: 10px;
    /* 스크롤바 둥근 테두리 */
}

@media screen and (max-width:1024px) {
    html {
        font-size: 9.5px;
    }
}

@media screen and (max-width:540px) {
    html {
        font-size: 9px;
    }
}

@media screen and (max-width:375px) {
    html {
        font-size: 8.5px;
    }
}

/* ============== //default setting ============== */


/* ============== header ============== */
#header {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
}

#header h1 img {
    display: block;
    width: 25rem;
}

.header_inner {
    height: 10rem;
    width: calc(100% - 3rem);
    margin: 0 auto;
    max-width: 178rem;
    transition: 0.5s;
}

.gnb a {
    font-size: 1.7rem;
    font-weight: 600;
}

#header h1 img.m_logo {
    display: none;
}

@media screen and (max-width: 768px) {
    #header h1 img {
        width: 20rem;
    }

}


@media screen and (max-width: 540px) {
    .gnb {
        gap: 3rem;
    }

    #header {
        border-bottom: 1px solid #f5f5f5;
    }

    #header h1 img {
        width: 18rem;
    }

    .header_inner {
        height: 8rem;
    }

}

@media screen and (max-width: 480px) {
    .gnb {
        gap: 2rem;
    }

    .gnb a {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 420px) {
    .header_inner {
        height: 6.5rem;
    }

    #header h1 img.m_logo {
        width: 5rem;
        display: block;
    }

    #header h1 img.pc_logo {
        display: none;
    }

    .gnb a {
        font-size: 14px;
    }


}

/* ============== //header ============== */



/* ============== footer ============== */
#footer {
    background: #002030;
    color: #C2C2C2;
    padding: 8rem 0 7rem;
    font-size: 1.5rem;
}

.ft_logo {
    width: 29rem;
}

.ftTop {
    flex-direction: row-reverse;
    color: #DDDDDD;
}

.ft_agree a,
.ft_agree button {
    padding-right: 2rem;
    border-right: 1px solid #acacac;
    color: #C2C2C2;
}

.ft_agree li:last-child a,
.ft_agree li:last-child button {
    border-right: 0;
}

.ft_info span {
    margin: 0 2rem 1rem 0;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    #footer {
        padding: 5rem 0;
    }

    .ft_logo {
        margin: 3rem 0;
        width: 25rem;
    }

    .ft_info span {
        margin: 0 1rem 0 0;
        line-height: 1.5;
    }
}

@media screen and (max-width: 480px) {
    .ftTop {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .ft_logo {
        width: 20rem;
    }
}


/* 이용약관 / 개인정보처리방침 */
.policy-wrap {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    transition: 0.3s;
}

.policy-wrap.open {
    display: flex;
}

.policy-cont {
    max-width: 90rem;
    background: #fff;
    padding: 4rem 4rem 3.5rem;
    border-radius: 1rem;
    max-height: calc(100vh - 6rem);
    height: 100%;
}

.policy-wrap h3 {
    font-size: 2.8rem;
    border-bottom: 2px solid #222;
    padding-bottom: 1rem;
    font-weight: 700;
}

.policy-wrap h4 {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 3rem 0 1rem;
}

.policy-wrap p,
.policy-wrap li {
    color: #555;
    padding-left: 1rem;
}

.policy-wrap .pol_sec {
    padding: 0 2rem 3rem;
    background: #f8f8f8;
    margin: 2rem 0;
    height: calc(100% - 13rem);
    overflow: auto;
}

.policy-wrap .company {
    font-weight: bold;
    color: #000;
}

.pop-close {
    font-weight: 600;
    background: #eee;
    border: 1px solid #ddd;
    height: 5rem;
    border-radius: 0.5rem;
    font-size: 1.7rem;
}

.policy-wrap .tit-p {
    padding: 3rem 0 0;
}

@media (max-width: 768px) {
    .policy-wrap h3 {
        font-size: 2.5rem;
    }

    .policy-cont {
        max-width: 90rem;
        padding: 3rem 2.5rem;
    }

    .policy-wrap h4 {
        font-size: 1.8rem;
    }
}


/* ============== //footer ============== */




/* ============== main ============== */

/* visual */
.visual {
    justify-content: end;
}

.visual span {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 700;
}

.visual h2 {
    font-size: 6rem;
    font-weight: 800;
}

.typed-cursor {
    display: none;
}

.visual h3 {
    font-size: 6rem;
    font-weight: 900;
    color: var(--main-color);
}

.visual p {
    font-size: 5rem;
    color: #BCBCBC;
    font-weight: 600;
}

.img_slide li {
    width: 29rem;
    height: 16rem;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid #eee;
}

.visual .swiper-wrapper {
    transition-timing-function: linear;
}

.img_slide li img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.visual i {
    position: relative;
    color: #999;
    font-weight: 700;
}

.visual i span {
    width: 2rem;
    height: 2.7rem;
    border: 2px solid #ddd;
    border-radius: 5rem;
    box-sizing: border-box;
    position: relative;
}

.visual i span::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border: 2px solid #eee;
    border-radius: 5rem;
    box-sizing: border-box;
}

.visual i span::before {
    position: absolute;
    top: 0;
    left: 50%;
    content: '';
    width: 0.4rem;
    height: 0.6rem;
    background-color: #ddd;
    border-radius: 100%;
    -webkit-animation: bounce 1.7s infinite;
    animation: bounce 1.7s infinite;
    box-sizing: border-box;
}

@keyframes bounce {
    0% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    80% {
        -webkit-transform: translate(-50%, 2rem);
        transform: translate(-50%, 2rem);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media screen and (max-width: 1400px) {
    .visual {
        gap: 1.5rem;
    }

    .visual h2 {
        font-size: 5.5rem;
    }

    .visual p {
        font-size: 4rem;
    }

    .visual h3 {
        font-size: 5rem;
    }
}

@media screen and (max-width: 1024px) {
    .img_slide {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .visual {
        height: auto;
        padding: 20rem 0 3rem;
    }

    .img_slide {
        gap: 1rem;
    }

    .visual h2 {
        font-size: 4.5rem;
    }

    .visual p {
        font-size: 3.5rem;
        padding: 0 5rem;
    }

    .visual h3 {
        font-weight: 800;
    }
}

@media screen and (max-width: 650px) {
    .visual h2 {
        font-size: 4.5rem;
    }

    .visual p {
        font-size: 3.5rem;
    }

    .visual h3 {
        font-weight: 800;
    }
}

@media screen and (max-width: 540px) {
    .visual {
        padding: 15rem 0 3rem;
    }

    .img_slide li {
        height: 14rem;
    }

    .visual h2 {
        font-size: 3.7rem;
    }

    .visual p {
        font-size: 2.8rem;
    }

    .visual h3 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 420px) {
    .visual {
        padding: 15rem 0 3rem;
    }

    .img_slide li {
        height: 14rem;
    }

    .visual h2 {
        font-size: 3.5rem;
    }

    .visual p {
        font-size: 2.5rem;
    }

}


/* work */
.workInner {
    padding: 20rem 0 15rem;
}

.workInner h2 {
    font-size: 6.5rem;
    font-weight: 800;
}

.workWrap {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 1rem 0;
    position: relative;
}

.workWrap::before {
    content: '';
    background: #eaeaea;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    display: block;
    transform: translateY(-50%);
    position: absolute;
}

.workCont {
    width: calc(50% - 1rem);
    padding: 0 3rem;
    position: relative;
    background: white;
    transition: 0.3s;
    height: 40rem;
    justify-content: center;
    overflow: hidden;
    border-radius: 3rem;
}

.workCont:hover {
    padding: 0 5rem;
}

.workCont::before {
    background: url(/resources/images/common/hn_logo.svg) left bottom / cover no-repeat;
    content: '';
    display: block;
    position: absolute;
    right: -22rem;
    top: -4rem;
    z-index: 1;
    width: 50rem;
    height: 35rem;
    filter: opacity(0.5) contrast(0.5) brightness(10);
    transform: translate(30%, -30%) rotate(270deg);
    transition: transform 0.8s ease;
}

.workCont:hover::before {
    transform: translate(0, 0) rotate(270deg);
}

.workCont>* {
    position: relative;
    z-index: 1;
}

.workCont i {
    width: 7.2rem;
    height: 7.2rem;
    background: transparent;
    border-radius: 100%;
    position: relative;
    z-index: 0;
    transform: scale(1);
}

.workCont i::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #f5f5f5;
    z-index: -1;
    border-radius: 100%;
    transition: transform 0.8s ease;
}

.workCont:hover i::after {
    transform: scale(20);
}

.workCont i img {
    width: auto;
    height: 2.6rem;
}

.workCont h3 {
    font-size: 4rem;
    font-weight: 700;
}

.workCont span {
    font-size: 1.6rem;
    font-weight: 600;
    color: #787878;
}

.workCont p {
    font-size: 1.8rem;
    color: #787878;
    line-height: 1.5;
}

@media screen and (max-width: 1024px) {
    .workInner {
        padding: 15rem 0;
    }

    .workInner h2 {
        font-size: 5rem;
    }

    .workInner h3 {
        margin-top: 1rem;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .workInner {
        padding: 10rem 0;
    }

    .workInner h2 {
        font-size: 4rem;
        font-weight: 800;
    }
}

@media screen and (max-width: 650px) {
    .workInner h3 {
        margin-top: 0;
    }

    .workInner h2 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 420px) {

    .workInner h2 {
        font-size: 3.5rem;
    }
}


/* idea */
.idea {
    background: var(--main-color);
    padding: 15rem 0;
}

.ideaInner {
    align-items: stretch;
}

.ideaWrap {
    max-width: 75rem;
}

.ideaCont {
    width: calc((100% - 3rem) / 2);
    background: var(--white-color);
    background: url('/resources/images/main/vis_slide03.jpg') center / cover no-repeat;
    border-radius: 2rem;
    justify-content: center;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    aspect-ratio: 9 / 8;
}

.ideaCont>* {
    position: relative;
    z-index: 1;
}

.ideaCont::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    transition: 0.5s;
    opacity: 1;
}


.ideaCont:hover::after {
    opacity: 0.9;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 1.7rem;
}

.ideaTxt {
    color: var(--white-color);
}

.ideaTxt p {
    font-size: 1.7rem;
    line-height: 1.7;
    font-weight: 500;
}

.ideaTxt a {
    font-size: 1.8rem;
    font-weight: 700;
    width: fit-content;
}

.ideaTxt a img {
    width: 2rem;
}

.ideaTxt h2 {
    margin-top: auto;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.5;
}

.ideaCont img {
    height: 5.5rem;
    width: auto;
    filter: invert(1) brightness(0);
}

.ideaCont h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.ideaCont p {
    line-height: 1.6;
}

@media screen and (max-width: 1400px) {

    .ideaTxt {
        padding: 0 0 5rem;
        flex-direction: row-reverse;
        width: 100%;
        justify-content: space-between;
    }

    .ideaTxt h2 {
        font-size: 4rem;
    }

    .ideaTxt_ex {
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .ideaWrap {
        gap: 1.5rem;
        width: 100%;
        max-width: unset;
    }

    .ideaCont {
        width: calc((100% - 4.5rem) / 4);
        padding: 5rem 3rem 4.5rem;
        aspect-ratio: unset;
    }

    .ideaCont p br {
        display: none;
    }

    .ideaCont h3 {
        font-size: 2.3rem;
    }

    .ideaCont i {
        margin: 0;
    }
}

@media screen and (max-width: 1200px) {
    .idea {
        padding: 10rem 0;
    }

    .ideaWrap {
        gap: 1rem;
    }

    .ideaCont {
        width: calc((100% - 3rem) / 4);
        justify-content: flex-start;
    }

    .ideaTxt_ex {
        text-align: right;
        align-items: end;
    }

}

@media screen and (max-width: 960px) {

    .ideaWrap {
        gap: 1rem;
    }

    .ideaCont {
        width: calc((100% - 2rem) / 2);
        padding: 5rem 3rem 3.5rem;
    }

    .ideaTxt h2 {
        font-size: 3.5rem;
    }

    .ideaTxt p {
        font-size: 1.6rem;
    }

}

@media screen and (max-width: 768px) {

    .ideaCont img {
        height: 4.5rem;
    }

    .ideaCont h3 {
        margin: 1.5rem 0;
    }

    .ideaTxt {
        flex-direction: column-reverse;
        gap: 1.5rem;
    }

    .ideaTxt_ex {
        text-align: left;
        align-items: start;
    }
}

@media screen and (max-width: 540px) {
    .ideaCont {
        padding: 4rem 3rem 3.5rem;
        width: 100%;
    }

    .ideaCont p,
    .ideaTxt p {
        font-sizE: 14px;
    }
}

@media screen and (max-width: 480px) {
    .ideaCont {
        padding: 3.5rem 3rem 3rem;
        border-radius: 1.5rem;
    }

    .ideaTxt {
        padding: 0 0 3rem;
    }

    .ideaTxt p br {
        display: none;
    }
}



/* service */

.svInner {
    padding: 15rem 0;
}

.svInner h2 {
    font-size: 4rem;
    line-height: 1.4;
    font-weight: 700;
}

.svInner h2 b {
    font-size: 6rem;
    font-weight: 900;
}

.slideTabs li {
    height: 5rem;
    padding: 0 3rem;
    border-radius: 3rem;
    transition: 0.3s;
    cursor: pointer;
    background: #f4f4f4;
    font-size: 1.7rem;
}

.slideTabs li:hover {
    background: #ddd;
}

.slideTabs li.active {
    background: #1a1a1a;
    color: var(--white-color);
}

.service .swiper-slide {
    padding: 0 10rem 1rem;
}

.service .swiper-button-next,
.service .swiper-rtl .swiper-button-prev {
    right: 5px;
}

.service .swiper-button-prev,
.service .swiper-rtl .swiper-button-next {
    left: 5px;
}

.service .swiper-button-next,
.service .swiper-button-prev {
    transform: translateY(-50%);
    width: 7rem;
    height: 7rem;
    background: white;
    border-radius: 5rem;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    color: var(--main-color);
    border: 1px solid #f7f7f7;
}

.service .swiper-button-next:after,
.service .swiper-button-prev:after {
    font-size: 3rem;
}

.svCont {
    position: relative;
    perspective: 1200px;
    aspect-ratio: 1.45 / 1;
}

.svFront,
.svBack {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    border-radius: 2rem;
    overflow: hidden;
}

.svFront {
    transform: rotateX(0deg);
    z-index: 2;
}

.svFront img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svWrap#erp .svBack {
    background: var(--main-color);
}

.svWrap#mall .svBack {
    background: #0134FF;
}

.svBack {
    background: var(--orange-color);
    color: var(--white-color);
    padding: 5rem 6rem;
    justify-content: space-between;
    transform: rotateX(180deg);
}

.svBack:after {
    width: 39rem;
    height: 25.7rem;
    content: '';
    opacity: 0.5;
    position: absolute;
    left: -7rem;
    bottom: -1rem;
    background: url(/resources/images/common/hn_logo.svg) left bottom / cover no-repeat;
    filter: opacity(0.3) contrast(0.5) brightness(10);
    transform: rotate(320deg) translate(-50%, -10%);
    transition: transform 0.8s ease;
}

.svCont.on .svFront {
    transform: rotateX(-180deg);
}

.svCont.on .svBack {
    transform: rotateX(0deg);
}

.svCont.on .svBack:after {
    transform: rotate(320deg) translate(0, 0);
}

.svBack h3 {
    font-size: 6rem;
    font-weight: 700;
}

.svBack span {
    font-size: 3.5rem;
    font-weight: 600;
    padding-right: 0.5rem;
}

.svBack li {
    border-radius: 5rem;
    border: 1px solid #fff;
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 2rem;
    font-weight: 500;
}

.sv_mo {
    display: none;
    color: #999;
}

@media screen and (max-width: 1400px) {
    .svBack {
        padding: 4.5rem 5rem;
    }

    .svBack h3 {
        font-size: 5rem;
    }

    .svBack span {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1280px) {
    .svInner h2 {
        font-size: 3rem;
    }

    .svInner h2 b {
        font-size: 5rem;
    }

    .slideTabs {
        gap: 0.5rem;
        margin: 3rem 0 10rem;
    }

    .slideTabs li {
        height: 4.5rem;
    }

    .service .swiper-slide {
        padding: 0 0rem 1rem;
        gap: 3rem;
    }

    .service .swiper {
        overflow: unset;
    }

    .service .swiper-button-next,
    .service .swiper-button-prev {
        width: 6.5rem;
        height: 6.5rem;
        top: -20px;
    }

    .service .swiper-button-prev {
        left: 2px;
    }

    .service .swiper-button-next:after,
    .service .swiper-button-prev:after {
        font-size: 2.5rem;
    }

    .svBack {
        padding: 3.5rem 4rem;
    }

    .svBack h3 {
        font-size: 4rem;
    }

    .svBack span {
        font-size: 2.8rem;
    }

    .svBack li {
        font-size: 1.6rem;
        height: unset;
        padding: 0.3rem 1.5rem;
    }

    .svBack ul {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }

}

@media screen and (max-width: 1024px) {
    .svBack h3 {
        font-size: 3rem;
    }

    .svBack span {
        font-size: 2.4rem;
    }

    .svBack li {
        font-size: 1.6rem;
        height: unset;
        padding: 0.3rem 2rem;
    }

    .svFront,
    .svBack {
        border-radius: 1.5rem;
    }


}

@media screen and (max-width: 768px) {
    .svInner {
        padding: 10rem 0;
    }

    .service .swiper-slide {
        gap: 1rem;
    }

    .svBack {
        padding: 2.5rem 3rem;
    }

    .svBack li {
        font-size: 1.5rem;
        padding: 0.3rem 1.5rem;
    }

    .sv_mo {
        display: block;
        margin-top: 1rem;
    }
}

@media screen and (max-width: 650px) {
    .service .swiper-slide {
        flex-direction: column;
    }

    .svInner h2 {
        font-size: 2.5rem;
    }

    .svInner h2 b {
        font-size: 4rem;
    }

    .slideTabs li {
        height: 4rem;
        font-size: 1.6rem;
    }

    .service .swiper-button-next,
    .service .swiper-button-prev {
        border: 1px solid #c4ddea;
        width: 5.5rem;
        height: 5.5rem;
        top: -10px;
        box-shadow: unset;
    }

    .service .swiper-button-next:after,
    .service .swiper-button-prev:after {
        font-size: 2rem;
    }

    .svFront,
    .svBack {
        border-radius: 2rem;
    }

    .svBack {
        padding: 3.5rem 4rem;
    }

    .svBack h3 {
        font-size: 4.5rem;
    }

    .svBack span {
        font-size: 3.5rem;
    }

    .svBack li {
        font-size: 1.7rem;
        padding: 0.5rem 2rem;
    }

}

@media screen and (max-width: 420px) {
    .svInner h2 b {
        font-size: 3.5rem;
    }

    .svInner h2 {
        font-size: 2rem;
    }

    .svFront,
    .svBack {
        border-radius: 1.5rem;
    }

    .svBack {
        padding: 3rem 3.5rem;
    }

    .svBack h3 {
        font-size: 3.5rem;
    }

    .svBack span {
        font-size: 2.7rem;
    }

    .svBack li {
        font-size: 1.5rem;
    }

}



/* create */
.create {
    background: black url('/resources/images/main/create.jpg') left center / 108rem no-repeat;
    color: var(--white-color);
    height: 35rem;
}

.ctInner {
    align-items: flex-end;
    position: relative;
}

.ctInner::after {
    content: '';
    width: 65rem;
    height: 48rem;
    position: absolute;
    right: -40rem;
    top: -5rem;
    display: block;
    background: url(/resources/images/common/hn_logo.svg) left bottom / cover no-repeat;
    filter: opacity(0.1) contrast(0.5) brightness(10);
    transform: rotate(320deg);
    transition: transform 0.8s ease;
    z-index: -1;
}

.ctInner span {
    font-size: 2.5rem;
    font-weight: 600;
}

.ctInner h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.3;
}

.ctInner h2 b {
    color: var(--main-color);
}

.ctInner a {
    text-decoration: underline;
}


@media screen and (max-width: 1280px) {
    .create {
        background: black url('/resources/images/main/create.jpg') 115% center / 60rem no-repeat;
    }

    .ctInner h2 {
        font-size: 3.5rem;
    }

    .ctInner span {
        font-size: 2rem;
        font-weight: 500;
    }

    .ctInner {
        align-items: flex-start;
        text-align: left;
        width: calc(100% - 10rem);
    }

    .ctInner::after {
        display: none;
    }
}

@media screen and (max-width: 940px) {
    .create {
        background: black url('/resources/images/main/create.jpg') 130% center / 50rem no-repeat;
        height: 30rem;
    }

    .ctInner span {
        font-size: 1.9rem;
    }

    .ctInner h2 {
        font-size: 3rem;
        margin: 2rem 0;
    }

}

@media screen and (max-width: 768px) {
    .create {
        background: black url('/resources/images/main/create.jpg') 140% center / 45rem no-repeat;
        height: 30rem;
    }

    .ctInner {
        width: calc(100% - 6rem);
    }
}

@media screen and (max-width: 540px) {
    .create {
        background: black;
    }

    .ctInner::after {
        display: block;
        width: 45rem;
        height: 31rem;
        right: -20rem;
    }
}

@media screen and (max-width: 420px) {
    .ctInner {
        width: calc(100% - 4rem);
    }

    .create {
        height: 25rem;
    }

    .ctInner h2 {
        font-size: 2.5rem;
        margin: 1.5rem 0;
    }
}


/* news */
.news {
    padding: 15rem 0;
}

.news h2 {
    font-size: 5rem;
    font-weight: 900;
}

.news li {
    width: calc((100% - 6rem) / 4);
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.view_btn {
    font-size: 1.8rem;
    margin: 2rem auto 0;
    font-weight: 600;
    width: fit-content;
    border-bottom: 1px solid #1a1a1a;
}

.view_btn img {
    width: 1.8rem;
    filter: brightness(0);
}

@media screen and (max-width: 1280px) {
    .news {
        padding: 10rem 0;
    }

    .news h2 {
        font-size: 4rem;
        font-weight: 800;
    }

    .newsInner ul {
        margin-top: 5rem;
        gap: 1rem;
    }

    .newsInner ul li {
        width: calc((100% - 3rem) / 4);
    }
}

@media screen and (max-width: 768px) {

    .news h2 {
        font-size: 4rem;
    }

    .newsInner ul {
        margin-top: 4rem;
    }

    .newsInner ul li {
        width: calc((100% - 1rem) / 2);
    }

    .view_btn {
        font-size: 1.6rem;
        margin: 1rem auto 0;
    }

}

@media screen and (max-width: 420px) {
    .news h2 {
        font-size: 3.5rem;
    }

    .newsInner ul {
        gap: 0.5rem;
    }

    .newsInner ul li {
        width: calc((100% - 0.5rem) / 2);
    }

}



/* ============== //main ============== */



/* ============== sub ============== */


/* ===== sub-common ===== */
.sub {
    position: relative;
    overflow-x: hidden;
}

.sub:after {
    content: '';
    background: url('/resources/images/common/hn_logo.svg') center / cover no-repeat;
    width: 68rem;
    right: -5rem;
    top: -5rem;
    position: absolute;
    z-index: -1;
    opacity: 0.05;
    aspect-ratio: 68 / 45;
    filter: grayscale(1);
}


@media screen and (max-width: 1200px) {
    .sub:after {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .sub:after {
        display: none;
    }
}

/* compIntro */

.compIntro {
    padding: 20rem 0 0;
}

.ciHeader p {
    font-size: 3rem;
    color: #BBBBBB;
    font-weight: 600;
}

.ciHeader h2 {
    font-sizE: 7rem;
    font-weight: 900;
}

@media screen and (max-width:1024px) {
    .compIntro {
        padding: 15rem 0 0;
    }

    .ciHeader p {
        font-size: 2.5rem;
    }

    .ciHeader h2 {
        font-sizE: 6rem;
        margin: 1rem 0 5rem;
    }

    .ciTop .it_img {
        display: inline-block;
        height: 40rem;
        border-radius: 1rem;
        animation-name: moveRight;
        animation-duration: 1.1s;
        animation-fill-mode: forwards;
        transform: translateX(-20rem);
        opacity: 0;
    }
}

@media screen and (max-width:768px) {
    .ciHeader h2 {
        font-size: 5rem;
    }
}

@media screen and (max-width:480px) {
    .ciHeader p {
        font-size: 2rem;
    }

    .ciHeader h2 {
        font-size: 3.5rem;
        font-weight: 800;
    }

}



/* ===== //sub-common ===== */



/* ===== company ===== */

/* company - compIntro */

.ciTop .it_img {
    display: inline-block;
    height: 50rem;
    border-radius: 2rem;
    animation-name: moveRight;
    animation-duration: 1.1s;
    animation-fill-mode: forwards;
    transform: translateX(-20rem);
    opacity: 0;
}

.ciTop .it_img.it_left {
    background: url('/resources/images/sub/company_intro.jpg') top left / cover no-repeat;
    width: calc(75%);
    animation-delay: 0.4s;
}

.ciTop .it_img.it_middle {
    background: url('/resources/images/sub/company_intro.jpg') top center / cover no-repeat;
    width: calc(15% - 2rem);
    animation-name: moveRight2;
    animation-delay: 0.6s;
}

.ciTop .it_img.it_right {
    background: url('/resources/images/sub/company_intro.jpg') top right / cover no-repeat;
    width: calc(10% - 2rem);
    animation-name: moveRight3;
    animation-delay: 0.8s;
}

.ciInfo {
    background: #FBFBFB;
    padding: 8rem;
    line-height: 1.4;
}

.ciInfo_left span {
    color: var(--main-color);
    font-size: 1.7rem;
    font-weight: 500;
}

.ciInfo_left h3 {
    font-size: 3rem;
    font-weight: 700;
}

.ciInfo_left p {
    font-size: 1.9rem;
    color: #656565;
    font-weight: 500;
}

.ciInfo li {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 10rem;
    padding: 0.5rem 2rem;
    font-weight: 500;
}

.ciInfo_right p {
    font-size: 2rem;
    font-weight: 600;
}

.cicon img {
    height: 9rem;
}

@keyframes moveRight {
    from {
        opacity: 0;
        transform: translateX(-20rem);
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes moveRight2 {
    from {
        opacity: 0;
        transform: translateX(-20rem);
    }

    to {
        transform: translateX(0);
        opacity: 0.6;
    }
}

@keyframes moveRight3 {
    from {
        opacity: 0;
        transform: translateX(-20rem);
    }

    to {
        transform: translateX(0);
        opacity: 0.4;
    }
}

@media screen and (max-width:1280px) {
    .ciInfo {
        padding: 5rem;
        flex-direction: column;
        text-align: center;
    }

    .ciInfo_left ul {
        justify-content: center;
    }

    .ciInfo_right {
        margin-top: 5rem;
    }
}

@media screen and (max-width:1024px) {
    .ciTop {
        gap: 1rem;
    }

    .ciTop .it_img {
        height: 40rem;
        border-radius: 1rem;
    }

    .ciTop .it_img.it_middle {
        width: calc(15% - 1rem);
    }

    .ciTop .it_img.it_right {
        width: calc(10% - 1rem);
    }
}

@media screen and (max-width:768px) {


    .ciInfo_left h3 {
        font-size: 2.5rem;
    }

    .ciInfo_left p {
        font-size: 1.7rem;
    }
}

@media screen and (max-width:650px) {

    .company .ciHeader h2 {
        margin: 1rem 0 3rem;
    }

    .ciTop .it_img.it_middle,
    .ciTop .it_img.it_right {
        display: none;
    }

    .ciTop .it_img.it_left {
        height: 25rem;
        width: 100%;
    }

    .ciInfo_left br {
        display: none;
    }

    .ciInfo_right {
        gap: 3rem;
    }

    .cicon img {
        height: 7rem;
    }

    .ciInfo_right p {
        font-size: 1.8rem;
    }
}

@media screen and (max-width:480px) {
    .company .ciHeader h2 {
        margin: 1rem 0 5rem;
    }

    .ciInfo {
        padding: 4rem 3.5rem;
        text-align: left;
        align-items: flex-start;
    }

    .ciInfo_left ul {
        justify-content: flex-start;
    }

}

@media screen and (max-width:375px) {

    .cicon img {
        height: 6rem;
    }

    .ciInfo_right {
        gap: 2rem;
    }
}

/* talent */
.talent {
    padding: 20rem 0;
}

.talent h2 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.5;
}

.talentWrap h3 {
    font-size: 3rem;
}

.talentWrap li {
    padding: 0.5rem 2rem;
    border-radius: 3rem;
    color: #585858;
    font-weight: 500;
    border: 1px solid #ddd;
}

@media screen and (max-width: 1400px) {

    .workCont {
        height: unset;
        padding: 5rem 3rem;
        justify-content: flex-start;
    }

    .workCont:hover {
        padding: 5rem;
    }

    .company .workCont p br {
        display: none;
    }
}

@media screen and (max-width: 1200px) {

    .workCont,
    .workCont:hover {
        padding: 3rem 3.5rem;
    }

}

@media screen and (max-width: 940px) {
    .talent {
        padding: 15rem 0;
    }

    .talent h2 {
        font-size: 4rem;
    }

    .workCont,
    .workCont:hover {
        background: #f5f5f5;
        padding: 2rem 3rem 3rem;
        border-radius: 1.5rem;
    }

    .workWrap {
        gap: 1rem;
    }

    .workWrap::before {
        display: none;
    }

    .workCont {
        width: calc((100% - 1rem) / 2);
    }

    .workCont p {
        font-size: 1.7rem;
        margin-top: 2rem;
    }

    .talentWrap h3 {
        margin-top: 1rem;
        font-size: 2.5rem;
    }

    .talentWrap li {
        border-radius: 0.5rem;
    }

    .workCont i {
        justify-content: flex-start;
        padding-left: 0.5rem;
    }
}

@media screen and (max-width: 768px) {
    .talent {
        padding: 10rem 0;
    }

    .workWrap {
        margin-top: 3rem;
    }

    .talent h2 {
        font-size: 3.5rem;
        font-weight: 800;
    }

}

@media screen and (max-width: 650px) {
    .workCont {
        width: 100%;
    }

    .talentWrap h3 {
        margin-top: 0;
    }
}


/* workCate */
.wcInner {
    padding: 0 0 15rem;
}

.wcCont {
    width: calc((100% - 6rem) / 3);
    background: var(--orange-color);
    color: var(--white-color);
    padding: 5rem 6rem;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    height: 60rem;
}

.wcCont:nth-child(2) {
    background: var(--main-color);
}

.wcCont:nth-child(3) {
    background: #0134FF;
}

.wcCont:after {
    width: 39rem;
    height: 25.7rem;
    content: '';
    opacity: 0.5;
    position: absolute;
    right: -8rem;
    top: 2rem;
    background: url(/resources/images/common/hn_logo.svg) left bottom / cover no-repeat;
    filter: opacity(0.3) contrast(0.5) brightness(10);
    transform: rotate(320deg);
    transition: transform 0.8s ease;
    z-index: -1;
}

.wcCont h3 {
    font-size: 4.5rem;
    font-weight: 700;
}

.wcCont span {
    font-size: 3.5rem;
    font-weight: 600;
    padding-right: 0.5rem;
}

.wcCont li {
    border-radius: 5rem;
    border: 1px solid #fff;
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 2rem;
    font-weight: 500;
}

@media screen and (max-width: 1400px) {
    .wcWrap {
        gap: 2rem;
    }

    .wcCont {
        padding: 4rem 4.5rem;
        height: 50rem;
        width: calc((100% - 4rem) / 3)
    }

    .wcCont h3 {
        font-size: 3.5rem;
    }

    .wcCont span {
        font-size: 3rem;
    }

    .wcCont li {
        height: 3rem;
        font-size: 1.8rem;
    }

    .workCate .svBottom ul {
        gap: 0.5rem;
    }
}

@media screen and (max-width: 1024px) {
    .wcWrap {
        gap: 1rem;
    }

    .wcCont {
        width: 100%;
        height: unset;
    }

    .wcCont .svBottom {
        margin-top: 5rem;
    }

    .wcCont span {
        font-size: 2.8rem;
    }

    .wcCont li {
        font-size: 1.6rem;
    }

}

@media screen and (max-width: 768px) {
    .wcInner {
        padding: 0 0 10rem;
    }

    .wcCont {
        padding: 3.5rem 4rem;
    }

    .workCate .svBottom ul {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 540px) {
    .wcCont h3 {
        font-size: 3rem;
    }

    .wcCont span {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .wcCont {
        padding: 3rem;
    }
}


/* ===== //company ===== */


/* ===== contact ===== */

.input-content {
    gap: 3rem 2rem;
}

.item-tit {
    font-size: 2.2rem;
    font-weight: 600;
}

.item-tit.required {
    position: relative;
}

.item-tit.required:after {
    content: '*';
    color: red;
    display: inline-block;
    margin-left: 0.5rem;
}

.w-5 {
    width: calc((100% - 2rem) / 2);
}

.contactForm {
    padding: 10rem 0 15rem;
}

.contact-message {
    margin-bottom: 3rem;
    padding: 1.8rem 2rem;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    line-height: 1.6;
}

.contact-message.success {
    background: #edf8f0;
    border: 1px solid #9fd6ab;
    color: #216837;
}

.contact-message.error {
    background: #fff3f1;
    border: 1px solid #f0b7ad;
    color: #b03a2e;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn-cancel {
    width: 20rem;
    font-size: 2rem;
    background: #eee;
    height: 6rem;
    font-weight: 600;
    border-radius: 0.5rem;
    color: #777;
}

.btn-submit {
    width: 20rem;
    font-size: 2rem;
    color: var(--white-color);
    background: var(--main-color);
    height: 6rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

@media screen and (max-width:768px) {
    .input-content {
        gap: 2rem 1.5rem;
    }

    .item-tit {
        font-size: 2rem;
    }

    input.item-input,
    select.item-input {
        margin-top: 1rem;
        height: 5.5rem;
    }

    .contactForm {
        padding: 3rem 0 15rem;
    }

    .contact-message {
        font-size: 1.6rem;
    }
}

@media screen and (max-width:540px) {
    .input-content {
        gap: 2rem;
    }

    .w-5 {
        width: 100%;
    }

    .contactForm {
        padding: 0 0 10rem;
    }

    .contactForm .btn-wrap {
        margin-top: 3rem;
    }

    .btn-submit,
    .btn-cancel {
        font-size: 1.8rem;
    }
}

@media screen and (max-width:375px) {

    .item-tit,
    input.item-input {
        font-size: 15px;
    }

}

/* ===== //contact ===== */



/* ===== project ===== */

.projectTabs li {
    height: 5rem;
    padding: 0 3rem;
    border-radius: 3rem;
    transition: 0.3s;
    cursor: pointer;
    background: #f4f4f4;
    font-size: 1.7rem;
}

.projectTabs li:hover {
    background: #ddd;
}

.projectTabs li.active {
    background: #1a1a1a;
    color: var(--white-color);
}

.projectList {
    padding: 0 0 15rem;
}

.prContent {
    width: calc((100% - 6rem) / 3);
    overflow: hidden;
    position: relative;
}

.prContent.prAdd .pr_txt {
    opacity: 1;
    background: #eee;
}

.prContent.prAdd .pr_txt span {
    color: #1a1a1a;
}

.prContent.prAdd .pr_txt a {
    border: 1px solid #999;
    color: #333;
}

.prContent.prAdd .pr_txt h3 {
    color: #1a1a1a;
    font-weight: 700;
}

.prContent.prAdd .pr_txt a img {
    filter: brightness(0);
}

.prContent.prAdd .pr_logo {
    width: 10rem;
    height: auto;
    opacity: 0.5;
    filter: opacity(0.7) grayscale(1);
}

.pr_img {
    overflow: hidden;
    aspect-ratio: 1;
}

.pr_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.pr_img.left img {
    object-position: left;
}

.pr_txt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white-color);
    padding: 5rem 4.5rem;
    opacity: 0;
}

.prContent:hover .pr_txt {
    transition: 0.5s;
    opacity: 1;
}

.pr_txt span {
    font-size: 2rem;
    color: #ddd;
    font-weight: 500;
}

.pr_txt h3 {
    font-size: 4rem;
    font-weight: 600;
}

.pr_txt a {
    border: 1px solid #eee;
    height: 4rem;
    width: 15rem;
    border-radius: 10rem;
    gap: 0.5rem;
}

.pr_txt a img {
    width: 1.5rem;
}


.pr_txt a:hover {
    background: #fff;
    transition: 0.3s;
    color: #2a2a2a;
    font-weight: 600;
    opacity: 1;
}

@media screen and (max-width: 1280px) {
    .pr_cate {
        gap: 2rem;
    }

    .prContent {
        width: calc((100% - 4rem) / 3);
    }

    .prContent.prAdd .pr_txt a {
        border: unset;
        border-bottom: 1px solid #999;
        border-radius: 0;
        padding: 0;
        width: fit-content;
        height: auto;
    }

    .prContent.prAdd .pr_txt {
        padding: 2rem 2.5rem 3rem;
    }

    .prContent.prAdd .pr_txt h3 {
        font-size: 3rem;
    }

    .prContent.prAdd .pr_txt span {
        font-size: 15px;
        margin: 1rem 0 0.5rem;
    }

    .prContent.prAdd .pr_logo {
        width: 7rem;
    }

    .prContent.prAdd .pr_txt a {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 1024px) {
    .pr_cate {
        gap: 1rem;
    }

    .prContent {
        width: calc((100% - 2rem) / 3);
        overflow: initial;
    }

    .project .ciHeader h2 {
        margin: 1rem 0 3rem;
    }

    .projectTabs {
        margin: 0 0 7rem;
    }

    .pr_txt {
        position: unset;
        background: transparent;
        color: #1a1a1a;
        padding: 1.5rem 0.5rem;
        width: auto;
        height: auto;
        opacity: 1;
    }

    .prContent.prAdd .pr_txt {
        position: absolute;
        padding: 0 2.5rem 3rem;
        aspect-ratio: 1;
        width: 100%;
        height: 100%;
    }

    .prContent.prAdd .pr_logo {
        width: 5rem;
    }

    .prContent.prAdd .pr_txt h3 {
        font-size: 2.5rem;
    }

    .prContent.prAdd .pr_txt a {
        margin-top: 0;
    }

    .prContent.prAdd .pr_img {
        background: #eee;
    }

    .pr_txt span {
        color: #999;
        font-size: 1.6rem;
    }

    .pr_txt h3 {
        font-size: 2.5rem;
    }

    .pr_txt a {
        margin-top: 1rem;
        width: min-content;
        height: auto;
        border: 0;
        border-bottom: 1px solid #aaa;
        border-radius: 0;
    }

    .pr_txt a img {
        filter: brightness(0);
        width: 1.5rem;
    }

}

@media screen and (max-width: 768px) {
    .projectList {
        padding: 0 0 10rem;
    }

    .prContent {
        width: calc((100% - 1rem) / 2);
    }

    .pr_txt h3 {
        font-size: 2rem;
    }

    .pr_txt a {
        margin-top: 0.5rem;
    }

    .prContent.prAdd .pr_txt {
        top: 50%;
        transform: translateY(-50%);
    }

    .prContent.prAdd .pr_logo {
        display: none;
    }

}

@media screen and (max-width: 420px) {
    .prContent {
        width: 100%;
    }

    .prContent.prAdd .pr_logo {
        display: block;
        width: 8rem;
    }

    .prContent.prAdd .pr_txt h3 {
        font-size: 3rem;
    }
}


/* 모달창 */
.loginModal {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 999;
}

.loginModal.open {
    display: flex;
}

.lmInner {
    max-width: 50rem;
    background: white;
    padding: 3rem 3rem 2.5rem;
    border-radius: 1rem;
}

.lmInner h3 {
    font-size: 3rem;
    font-weight: 800;
}

.lmInner .item-input {
    height: 5rem;
}

.lmInner label {
    font-size: 1.7rem;
}

.im_ex {
    color: #999;
    font-size: 1.5rem;
    font-weight: 400;
}

.btn-close {
    background: #eee;
    height: 5rem;
    border-radius: 0.5rem;
    font-size: 1.7rem;
    font-weight: 500;
}

.btn-login {
    background: var(--main-color);
    color: white;
    height: 5rem;
    border-radius: 0.5rem;
    font-size: 1.7rem;
    font-weight: 500;
}

@media screen and (max-width: 640px) {
    .lmInner {
        padding: 2.5rem 2.5rem 2rem;
    }

    .lmInner input.item-input,
    .lmInner select.item-input {
        margin-top: 0;
    }

    .im_form {
        gap: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .lmInner {
        padding: 2.5rem 2rem 2rem;
        border-radius: 0.5rem;
    }

}

/* ===== //project ===== */


/* ============== //sub ============== */