.article2 {
    background: url(../images/a2-bg.jpg);
}

.a2-title {
    text-align: center;
}

.a2-title h1 {
    color: #fff;
    font-size: 55px;
    line-height: 1.3;
}

.a2-title p {
    color: #fff;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 300;
    margin-top: 2rem;
}

.a2-box-wrapper {
    width: 430px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.a2-box {
    flex: 1;
    padding: 30px 0;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, .07);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.a2-box i {
    color: var(--sub-color);
}

.a2-box p {
    color: #fff;
    font-weight: 600;
}

.a2-vertical {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, .5);
    margin: 3rem 0;
}

.a2-bottom {
    position: relative;
    padding: 16px 50px;
    border-radius: 30px 0 30px 30px;
    background-color: rgba(255, 255, 255, .07);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.a2-bottom p {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
}

.a2-bottom p b {
    position: relative;
    font-weight: 800;
    user-select: none;
    background: rgb(15,155,231);
    background: linear-gradient(90deg, rgba(15,155,231,1), rgba(54,215,157,1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.a2-bottom p b::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: rgb(15,155,231);
    background: linear-gradient(90deg, rgba(15,155,231,1) 0%, rgba(54,215,157,1) 100%);
}

.a2-icon {
    position: absolute;
    top: -40px; right: -65px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 200px;
    background: rgb(15,155,231);
    background: linear-gradient(90deg, rgba(15,155,231,1) 0%, rgba(54,215,157,1) 100%);
}

.a2-icon img {
    height: 22px;
    margin-top: 7px;
    margin-left: 3px;
}



/*==================================================*/
@media (max-width: 768px) {
    .a2-title h1 {
        font-size: 45px;
    }

    .a2-title p {
        font-size: 18px;
    }

    .a2-box-wrapper {
        width: 350px;
    }
    
    .a2-box {
        padding: 25px 0;
        font-size: 24px;
    }

    .a2-bottom {
        padding: 16px 40px;
    }
    
    .a2-bottom p {
        font-size: 18px;
    }

    .a2-icon {
        top: -30px; right: -45px;
        width: 35px;
        height: 35px;
    }

    .a2-icon img {
        height: 16px;
        margin-top: 3px;
    }
}


@media (max-width: 550px) {
    .a2-bottom {
        width: 90%;
        padding: 15px 30px;
    }
    
    .a2-bottom p {
        font-size: 16px;
    }
    
    .a2-bottom p br {
        display: none;
    }

    .a2-bottom p b::after {
        height: 2px;
    }
    
    .a2-icon {
        top: -15px; right: -15px;
    }
}


@media (max-width: 450px) {
    .a2-title h1 {
        font-size: 40px;
    }

    .a2-title p {
        font-size: 16px;
    }
    
    .a2-box-wrapper {
        width: 85%;
        margin-top: 2rem;
    }

    .a2-box {
        font-size: 20px;
    }
}