.main .en_title {
    font-family: "Poppins";
    font-weight: 500;
    color: var(--green005740);
    font-size: 4rem;
}

.main .sub_copy {
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1.7;
    color: var(--black0F0F0F);
}

/* hero */

.hero {
    position: relative;
    background-color: var(--whiteF3F3F3);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 4rem 0 3.8rem;
    max-width: 137rem;
}

.hero .hero_text {
    margin-top: 12.34376vw;
}

.hero .hero_text .en_title {
    font-size: 4.8rem;
    line-height: 1.5;
    margin-bottom: 2.4rem;
}

.hero .hero_visual {
    flex: 0 0 38rem;
    height: 44.792vw;
    aspect-ratio: 69 / 86;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero .hero_visual .img_placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* story */

.story {
    background-color: var(--whiteF3F3F3);
    width: 100%;
}

.story .story_head {
    width: 100%;
    padding-top: 7.1354vw;
    min-height: 84rem;
    background: url(../images/bg/main_bg.png) no-repeat center bottom / cover;
    text-align: center;
    aspect-ratio: 1920 / 966;
}
.story .story_head .quote_mark {
    width: 3rem;
    height: 5.9rem;
    margin: 0 auto 5.6rem;
}
.story .story_head .en_title {
    margin-bottom: 2.8rem;
}

.more_btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    margin-top: 3.8rem;
}
.more_btn .circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border: 0.1rem solid var(--green005740);
    border-radius: 50%;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}
.more_btn .circle img {
    width: 2.2rem;
    height: 2.2rem;
}

.more_btn .circle .icon_default,
.more_btn .circle .icon_hover {
    width: 2.2rem;
    height: 2.2rem;
    transition: opacity 0.25s ease;
}
.more_btn .circle .icon_hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.more_btn:hover .circle {
    background-color: var(--green005740);
}
.more_btn:hover .circle .icon_default {
    opacity: 0;
}
.more_btn:hover .circle .icon_hover {
    opacity: 1;
}

.more_btn .label {
    font-family: "Poppins";
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.14;
    color: var(--green005740);
    margin-left: 0.3rem;
}

/* flow */

.flow {
    padding: 13.2rem 0 18.4rem;
}
.flow .inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11.71875vw;
}

.flow .flow_visual {
    width: 44.271vw;
    height: 100%;
    aspect-ratio: 850 / 930;
}

.flow .flow_text .en_title {
    margin-bottom: 2.4rem;
}

/* impact */

.impact {
    position: relative;
}

.impact .impact_inner {
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 0 13.6979vw 16.3021vw;
    gap: 8.8021vw;
}

.impact .impact_intro {
    flex: 0 0 auto;
}
.impact .impact_intro .en_title {
    margin-bottom: 2.4rem;
}

.impact .impact_swiper {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.impact .impact_card {
    width: 22.084vw;
    aspect-ratio: 424 / 614;
    overflow: hidden;
    cursor: pointer;
}

.impact .impact_card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.45s ease;
}

.impact .impact_card.swiper-slide-active img {
    filter: grayscale(0%);
}

/* partner */

.partner {
    width: 100%;
    aspect-ratio: 1920 / 783;
    text-align: center;
    background: url(../images/bg/partner_bg.png) no-repeat center;
}
.partner .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 51.1rem;
}

.partner .partner_text .en_title {
    margin-bottom: 2.5rem;
    color: var(--whiteFFFFFF);
}
.partner .partner_text .sub_copy {
    color: var(--whiteFFFFFF);
}

/* 반응형 */

/* 모션 최소화를 원하는 사용자 배려 */
@media (prefers-reduced-motion: reduce) {
    .impact .impact_card img {
        transition: filter 0.2s ease;
    }
}

/*  */
/*  */
/*  */
/*  */
/*  */
/* 수정 전 */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
