#virus_zika .content {
  display: flex;
  overflow: hidden;
height: calc(100vh - 100px);
}

#virus_zika .content .item {
  width: 0px;
  visibility: hidden;
  opacity: 0;
  /*transition: visibility 0s, opacity 1s ease-in-out;*/
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  scroll-snap-align: center;
  margin-right: 50px;
  box-sizing: border-box;
  background: white;
  transform-origin: center center;
  flex-direction: column;
  height: 0px;
  padding: 0px;
  margin: 0px;
}

#virus_zika .content .item img {
	transition: visibility 0s, opacity 1s ease-in-out;
	opacity: 0;
}

#virus_zika .content .item.active img {
	opacity: 1;
}

#virus_zika .content .item.active {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

#virus_zika { scroll-behavior: smooth; }

html {
  scroll-behavior: smooth;
}

@media only screen and (max-width: 640px) {
	flex-container .fusion-row .fusion-flex-column.fusion_builder_column_1_1,
	#virus_zika .content {
		height: 100%;
	}
}