.article5 {
    background: #111;
    background: url(../images/a2-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
}

.a5-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20rem;
}

.a5-box {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-top: none;
    border-bottom: 6px solid var(--main-color);
}

.a5-box-text {
    width: 100%;
    padding: 50rem;
    text-align: center;
    margin: 0;
}

.a5-box-text h5 {
    line-height: 1.2;
}


/*==================================================*/
@media (max-width: 768px) {
    .a5-title h5 {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .a5-title h5 span {
        font-size: 65rem;
        margin-top: 0;
    }
    
    .a5-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .a5-box-image img {
        width: 100%;
    }

    .a5-box-text {
        text-align: left;
    }
}


@media (max-width: 550px) {
    
}