<div class="cir">
<div class="block"></div>
<div class="bar"></div>
<div class="block hidden"></div>
</div>
<style>
body {
background: #D95362;
display: grid;
place-content: center;
height: 100%;
width: 100%;
margin: 0;
}
.cir {
background: #2D3464;
width: 13.77rem;
height: 13.77rem;
border-radius: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.block {
background: #D95362;
height: 3.4rem;
width: 2.5rem;
}
.bar {
background: #D95362;
height: 2.5rem;
width: 9.4rem;
}
.hidden {visibility: hidden}
</style>