.actions-list-wraper {
	overflow: hidden;
}
.actions-list {
	height: 680px;
	position: relative;
	padding-bottom: var(--padding-lg);
}
.actions-list .swiper-slide {
	height: 100%;
}
.actions-list .action-item {
	height: 100%;
	width: 100%;
	border-radius: var(--radius-md);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-decoration: none;
	text-align: center;
	color: #ffffff;
	font-size: var(--header-size-xs);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	position: relative;
}
.actions-list .action-item .bgvideo {
	height: 100%;
	width: 100%;
	position: absolute;
	object-fit: cover;
	object-position: center center;
}
.actions-list .action-item .slide-text {
	padding: var(--padding-md);
	z-index: 5;

}

@media screen and (max-width: 1200px) {
	
	.actions-list {
		height: 500px;
	}
}

@media screen and (max-width: 768px) {
	
	.actions-list .action-item {
		font-size: var(--header-size-xxs);
		padding: var(--padding-md);
	}
}
@media screen and (max-width: 576px) {
	
	.actions-list {
		height: 248px;
	}
	.actions-list .swiper-slide {
		width: 300px;
	}
	.actions-list .action-item {
		padding: var(--padding-xs);
	}
}