/*Foto slides*/
.card-foto {
	margin: 0;
	display: flex;
	height: 90%;
	justify-content: center;
}

.img-wrapper-foto {
	position:relative;
	margin: 0 auto;
	width: 800px;
	text-align: center;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.img-wrapper-foto img {
	position:relative;
	width: 100%;
	height: 80%;
	object-fit: contain;
}

.previous-button {
	position: absolute;
	padding: 0.5rem;
	top: 50%;
	left: 0;
	width: 0.5rem;
	transform: translate(0%, -50%);
}

.next-button {
	position: absolute;
	padding: 0.5rem;
	top: 50%;
	width: 0.5rem;
	right: 0;
	transform: translate(0%, -50%);
}