

.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}
@media only screen and (max-width: 620px) {
	.slideshow {
  height: 80vh;
}
}

.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 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.overlay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* waikee overlay darkness */
}
.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.slideshow .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
	padding:0px 80px;
}


/*waikee caption*/
.slideshow .slide .caption {

}


.slideshow .slide .title{
  margin: 10% auto auto auto;
	font-size: 5em;
	font-weight: 600; 
	line-height:1em;
	text-transform: uppercase;
}

.slideshow .slide .text {
  margin: 0 auto;
	font-size: 3em;
	font-weight: 600; 
	line-height:1em;
	text-transform: uppercase;
}


.slideshow .slide .begin{
	display:block;
  font-size: 60px;
	color:#fff;
	margin-top:20px;
	opacity:0.2;
}

.slideshow .begin .fa{
	transition: all 0.2s ease;
}

.slideshow .begin .fa:hover{
	transform: translate(0px, 10px);
}

@media only screen and (max-width: 1000px) {
.slideshow .slide-content {
	padding:0px 40px;
}
	.slideshow .slide .title,
	.slideshow .slide .text {
	font-size: 2em;
}
	.slideshow .slide .begin{
	margin-top:0px;
}
}


.svg-arrow-left,
.svg-arrow-right{
  font-size: 60px;
	color:#fff;
}


.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: 10px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
	opacity:0.2;
}
.slideshow .arrows .prev {
  left: 0px;
}
.slideshow .arrows .prev:hover .svg {
  left: -10px;
} 
.slideshow .arrows .next {
  right: 0px;
} 
.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;
}

/*************** Waikee added new code for slide thumb images and text on left *****************/
wk-content-wrapper{
	display: grid; 
	margin:auto; 
	grid-auto-flow: dense; 
	width:100%;
	max-width:1260px;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	direction: rtl;
}

wk-content-wrapper .left-caption{
	text-align:left;
}

wk-content-wrapper .feature-img {
	display:block;
	overflow: hidden;
	width:100%;
	height:85%;
	transform: translate(0px,20px); /*waikee hack workaround*/
}
wk-content-wrapper .feature-img img{
	width:100%;
	height:100%;
	object-fit: contain;

}

@media only screen and (max-width: 1000px) {
	wk-content-wrapper{
		display:block;

	}
	wk-content-wrapper .feature-img {
		display:block;
		margin:auto;
		max-height:50vh; 
		padding-top:40px;
	}
	wk-content-wrapper .feature-img img{
		width:80%;
		height:auto;
	
	}
	wk-content-wrapper .left-caption{
		text-align:center;
		padding:0px;	
		margin:0px;
	}
}

/*************** Waikee added new code for vide fullscreen *****************/
.bg-vid-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center; 
}

video.cover {
    width: 100%; 
    min-width: 240vh;
    height: auto;
}
