

.slideshow {
	margin-top:100px;
	displat:block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 85vh;
  z-index: 1;
}
.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
	right:0;
	bottom:0; 
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slideshow .slide.is-active {
  display: block;
}
.slideshow .slide.is-loaded {
  opacity: 1;
}

.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}
.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0); /*waikee overlay color*/

}
.slideshow .slide .image {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
	width: 100%;
	height: 100%;
  top: 0;
	bottom:0;
	left:0;
	right:0;
  z-index: 2;
  color: #fff; 
  display: flex;
  justify-content: center;
  align-items: center;
}

/*waikee add additional wrapper to make it stay within width*/
.slideshow .slide .waikee-wrap{
	display: grid; 
	margin:auto; 
	grid-auto-flow: dense; 
	grid-template-columns: 2.5fr 2fr;
	/*border: 1px solid red;*/
	width:100%;
	max-width:1200px;
	margin:auto;
	direction: rtl;
}


.slideshow .slide .caption {
	display:block;
	direction: ltr;
  text-align: left; /* optional, to make sure alignment is as expected */
	
}

.slideshow .slide .img-product img{
	display:block;
	margin:auto;
	width:100%;
	
}
.slideshow .slide .bg-blurr{
	color:#FFF;
	background: rgba(255,255,255 ,0.1);
	align-self: center;
	padding:3rem;
}
.slideshow .slide .title {
	font-size: 3rem;
	line-height:3rem;
	font-weight: 900;
	text-transform: uppercase;
	color:#ffae00;
	margin:1rem 0;
}
.slideshow .slide .text {
	font-weight: normal;
	font-size: 2rem;
	line-height:2rem;
	margin:1rem 0;
}



@media only screen and (max-width: 740px) {
	.slideshow {
  height: 100vh;
}
	.slideshow .slide .waikee-wrap{
	grid-template-columns: repeat(1, 1fr);
	transform: scale(0.8, 0.8);
	}
	.slideshow .slide .caption{
		text-align: center;
	}
	.slideshow .slide .title {
	font-size: 2.3rem;
	line-height:2.3rem;
}
.slideshow .slide .text {
	font-size: 1.5rem;
	line-height:1.5rem;
	
}
}

@media only screen and (max-width: 420px) {
	.slideshow {
  height: 80vh;
}

}








.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: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}
.slideshow .pagination .item:hover::before, .slideshow .pagination .item.is-active::before {
  background-color: #fff;
}
.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 0px;
  position: absolute;
  top: 55%;/*waikee pust down arrow*/
  cursor: pointer;
  z-index: 3; 
}
.slideshow .arrows .prev {
  left: 2%;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
}
.slideshow .arrows .next {
  right: 2%; 
}
.slideshow .arrows .next:hover .svg {
  left: 10px; 
}
.slideshow .arrows .svg {
  position: relative;
  left: 0;
  width: 14px;
  height: 26px;
  fill: #fff;
  transition: left 0.2s ease;
}



