.apr-title {
    width: 100%;
    margin-bottom: 50rem;
}

.apr-title h6 {
    color: var(--main-color);
    font-size: 20rem;
    font-family: 'Montserrat';
    margin-bottom: 20rem;
}

.apr-title h5 {
    font-size: 50rem;
}

.apr-title p {
    color: #777;
    font-size: 20rem;
    font-weight: 500;
    line-height: 1.65;
    margin-top: 20rem;
}

.apr-box-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.apr-box {
    padding: 60rem 0;
    display: flex;
    gap: 60rem;
    border-bottom: 1px solid #ddd;
}
.apr-box:last-child {
    border-bottom: none;
}

.apr-box-num {
    width: 50rem;
    min-width: 50rem;
    height: 50rem;
    min-height: 50rem;
    color: #fff;
    font-size: 20rem;
    font-weight: 500;
    font-family: 'Montserrat';
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10rem;
    background-color: var(--main-color);
}

.apr-box-text h5 {
    font-size: 28rem;
    line-height: 1.3;
}

.apr-box-text p {
    color: #888;
    font-size: 18rem;
    line-height: 1.5;
    margin-top: 20rem;
}


/*==================================================*/
@media (max-width: 550px) {
    .apr-box {
        flex-direction: column;
        gap: 30rem;
    }
    .apr-box:first-child {
        padding-top: 10rem;
    }
    
    .apr-box-text h5 {
        font-size: 36rem;
    }

    .apr-box-text p {
        font-size: 24rem;
    }
}