  .carousel {
	width: 100%;
	overflow: hidden;
	position: relative;
  }

  .carousel ul li{
	width:100%;
	list-style: none;
	height:100%;
  }
  .carousel ul li:not(:first-child){display: none;}
  
  .carousel-slide {
	display: inline-block;
	/*width: 33%;*/
	width: 100%;
  }
  
  .carousel-slide img {
	width: 100%;
	height: auto;
  }
  
  .carousel-prev,
  .carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2rem;
	font-weight: bold;
	color: white;
	text-decoration: none;
	padding: 1rem;
	z-index: 1;
  }
  
  .carousel-prev {
	left: 0;
  }
  
  .carousel-next {
	right: 0;
  }