.box-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    width: 100%;
}

.box-col {
    width: 20%;
    margin: 10px auto;
}

.box-main a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

.box-img img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.box-title p {
    font-family: 'iranyekan', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 2.17;
    margin-top: calc(2 * 4px);
    color: #0c0c0c;
    text-align: center;
}

.box-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.box-header h2 {
    font-family: 'iranyekan', sans-serif;
    font-weight: 500;
    line-height: 2.1;
    font-size: 21px;
    color: #0c0c0c;
}

@media screen and (max-width: 600px) {
    .box-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .box-col {
        width: 33%;
    }

    .box-img img {
        width: 90px;
        height: 90px;
    }

    .box-title p {
        font-size: 11px;
    }
}