.wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
 
}

.wrapper .card {
  
  width: 30% !important;
  height: 300px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;

}

.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: #1a1932;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 2s;
}



.card .circle:hover .box {
  transform: translate(-50%, -50%) scale(0.91);
}

.card .circle .box span,
.wrapper .card {
  font-family: 'DINNextLTArabicLight';
  background: #ffa443;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.text {
  font-family: 'DINNextLTArabicLight';
  font-size: 18px;
  background: white;
  -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 5s;
}

.card .circle:hover .box span {
  transform: translate(-45%, -45%) scale(1.09);
}

.card .text {
  font-size: 20px;
  font-weight: 600;
  color:white;
}

@media(max-width: 753px) {

  .text {
    font-family: 'DINNextLTArabicLight';
    font-size: 15px;
    background: #ffa443;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .wrapper {
    max-width: 700px;
  }

  .wrapper .card {
    width: 100% !important;
    margin-bottom: 20px;
  }
}

@media(max-width: 505px) {
  .text {
    font-family: 'DINNextLTArabicLight';
    font-size: 15px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .wrapper {
    max-width: 500px;
  }

  .wrapper .card {
    width: 100%;
  }
}