  	:root {
  --gutter: 5px;
}

.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: 5px;
  grid-template-rows: minmax(150px, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 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: white;
 
}

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

.item p  {

  padding-left:10px;
  padding-right:10px;
	color:black;
		font-size:0.9rem;
		line-height:1.2rem;
}

.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;
  }

}

