.box_row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}

@media (max-width: 576px) {
    .box_row {
        flex-direction: column;
        justify-content: flex-start;
        align-content: center;

        width: 300px;
        margin: 0 auto;
    }
}

.box_outer {
    width: 300px;
}

.box_inner img {
    margin-bottom: 15px;
}
