.mem1 {
    position: relative;
    padding-bottom: 0;
    background: url(../images/member-bg.jpg);
}
.mem1::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 33%;
    height: 100%;
    background-color: var(--gold-color);
    mix-blend-mode: multiply;
    z-index: 1;
}

.mbSwiper {
    width: 100%;
}

.mem1-wrapper {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    z-index: 2;
}

.mem1-pagination {
    position: absolute;
    bottom: 10%; right: 60rem;
    z-index: 15;
}

.mem1-pagination div {
    width: 50rem;
    height: 50rem;
    background-color: var(--gold-color);
}

.mem1-pagination div i {
    color: #fff;
    font-size: 30rem;
}

.mem1-pagination .swiper-button-next {
    margin-right: -12px;
}

.mem1-image {
    width: 700rem;
    height: 900rem;
    margin-bottom: -5px;
    opacity: 0;
    overflow: hidden;
}

.mem1-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 50rem;
    z-index: 10;
}

.mem1-top h5 {
    color: var(--gold-color);
    font-size: 20rem;
    font-weight: 600;
    font-family: 'Montserrat';
    letter-spacing: -0.5px;
    margin-bottom: 60rem;
    opacity: 0;
}

.mem1-top img {
    margin-bottom: 15px;
    opacity: 0;
}

.mem1-top p {
    color: var(--sub-green);
    font-size: 40rem;
    line-height: 1.5;
    font-family: 'MaruBuriBold';
    opacity: 0;
}

.mem1-bottom {
    display: flex;
    flex-direction: column;
    gap: 50rem;
    opacity: 0;
}

.mem1-bottom p {
    color: var(--sub-green);
    font-size: 40rem;
    font-family: 'MaruBuriBold';
    display: flex;
    align-items: baseline;
    gap: 15rem;
}

.mem1-bottom p span {
    font-size: 20rem;
    font-family: 'MaruBuriBold';
}

.mem1-bottom ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20rem;
}

.mem1-bottom ul h5 {
    color: var(--main-color);
    font-size: 18px;
    margin-left: -20rem;
}

.mem1-bottom ul li {
    color: #555;
    font-size: 17px;
    line-height: 1.3;
    list-style-type: '•   ';
}

.mem1-b-list {
    display: flex;
    flex-direction: column;
    gap: 30rem;
    max-height: 350rem;
    overflow-y: auto;
}

.mem1-b-list.hwang::-webkit-scrollbar,
.mem1-b-list.jeon::-webkit-scrollbar {
    display: none;
}

.mem1-b-list .act {
    padding-right: 30rem;
}

.mbSwiper .swiper-slide-active .mem1-top h5,
.mbSwiper .swiper-slide-active .mem1-top img,
.mbSwiper .swiper-slide-active .mem1-top p,
.mbSwiper .swiper-slide-active .mem1-bottom {
    animation: slideAnimation 1s both;
}

.mbSwiper .swiper-slide-active .mem1-image {
    animation: slideAnimation2 .5s both;
}

@keyframes slideAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideAnimation2 {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



/*==================================================*/
@media (max-width: 991px) {
    .mem1::before {
        top: unset;
        bottom: 0;
        width: 100%;
        height: 200rem;
        background-color: var(--gold-color);
        mix-blend-mode: multiply;
        z-index: 1;
    }
    
    .mem1 .article-wrapper {
        padding-right: 0;
    }
    
    .mem1-wrapper {
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
    }

    .mem1-pagination {
        right: unset;
        bottom: 5%;
        left: 60rem;
    }

    .mem1-pagination div {
        background-color: var(--main-color);
    }
    
    .mem1-text {
        width: 100%;
        height: 600rem;
    }

    .mem1-b-list {
        max-height: 450rem;
    }

    .mem1-image {
        width: 100%;
        height: 700rem;
        margin-top: -20%;
    }

    .mem1-image img {
        height: 100%;
        float: right;
        margin-right: -5%;
    }

    .mem1-b-list .act {
        width: 50%;
    }
}


@media (max-width: 550px) {
    .mem1-bottom ul h5 {
        font-size: 22rem;
    }
    
    .mem1-bottom ul li {
        font-size: 20rem;
        line-height: 1;
    }

    .mem1-pagination {
        left: 45rem;
    }

    .mem1-pagination .swiper-button-next {
        margin-right: -15px;
    }
}