.article2 {
    position: relative;
    padding-bottom: 180px;
    background: url(../images/a2-bg.jpg);
    background-attachment: fixed;
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

.article2 .article-wrapper {
    width: 100%;
}

.a2-square {
    position: absolute;
    top: 0; left: 50%;
    transform: translate(-50%, 0);
    width: 60%;
    height: 60%;
    border-radius: 0 0 1500px 1500px;
    background-color: rgba(255, 255, 255, .05);
    border-left: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
    z-index: 1;
}

.a2-flow-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    user-select: none;
    overflow: hidden;
    z-index: 1;
}

.a2-flow {
    color: #e79034;
    padding: 30px 0;
    font-size: 60px;
    font-weight: 100;
    display: flex;
    white-space: nowrap;
    animation: slide 40s linear infinite;
}

.a2-title {
    z-index: 5;
}

.a2-top {
    margin: 3rem 0 5rem 0;
}

.mySwiper {
    width: 100%;
    user-select: none;
}

.mySwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: scale(.8) !important;
    transition: all .3s;
    filter: blur(8px);
    opacity: .8;
}

.mySwiper .swiper-slide-active {
    transform: scale(1) !important;
    filter: blur(0);
    opacity: 1;
}

.mySwiper .swiper-slide .m-title {
    padding-top: 30px;
    opacity: 0;
}

.mySwiper .swiper-slide-active .m-title {
    padding-top: 0;
    opacity: 1;
    transition: all 1s .2s;
}

.mySwiper .swiper-button-wrapper {
    position: absolute;
    top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    z-index: 10;
}


/*==================================================*/
@media (min-width: 2250px) {
    .mySwiper .swiper-button-wrapper {
        width: 1100px;
    }
}


@media (max-width: 1250px) {
    .article2 .article-wrapper {
        padding: 0;
    }

    .a2-square {
        width: 85%;
    }
}


@media (max-width: 1050px) {
    .mySwiper .swiper-button-wrapper {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .article2 {
        padding-bottom: 140px;
    }
    
    .a2-title {
        width: 50%;
    }

    .a2-top {
        width: 30%;
    }

    .mySwiper .swiper-slide-active .m-title {
        height: 35px;
        transition: all .6s 0s;
    }
}


@media (max-width: 550px) {
    .article2 {
        padding-bottom: 100px;
    }
    
    .a2-flow {
        padding: 20px 0;
        font-size: 45px;
    }

    .a2-square {
        height: 55%;
    }

    .a2-top {
        margin: 2rem 0;
    }
    
    .mySwiper .swiper-slide {
        gap: 1.5rem;
    }

    .mySwiper .swiper-slide-active .m-title {
        height: 25px;
    }
}


@media (max-width: 450px) {
    .article2 {
        padding-bottom: 50px;
    }
    
    .a2-flow {
        padding: 15px 0;
        font-size: 36px;
    }

    .mySwiper .swiper-slide-active .m-title {
        height: 18px;
    }
}