@charset "UTF-8";

.swiper-pagination.custom-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    z-index: 10;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet {
    width: 25% !important;
    min-width: 120px;
    height: 40px;
    background: none;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin: 0 !important;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: #6c757d;
    /* text-muted */
    cursor: pointer;
    padding: 1.5rem;
    transition: background 0.3s, color 0.3s, border 0.3s;
    background: none;
}
.swiper-pagination-bullet:nth-last-child(1){
    border-right: 0;
}
@media (max-width: 992px) {
    .swiper-pagination-bullet {
        min-width: auto;
    }
}

.swiper-pagination-bullet-active {
    background: #121f28;
    color: #fff !important;
    border: none;
}

.swiper-pagination-bullet .progress {
    display: block;
    height: 4px;
    width: 0%;
    background: #fff;
    border-radius: 2px;
    transition: width 0s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.swiper-pagination-bullet-active .progress {
    /* width는 JS에서 제어 */
}

/*Section 1*/
.section1 {
    position: relative;
}

.section1 .section1-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: relative;
    background-color: #000;
}

.section1 .reveal {
    visibility: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.section1 .reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
    filter: grayscale(0.5);
}

.section1 .contents {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.section1 .contents .top {
    letter-spacing: 0.8rem;
}

.section1 .contents h2 {

    letter-spacing: -2px;
    font-weight: 500;
    text-transform: uppercase;

}

/* section2 */

.section2 .swiper-slide {
    height: auto;
    margin: 180px 0;

}

.section2 .swiper-slide .slide-img {
    aspect-ratio: 16/9;
    object-fit: cover;
    position: relative;
    z-index: 1;


}

.section2 .swiper-slide .slide-img img {
    filter: grayscale(0.5);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section2 .swiper-slide .contents {
    background-color: #f9f7f6;
    padding: 2vw 2vw 0 4vw;
    min-height: 400px;
    position: relative;
    z-index: 0;
    transform: translate(-3vw, -5vw);
}

@media (max-width: 992px) {
    .section2 .swiper-slide {
        margin: 80px 0;
    }

    .section2 .swiper-slide .contents {
        background-color: transparent;
        padding: 2vw 2vw 0 4vw;
        min-height: auto;
        position: relative;
        z-index: 0;
        transform: initial;
    }
}

/* section3 */
.gray {
    color: #cbcbcb;
}

.section3 {
    background-color: #f9f7f6;
}

.section3 .swiper-slide img {
    aspect-ratio: 4/3;
    object-fit: cover;

}

.section3 .swiper-slide h3 {
    text-align: center;
    font-size: 1.5rem;
}

.section4 .withus-marquee {
    display: flex;
    width: max-content;
    animation: marquee-left 50s linear infinite;
    font-size: 260px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    white-space: nowrap;
    color: #222;
    text-transform: uppercase;
    line-height: 1.1;
    opacity: 0.1;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.section4 .withus-img-link {

    overflow: hidden;
}

@media (max-width: 992px) {
    .section4 .withus-marquee {

        font-size: 180px;

    }
}

/* section4 이미지+링크 효과 */
.section4 .withus-img {
    width: 100%;
    filter: grayscale(1);
    transition: all 1s ease-in-out;
}

.section4 .withus-img-link:hover .withus-img {
    filter: grayscale(0);
    transform: scale(1.1);
}


.section4 .withus-text {
    position: absolute;
    font-size: 1.25rem;
    left: 50%;
    font-weight: 600;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 1s ease-in-out;
}

.section4 .withus-img-link:hover .withus-text {
    opacity: 1;

}

@keyframes fadein-text-appear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* section5 */
.section5 {
    background-color: #f9f7f6;
    padding: 100px 0;
}

.section5 .section5-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.section5 .section5-img:after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    font-weight: 500;
    text-align: center;
    transition: all 0.5s ease-in-out;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.section5 .section5-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: all 1s ease;
}

.section5 .section5-img:hover:after {
    opacity: 1;
}

.section5 .section5-img:hover img {
    transform: scale(1.05);
    filter: grayscale(10);
}

.section6 {
    width: 100%;
    height: 70vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)), url('../img/bg/bg5.jpg') no-repeat 50% center;
    background-size: cover;
    background-attachment: fixed;
}

/* 섹션 9 스타일 */


.section7 .message-content p {
    line-height: 1.6;
    margin-bottom: 1rem !important;
    letter-spacing: -0.02em;
}

.section7-img {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;

}

.section7-img img {
    filter: grayscale(0.5);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section7 .sign-info p {
    letter-spacing: -0.02em;
}

.section8,
.section7 {
    margin-bottom: 120px;
}

@media (max-width: 992px) {

    .section8,
    .section7 {
        margin-bottom: 80px;
    }
}