<div>
<img src="http://www.imgworlds.com/wp-content/uploads/2015/12/generic.jpg" alt="">
</div>
div {
width: 550px;
height: 200px;
background: #000;
overflow: hidden;
border-top-left-radius:80px;
border-bottom-left-radius: 160px 250px
}
img {
max-width: 100%;
max-width: 100%;
}
<div class="modal-wrapper">
<div class="modal-window">
.........
</div>
<div class="overlay"></div>
</div>
<style>
.modal-wrapper {
position:fixed;
display:flex;
width:100%;
height:100%;
justify-content:center;
align-items:center;
background:rgba(0,0,0,.7);
z-index:100;
}
.overlay {
position:absolute;
width:100%;
height:100%;
z-index:1;
}
.modal-window {
width:300px;
height:500px;
z-index:2;
}
</style>