h2 {
	font-size: 2em;
}
/* SLIDESHOW */
.slideshow-container {
	position: relative;
	width: 100%;
	height: 80vh;
	overflow: hidden;
}

.slide {
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
}
.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: hsla(240, 46%, 15%, 0.4);
}
img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.slide-content {
	padding: 2em 4em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: hsla(240, 46%, 15%, 0.4);
	border: 1px solid hsla(240, 46%, 75%, 1);
	border-radius: 10px;
	color: #fff;
	text-align: center;
}

.slide-content h2 {
	font-size: 24px;
}

.slide-content p {
	font-size: 16px;
	padding: 2em 0;
}

.slide-content a {
	background-color: hsla(240, 46%, 15%, 1);
	color: #fff;
	padding: 10px 20px;
	border: 1px solid hsla(240, 46%, 75%, 1);
	border-radius: 10px;
	font-size: 18px;
	cursor: pointer;
}

.pagination {
	text-align: center;
	margin-top: 20px;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.dot {
	height: 20px;
	width: 20px;
	margin: 0 8px;
	background-color: hsla(240, 46%, 75%, 1);
	border: 1px solid hsla(240, 46%, 15%, 1);
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
}

.dot.active {
	background-color: hsla(240, 46%, 15%, 1);
	border-color: hsla(240, 46%, 75%, 1);
}

.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	padding-top: 5rem;
	width: 5rem;
	color: hsla(240, 46%, 75%, 1);
}
.arrow::after {
	content: '';
	display: block;
	position: absolute;
	top: -1rem;
	left: -1rem;
	z-index: -1;
	width: 7rem;
	height: 7rem;
	background: hsla(240, 46%, 15%, 1);
	border: 1px solid hsla(240, 46%, 75%, 1);
	border-radius: 5px;
}

.arrow.left {
	left: 5%;
}

.arrow.right {
	right: 5%;
}
/* redeploy */

/* GALERIA */
.cart-buttons {
	position: absolute;
	right: 10px;
	bottom: 30%;
	gap: 0.2em;
}
button[class^='cart-btn--'],
button[class*=' cart-btn--'] {
	padding: 0.5em;
	display: block;
	border-radius: 1rem;
}
.cart-btn--add:disabled {
	background-color: var(--txt-color);
	color: var(--bg-color);
	cursor: not-allowed;
}
.cart-btn--remove {
	background-color: red !important;
}
.cards-gallery {
	padding-top: 2em;
	flex-wrap: wrap;
}
.cards-gallery > article {
	position: relative;
	max-width: 250px;
	color: var(--txt-color--alt);
}
.card__title {
	display: block;
	padding: 0 0.2em;
	width: 100%;
	justify-content: space-between;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.card__title span {
	font-size: 1.2em;
	font-weight: 700;
}

/* RESERVAR ESTE ESPACIO */

/*Mas instrumentos index linea 159*/
#tienda {
	padding: 5em 0;
}

.filters {
	background: var(--bg-color);
	padding: 0 2em;
	gap: 0;
	flex-wrap: wrap;
}
.filters h2 {
	margin-right: auto;
}
.btn-filter {
	padding: 1em;
}
.btn-filter:hover,
.btn-filter:focus,
.btn-filter:active,
.btn-filter.active {
	background-color: var(--txt-color);
	color: var(--bg-color);
}
.instrumentos {
	display: flex;
	position: relative;
	overflow: hidden;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2em;
	width: 100%;
}

.box {
	min-width: 30%;
	max-width: 400px;
	position: relative;
	color: var(--bg-color);
	display: block;
}

.box > h2 {
	position: absolute;
	display: block;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20%;
}
