GeorgieDev,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.sectionsCircle {
height: 300px;
width: 300px;
border-radius: 50%;
overflow: hidden;
display: flex;
border: 1px solid #800080;
justify-content: center;
margin: 0 auto;
}
.rictangle{
width: 100%;
height: 300px;
line-height: 300px;
text-align: center;
background-color: #808080;
flex: 1;
}
.rictangle:nth-child(2n) {
background-color: #800080;
}
.rictangle:hover{
color: #FFFFFF;
}
</style>
</head>
<body>
<div class='sectionsCircle'>
<div class=rictangle>1</div>
<div class=rictangle>2</div>
<div class=rictangle>3</div>
<div class=rictangle>4</div>
<div class=rictangle>5</div>
<div class=rictangle>6</div>
<div class=rictangle>7</div>
</div>
</body>
</html>