
.home-slider {
	position: relative;
	margin-bottom: 50px;
}
.home-slider .slide-item figure {
	margin: 0 0 0;
	padding: 0 0 0;
}
.home-slider .slide-item figure img {
	display: block;
	min-height: 240px;
	width: 100%;
	object-fit: cover;
}
.home-slider .slide-item figcaption {
	display: flex;
	justify-content: space-between;
    align-items: center;
	margin-top: 16px;
}
.home-slider .slide-item .slide-title {
	font-size: 20px;
	line-height: 23px;
	font-weight: 400;
	flex: 1;
	margin-right: 12px;
}
.home-slider .slide-item .slide-action {
	font-size: 16px;
	line-height: 16px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 12px 28px;
	border: 1px solid #5e4f4d;
	display: block;
	transition: color 0.3s, background-color 0.3s;
}
.home-slider .slide-item .slide-action:hover {
	color: #fff;
	background-color: #5e4f4d;
}

.home-slider .slick-dots {
	position: absolute;
	bottom: 25%;
	left: 50%;
	display: flex;
	justify-content: center;
	margin: 0 0 0;
	padding: 0 0 0;
	-webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.home-slider .slick-dots li {
	margin: 0 6px;
	display: block;
}
.home-slider .slick-dots li button {
	font-size: 1px;
	line-height: 1px;
	width: 15px;
	height: 15px;
	display: block;
	text-indent: -5000px;
	border: 1px solid #fff;
	background-color: rgba(255,255,255,0.75);
	cursor: pointer;
}
.home-slider .slick-dots li button:hover,
.home-slider .slick-dots li.slick-active button {
	border: 1px solid #5e4f4d;
	background-color: rgba(255,255,255,1);
}


.home-slider .slick-arrow {
	width: 40px;
	height: 80px;
	top: calc(50% - 32px);
}
.home-slider .slick-prev {
	left: -10px;
}
.home-slider .slick-next {
	right: -10px;
}

/* video */
.banner-video {
	max-width: 100%;
	position: relative;
}
.banner-video video {
	width: 100%;
}
.banner-video .playpause {
	position:absolute;
	left:50%;
	top:50%;
    width: 40px;
    height: 52px;
	transform: translateX(-50%) translateY(-50%);
	cursor: pointer;
}
.banner-video .playpause img {
	display: block;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
	.banner-video .playpause {
		width: 68px;
		height: 89px;
	}
}

@media (min-width: 992px) {
	
	.home-slider .slide-item .slide-title {
		font-size: 28px;
		line-height: 28px;
		margin-right: 25px;
	}
	.home-slider .slide-item .slide-action {
		font-size: 20px;
		line-height: 20px;
		padding: 13px 43px;
	}
	
	.home-slider .slick-prev {
		left: -15px;
	}
	.home-slider .slick-next {
		right: -15px;
	}
	
}

@media (min-width: 1420px) {
	
	.home-slider .slick-prev {
		left: -35px;
	}
	.home-slider .slick-next {
		right: -35px;
	}

}


