@charset "UTF-8";
/* CSS Document */

.carousel-container{
	height: 82vh;
	overflow-y: hidden;
} 

#carousel-container{
	width: 100%;
	height: 100%;
	position: relative;
}

.carousel--nav {
  width: 100%;
}

.carousel--nav .cycle-prev {
  left: 6vw;
  background: url("../images/buttons/left_arrow.png") no-repeat;
}

.carousel--nav .cycle-next {
  right: 6vw;
  background: url("../images/buttons/right_arrow.png") no-repeat;
}

.carousel--nav .cycle-prev,
.carousel--nav .cycle-next {
  color: transparent;
  width: 15px;
  height: 30px;
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1000;
  margin-top: -15px;
}

.carousel:hover .carousel--nav .cycle-prev, .carousel:hover .carousel--nav .cycle-next{
	display: block;
}

.carousel.touch_screen .carousel--nav{ /*Don't display nav buttons on touch screen devices*/
	display: none;
}

.carousel .carousel-swipe_message{ /*Don't display swipe message on desktops*/
	display: none;
}

.carousel.touch_screen .carousel-swipe_message{
	display: block;
	position: absolute;
	top: 50%;
	left: 10%;
	z-index: 1000;
	width: 80%;
	text-align: center;
	font-size: larger;
}

.carousel--nav .cycle-prev:hover, .carousel--nav .cycle-prev:active,
.carousel--nav .cycle-next:hover,
.carousel--nav .cycle-next:active {
  opacity: .75;
}

.carousel--bottom-content {
  padding-top: 1.5rem;
  padding-bottom: 2.3rem;
}

.carousel--bottom-content > * {
  padding: 0;
  margin: 0;
}

.carousel--bottom-content h3 {
  font-family: "LyonText-RegItalic", "Times New Roman", Times, serif;
  /* 3 */
  /* 3 */
  /* 4 */
  /* 6 */
  /* 6 */
  /* 7 */
  font-size: 12px;
  /* 9 */
  font-size: 1.2rem;
  /* 9 */
  padding-bottom: 0.2rem;
}

@media screen and (max-width: 768px) {
  .carousel--bottom-content h2,
  .carousel--bottom-content h3 {
    font-size: 1rem;
  }
}