
.boxWrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 6rem;
    flex-wrap: wrap;
}

.itemBox {
    /* width: 31%; */
    width: 48%;
    display: flex;
    flex-direction: column;
    /* border: 1px solid white; */
    margin: 0 0 50px 0;
}

.itemBox a {
    color: white;
    text-decoration: none;
}

.itemBox-inner-l {
    width: 100%;

}

.itemBox-inner-r {
    padding-top: 0.5rem;
    font-size: 18px;
}


@media screen and (max-width:956px) {
    .boxWrap {
        flex-direction: column;
        margin-top: 2rem;
    }

    .itemBox {
        width: 100%;
    }

    .itemBox-inner-r span {
        font-size: 1.2rem;
    }
}