  	:root {
  --gutter: 20px;
}

.app {
  padding: var(--gutter) 0;
  display: grid;
  grid-gap: var(--gutter) 0;
  grid-template-columns: var(--gutter) 1fr var(--gutter);
  align-content: start;
}

.app > * {
  grid-column: 2 / -2;
}

.app > .full {
  grid-column: 1 / -1;
}

.hs {
  display: grid;
  grid-gap: calc(var(--gutter) / 2);
  grid-template-columns: 10px;
  grid-template-rows: minmax(150px, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: calc(30% - var(--gutter) * 2);
	/* changed from 50% and created media query for small screens and medium screens*/
  overflow-x: scroll;
  scroll-snap-type: x proximity;
  padding-bottom: calc(.05 * var(--gutter));
  margin-bottom: calc(-.25 * var(--gutter));
}

.hs:before,
.hs:after {
  content: '';
  width: 10px;
}


/* visual styles */

ul {
  list-style: none;
  padding: 0;
}

.app {
  width: 100%;
  height: auto;
  overflow-y: scroll;
		background: white;
}

.hs > li,
.item {
  scroll-snap-align: center;
  padding: calc(var(--gutter) / 2 * 1.5);
  
  justify-content: center;
  align-items: center;
  background: #06386e;
  border-radius: 8px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1); /* lighter than the typical card */
}

.item img {
	padding-bottom:10px;
	  width:100%;
  height:auto;
  max-width:600px;
}

.item p {
  font-weight: normal;
  padding-left:10px;
  padding-right:10px;
	color:white;
}

.no-scrollbar {
  scrollbar-width: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.swiperswipes {
	text-align:center;
	color:#747474;
  font-weight:bold;
}

@media only screen and (min-width: 601px) and (max-width: 959px) {

.hs {
  grid-auto-columns: calc(50% - var(--gutter) * 2);
}
}

@media (max-width: 600px) {
  .item img {
    min-width: 200px;
}
  .hs {
    grid-auto-columns: unset;
  }
  .item p {
    font-weight:normal;
    font-size:0.8rem;
    color:#002144;
  }
.hs > li,
.item {
    background:white;
  }
  .swiperswipes {
	text-align:center;
	color:#747474;
  font-weight:bold;
    font-size:small;
    padding-bottom:-10px;
}
  #timeline h3 {
    font-size:1.0rem;
    font-weight:bold;
  }

}