.lbanner-pp .lbanner-desc {
    display: none !important;
}

.innerApplication_main {
     margin-top: 5%;
     font-family: 'Arial-Regular';
     font-weight: 400;
     font-size: 16px;
     color: #666666;
     line-height: 28px;
     text-align: left;
     font-style: normal;
     text-transform: none;
 }


 .innerApplication_main p {
     margin-bottom: 20px;
 }

 .app_wrap {
    display: flex !important;
     justify-content: space-between !important;
     align-items: center;
     margin-bottom: 50px;
 }

 .app_wrap .app_txt {
     width: 65%;
 }

 .app_wrap .app_img {
     width: 30%;
     position: relative;
     height: 512px;
     overflow: hidden;
     border-radius: 12px 12px 12px 12px;
     -webkit-transition: all .5s ease-out 0ms;
     -moz-transition: all .5s ease-out 0ms;
     -o-transition: all .5s ease-out 0ms;
     transition: all .5s ease-out 0ms;
 }

 .app_wrap .app_img::before {
     content: '';
     position: absolute;
     right: 0;
     top: 0;
     width: calc(100% - 20px);
     height: calc(100% - 20px);
     background: rgba(196, 196, 196, 0.28);
     border-radius: 12px 12px 12px 12px;
 }

 .app_wrap .app_img img {
     position: absolute;
     width: calc(100% - 20px);
     height: calc(100% - 20px);
     left: 0;
     bottom: 0;
     object-fit: cover;
 }

 .app_wrap .app_img:hover img {
     -webkit-transform: scale(1.08);
     -moz-transform: scale(1.08);
     -o-transform: scale(1.08);
     transform: scale(1.08);
 }

 .app_wrap .app_info {
     width: 36%;
 }

 .app_wrap .app_image {
     width: 57%;
 }

 .app_wrap .app_image ul {
     justify-content: space-between;
     align-items: center;
 }

 .app_wrap .app_image ul li {
     width: 33%;
     margin-right: 10px;
     position: relative;
     height: 0;
     overflow: hidden;
     padding-bottom: 41%;
     -webkit-transition: all .5s ease-out 0ms;
     -moz-transition: all .5s ease-out 0ms;
     -o-transition: all .5s ease-out 0ms;
     transition: all .5s ease-out 0ms;
     border-radius: 12px 12px 12px 12px;

 }

 .app_wrap .app_image ul li img {
     position: absolute;
     width: 100%;
     height: 100%;
     left: 0;
     top: 0;
     object-fit: cover;
 }


 .app_wrap .app_image ul li:hover img {
     -webkit-transform: scale(1.08);
     -moz-transform: scale(1.08);
     -o-transform: scale(1.08);
     transform: scale(1.08);
 }

 .app_wrap .app_image ul li:last-child {
     margin-right: 0;
 }

 .app_wrap .app_info .app_title {
     font-family: 'Arial-Bold';
     font-weight: bold;
     font-size: 16px;
     color: #333333;
     line-height: 28px;
     text-align: left;
     font-style: normal;
     text-transform: none;
     margin-bottom: 15px;
 }

 @media only screen and (max-width: 1024px){
    .innerApplication_main{
        font-size: 18px;
    }
 }
 @media only screen and (max-width: 950px) {
    .innerApplication_main .app_wrap{
        flex-direction: column;
    } 

    .innerApplication_main .app_wrap .app_txt{
        width: 100%;
        order: 2;
    }
    .innerApplication_main .app_wrap .app_img{
        width: 100%;
        height: 0;
        padding-bottom: 126%;
        margin-bottom: 30px;
    }
    .innerApplication_main .app_wrap .app_info{
        width: 100%;
        margin-bottom: 30px;
    }
    .innerApplication_main .app_wrap .app_image{
        width: 100%;
    }
 }