@charset "utf-8";
/* CSS Document */

/*--------------------------------------------------------------
#  lista
--------------------------------------------------------------*/


.acervo{
  position:relative;
  display:block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #343a40;
  font-weight: 400;
  line-height: 2.5em;
}


.li a {
  color: #333333!important;
  text-decoration: none;
  background-color: transparent;
}

li a:hover {
  color: #AA222C!important;
  text-decoration: none;
}

.box {
	position: relative;
	display: block;
	width: auto;
	height: auto;
	border-radius: 5px;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
  padding: 5px;
  text-align:center;
}

/* Create the hidden pseudo-element */

/* include the shadow for the end state */

.box::after {
	content: '';
	position: absolute;
	z-index: -1;
	opacity: 0;
	border-radius: 5px;
	transition: opacity 0.3s ease-in-out;
}

/* The fast way */

.make-it-fast {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Pre-render the bigger shadow, but hide it */

.make-it-fast::after {
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

/* Transition to showing the bigger shadow on hover */

.make-it-fast:hover::after {
	opacity: 1;
}

/* Scale up the box */

.box:hover {
  transform: scale(1.2, 1.2);

}

/* Fade in the pseudo-element with the bigger shadow */

.box:hover::after {
	opacity: 1;
}