body {
  font-family: 'M PLUS 1p', sans-serif;
}

.section {
    background-color: #f5f7f9;
    padding: 100px 0;
}
.row {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.col {
    width: 48%;
    background-color:#ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 14px -9px #777777;
    position: relative;
}
.col::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    border-bottom: 90px solid transparent;
    border-left:  90px solid #0561b5;
 }
.col::after {
    content: 'New';
    position: absolute;
    top: 20px;
    left: 11px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    transform: rotate(-45deg);
 }
h3 {
   font-size: 21px;
    color: #0e61b5;
    font-weight: 700;
    text-align: center;
    padding: 18px 0 20px
}

@media screen and (max-width: 767px) {
    .row {
        flex-wrap: wrap;
        gap: 30px;
    }
    .col {
        width: 100%
    }
}








