@charset "UTF-8";

.vision-section {
    padding: 200px 0 130px 0;
    position: relative;
}

.vision-section .bg-top-txt {
    position: absolute;
    top: 380px;
    right: 0;
    z-index: -1;
}


.vision-section .sub-tit-wrap {
    margin-bottom: 80px;
}

.vision-section .info-content {
    display: flex;
    position: relative;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.vision-section .info-content .img-wrap {
    position: relative;
}

.vision-section .info-content .img-wrap .img {
    border-radius: 40px;
    overflow: hidden;
    isolation: isolate;
}

.vision-section .info-content1 {
    margin-bottom: 140px;
}

.vision-section .info-content2 {
    flex-direction: row-reverse;
    margin-bottom: 95px;
}

.vision-section .info-content .txt-wrap {
    width: 500px;
    flex-shrink: 0;
    padding-bottom: 70px;
}

.vision-section .info-content .txt-wrap .tit {
    margin-bottom: 27px;
}

.vision-section .info-content .txt-wrap h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    /* 31.2px */
    letter-spacing: -0.02em;
}

.vision-section .info-content .txt-wrap h3 {
    color: #2C2C2C;
    font-size: 30px;
    font-weight: 600;
    line-height: 150%;
    /* 45px */
    letter-spacing: -0.025em;
}


.vision-section .info-content .txt-wrap p {
    color: #2C2C2C;
    font-size: 20px;
    font-weight: 300;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.5px;
    letter-spacing: -0.025em;
}

.vision-section .bg-bottom-txt {
    display: flex;
    justify-content: end;

}

.vision-section .bg-bottom-txt img {
    width: 75%;
    display: block;
}

.value-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 130px 0 180px;
}

.value-section .sub-tit-wrap {

    margin-bottom: 15px;
}

.value-section .line-wrap {
    position: relative;
    pointer-events: none;
}

.value-section .line-wrap svg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.value-section .line-wrap svg.line-frame {
    position: relative;
    width: 100%;
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
    transition: all 1.8s ease-in-out;
}

.value-section .line-wrap svg circle::after {
    content: "";
    display: block;
    width: calc(100% - 5px);
    height: calc(100% - 5px);
    background-color: #6E0000;
}

.value-section .txt-list {
    display: flex;
    justify-content: center;
    gap: 10vw;
}

.value-section .txt-list .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.value-section .txt-list .txt h5 {
    display: flex;
    padding: 2px 16px;
    border-radius: 100px;
    background: #6E0000;
    color: #FBFCFD;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.48px;
}

.value-section .txt-list h3 {
    color: #111;
    font-size: 40px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.value-section .txt-list p {
    color: #2C2C2C;
    font-size: 20px;
    font-weight: 300;
    line-height: 150%;
    letter-spacing: -0.6px;
}

.value-section .txt-list .txt1 {
    top: 13.5vw;
}

.value-section .txt-list .txt2 {
    top: 6.5vw;
}

.value-section .txt-list .txt3 {
    top: 3vw;
}

.value-section .info-content-wrap .txt-list h5 {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s ease-in-out;
}

.value-section .info-content-wrap .txt-list h3 {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s ease-in-out;
}

.value-section .info-content-wrap .txt-list p {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s ease-in-out;
}

.value-section .info-content-wrap .txt-list .txt.on h5 {
    transform: translateY(0);
    opacity: 1;
}

.value-section .info-content-wrap .txt-list .txt.on h3 {
    transform: translateY(0);
    opacity: 1;
}

.value-section .info-content-wrap .txt-list .txt.on p {
    transform: translateY(0);
    opacity: 1;
}

.value-section .line-wrap .circle-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.value-section .line-wrap .circle-wrap .circle {
    width: 13px;
    height: 13px;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #6E0000;
    position: absolute;
}

.value-section .line-wrap .circle-wrap .circle::after {
    content: "";
    display: block;
    width: 37px;
    height: 37px;
    background-color: #6E0000;
    opacity: 0.1;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.6s ease-in-out;
    transition-delay: 0.1s;
}

.value-section .line-wrap .circle-wrap .circle::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background-color: #6E0000;
    opacity: 0.2;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.6s ease-in-out;
}

.value-section .line-wrap .circle-wrap .circle.on::after {
    transform: translate(-50%, -50%) scale(1);
}

.value-section .line-wrap .circle-wrap .circle.on::before {
    transform: translate(-50%, -50%) scale(1);
}

.value-section .mobile-swiper-wrap {
    display: none;
}

@media (max-width: 1024px) {

    .value-section .txt-list .txt h5 {
        font-size: 16px;
    }

    .value-section .txt-list h3 {
        font-size: 30px;

    }

    .value-section .txt-list p {
        font-size: 16px;
    }

    .value-section .txt-list {
        gap: 3vw;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 80px 0;
    }

    .vision-section .sub-tit-wrap {
        margin-bottom: 60px;
    }

    .vision-section .info-content {
        flex-direction: column;
        gap: 0;
    }

    .vision-section .info-content .img-wrap .img {
        border-radius: 20px;
    }

    .vision-section .info-content .img-wrap {
        margin-bottom: 24px;
    }

    .vision-section .info-content .txt-wrap {
        width: 100%;
    }

    .vision-section .info-content .txt-wrap h5 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .vision-section .info-content .txt-wrap h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .vision-section .info-content .txt-wrap p {
        font-size: 16px;
    }

    .vision-section .info-content .txt-wrap {
        padding-bottom: 40px;
    }

    .vision-section .info-content1 {
        margin-bottom: 0;
    }

    .vision-section .info-content2 {
        margin-bottom: 0px;
    }

    .vision-section .bg-bottom-txt {
        display: none;
    }

    .value-section .line-wrap {
        display: none
    }

    .value-section .info-content-wrap .txt-list {
        width: 100%;
    }

    .value-section .info-content-wrap .txt-list h5 {
        opacity: 1;
        transform: translateY(0);
        font-size: 16px;
    }

    .value-section .info-content-wrap .txt-list h3 {
        opacity: 1;
        transform: translateY(0);
        font-size: 30px;
    }

    .value-section .info-content-wrap .txt-list p {
        opacity: 1;
        transform: translateY(0);
        font-size: 16px;
    }

    .value-section .txt-list .txt1,
    .value-section .txt-list .txt2,
    .value-section .txt-list .txt3 {
        top: 0;
    }

    .value-section .info-content-wrap {
        display: none;
    }

    .value-section .mobile-swiper-wrap {
        display: block;
    }

    .value-section .sub-tit-wrap {
        margin-bottom: 60px;
    }

    .value-section .mobile-swiper-wrap .txt {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        width: 100%;
        height: 100%;
        border-bottom: 1px solid #6E0000;
    }

    .value-section .mobile-swiper-wrap .txt h5 {
        color: #FBFCFD;
        padding: 2px 16px;
        font-size: 16px;
        font-weight: 600;
        line-height: 150%;
        /* 24px */
        letter-spacing: -0.48px;
        border-radius: 100px;
        background: #6E0000;
    }

    .value-section .mobile-swiper-wrap .txt h3 {
        color: #111;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        line-height: 150%;
        /* 45px */
        letter-spacing: -0.75px;
        margin-bottom: 12px;
    }

    .value-section .mobile-swiper-wrap .txt p {
        color: #2C2C2C;
        font-size: 16px;
        font-weight: 300;
        line-height: 150%;
        /* 24px */
        letter-spacing: -0.48px;
        margin-bottom: 30px;
    }

    .value-section .mobile-swiper-wrap .txt .circle {
        width: 13px;
        height: 13px;
        background-color: #6E0000;
        border-radius: 50%;
        position: relative;
        transform: translateY(50%);
    }

    .value-section .mobile-swiper-wrap .txt .circle::after {
        content: "";
        display: block;
        width: 37px;
        height: 37px;
        background-color: #6E0000;
        opacity: 0.1;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .value-section .mobile-swiper-wrap .txt .circle::before {
        content: "";
        display: block;
        width: 25px;
        height: 25px;
        background-color: #6E0000;
        opacity: 0.2;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}