
/*----------Seccion Content mostrar todo----------*/

.section-mostrar-content {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	padding: 16px;
}
.section-mostrar-content h1 {
	width: 100%;
	font-size: 24px;
	opacity: 0.8;
	margin-top: 25px;
	border-bottom: 1px solid rgba(255,255,255,0.6);
}
.section-mostrar-box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 8px;
}
.section-mostrar-item {
	display: flex;
	flex-wrap: wrap;
	flex: 0 1 calc(33% - 8px);
	height: 300px;
	background: white;
	margin: 8px 0 8px 0;
	border-radius: 4px;
	overflow: hidden;
}
.section-mostrar-item:hover {
	transform: scale(1.01);
	border: 1px solid #808B96;
}
.mostrar-item-img {
	display: flex;
	width: 100%;
	height: 58%;
	position: relative;
}
.mostrar-item-img figure {
	position: relative;
	height: 100%;
	width: 100%;
}
.mostrar-item-img figure a {
	display: flex;
	height: 100%;
	width: 100%;
}
.mostrar-item-img figure a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
	border-radius: 4px 4px 0 0;
}
.mostrar-item-img figure a:hover {
	opacity: 0.8;
}
.mostrar-item-img span {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 5px 6px 5px 6px;
	background: white;
	color: gray;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

.mostrar-item-parrafo {
	padding: 5px;
	height: 42%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.mostrar-item-parrafo a {
	text-decoration: none;
	color: black;
	display: flex;
	width: 100%;
}
.mostrar-item-parrafo a:hover {
	color: red;
}
.mostrar-item-parrafo h2 {
	font-size: 20px;
	padding-top: 15px;
	width: 100%;
	opacity: .8;
	letter-spacing: -1px;
	line-height: 22px;
}
.mostrar-item-fecha {
	position: absolute;
	width: 100%;
	padding: 5px 5px 10px 5px;
	bottom: 0;
	left: 0;
	opacity: 0.8;
	font-size: 12px;
}

/*----------PAGINACION DE LA PAGINA----------*/

.content-paginacion {
	width: 100%;
	padding: 10px;
}
.paginacion-item {
	display: flex;
    justify-content: center;
    list-style: none;
    text-align: center;
}
.paginacion-item li {
	padding: 2px;
}
.paginacion-item li a{
    border-radius: 5px;
    color: #000000;
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
}
.paginacion-item li a:hover{
    background-color: rgba(0, 0, 0, 0.2);
}
.active a{
    background-color: #2c3e50 !important;
    color: #ffffff !important;
}

/*----------  MEDIA QUERY  ----------*/


@media (max-width: 800px){

	.section-mostrar-content h1 {
		font-size: 22px;
	}
	.section-mostrar-item {
		flex: 0 1 calc(50% - 8px);
	}

}

@media (max-width: 640px){

	.mostrar-item-img span {
		font-size: 12px;
	}
	.mostrar-item-parrafo h2 {
		font-size: 18px;
	}

}

@media (max-width: 480px){

	.section-mostrar-box {
		justify-content: center;
	}
	.section-mostrar-item {
		flex: 0 1 calc(95% - 0px);
		height: 280px;
		margin: 8px 0 8px 0;
	}
	.mostrar-item-parrafo h2 {
		line-height: 20px;
	}

	/*-------Paginacion--------*/
	.paginacion-item li a{
	    padding: 5px 10px;
	}
}

@media (max-width: 380px){

	.section-mostrar-item {
		flex: 0 1 calc(100% - 0px);
	}
	
	/*-------Paginacion--------*/
	.paginacion-item li a{
	    font-size: 14px;
	}

}
