.S_App_main {
    margin-top: 5%;
}

.S_App_main .application_title {
    font-family: 'TimesNewRoman-Bold';
    font-weight: bold;
    font-size: 48px;
    color: #333333;
    text-align: center;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.S_App_main .application_title span {
    color: var(--conmmonColor);
}

.S_App_main .app_list .app_item {
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 222px;
}

.S_App_main .app_list .app_item:nth-child(even) {
    flex-direction: row-reverse;
}

.S_App_main .app_list .app_item .item_info {
    position: relative;
    z-index: 99;
    width: 57%;
    margin-right: -10%;
    padding: 55px 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0px 0px 0px 0px;
    border: 3px solid;
    backdrop-filter: blur(5px);
    border-image: linear-gradient(222deg, rgba(255, 255, 255, 1), rgba(35, 114, 201, 1)) 3 3;
    margin-bottom: -190px;
}

.S_App_main .app_list .app_item:nth-child(even) .item_info {
    margin-right: 0;
    margin-left: -10%;
}

.S_App_main .app_list .app_item .item_info .item_title {
    font-family: 'DIN-Bold';
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: 25px;
}

.S_App_main .app_list .app_item .item_info .item_title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 94px;
    height: 5px;
    border-radius: 10px;
    background: var(--conmmonColor);
}

.S_App_main .app_list .app_item .item_info .item_desc {
    font-family: 'Arial-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.S_App_main .app_list .app_item .item_info .item_num {
    font-family: 'DIN-Bold';
    font-weight: 400;
    font-size: 128px;
    color: #333333;
    text-align: right;
    font-style: normal;
    text-transform: none;
}

.S_App_main .app_list .app_item .item_img {
    width: 60%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 42%;
    z-index: 9;
}

.S_App_main .app_list .app_item .item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    -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;
}

.S_App_main .app_list .app_item:hover .item_img img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}


@media only screen and (max-width: 1100px) {

    .related_product,
    .related_news .related_wrap .news_left,
    .related_news .related_wrap .news_right {
        visibility: visible !important;
    }
}

@media only screen and (max-width: 950px) {
    .S_App_main .application_title {
        font-size: 40px;
        line-height: 1.5;
    }

    .S_App_main .app_list .app_item .item_info {
        padding: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .S_App_main .application_title {
        font-size: 35px;
        line-height: 1.5;
    }

    .S_App_main .app_list .app_item {
        flex-direction: column-reverse !important;
        align-items: center;
        margin-bottom: 30px;
    }

    .S_App_main .app_list .app_item .item_img {
        width: 100%;
        padding-bottom: 78%;
    }

    .S_App_main .app_list .app_item .item_info {
        width: 100%;
        margin: 0 !important;
        padding: 20px;
    }

}

@media only screen and (max-width: 480px) {
    .S_App_main .application_title {
        font-size: 30px;
        line-height: 1.5;
    }
}