@charset "utf-8";
/* 프로젝트 내용 시작 */

.main_visual {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: end;
    position: relative;
    overflow: hidden;
}
.main_visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hidden {
    /* overflow: hidden; */
    position: absolute;
    max-width: 1800px;
    width: calc(100% - 120px);
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
}
.moving-text {
    position: relative;
    left: 20%;
    max-width: 1080px;
    width: 56.25vw;
    font-size: 10rem;
    font-weight: 700;
    color: #000;
    transition: transform 0.3s ease, top 0.3s ease, color 0.3s ease;
    animation: reveal 3s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.moving-text img {
    width: 100%;
}
@keyframes reveal {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
}

.news_section {background-color: #fff;}


.counter_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    color: #fff;
    position: relative;
    padding-bottom: 60px;
    z-index: 1;
}


.counter_wrap .counter-container {
    display: flex;
    justify-content: end;
    margin-left: auto;
}
.counter_wrap .counter-container .counter-item {
    width: 286px;
    display: flex;
    flex-direction: column;
    text-align: end;
}
.counter_wrap .counter-container .counter-item span {
    font-size: 5.625rem;
    margin-bottom: 20px;
    font-family: 'Bricolage Grotesque-Bold';
}
.counter_wrap .counter-container .counter-item strong {
    position: relative;
    font-size: 9rem;
    padding-right: 5rem;
}
.counter_wrap .counter-container .counter-item strong::after {
    content: '+';
    position: absolute;
    top: -20px;
    right: 0;
}


.inner {
    max-width: 1800px;
    width: calc(100% - 120px);
    margin: 0 auto;
}
.inner.list_wrap {
    margin: 12.5rem auto 12rem;
}
.title_wrap {
    padding: 20rem 0 12rem;
}
.title_wrap h3 {
    font-size: 9rem;
    padding-bottom: 6rem;
    font-family: 'Bricolage Grotesque-Bold';
}

.list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 6rem;
}
.list .item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 48.5%;
    max-height: 590px;
    height: 32vw;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: end;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}
.list .item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    transition: all 0.2s linear;
    overflow: hidden;
}
.list .item .item_title {
    font-size: 3rem;
    font-family: 'Pretendard-Medium';
    letter-spacing: calc(-0.05 * 3rem);
    position: relative;
    z-index: 2;
    bottom: 0;
    transition: all 0.2s linear;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}
.list .item .item_title h5:nth-of-type(1) {
    font-size: 1.5rem;
    font-family: 'Pretendard-Medium';
}
.list .item .item_title p {
    font-size: 20px;
    margin-top: 10px;
}
/* .list .item:hover::after,
.list .item:hover .item_title {
    bottom: 0;
} */
/* 프로젝트 내용 끝 */



/* 반응형 */
@media screen and (max-width: 1230px) {
    html {
        font-size: 80%;
    }
    .counter_wrap .counter-container .counter-item {
        width: 200px;
    }
    .counter_wrap .counter-container .counter-item span {
        font-size: 18px;
    }
    /* 프로젝트 */
    .news_section .inner {
        width: calc(100% - 60px);
    }
    .button_wrap {
        justify-content: center;
    }
    .list .item .tag span {
        font-size: 14px;
    }
    .list .item::after,
    .list .item .tag,
    .list .item .item_title {
        bottom: 0;
    }
    .list .itema:hover::after,
    .list .item:hover .tag,
    .list .item:hover .item_title {
        bottom: -110%;
    }
    .more {
        font-size: 28px;
    }
    .list .item .tag span {
        padding: 7px 12px;
    }
}

@media screen and (max-width: 960px) {
    .counter_wrap {
        align-items: start;
        padding-top: 120px;
    }
    .main_visual .hidden {
        /* width: 80%; */
    }
    /* 프로젝트 */
    .title_wrap h3 {
        font-size: 35px;
    }
    .button_wrap {
        gap: 12px;
        flex-wrap: wrap;
    }
    .button_wrap button {
        font-size: 14px;
        padding: 7px 16px;
    }
    .list .item {
        height: 70vw;
        width: 100%;
    }
    .list .item .tag {
        gap: 5px;
    }
    .list .item .tag span {
        padding: 5px 10px;
    }
    .more {
        padding: 10px 20px;
        font-size: 18px;
    }
}

@media screen and (max-width: 690px) {
    html {
        font-size: 60%;
    }
    /* 프로젝트 */
    .news_section .inner {
        width: calc(100% - 30px);
    }
    .list .item {
        padding: 20px;
        gap: 12px;
    }
    .list .item .item_title {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 500px){
    /* 프로젝트 */
    .title_wrap {
        padding: 60px 20px 40px;
    }
    .title_wrap h3 {
        padding-bottom: 20px;
    }
    .button_wrap button {
        padding: 4px 12px;
    }
    .list {
        row-gap: 15px;
    }
    .list .item .item_title h5:nth-of-type(1) {
        font-size: 14px;
    }
    .list .item .item_title p {
        font-size: 20px;
        margin-top: 10px;
        font-size: 14px;
    }

    .main_visual .hidden {
        left: 44%;
    }
}