 /* swiper banner section */
 #section-banner {
    height: 800px;
}

.section.banner .mySwiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section.banner .mySwiper .swiper-wrapper {
    display: flex;
    height: 100%;
}

.section.banner .mySwiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section.banner .mySwiper .swiper-slide.banner1 {
    background: url(/img/banner_background.png) center / cover no-repeat;
}

.section.banner .mySwiper .swiper-slide.banner2 {
    background: url(/img/banner_background2.png) center / cover no-repeat;
    /* background: var(--highlight, #977c91); */
}

.section.banner .mySwiper .slide-wrap {
    max-width: 1440px;
    width: 100%;
    position: relative;
    padding: 0 120px;
    display: flex;
    align-items: center;
}

/* banner contents */
.section.banner .mySwiper .left-contents {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: #fff;
    max-width: 600px;
}

.section.banner .mySwiper .title01.mo {
    display: none;
}

.section.banner .mySwiper .store-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.section.banner .mySwiper .store-btn {
    display: flex;
    width: 180px;
    height: 56px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary, #202020);
    border-radius: 6px;
}

.section.banner .mySwiper .store-btn > span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* banner right contents */
.section.banner .mySwiper .right-contents {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 120px;
    width: 238px;
    height: 500px;
    flex-shrink: 0;
}

.section.banner .mySwiper .right-contents .img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.section.banner .mySwiper .right-contents .img-wrap img {
    max-width: 100%;
    height: auto;
}

.section.banner .mySwiper .right-contents.money {
    width: 473px;
    height: 473px;
}

.section.banner .mySwiper .right-contents.money .img-wrap > img {
    width: 100%;
}

/* pagination */
.section.banner .mySwiper .swiper-pagination {
    position: absolute;
    bottom: 138px;
    left: 208px;        
    /* left: 50%;
    transform: translateX(-50%); */
    width: auto;
    display: flex;
    gap: 12px;
}

.section.banner .mySwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50px;
    transition: width .3s linear;
}

.section.banner .mySwiper .swiper-pagination-bullet-active {
    width: 32px;
}

/* 반응형 스타일 */
@media screen and (max-width: 1024px) {
    .section.banner {
        height: 600px;
    }

    .section.banner .mySwiper .slide-wrap {
        padding: 0 60px;
    }

    .section.banner .mySwiper .right-contents {
        right: 60px;
        width: 180px;
        height: 380px;
    }

    .section.banner .mySwiper .right-contents.money {
        width: 320px;
        height: 320px;
    }

    .section.banner .mySwiper .swiper-pagination {
        left: 60px;
        bottom: 80px;
    }
}

@media screen and (max-width: 768px) {
    #section-banner {
        height: 600px;
        padding-bottom: 100px;
    }

    .section.banner .mySwiper .slide-wrap {
        padding: 0 20px;
        flex-direction: column;
    }

    .section.banner .mySwiper .left-contents {
        text-align: center;
        align-items: center;
    }

    .section.banner .mySwiper .title01 {
        display: none;
    }

    .section.banner .mySwiper .title01.mo {
        display: block;
    }

    .section.banner .mySwiper .store-btn {
        width: 150px;
        height: 48px;
    }

    .section.banner .mySwiper .store-btn > span {
        font-size: 16px;
    }

    .section.banner .mySwiper .right-contents {
        position: relative;
        top: 20px;
        right: auto;
        transform: none;
        width: 140px;
        height: 280px;
    }

    .section.banner .mySwiper .right-contents.money {
        width: 240px;
        height: 240px;
    }

    .section.banner .mySwiper .swiper-pagination {
        /* left: 20px; */        
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
    }
}