.article3 {
    position: relative;
}

.a3-bg {
    position: absolute;
    top: -150px; right: 0;
}

.a3-box-wrapper {
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
}

.a3-box-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.a3-box {
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .2);
    background-color: rgba(0, 0, 0, .7);
}

.a3-image {
    margin-bottom: 2rem;
}

.a3-box-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.a3-box-text h5 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.a3-box-text p {
    margin-top: 0;
}

.a3-box:last-child {
    position: relative;
    transition: all .2s;
}

.a3-box:last-child .a3-box-text {
    gap: 5px;
}

.a3-arrow {
    position: absolute;
    top: 50%; right: 40px;
    transform: translate(0, -50%);
    transition: all .2s;
}

.a3-box:last-child:hover {
    background-color: rgba(255, 255, 255, .05);
}

.a3-box:last-child:hover .a3-arrow {
    right: 30px;
}

.a3Btn {
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 300;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .5);
    transition: all .2s;
}

.a3Btn:hover {
    background-color: rgba(255, 255, 255, .1);
}

.a3Swiper {
    display: none;
}


/*==================================================*/
@media (max-width: 850px) {
    .a3-bg {
        top: 500px;
    }
    
    .a3-box-wrapper {
        display: none;
    }
    
    .a3-box {
        padding: 30px;
    }

    .a3Swiper {
        width: 100%;
        display: block;
    }

    .a3-box:last-child:hover {
        background-color: rgba(0, 0, 0, .7);
    }
    
    .a3-box-group .a3-box {
        position: relative;
        transition: all .2s;
    }
    
    .a3-box .a3-box-text {
        gap: 1rem !important;
    }

    .a3-box:last-child:hover .a3-arrow {
        right: 40px;
    }

    .a3-box-group {
        margin-top: 4rem;
    }
}


@media (max-width: 550px) {
    .a3-image {
        transform: scale(1.2);
        z-index: 1;
    }

    .a3-box-text h5,
    .a3-box-text p {
        z-index: 2;
    }

    .a3Btn {
        padding: 5px 10px;
        font-size: 13px;
        border-radius: 5px;
    }
}


@media (max-width: 450px) {
    .a3-box-group .a3-box-text {
        gap: 3px !important;
    }
}