/* icon-blocks */
.info-blocks{
	display:grid;

	gap:50px 30px;
	justify-content:center;
  align-items: stretch;

  overflow-wrap: break-word;  
  word-break: break-word;     
}

.info-block{
	text-align:center;
	padding:70px 30px 30px 30px;
  position:relative;
}



.info-block img{
	width:auto;
  border-radius: 50%;
  padding: 19px;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
}

.info-block h3{
  font-size: var(--wp--preset--font-size--l);
  color: unset;
  line-height: unset;
  font-weight: bold;
  padding: unset;
  margin-top:15px;
}

.info-block p{
	margin:10px 0;
  font-size:var(--wp--preset--font-size--m);
  line-height: var(--wp--custom--line-height--main-font); 
}



.info-block p{

}



@media only screen  
and (max-width : 768px) {

  .info-blocks{
    flex-wrap:wrap;
    gap:60px;
  }
}

