Вам нужно указать, overflow: hidden
и position: relative;
на упаковке.
.wrapper{
position: relative;
background: #efefef;
height: 250px;
overflow: hidden;
}
.wrapper::before{
width: 300px;
height: 300px;
border-radius: 500px;
background-image: linear-gradient(to bottom, #F38A00, #EC6E00 100%);
position: absolute;
right: 20%;
content: '';
}
<div class="wrapper"></div>