.bonusBox {
    width: 100%;
    margin: 0 0 0px 0;
}

.tWrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tBox {
    width: 49%;
    border: 1px solid #bfbfbf;
    padding: 1%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    margin-bottom: 21px;
    background-color: white;
}

.tBox .tTitle {
    font-size: 16px;
    color: #3d3d3d;
    line-height: 1em;
    margin-bottom: 10px;
    margin-bottom: 10px;
}

.tBox .tImgB {
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0;
}

.tBox .tImgB img {
    max-width: 100%;
}

@media screen and (max-width:956px) {
    
    .bonusBox {
        margin-bottom: 20px;
    }

    .tWrap {
        flex-direction: column;
    }

    .tBox {
        width: 100%;
        /* height: 185px; */
        margin-bottom: 20px;
        justify-content: flex-start;
        align-items: center;
    }

    .tBox .tTitle {
        margin: 4% 2% 2% 2%;
        line-height: 1.5em;
        text-indent: -1em;
        padding-left: 1em;
        align-self: flex-start;
        width: 95%;
    }

    .tBox .tImgB {
        width: 95%;
        margin: 10px 0;
    }

    .dummy {
        width: 23%;
    }

}