Вы можете сначала попытаться настроить свой CSS следующим образом:
.owl-carousel{
display: flex;
flex-direction: row;
max-width:100%;
background-color: #a49e9e;
height: 100%;
justify-content: space-between;
}
.size625x488{
width: 625px;
height: 488px;
background-color: #e7e7e7;
margin: 1%;
}
._2ndColumn{
width: 50%;
background-color: #e7e7e7;
margin: 1%;
max-height: 100%;
}
.size462x216_1{
background-color: #696868;
width: 462px;
height: 216px;
margin: 1%;
}
.size462x216_2{
background-color: #696868;
width: 462px;
height: 216px;
margin: 1%;
margin-top: 8%;
}
А твой html примерно такой
<section class="wrapper">
<div class="owl-carousels owl-themes" id="home-slider2">
<div class="size625x488"> </div>
<div class="_2ndColumn">
<div class="size462x216_1"> </div>
<div class="size462x216_2"> </div>
</div>
</div> <!--Display flex makes it easier to style-->
</section>