/* Catalog home */

.catalog-home .stage-item {
	background-color: var(--color-base-200);
	color: var(--color-base-100);
	margin: 0;
    max-height: 500px;
}

.catalog-home .slider-container,
.catalog-home .stage-text {
	max-height: 500px;
    overflow: hidden;
    position: relative;
}

.catalog-home .stage-image {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-home .stage-text {
	position: absolute;
	margin: 0 5%;
	top: 0;
    bottom: 0;
	text-align: start;
	color: var(--color-base-200);
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 2rem 0;
}

.catalog-home .stage-btn {
    display: none;
    width: min-content;
    margin-top: 2rem;
}

.catalog-home .stage-short {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width:576px) {
	.catalog-home .stage-text {
		max-width: 66%;
	}
	.catalog-home .stage-short {

	}
}

@media (min-width:768px) {
	.catalog-home .stage-text {
		max-width: 50%;
	}
    .catalog-home .stage-btn {
        display: flex;
    }
}

@media (min-width:992px) {
	.catalog-home .stage-text {
		max-width: 40%;
	}
}

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