.bg-slider-sec {
	position: relative;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.bg-slider-sec::before,
.background-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,.7);
	z-index: 1;
}
.bg-slider-sec .container {
	position: relative;
	z-index: 2;
}
.bg-slider-sec__slider {
	margin: 0 -15px;
}
.background-slide {
	position: relative;
	text-align: center;
	padding: 50px 15px 82px;
}
.background-slide__count,
.background-slide__title,
.background-slide__content {
	color: #fff;
}
.background-slide__count,
.background-slide__title,
.background-slide__content,
.background-slide__item-footer {
	position: relative;
	z-index: 3;
}
.background-slide__item-footer {
	margin-top: 20px;
}
.background-slide__count {
	display: none;
}
.background-slide__content {
	max-width: 400px;
	font-size: 20px;
	line-height: 1.5em;
	font-weight: 300;
	margin: 0 auto;
}
.background-slide__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (min-width:576px) {
	.bg-slider-sec__slider .splide__track {
		overflow: visible;
	}
	.background-slide__image,
	.background-slide::before {
		width: 100vw;
		max-width: 100vw;
		left: 50%;
		transform: translate(-50%,0);
		-webkit-transform: translate(-50%,0);
	}
}
@media screen and (min-width:768px) {
	.background-slide {
		padding: 80px 15px;
	}
}
@media screen and (min-width:992px) {
	.background-slide {
		text-align: left;
	}
	.background-slide__content {
		margin-left: 0;
		max-width: 350px;
	}
}
@media screen and (min-width:1200px) {
	.background-slide__count {
		display: block;
		margin-bottom: 20px;
		font-size: 18px;
	}
	.background-slide__content {
		font-size: 18px;
	}
	.bg-slider-sec__slider.is-initialized:not(.is-active) .splide__list {
		display: flex;
		display: -webkit-flex;
	}
	.background-slide {
		transition: 1s ease all;
		width: 28%;
		text-align: left;
		height: auto;
		min-height: 510px;
	}
	.background-slide:hover {
		width: 44%;
	}
	.background-slide::before {
		transition: 1s ease all;
		opacity: 0;
		transform: none;
		-webkit-transform: none;
	}
	.background-slide:hover::before {
		opacity: .7;
	}
	.background-slide:nth-child(1)::before,
	.background-slide:nth-child(3)::before {
		width: 9999px;
		max-width: 9999px;
	}
	.background-slide:nth-child(2)::before {
		width: 100%;
		max-width: 100%;
		left: 0;
	}
	.background-slide:nth-child(1)::before {
		right: 0;
		left: auto;
	}
	.background-slide:nth-child(3)::before {
		right: auto;
		left: 0;
	}
	.background-slide:not(:first-child) {
		border-left: 1px solid #585858;
	}
	.background-slide__image {
		display: none;
	}
	.background-slide__content {
		margin-bottom: 110px;
	}
	.background-slide__item-footer {
		position: absolute;
		bottom: 80px;
		left: 15px;
	}
}