.card-obras .card{
  background: #fff;
  height: 180px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
}
.card-obras .card .circle{
  position: relative;
  height: 95px;
  width: 95px;
  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,
.card-obras .card .text{
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(left, #012c8d, #2782d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 4rem;
}
.circle .box span{
  font-size: 24px;
  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: 1rem;
  font-weight: 600;
}

@media only screen and (max-width : 600px) {
  .card .text {
    font-size: 0.7rem;
    font-weight: 600;
  }
