Если адаптив не нужен...
<div class="container">
<div class="box box-left">
<img src="img/fp-l-up.png" alt="">
<img src="img/fp-l-d.png" alt="">
</div>
<div class="box box-right">
<img src="img/fpr.png" alt="">
</div>
</div>
.container {
display: flex;
width: 880px;
height: 480px;
background-color: #fdfbf3;
justify-content: center;
align-items: center;
}
.box-left {
width: 300px;
display: flex;
flex-direction: column;
margin-right: 15px;
}
.box-left img:first-child {
margin: 0 0 10px 0;
}
.box-right {
width: 500px;
}