.item-dev{
  border-radius: 20px;
  background: #f6f6f6;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  height: 100%;
}
.img-dev{
  width: 20%;
}
.text-dev{
  width: 80%
}

@media (max-width: 500px){
  .img-dev{
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
  }
  .text-dev{
    width: 100%
  }
}


.item-circle {
  width: 285px;
  height: 285px;
  border-radius: 50%;
  border: 5px solid #1268b2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 30px;
  position: relative;
  transition: 0.5s all;
}
.item-circle:hover{
  background: #1268b2;
}
.item-circle:hover .item-circle-in h3{
  color: #fff;
}
.item-circle:hover .item-circle-in p{
  color: #fff;
  cursor: default;
}
.item-circle .item-circle-in{
  text-align: center;
}
.item-circle .item-circle-in h3{
  font-size: 50px;
  color: var(--primary-color);
  font-family: 'UVNBachDang-Bold';
}
.item-circle .item-circle-in p{
  font-size: 18px;
  line-height: 1.5;
}

.item-circle img{
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

/* @keyframes example {
  0%{left: -30px}
  100%{left: -20px}
} */
@media (max-width: 900px){
  .item-circle{
    margin: auto;
  }
}
@media (max-width: 767px){
  .item-circle{
    margin: auto;
    margin-bottom: 20px;
  }
}