/**
 * CSS for displaying 4 in a row icons (2 for mobile) with image
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package WordPress
 * @subpackage pollogen
 * @since pollogen 1.0
 */
.section_icons {
     position: relative;
     width: 100%;
     padding: 80px 0;
}
.section_icons .icons_wrapper {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}
.section_icons .item_wrapper {
    display: flex;
    flex-direction: column;
    align-items: 0 10px;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    flex: 1;
}
.section_icons .item_wrapper .icon img {
    width: 70px;
    height: 70px;
}

@media only screen and  (max-width: 990px) {
  .section_icons .icons_wrapper {
    flex-wrap: wrap;
  }
  .section_icons .item_wrapper {
    width: 50%;
  }

}
