
.wrapper{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.wrapper .card {
  background: #fff;
  border: 1px solid #e2d8d8f7;
  width: 22%;
  height: 225px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  box-shadow: 0px 3px 11px 3px #80808063;
  margin: 10px;
}
.wrapper .card .circle{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  cursor: default;
}
.card .circle .box,
.card .circle .box span{
  position: absolute;
  top: 50%;
  left: 50%;
}
.card .circle .box{
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.2s;
}
.card .circle:hover .box{
  transform: translate(-50%, -50%) scale(0.91);
}
.card .circle .box span,
.wrapper .card .text{
  background: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.circle .box span{
  font-size: 38px;
  font-family: sans-serif;
  font-weight: 600;
  transform: translate(-45%, -45%);
  transition: all 0.1s;
}
.card .circle:hover .box span{
  transform: translate(-45%, -45%) scale(1.09);
}
.card .text{
  font-size: 20px;
  font-weight: 600;
}

.score-scale.text-right {
  float: left;
  width: 100%;
  margin-right: 15px;
  font-size: 15px;
  font-weight: bolder;
  margin-top: 30px;
  font-style: italic;
}

.score-scale ul{
  display: inline-flex;
}

.score-scale ul li {
  list-style: none;
  /* border-right: 1px solid #80808040; */
  padding-right: 15px;
}

.score-scale ul li span {
  width: 10px;
  display: inline-block;
  height: 10px;
  margin: 0px 4px;
} 

.score-scale ul li span.low {
  background-color: #e53935;
}

.score-scale ul li span.medium {
  background-color: #fb8c00;
}

.score-scale ul li span.high {
  background-color: green;
}
@media(max-width: 753px){
  .wrapper{
    max-width: 700px;
  }
  .wrapper .card{
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media(max-width: 505px){
  .wrapper{
    max-width: 500px;
  }
  .wrapper .card{
    width: 100%;
  }
}