IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

Improve your autoresponder

Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here Click to add your own text here

IconBox Title

Click to add your own text here Click to add your own text here

#top .flex_column.gridlayout:before,
#top .flex_column.gridlayout:after {
  display: none;
}

#top .flex_column.gridlayout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: auto auto; /* alterniert: Header-Track, Content-Track, Header-Track, ... */
  column-gap: 20px;
  row-gap: 0; /* wichtig, siehe Erklärung unten */
  align-items: stretch;
}

#top .flex_column.gridlayout .iconbox_content_title {
  hyphens: auto;
  text-transform: none;
}

#top .flex_column.gridlayout .iconbox {
  grid-row: span 2;
  display: grid;
  grid-template-rows: subgrid;
  margin: 0 0 40px 0; /* ersetzt den früheren row-gap zwischen den Kartenreihen */
  width: unset !important;
  background-color: #ddd;
  align-self: stretch;
}

#top .flex_column.gridlayout .iconbox_content {
  grid-row: span 2;
  display: grid;
  grid-template-rows: subgrid;
  background-color: transparent;
  box-shadow: none;
}

Again Iconboxes in one 1/1 column

Hello

While Vision Expo West draws participants from around the world. The international presence contributes to the event’s diverse perspectives and facilitates global collaboration and exchange within the eyecare community.

Heading with line break

Vision Expo West attracts a diverse range of over 400 exhibitors.

Bye

The event features a robust educational program with seminars, workshops, and lectures covering various topics such as clinical advancements.

Grid Layout Solution

again with subgrid trick.

#top .iconboxes-equalheight .entry-content-wrapper:before,
#top .iconboxes-equalheight .entry-content-wrapper:after,
#top .iconboxes-equalheight .entry-content-wrapper .flex_column:before,
#top .iconboxes-equalheight .entry-content-wrapper .flex_column:after {
  display: none;
}

#top .iconboxes-equalheight .entry-content-wrapper {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: auto auto auto; /* 3 Werte = 3er-Rhythmus statt 2er */
  column-gap: 20px;
  row-gap: 0;
  align-items: stretch;
}

#top .iconboxes-equalheight .entry-content-wrapper .flex_column {
  grid-row: span 3; /* überspannt alle 3 Zeilen ihrer Kartenreihe */
  display: grid !important;
  grid-template-rows: subgrid;
  margin: 0 0 80px 0 !important;
  width: unset !important;

}

.avia-section.iconboxes-equalheight .container {
  padding-top: 100px;  /* === space for the shifted icons === */
}

.avia-section.iconboxes-equalheight .entry-content-wrapper .flex_column,
.avia-section.iconboxes-equalheight .entry-content-wrapper .flex_column .av_font_icon .av-icon-char {
  background-color:  #e5e5e5;  /*** synchronised background-color ***/
}

.avia-section.iconboxes-equalheight .entry-content-wrapper .flex_column .av_font_icon {
  position: relative;
 /* === adjust to your needs - depends on icon dimensions === */
  top: -80px;
  margin-bottom: -80px; 
}