/* Gravity component (fancycomponents.dev, vanilla-JS port) */
[data-gravity] {
	position: relative;
	overflow: hidden;
	min-height: 100%;
}

.rah-gravity-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.rah-gravity-canvas canvas {
	pointer-events: auto;
}

[data-gravity-body] {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.rah-gravity-body--locked {
	pointer-events: auto;
}
.gravity-wall .badge {
	display: inline-block;
	padding: 12px 16px;
	background: #BFE9FD;
	color: #16164F;
	font-family: Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	border-radius: 30px;
	white-space: nowrap;
}
.gravity-wall svg {
	width: 48px;
	height: 48px;
}
.section-title  .gravity-wall {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -10;
    border-radius: 21px;
}
@media only screen and (max-width: 1040px) {
	.gravity-wall svg {
		width: 32px;
		height: 32px;
	}
	.gravity-wall .badge {
		font-size: 16px;
	}
}
@media screen and (max-width: 1023px)  {
	.stk-block-hero__content .gravity-wall {
		width: calc(100% + 48px);
		left: -24px;
	}
	.section-title .gravity-wall {
		width: calc(100% + 48px);
		left: -24px;
	}
}
@media screen and (max-width: 767px) {
	.stk-block-hero__content .gravity-wall {
		width: calc(100% + 32px);
		left: -16px;
	}
	.section-title .gravity-wall {
		width: calc(100% + 32px);
		left: -16px;
	}
}
@media only screen and (max-width: 740px) {
	.gravity-wall svg {
		width: 27px;
		height: 27px;
	}
	.gravity-wall .badge {
		font-size: 14px;
		padding: 8px 12px;
	}
}