/**********feature boxes with icons**********/
.ib-featured-services{
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
	gap: 60px 25px;
	margin: 40px 5px;
	animation-delay: 0.5s;
	-webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
   }
  @-webkit-keyframes fadeInUp {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
  }
  @keyframes fadeInUp {
  0% {
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  }
  100% {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
}
.ib-feature-box{
	flex-shrink: 3;
	width: 300px;	
}
.ib-feature-info i {
    font-size: 37px;
    margin: 15px 32%;
    border-radius: 50%;
    width: auto;
    height: auto;
    padding: 35px 11px;
    color: white;
    display: block;
    text-align: center;
}
.ib-feature-info {
    text-align: center;
}
.ib-feature-box h4 {
    font-size: 18px;
    margin-top: 35px;
}
.ib-feature-info p {
    font-size: 16px;
	text-align: justify;
}