/* CSS Document */
#slideContainer {
	max-width: 60%;
  position: relative;
  margin: auto;
}

#slidesNavBar {
	text-align: center;
}

.slideshow {
  display: none;
	margin: auto;
}

.go-to-prev, .go-to-next {
  cursor: pointer;
  position: absolute;
  top: 48%;
  width: auto;
  margin-top: 0px;
  padding: 10px;
  color: #F2F2F2;
  font-weight: bold;
  font-size: 25px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.go-to-prev {
	left: -50px;
}

.go-to-next {
  right: -50px;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.active, .dot:hover {
  background-color: #717171;
}

/*Special code for home.html*/

#slideContainer-home {
	max-width: 70%;
  position: relative;
  margin: auto;
	margin-top: 5vh;
}

.slideImageTall-home {
	height: 90vh;
	margin-left: 17%;
}

.slideImageWide {
	width: 100%;
}

#imgCardContainer {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.imgCards {
	width: 73%;
}

.cardImageWide {
	width: 100%;
	
}

.cardImageTall {
	margin-left: 18%;
	width: 65%;
}

.cardImageTall35 {
	margin-left: 20%;
	width: 55%;
}