.module-videoblockset .videoblockset-inner {
	grid-template-columns: repeat(2, 1fr);
	gap: 0 20px;
	border-radius: 24px;
}
.module-videoblockset .videoblockset-inner + .videoblockset-inner {
	margin-top: 40px;
}
.module-videoblockset .videoblockset-description {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 80px 40px;
}
.module-videoblockset .videoblockset-subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 1.25;
	margin-top: 20px;
}
.module-videoblockset .videoblockset-heading {
	font-size: 32px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.3px;
}
.module-videoblockset .videoblockset-bullets {
	margin-top: 30px;
	border-radius: 20px;
	padding: 20px;
	gap: 20px;
	display: grid;
}
.module-videoblockset .videoblockset-preview {
	position: relative;
	min-height: auto;
}
.module-videoblockset .videoblockset-preview:before {
	content: "";
	display: block;
	padding-top: 75%;
}
.module-videoblockset .videoblockset-preview .image {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	border-radius: 24px;
}
.module-videoblockset .videoblockset-preview a {
	position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
}
.module-videoblockset .videoblockset-preview a:before {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--six-background-color);
	border-radius: 24px;
	opacity: 0.7;
	content: "";
	transition: .3s opacity;
} 
.module-videoblockset .videoblockset-preview a:after {
	position: absolute;
	display: block;
	width: 44px;
	height: 50px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url('/image/catalog/icons/play.svg') center no-repeat;
	background-size: 100%;
	content: "";
}
.module-videoblockset .videoblockset-bullet-title {
	opacity: 0.6;
}
.module-videoblockset .videoblockset-bullet-text {
	font-weight: 500;
}
.module-videoblockset .videoblockset-bullet-title + .videoblockset-bullet-text {
	margin-top: 5px;
}
@media (max-width: 991px) {
	.module-videoblockset .videoblockset-heading {
		font-size: 30px;
	}
	.module-videoblockset .videoblockset-subtitle {
		font-size: 14px;
	}
	.module-videoblockset .videoblockset-description {
		padding: 40px 20px;
	}
}

@media (max-width: 767px) {
	.module-videoblockset .videoblockset-heading {
		font-size: 20px;
	}
	.module-videoblockset .videoblockset-subtitle {
		font-size: 14px;
		margin-top: 10px;
	}
	.module-videoblockset .videoblockset-inner {
		grid-template-columns: repeat(1, 1fr);
		gap: 0;
	}
	.module-videoblockset .videoblockset-description {
		padding: 20px;
		order: 1;
	}
	.module-videoblockset .videoblockset-bullets {
		width: 100%;
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}
	.module-videoblockset .videoblockset-bullet-title + .videoblockset-bullet-text {
		margin-top: 0;
	}
	.module-videoblockset .videoblockset-inner + .videoblockset-inner {
		margin-top: 20px;
	}
}
@media (max-width: 480px) {
	.module-videoblockset .videoblockset-preview {
		max-height: 235px;
	}
}






