.bottom {
    display: flex;
    position: relative;
    background-color: #FFFFFF;
}

.block_remark {
    display: flex;
    position: relative;
    padding: 20px 16px;
    min-height: 107px;
}

.block_remark::before {
    content: ' ';
    position: absolute;
    display: block;
    width: 200vw;
    height: 100%;
    top: 0;
    left: -100%;
}

.block_remark__left {
    display: flex;
    position: relative;
    flex: 1;
    flex-direction: column;
    padding-right: 16px;
    font-family: 'NanumSquare', sans-serif;
    z-index: 1;
}

.block_remark__left > h3 {
    margin: 4px 0;
    font-size: 1.6em;
    color: #396CB5;
    word-break: keep-all;
    font-weight: bold;
}

.block_remark__left > p {
    margin-bottom: 0;
    font-size: 1.1em;
    line-height: 1.5em;
    word-break: keep-all;
}

.block_remark__right {
    display: flex;
    position: relative;
    flex: 88px 0 0;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.block_remark__right::before {
    content: ' ';
    display: block;
    position: absolute;
    width: 88px;
    height: 88px;
    border-radius: 8px;
    background-color: #DCDCDC;
    z-index: 1;
}
.block_remark__right > i {
    display: block;
    position: relative;
    width: 60%;
    height: 60%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.bottom > .container > .block_remark:nth-child(2n)::before {
    background-color: #F4F4F4;
}

/*Responsive Styles*/
/* Smartphones (portrait) ---------------- */
@media only screen
and (max-width : 414px)
and (orientation : portrait) {
    .block_remark {
        min-height: 92px;
    }
    .block_remark__left > h3 {
        font-size: .9em;
    }
    .block_remark__left > p {
        font-size: .7em;
    }
    .block_remark__left > p > br {
        content: " ";
        margin: 0;
        padding: 2px;
        display: inline-block;
    }
}

/* Smartphones (landscape) ---------------- */
@media only screen
and (min-width : 415px)
and (max-width : 813px)
and (orientation : landscape) {
    .block_remark {
        min-height: 99px;
    }
    .block_remark__left > h3 {
        font-size: 1.5em;
    }
    .block_remark__left > p {
        font-size: 1em;
    }
}

/* Tablets (portrait) -------------------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {

}

/* Tablets (landscape) ------------------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {

}

/* Old Desktops and laptops ------------------ */
@media only screen
and (min-width : 1025px) {

}

/* Desktops ------------------ */
@media only screen
and (min-width : 1201px) {

}
