/*
*
* @author Conduct Engineering
*/

/*
* -------------------------------------------------------
* Home Hero
* -------------------------------------------------------
*/
.home-slider {
	position: relative;
	overflow: hidden;
}


.home-slider::before {
	content: "";
	top: 0px;
	left: 0px;
	position: absolute;
	z-index: 1;
	width: 10%;
	height: 100%;
    background: none;
	background: linear-gradient(90deg, rgba(255,255,255,1) 1% , rgba(255,255,255,0) 99%);
	display: none;
}

.home-slider::after {
	content: "";
	top: 0px;
	right: 0px;
	position: absolute;
	z-index: 1;
	width: 10%;
	height: 100%;
	background: none;
	background: linear-gradient(90deg, rgba(255,255,255,0) 1% , rgba(255,255,255,1) 99%);
	display: none;

}

@media (min-width: 920px) {
  .home-slider::before,
  .home-slider::after {
  	display: block;
  }
}

.home-slider .slick-arrow {
	z-index: 1000;
}

.home-slider .slick-arrow::before {
	opacity: 1.0;
	color: #000;
}
