.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 80vh;
  z-index: 1;
}
.main-content{
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .sh-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .sh-slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.slideshow .sh-slide.is-active {
  display: block;
}
.slideshow .sh-slide.is-loaded {
  opacity: 1;
}
.slideshow .sh-slide .caption {
  position:absolute;
  left:5px;
  bottom:0;
}
.slideshow .sh-slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: bottom;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .sh-slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.slideshow .sh-slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .sh-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #b57edc;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
}
.slideshow .sh-slide .title {
  margin: 0 auto 15px;
  max-width: 1000px;
  font: 95 30px/1.2 "Oswald", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.slideshow .sh-slide .text {
  margin: 0 auto;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.4;
}
@media (min-width: 481px) and (max-width: 768px) {
	.slideshow .sh-slide .title {
		margin: 0 auto 15px;
		max-width: 1000px;
		font: 100 15px/1.2 "Oswald", sans-serif;
		letter-spacing: 0.15em;
		text-transform: uppercase;
	}
	.slideshow .sh-slide .text {
		margin: 0 auto;
		max-width: 500px;
		font-size: 10px;
		line-height: 1.4;
	}
}

.slideshow .pagination {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  text-align: center;
}
.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 46px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}
.slideshow .pagination .item + .page {
  margin-left: -2px;
}
.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}
.slideshow .pagination .item::after {
  width: 0;
  background: #b57edc;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #b57edc;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}
.slideshow .arrows .prev {
  left: 30px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
  margin-bottom: 10px;
}
.slideshow .arrows .next {
  right: 30px;
}
.slideshow .arrows .next:hover .svg {
  left: 10px;
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #b57edc;
  transition: left 0.2s ease;
}

/* list */
.mkt-list-ul {
	list-style-type:none;
	padding:0;
	margin:0;
}
.mkt-list-ul li{ 
	background: square no-repeat left center; 
	padding-left: 35px;
	padding-top: 5px;
	padding-bottom: 5px;
	list-style-type: none;
	color: #000;
	border-bottom:1px solid #ddd;
}
.mkt-list-ul li ul li{ 
	background: disk no-repeat left center; 
	padding-left: 65px;
	padding-top: 5px;
	padding-bottom: 5px;
	list-style-type: none;
	color: #000;
	border-bottom:1px solid #ddd;
}
.mkt-list-ul li:last-child{
	border-bottom:none
}
ul.mkt-list-ul {
    margin: 0px 0px 0;
}
@media (min-width: 481px) and (max-width: 768px) {
ul.mkt-list-ul {
    margin: 0px 0px 0;
}
}
@media (max-width: 480px) {

ul.mkt-list-ul {
    margin: 0px 0px 0;
}
}
