/************************
        services
 *********************/
.swiper-service-wrap {
	position:relative;
	box-sizing:border-box;
	border-radius: 0;
	overflow:hidden
}
.swiper-service {
	height:612px
}
.swiper-service .swiper-slide:not(:last-child):after {
	content:"";
	display:inline-block;
	height:100%;
	position:absolute;
	top:0;
	width:2px;
	left:0;
	background-color: #f5f5f5
}
.swiper-service-wrap .swiper-slide::before {
	content:'';
	background-blend-mode: color;
	background: #D0E2E5;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.98) 100%);
	width:100%;
	height:100%;
	top: 0;
	right: 0;
	left: 0;
	transition: 0.4s ease;
	position:absolute
}
.swiper-service-wrap .swiper-slide.slide-active::before {
	top: 100%;
}
.swiper-service .swiper-slide {
	display:flex;
	align-items:end
}
.item-service {
	position: relative;
	padding: 24px 25px 0;
	text-align: center;
	z-index: 0;
	width: 100%;
	min-height: 194px;
}
.item-service .i-sides::before {
	content: '';
	top:100%;
	right: 0;
	height: 40px;
	width: 40px;
	border-bottom-right-radius: 50%;
	box-shadow: 0 21px 0 0 var(--bg_body);
	z-index: 1;
	position: absolute;
	transition:0.4s ease;
}
.item-service .i-sides::after {
	content: '';
	top:100%;
	left: 0;
	height: 40px;
	width: 40px;
	border-bottom-left-radius: 50%;
	box-shadow: 0 21px 0 0 var(--bg_body);
	z-index: 1;
	position: absolute;
	transition:0.4s ease;
}
.item-service .title {
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	margin-bottom: 20px;
	font-family: var(--bold_font);
	transition: 0.4s ease
}
.item-service .desc {
	font-size: 16px;
	line-height: 32px;
	color: #FFF;
	transition: 0.4s ease
}
.item-service:before {
	content:'';
	background: var(--bg_body);
	width:100%;
	height:100%;
	top:100%;
	transition:0.4s ease;
	display:inline-block;
	position:absolute;
	right:0;
	left:0;
	z-index:-1
}
.item-service .link {
	opacity: 0;
	visibility: hidden;
	margin-top: 16px;
	transition:0.4s ease
}

.slide-active .item-service .link {
	opacity: 1;
	visibility: visible;
}
.slide-active .item-service:before {
	top:0
}
.slide-active .item-service .i-sides::after,
.slide-active .item-service .i-sides::before {
	top: -40px;
}
.slide-active .item-service .title,
.slide-active .item-service .desc {
	color: var(--color_text);
}
.overlay__bg {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:0
}
.overlay-cat {
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	opacity:0;
	transform:scale(1.025);
	transition:all .85s cubic-bezier(.39,.58,.57,1);
	transition-property:opacity,transform
}
.overlay-cat.active-overlay {
	opacity:1;
	transform:scale(1)
}
.overlay-cat img {
	width:100%;
	height:100%;
	object-fit:cover
}
@media screen and (min-width: 768px){
	.swiper-service-wrap {
		border-radius: 24px;
	}
}