.app_div {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.app_div_left {
    width: 40.2%;
}

.app_div_left .imgBox {
    padding-bottom: 86%;
}

.app_div_right {
    flex: 1;
    padding: 0 7%;
}

.app_div_title {
    display: block;
    font-family: Exo-Bold;
    font-weight: bold;
    font-size: 48px;
    color: #333333;
    position: relative;
    padding-bottom: 25px;
    line-height: 1.2;
}

.app_div_title::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 82px;
    height: 5px;
    border-radius: 5px;
    background: #FF5E14;
}

.app_div_desc {
    font-family: Arial-Regular;
    font-weight: 400;
    font-size: 16px;
    margin-top: 25px;
    color: #777777;
    line-height: 2;
}

.app_box .app_div:nth-child(even) .app_div_left {
    order: 2;
}

.app_box .app_div:nth-child(even) .app_div_right {
    order: 1;
}

@media only screen and (max-width: 950px) {
    .app_div_title{
        font-size: 26px;
    }

    .app_div{
        flex-wrap: wrap;
    }

    .app_div_left{
        width: 100%;
        margin-bottom: 20px;
        order: 1 !important;
    }

    .app_div_right{
        width: 100%;
        order: 2 !important;
        padding: 10px;
    }
}