@charset "UTF-8";

/***** main_common *****/
section {
    min-height: 850px;
    padding: 11.25rem 80px;
}
section .title {
    margin-bottom: 150px;
    position: relative; z-index: 1;
}
section .title h2 {font-weight: 700; font-size: 30px; line-height: 1.4;}
section strong {
    display: block;
    margin-bottom: 40px;
    font: 900 84px/1.2 'Noto Sans';
    position: relative; z-index: 1;
}
section p {
    font-size: 30px; line-height: 1.6;
    position: relative; z-index: 1;
}
section p + p {margin-top: 25px;}


/* Media Query */
@media (max-width: 1600px) {
    section {padding-left: 5vw; padding-right: 5vw;}
    section .title {margin-bottom: 9.4rem;}
    section .title h2 {font-size: 1.75rem;}
    section strong {
        margin-bottom: 2.5rem;
        font-size: 5rem;
    }
    section p {font-size: 1.625rem;}
    section p + p {margin-top: 1.5rem;}
}

@media (max-width: 1280px) {
    section {
        min-height: auto;
        padding-left: 4vw; padding-right: 4vw;
    }
    section .title h2 {font-weight: 500;}
}

@media (max-width: 1024px) {
    section strong {font-size: 4.5rem;}
    section p {font-size: 1.375rem;}
}

@media (max-width: 768px) {
    section {padding-left: 30px; padding-right: 30px;}
}

@media (max-width: 640px) {
    section {
        padding: 120px 20px 90px 20px;
        position: relative; z-index: 1;
    }

    section .title {display: none;}
    section strong {font-size: 48px;}
}
/***** // main_common *****/



/***** visual *****/
.symbol {position: fixed; left: calc(50% + 140px); left: auto; right: 140px; bottom: -155px;}

.visual {
    padding-top: 280px; padding-bottom: 300px;
    background-color: var(--black);
}
.visual.fixed {
    width: 100%;
    position: fixed; left: 0; top: 0; z-index: 10;
}
.visual .inner {position: relative; z-index: 10;}
.visual .typo {
    margin-bottom: 190px;
    position: relative;
}
.visual .typo2 {display: none;}
.visual .typo span {
    display: block;
    height: 200px;
    font: 900 180px/200px 'Noto Sans'; color: #fff;
}
.visual .typo span:nth-of-type(2n-1) {margin-bottom: 20px;}
.visual .typo span.t3 {
    position: absolute; left: 0; top: 220px;
    opacity: 0;
}

.visual .desc {
    padding-left: 15px;
    margin-bottom: 40px;
}
.visual .desc p {
    font: 400 30px/1.6 'Noto Sans'; color: var(--gray);
    opacity: 0.6;
}
.visual .desc p + p {margin-top: 0;}
.symbol2 {display: none;}


/* Media Query */
@media (max-width: 1600px) {
    .symbol {
        width: 38rem;
        right: 8rem; bottom: -9.8rem;
    }

    .visual {padding-top: 17.5rem; padding-bottom: 18.75rem;}
    .visual .typo {margin-bottom: 11.75rem;}
    .visual .typo span {
        height: 12.5rem;
        font-size: 11.25rem; line-height: 12.5rem;
    }
    .visual .typo span:nth-of-type(2n-1) {margin-bottom: 1.25rem;}
    .visual .typo span.t3 {top: 13.75rem;}

    .visual .desc {
        padding-left: 1rem;
        margin-bottom: 5rem;
    }
    .visual .desc p {font-size: 1.75rem;}
}

@media (max-width: 1280px) {
    .symbol {
        width: 32rem;
        right: 4vw;
    }

    .visual {padding-top: 17rem; padding-bottom: 18rem;}
    .visual .typo {margin-bottom: 10rem;}
    .visual .typo span {
        height: 12rem;
        font-size: 11rem; line-height: 12rem;
    }
    .visual .typo span:nth-of-type(2n-1) {margin-bottom: 1rem;}
    .visual .typo span.t3 {top: 13rem;}

    .visual .desc p {font-size: 1.75rem;}
}

@media (max-width: 768px) {
    .symbol {
        width: 28rem;
        right: 3vw;
    }

    .visual .typo span {
        height: 11rem;
        font-size: 9rem; line-height: 10rem;
    }
    .visual .typo span:nth-of-type(2n-1) {margin-bottom: 0;}
    .visual .typo span.t3 {top: 11rem;}
}

@media (max-width: 640px) {
    .symbol {display: none;}

    .visual {
        height: 100dvh;
        padding-top: 120px; padding-bottom: 120px;
        z-index: 0;
    }
    .visual .typo {margin-bottom: 0;}
    .visual .typo span {
        height: 18vw;
        font-weight: 300; font-size: 16.2vw; line-height: 18vw;
    }
    .visual .typo span.t3 {
        width: 100%;
        top: 18vw;
    }
    .visual .typo span:nth-of-type(2n-1) {margin-bottom: 0;}
    .visual .desc {display: none;}

    .symbol2 {
        display: block;
        width: 65vw;
        position: fixed; right: 0; bottom: 0;
        opacity: 0;
    }
}
/***** // visual *****/





/***** about *****/
.about {
    padding-top: 280px; padding-bottom: 240px;
    color: var(--white);
    background-color: var(--point);
    overflow: hidden;
}
.about.on {
    position: relative;
    transform: translate(0,0);
}
.about .inner {display: flex; flex-direction: column;}
.about strong {margin-bottom: 80px;}
.about .txt {
    align-self: center;
    padding-left: 150px;
}
.about .txt p.desc {font-weight: 300; font-size: 24px;}


/* Media Query */
@media (max-width: 1600px) {
    .about {padding-top: 17.5rem; padding-bottom: 15rem;}
    .about strong {margin-bottom: 5rem;}
    .about .txt {padding-left: 4%;}
    .about .txt p.desc {font-size: 1.25rem;}
}

@media (max-width: 1024px) {
    .about {padding-top: 17.5rem; padding-bottom: 15rem;}
    .about strong {margin-bottom: 5rem;}
    .about .txt {
        align-self: flex-start;
        padding-left: 0;
    }
    .about .txt p.desc {font-size: 1.25rem;}
}

@media (max-width: 640px) {
    .about {padding-top: 200px; padding-bottom: 200px;}
    section.about strong {display: none;}
    .about .txt {align-self: center;}
    .about .txt p {
        margin-top: 40px;
        font-size: 22px; text-align: center;
    }
    .about .txt p.desc {font-size: 15px; line-height: 1.7;}
    .about .txt p span {display: none;}
}
/***** // about *****/





/***** service *****/
.service {
    padding-top: 280px; padding-bottom: 40px;
    background-color: var(--sky);
}
.service p {margin-bottom: 120px;}
.service_list {
    display: flex; flex-wrap: wrap;
    width: 100%;
    position: relative;
}
.service_list::before {content: "";
    width: 100%; height: 1px;
    background-color: var(--border);
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
}
.service_list li {
    width: 50%;
    position: relative;
    overflow: hidden;
}
.service_list li .txt {
    display: block;
    width: 100%; height: 100%;
    padding: 80px 80px 150px 80px;
    position: relative; z-index: 2;
    transition: all 0.5s cubic-bezier(.42,0,.58,1);
    cursor: none;
}
.service_list li .txt strong {
    margin-bottom: 100px;
    font-size: 45px; line-height: 1.2;
}
.service_list li .txt strong span {
    display: block;
    margin-bottom: 20px;
    font: 300 20px/1.7 'Noto Sans KR'; letter-spacing: -0.2px; color: var(--gray);
}
.service_list li .txt p {
    margin-top: 0;
    font-weight: 300; font-size: 16px; line-height: 1.6;
}
.service_list li .txt p span + span::before {
    content: "/";
    margin: 0 5px;
}

.service_list li .bg {
    width: 0; height: 100%;
    position: absolute; left: -50%; top: 0; z-index: 1;
    transform: skewX(-45deg);
    transition: all 0.4s cubic-bezier(.42,0,.58,1);
}
.service_list li .line {
    width: 100%; height: 100%;
    position: absolute;
}
.service_list li .line_l {
    border: 1px solid transparent;
    top: 0; left: 0;
}
.service_list::after {content: "";
    width: 1px; height: 100%;
    background-color: var(--border);
    position: absolute; left: 50%; top: 0;
    transform: translateX(-50%);
}


/* service_list:hover */
.service_list li:hover .txt {color: var(--white);}
.service_list li:hover .txt::before {
    opacity: 1;
    animation: arrow 0.8s ease-in alternate infinite;
}
.service_list li:hover .txt strong span {color: var(--white);}
.service_list li:hover .bg {
    width: 200%;
    background-color: var(--point);
}

@keyframes arrow {
    to {transform: translate(10px, -10px);}
}


/* Media Query */
@media (max-width: 1600px) {
    .service {padding-top: 17.5rem; padding-bottom: 40px;}
    .service p {margin-bottom: 7.5rem;}
    .service_list li .txt {padding: 5rem 5rem 8rem 5rem;}
    .service_list li .txt strong {
        margin-bottom: 6.25rem;
        font-size: 2.75rem;
    }
    .service_list li .txt strong span {
        margin-bottom: 1.25rem;
        font-size: 1.25rem; 
    }
    .service_list li .txt p {font-size: 1rem;}
}

@media (max-width: 1280px) {
    .service_list li .txt {padding: 4rem 4rem 5rem 4rem;}
    .service_list li .txt strong {font-size: 2.5rem;}
}

@media (max-width: 1024px) {
    .service_list li .txt {
        padding: 50px 30px;
        cursor: default;
    }
    .service_list li .txt strong {
        margin-bottom: 50px;
        font-weight: 700; letter-spacing: -1px;
    }
    .service_list li .txt strong span {
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
    }
    .service_list li .txt p {
        margin-bottom: 0;
        font-size: 1.25rem; line-height: 1.9;
    }
    .service_list li .txt p span {display: block;}
    .service_list li .txt p span + span::before {display: none;}
    .service_list li .txt p br {display: none;}

    /* service_list:hover */
    .service_list li:hover .txt {color: var(--black);}
    .service_list li:hover .txt strong span {color: var(--gray);}
    .service_list li:hover .bg {width: 0;}
}

@media (max-width: 640px) {
    .service {padding-top: 120px; padding-bottom: 90px;}
    .service .inner > p {display: none;}
    .service_list::before,
    .service_list::after {display: none;}
    .service_list li {width: 100%;}
    .service_list li + li {border-top: 1px solid var(--border);}
    .service_list li .txt {padding: 40px 16px;}
    .service_list li .txt strong {font-size: 28px;}
    .service_list li .txt strong span {
        margin-bottom: 6px;
        font-size: 15px;
    }
    .service_list li .txt p {font-weight: 400; font-size: 14px;}
}
/***** // service *****/





/***** partners *****/
.partners {
    padding-top: 280px;
    background-color: var(--white);
}
.partners p {margin-bottom: 120px;}
.partners_list {
    display: flex; flex-direction: column; align-items: center; gap: 48px;
    width: 100%;
}
.partners_list ul {
    display: flex; align-items: center; justify-content: space-between;
    gap: 80px;
    width: 100%; max-width: 1440px;
}
.partners_list ul li {cursor: none;}


/* Media Query */
@media (max-width: 1600px) {
    .partners {padding-top: 17.5rem;}
}

@media (max-width: 1280px) {
    .partners {padding-top: 17rem;}
    .partners_list ul {gap: 60px;}
}

@media (max-width: 1024px) {
    .partners_list ul {gap: 35px;}
}

@media (max-width: 768px) {
    .partners {display: none;}
}
/***** // partners *****/





/***** project *****/
.project {
    padding-bottom: 350px;
    background-color: var(--white);
}
.project .title + strong {margin-bottom: 140px;}
.project_box {
    display: flex; 
    margin-bottom: 120px;
    position: relative;
}
.project_box > .tit {
    width: 32%;
    margin-right: 40px;
}
.project_box > .tit > span {
    display: block;
    padding-left: 5px;
    margin-bottom: 10px;
    line-height: 300px; font-size: 16px; line-height: 1.6; color: var(--point);
}
.project_box > .tit > strong {
    margin-bottom: 30px;
    font: 900 56px/1.3 'Noto Sans Kr'; letter-spacing: -1px;
}
.project_box > .tit > strong span {display: block;}
.project_box > .tit p {font-size: 18px; line-height: 1.4;}
.project_box .swiper {
    width: 68%; height: 660px;
    overflow: hidden;
}
.project_box .swiper-slide {width: 100%;}
.project_box .swiper-slide a {
    display: block;
    width: 100%; height: 100%;
    cursor: none;
}
.project_box .swiper-slide a img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.project_box .swiper-button-next,
.project_box .swiper-button-prev {
    width: 45px; height: 45px;
    border-radius: 50%;
    background-color: var(--sky);
    background-image: none;
    right: auto; top: auto; bottom: 0;
    cursor: none;
}
.project_box .swiper-button-next::before,
.project_box .swiper-button-prev::before {content: "";
    width: 8px; height: 12px;
    background: url('../assets/img/ico_swiper.svg') no-repeat center / contain;
    position: absolute; left: 20px; top: 50%;
    transform: translateY(-50%);
}
.project_box .swiper-button-prev::before {
    left: 18px;
    transform: translateY(-50%) rotate(180deg);
}
.project_box .swiper-button-prev {left: 0;}
.project_box .swiper-button-next {left: 56px;}
.project_box .swiper-button-next::after,
.project_box .swiper-button-prev::after {font-size: 0;}
.project_box .swiper-button-disabled {
    background-color: #f6f7fa;
    opacity: 1 !important;
}
.project_box .swiper-button-disabled::before {
    background-image: url('../assets/img/ico_swiper_disabled.svg');
    transform: translateY(-50%) rotate(180deg);
}
.project_box .swiper-button-prev.swiper-button-disabled::before {transform: translateY(-50%);}
.project_box .pagination {
    width: 30%; height: 162px; 
    font: 500 20px/1.5 'Noto Sans Kr'; text-align: left; color: #BABABA;
    position: absolute; left: 0; top: calc(100% - 235px); 
    overflow: hidden;
}
.project_box .swiper-pagination {
    display: flex; flex-direction: column; gap: 14px;
    height: 100%; 
    bottom: 0 !important;
    transition: all 0.3s;
}
.project_box .swiper-pagination.on {bottom: 88px !important;}
.project_box .swiper-pagination .swiper-pagination-bullet {
    width: 100%; height: initial;
    border-radius: 0;
    text-align: left; 
    background-color: transparent;
    opacity: 1;
    cursor: none;
}
.project_box .swiper-pagination .swiper-pagination-bullet-active {font-weight: 700; color: var(--point);}
.project_list {display: none;}


/* Media Query */
@media (max-width: 1600px) {
    .project {padding-bottom: 20rem;}
    .project_box {margin-bottom: 7.5rem;}
    .project_box > .tit {margin-right: 30px;}
    .project_box > .tit > span {
        margin-bottom: 8px;
        font-size: 15px;
    }
    .project_box > .tit strong {
        margin-bottom: 1.8vw;
        font-size: 3.5vw;
    }
    .project_box > .tit p {font-size: 16px;}
    .project_box .swiper {height: 41vw;}
    .project_box .pagination {
        height: 10.5vw;
        font-size: 1.375vw;
        top: calc(100% - 16vw);
    }
    .project_box .swiper-pagination {gap: 0.75vw;}
    .project_box .swiper-pagination.on {bottom: 5.625vw !important;}
}

@media (max-width: 1280px) {
    .project .forWeb {display: none;}
    .project .forMobile {display: block;}

    .project {padding-bottom: 16rem;}

    .project_list {display: flex; flex-wrap: wrap; gap: 80px 30px;}
    .project_list li {width: calc(50% - 15px);}
    .project_list li a {
        display: flex; flex-direction: column; gap: 24px;
        width: 100%; height: 100%;
        cursor: none;
    }
    .project_list li .txt .tag {
        display: flex;
        margin-bottom: 12px;
        font-weight: 300; font-size: 15px; line-height: 1.5; color: var(--gray);
    }
    .project_list li .txt .tit {
        margin-bottom: 2px;
        font-weight: 700; font-size: 19px; line-height: 1.5; color: var(--point);
    }
    .project_list li .txt .desc {font-weight: 600; font-size: 23px; line-height: 1.4;}
    .project_list li .txt .desc span {display: none;}
    .project_list li .txt .desc br {display: none;}
    .project_list li .img {
        order: -1;
        height: 400px;
    }
    .project_list li .img img {
        width: 100%; height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 1024px) {
    .project strong.forMobile {margin-bottom: 7.5rem;}

    .project_list {gap: 80px 20px;}
    .project_list li {width: calc(50% - 10px);}
    .project_list li a {cursor: pointer;}
    .project_list li .txt .tag {font-size: 14px;}
    .project_list li .txt .tit {
        margin-bottom: 4px;
        font-size: 17px;
    }
    .project_list li .txt .desc {font-size: 20px;}
}

@media (max-width: 768px) {
    .project_list {gap: 80px;}
    .project_list li {width: 100%;}
    .project_list li a {gap: 16px;}
    .project_list li .txt .tag {font-size: 13px;}
    .project_list li .txt .tit {
        margin-bottom: 4px;
        font-size: 16px;
    }
    .project_list li .txt .desc {font-size: 19px;}
}

@media (max-width: 640px) {
    .project .btn {display: flex;}

    .project strong.forMobile {margin-bottom: 60px;}

    .project_box {margin-bottom: 80px;}
    .project_list li .img {height: 380px;}
}
/***** // project *****/





/***** hiring *****/
.hiring {
    color: var(--white);
    background-color: var(--point);
    background: var(--point) url(../assets/img/hiring_circle.png) no-repeat right 6% top -18vw / 50%;
    overflow: hidden;
    position: relative;
}
.hiring p {
    margin-bottom: 80px;
    font: 48px/1.2 'Gmarket';
}
.hiring .btn {margin: 0;}
.hiring_people {
    width: 46vw; max-width: 950px;
    position: absolute; right: 0; bottom: -1.2vw;
}


/* Media Query */
@media (max-width: 1600px) {
    .hiring {background-position: right 2vw top -22vw; background-size: 56%;}
    .hiring p {
        margin-bottom: 5rem;
        font-size: 3rem;
    }
    .hiring_people {width: 48vw;}
}

@media (max-width: 1280px) {
    .hiring {background-position: right -10vw top -18vw; background-size: 65%;}
}

@media (max-width: 1024px) {
    .hiring {
        padding-bottom: 14rem;
        background-position: right -18vw bottom -28vw; background-size: 74%;
    }
    .hiring .title {margin-bottom: 4rem;}
    .hiring p {
        margin-bottom: 5rem;
        font-size: 3rem;
    }
    .hiring_people {width: 46vw;}
}

@media (max-width: 640px) {
    .hiring {
        padding-bottom: 110vw;
        background-position: right -18vw bottom -42vw; background-size: 140%;
    }
    .hiring p {
        margin-bottom: 50px;
        font-size: 34px; line-height: 1.4; text-align: center;
    }
    .hiring .btn {
        display: flex;
        margin: 0 auto;
        position: relative; z-index: 10;
    }
    .hiring_people {
        width: 95%;
        bottom: -1.5%;
    }
}
/***** // hiring *****/