/* Catalog home */

.aimeos.catalog-home {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
	margin-top: -6rem;
}

.aimeos.catalog-home::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.3);
	mix-blend-mode: multiply;
	z-index: 0;
}

.aimeos.catalog-home .swiffy-slider {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.aimeos.catalog-home .slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-home .stage-item {
	background-color: var(--ai-bg);
	color: var(--ai-bg);
	margin: 0;
}

.catalog-home .stage-image {
	min-height: 600px;
	object-fit: cover;
	padding: 0;
}

.catalog-home .stage-text {
	position: absolute;
	font-size: 200%;
	margin: 0 5%;
	top: 33%;
	text-align: start;
	color: var(--ai-bg);
}

.catalog-home .stage-text .btn {
	background-color: transparent;
	border-color: var(--ai-bg);
	color: var(--ai-bg);
	border-width: 2px;
	font-weight: normal;
	margin-top: 1rem;
	font-size: 50%;
	width: 12rem;
}

#background-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#background-slider .swiffy-slider {
    height: 100%;
    width: 100%;
}
@media (min-width:576px) {
	.catalog-home .stage-text {
		max-width: 66%;
	}
}

@media (min-width:768px) {
	.catalog-home .stage-text {
		max-width: 50%;
		font-size: 225%;
	}
}

@media (min-width:992px) {
	.aimeos.catalog-home {
		margin-top: calc(-7rem - 48px);
	}

	.catalog-home .stage-text {
		max-width: 40%;
	}
}

@media (min-width:1200px) {
	.catalog-home .stage-text {
		max-width: 35%;
		font-size: 250%;
	}
}