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.

Again

Vision Expo West attracts a diverse range of over 400 exhibitors, including eyewear manufacturers, lens companies, frame designers, technology providers, and industry service providers.

Bye

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

Images as Iconbox Icons

  • give to the color-section a custom class –
    e.g.: iconboxes-equalheight
  • within this color-section there are only these columns –
    no other elements
  • do not give the columns equal height option.
  • breakpoint – better at 990px
  • layout inside column
    1) standalone icon
    2) a heading
    3) some text

see:

because on display: flex the default value is for align-items: stretch – the columns have the same height.

#top .av_font_icon a {
  color: inherit;
  display: inline-table;
}


@media only screen and (min-width: 990px)  {
  .avia-section.iconboxes-equalheight .entry-content-wrapper {
    display: flex;
  }
}

.avia-section.iconboxes-equalheight .container {
  padding-top: 100px;
}

.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;
  top: -100px;
  margin-bottom: -100px; 
}


@media only screen and (max-width: 989px)  {
  .avia-section.iconboxes-equalheight .entry-content-wrapper .flex_column {
    margin-bottom: 120px !important;
  }
}