.frame-type-hm-1-cols-parallax .inner.wb-py-big {
	padding: 0px;
}
.frame-type-hm-1-cols-parallax .inner.wb-py-big .parallax-block {
	padding-top: var(--margin);
	padding-bottom: var(--margin);
}
.frame-type-hm-1-cols-parallax {
	width: 100%;
	min-height: 300px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.frame-type-hm-1-cols-parallax .lax-overlay {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--overlay-color);
}
.frame-type-hm-1-cols-parallax > div {
	position: relative;
	z-index: 100;
}
.frame-type-hm-1-cols-parallax * {
	color: var(--brightest);
}
.img-parallax {
	width: 100vmax;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	pointer-events: none;
	padding: 0px;
	height: auto;
}
.special-container-with-background {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.row__card-grid--2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--grid-gap-size);
}
.row__card-grid--3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--grid-gap-size);
}
.row__card-grid--4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--grid-gap-size);
}
.row__card-grid--5 {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: var(--grid-gap-size);
}
/*
 * Due fr cant be calculated we have different weight in figure but its represents 33 GAP 33 GAP 33
 */
.row_weight_33_66 {
	grid-template-columns: minmax(0, 33fr) minmax(0, 68.5fr);
	
	@media (max-width: 767px) {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.row_weight_66_33 {
	grid-template-columns: minmax(0, 68.5fr) minmax(0, 33fr);
	
	@media (max-width: 767px) {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.bg-img-with-overlay:before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 100;
	background-color: var(--overlay-color);
}
.frame-type-hm-1-cols-with-bg {
	display: grid;
	position: relative;
	
	> * {
		grid-area: 1 / 1 / 2 / 1;
	}
	
	&.frame-layout-450:before {
		display: none;
	}
	
	.bg-container__img-wrapper {
		position: relative;
		z-index: 0;
		
		picture {
			width: 100%;
			height: 100%;
			display: block;
			
			.bg-container__bg-img  {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		}
	}
	.bg-container__content-wrapper {
		position: relative;
		z-index: 200;
		display: flex;
		justify-content: center;
		flex-direction: column;
		
		* {
			color: var(--brightest);
		}
		.ce__reverse-font-color {
			*:not(a) {
				color: var(--font-color);
			}
		}
	}
}

@media (max-width: 1199px) {
	.row__card-grid--4 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.row__card-grid--5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.row__card-grid--3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.row__card-grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.row__card-grid--5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 767px) {
	.row__card-grid--3 {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.row__card-grid--4 {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.row__card-grid--5 {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
@media (max-width: 575px) {
	.row__card-grid--2,
	.row__card-grid--3,
	.row__card-grid--4,
	.row__card-grid--5 {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}