<div class="bound"></div>
.bound {
background-color: #3eaaf2;
width: 300px;
height: 100px;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.bound::before {
content: "";
width: 40px;
height: 40px;
border-radius: 50%;
display: block;
background: #fff;
position: absolute;
top: 50%;
left: -20px;
transform: translateY(-50%);
}
.bound::after {
content: "";
width: 40px;
height: 40px;
border-radius: 50%;
display: block;
background: #fff;
position: absolute;
top: 50%;
right: -20px;
transform: translateY(-50%);
}