.carousel-quote {}
/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
  width: 20000em;
  position: relative;
  /* Optional, required in this case since it's a <ul> element */
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
  /* Required only for block elements like <li>'s */
  float: left;
  /*width:100%;
  max-width:700px;*/
  max-width: 900px;
  display: block;
}
.carousel-quote blockquote {
  margin: 0;
  padding: 20px 40px;
  margin-top: 10px;
}
.carousel-quote blockquote p {
  font-size: 18px;
  color: #333;
  font-weight: 400;
  margin: 0.4em 0 1em;
  margin: 0 0 7px !important;
}
.carousel-quote blockquote footer {
  font-size: 14px;
  font-style: italic;
  margin-right: 5px;
  color: #333;
}
.carousel-quote blockquote footer span {
  color: #333;
}
.carousel-nav {
  border-top: none;
  padding-top: 5px;
  text-align: center;
  margin-top: 10px;
}
.carousel-nav a {
  display: inline-block;
  height: 30px;
  width: 30px;
  background-color: #888;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  margin: 0 1px 0;
  text-align: center;
  font-size: 24px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.carousel-nav a:hover {
  background-color: #333;
}
.jcarousel-control-prev {}
.jcarousel li {
  max-width: 100% !important;
}
.carousel-quote blockquote footer {
  background-color: transparent;
}
.carousel-quote blockquote {
  text-align: left;
}
.jcarousel-wrapper {
  max-width: 100%;
  width: 100%;
  background-color: #eee !important;
  opacity: .77;
  margin-bottom: 30px;
  padding: 15px;
	border-radius: 0;
}
.carousel-nav {
  display: flex;
  justify-content: space-between;
  width: 70px;
  margin: 0 auto;
}
.carousel-nav a {
  position: static;
  background-color: #666 !important;
  border-radius: 30px;
  padding-top: 1px;
}
.jcarousel-control-prev {
  padding-right: 2px;
}
.jcarousel-control-next {
  padding-left: 2px;
}
.carousel-nav a:hover {
  background-color: #333 !important;
}