.parallax-image-widget {
    position: relative;
    height: 100%;
    .parallax-image1 {
            position: absolute;
            top: 230px;
            z-index: 1;
            background-color: #fff;
            padding: 20px;
            -webkit-box-shadow: 0px 6px 21px 3px rgba(0, 0, 0, .1);
            box-shadow: 0px 6px 21px 3px rgba(0, 0, 0, .1);   
            img {
                margin: 0 !important;
                padding: 0 !important;
                width: 400px !important;
                height: 300px !important;
                object-fit: cover;           
            }
    }
    .parallax-image2 {
        position: relative;
        top: 0;
        z-index: 0;
        width: fit-content;
        height: 100%;
        margin-bottom: 50px;   
        margin-left: auto;
        img {
            width: 450px !important;
            height: 500px !important;
            object-fit: cover;
            -webkit-box-shadow: 0px 6px 13px 3px rgba(0, 0, 0, .1);
            box-shadow: 0px 6px 13px 3px rgba(0, 0, 0, .1);       
        }
    }
}