.et-home .et-hero-visual .et-floating-product {
	display: grid !important;
	left: 17%;
	top: 45px;
	right: auto;
	bottom: auto;
	width: 520px;
	height: 535px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(18px, 10px, 0) scale(.965);
	transition:
		opacity .62s ease,
		transform .72s cubic-bezier(.2, .75, .25, 1),
		visibility 0s linear .72s;
}

.et-home .et-hero-visual .et-floating-product.is-active {
	z-index: 5;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0) scale(1);
	transition-delay: 0s;
}

.et-home .et-hero-visual .et-floating-product.is-active:hover {
	transform: translate3d(0, -8px, 0) scale(1.02);
}

.et-home .et-hero-dots {
	position: absolute;
	left: 50%;
	bottom: 88px;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 7px 9px;
	border: 1px solid rgba(255, 255, 255, .75);
	border-radius: 999px;
	background: rgba(255, 255, 255, .58);
	box-shadow: 0 8px 24px rgba(6, 21, 47, .08);
	backdrop-filter: blur(12px);
	transform: translateX(-50%);
}

.et-home .et-hero-dot {
	width: 7px;
	height: 7px;
	min-width: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #9aa8bb;
	box-shadow: none;
	cursor: pointer;
	transition: width .22s ease, border-radius .22s ease, background .22s ease;
}

.et-home .et-hero-dot:hover {
	background: var(--et-blue);
}

.et-home .et-hero-dot.is-active {
	width: 24px;
	border-radius: 999px;
	background: var(--et-blue);
}

.et-home .et-hero-dot:focus-visible {
	outline: 3px solid rgba(66, 215, 255, .75);
	outline-offset: 3px;
}

.et-home .et-hero-visual:not(.is-slider-ready) .et-floating-product {
	animation: et-hero-fallback 16.8s linear infinite both;
}

.et-home .et-hero-visual:not(.is-slider-ready) .et-floating-1 {
	animation-delay: 0s;
}

.et-home .et-hero-visual:not(.is-slider-ready) .et-floating-2 {
	animation-delay: -12.6s;
}

.et-home .et-hero-visual:not(.is-slider-ready) .et-floating-3 {
	animation-delay: -8.4s;
}

.et-home .et-hero-visual:not(.is-slider-ready) .et-floating-4 {
	animation-delay: -4.2s;
}

@keyframes et-hero-fallback {
	0%, 24.99% {
		z-index: 5;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	25%, 100% {
		z-index: 4;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

@media (max-width: 1100px) and (min-width: 781px) {
	.et-home .et-hero-visual .et-floating-product {
		left: 12%;
		width: min(430px, 42vw);
		height: 535px;
	}
}

@media (max-width: 780px) {
	.et-home .et-hero-visual .et-floating-product {
		left: 50%;
		top: 12px;
		width: min(300px, 78vw);
		height: 300px;
		transform: translateX(-50%) translateY(12px) scale(.96);
	}

	.et-home .et-hero-visual .et-floating-product.is-active {
		transform: translateX(-50%) translateY(0) scale(1);
	}

	.et-home .et-hero-visual .et-floating-product.is-active:hover {
		transform: translateX(-50%) translateY(-5px) scale(1.015);
	}

	.et-home .et-hero-dots {
		bottom: 59px;
	}
}

@media (max-width: 480px) {
	.et-home .et-hero-visual .et-floating-product {
		top: 8px;
		width: min(255px, 76vw);
		height: 275px;
	}

	.et-home .et-hero-dots {
		bottom: 54px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.et-home .et-hero-visual .et-floating-product,
	.et-home .et-hero-dot {
		transition: none;
	}

	.et-home .et-hero-visual:not(.is-slider-ready) .et-floating-product {
		animation: none;
	}

	.et-home .et-hero-visual:not(.is-slider-ready) .et-floating-product:first-of-type {
		z-index: 5;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}
