.article6 {
    background: url(../images/a6-bg.jpg);
}

.a6-title {
    width: 100%;
    color: rgba(255, 255, 255, .7);
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 3rem;
}

.a6-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.a6-box-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.a6-box h5 {
    color: rgba(255, 255, 255, .5);
    font-size: 20px;
    font-weight: 600;
    font-family: 'Montserrat';
    letter-spacing: 0;
}

.a6-box p {
    color: rgba(255, 255, 255, .3);
    font-size: 16px;
    line-height: 1.65;
    margin-top: 12px;
    letter-spacing: 0;
}



/*==================================================*/
@media (max-width: 1050px) {
    .article.article6 {
        justify-content: unset;
        align-items: unset;
    }
}


@media (max-width: 550px) {
    .a6-title {
        font-size: 32px;
        margin-bottom: 2rem;
    }
}


@media (max-width: 450px) {
    .a6-box h5 {
        font-size: 16px;
    }
    
    .a6-box p {
        font-size: 14px;
        margin-top: 5px;
    }
}