.widget-app{
    padding:150px 20px;
    background: rgb(86,162,238);
    background-image: url(../../assets/images/widget-call-to-action/background.png), linear-gradient(52deg, rgba(86,162,238,1) 0%, rgba(17,99,223,1) 60%);
    background-position: center;
    color:#fff;
}
.widget-app .container{
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    overflow: visible;
}
.widget-app .widget-app-content{
    width: calc(50% - 25px);
    display: flex;
    flex-wrap: wrap;

    transform: translateX(-50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-app .widget-app-content[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-app .widget-app-content .ui-title{
    margin-bottom:40px;
}
.widget-app .widget-app-content .el-text{
    width: calc(100% - 160px);
    margin-right:20px;
}
.widget-app .widget-app-content .el-text p{
    color:#fff;
    margin-bottom:20px;
}
.widget-app .widget-app-content .el-text a:first-child{
    margin-right:20px;
}
.widget-app .widget-app-content .el-qr{
    width: 140px;
}
.widget-app .widget-app-image{
    width: calc(50% - 25px);
    text-align: center;
    position: absolute;
    right: 0;

    transform: translateX(50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-app .widget-app-image[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-app .widget-app-image img{
    width: 100%;
    height: auto;
}

@media all and (max-width: 1024px){
	.widget-app{
        padding:100px 20px;
    }
    .widget-app .widget-app-content{
        width: calc(60% - 25px);
    }
    .widget-app .widget-app-image{
        width: calc(40% - 25px);
    }
}
@media all and (max-width: 768px){
    .widget-app .widget-app-content{
        width: 100%;
    }
    .widget-app .widget-app-content .el-text{
        width: 100%;
        margin-right:0px;
    }
    .widget-app .widget-app-content .el-qr{
        display:none;
    }
    .widget-app .widget-app-image{
        width: 100%;
        position:relative;
    }
}