.mobile_app{
    .mobile_app_wrapper{
        height: 400px;
        width: 82%;
        margin: 0 auto;
        background-image: linear-gradient(to left, #654fdd, #5d46d7, #543dd1, #4b34cb, #422bc5);
        border-radius: 26px;
        position: relative;
        overflow: hidden;
        z-index: 1;
       .mob_shape{
        position: absolute;
        top: -30px;
        right: -30px;
        z-index: -1;
         img{
            max-height: 300px;
            width: auto;
            object-fit: cover;
            opacity: .4;
            transform: rotate(-20deg);
         }
       }
       .mob_shape_2{
        position: absolute;
        bottom: -30px;
        left: -30px;
        z-index: -1;
         img{
            max-height: 300px;
            width: auto;
            object-fit: cover;
            opacity: .3;
            transform: rotate(-20deg);
         }
       }
       .mob_text{
        padding: 10px 10px 10px 70px;
        h2{
            font-size: 38px;
            color: $whiteColor;
            font-weight: 700;
        }
        h3{
            font-size: 17px;
            color: #f8f3f3;
            font-weight: 400;
            line-height: 24px;
            padding: 10px 0;
        }
       }
       .mob_img{
        display: flex;
        justify-content: center;
        align-items: end;
        padding: 10px;
        height: 400px;
         img{
           height: 100%;
           width: 100%;
           object-fit: contain;   
         }
       }
    }
}
.app_btns{
    display: flex;
    align-items: center;
    padding-top: 10px;
    .app_btn{
        width: 150px;
        background-color: #fff;
        border-radius: 10px;
        padding: 12px 5px 8px 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        i{
            font-size: 24px;
            color: #000;
        }
        .btn_text{
            padding-left: 10px;
            .text_one{
                font-size: 11px;
                font-weight: 400;
                color: #595959;
                line-height: 10px;
                text-transform: uppercase;
            }
            .text_two{
                font-size: 15px;
                font-weight: 500;
                color: #000000;
                line-height: 22px;
            }
        }
    }
    .btn_2{
        margin-left: 12px;
    }
}
   