/* Sierra y Libertad | Desarrollo del Proyecto */
/* Image Zoom | Senderos de la Memoria - Página principal */
img.opacity {
  opacity: 1;
}

img.opacity:hover {
  opacity: 0.7;
}
/* Final Image Zoom | Sierra y Libertad | Desarrollo del Proyecto */

/* Pagina de inicio - Página principal */
.post-slide{
    width: 320px;
    border: 1px solid #eee;
    display: inline-block;
    padding: 10px;
    margin: 10px 14px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.post-slide:before{
    content: "";
    border-top:1px solid transparent;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    transition:all 0.3s ease-in-out 0s;
}

/* 
.post-slide:hover:before{
    border-top: 1px solid #5e5c5c;
}

.post-slide:hover{
    border-top: 1px solid #5e5c5c;
}
 */
 
.post-slide .post-img > img{
    overflow:hidden;
    width: 320px;
    height:179px;
}

.post-slide:hover .post-img img{
    -webkit-transform:scale(1.04); /* Safari y Chrome */
    -moz-transform:scale(1.04); /* Firefox */
    -ms-transform:scale(1.04); /* Opera */
    -o-transform:scale(1.04); /* IE 9 */
    transform:scale(1.04);
	filter: grayscale(90%);
}

.post-slide .post-title > a{
    font-size: 22px;
    text-align: center;
    text-transform: capitalize;
    color:#333;
    transition:all 0.3s ease-in-out 0s;
}

.post-slide .post-title > a:hover{
    text-decoration: none;
    color:#e95d3c;
}

.post-slide .post-bar{
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.post-slide .post-bar > li{
    display: inline-block;
    border-right: 1px solid #999;
    padding: 0 100px;
    float: left;
}

.post-slide .post-bar > li:first-child{
    padding: 0 10px 0 0;
}

.post-slide .post-bar > li:last-child{
    border: 0px none;
}

.post-slide .post-date,
.post-slide .author,
.post-slide .comment{
    color:#e95d3c;
    text-transform: uppercase;
    font-size: 11px;
}

.post-slide .author > a,
.post-slide .comment > a,
.post-slide .comment > i{
    color:#000;
    transition:all 0.3s ease-in-out 0s;
}

.post-slide .author > a:hover,
.post-slide .comment > a:hover{
    text-decoration: none;
    color:#333;
}

.post-slide .comment > i{
    margin-right: 8px;
    font-size: 15px;
}

.post-slide .post-description{
    line-height: 1.7;
    color:#666;
    font-size: 16px;
    margin-bottom: 20px;
}

.post-slide .readmore{
    display: inline-block;
    background: #5e5c5c;
    border: 2px solid #5e5c5c;
    border-radius: 5px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 20px;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}

.post-slide .readmore:hover{
    background: #fff;
    color: #5e5c5c;
}

@media only screen and (max-width: 360px) {
    .post-bar > li:last-child{
        margin-top: 8px;
        padding: 0;
    }
}
/* Final Pagina de inicio - Página principal */

/* Pagina de inicio | Revista El Gavillero */
.card {
	display: inline-block;
	position: relative;
	width: 170px;
	height: 226px;
	background-color: transparent;
	overflow: hidden;
	background: #FFF;
	margin: 0px 2px;

	border: 5px solid white;

	-webkit-box-shadow: 0px 0px 0px 1px rgba(201, 201, 201, 1);
	-moz-box-shadow: 0px 0px 0px 1px rgba(201, 201, 201, 1);
	-ms-box-shadow: 0px 0px 0px 1px rgba(201, 201, 201, 1);
	-o-box-shadow: 0px 0px 0px 1px rgba(201, 201, 201, 1);
	box-shadow: 0px 0px 0px 1px rgba(201, 201, 201, 1);
}

.card .card-content {
	display: block;
	font-family: 'Roboto Condensed', sans-serif;
	text-align: center;
	line-height: 1.3;
	font-size: 1.05rem;
}

.card h2 {
    font-size:18px;
    font-weight: bold;
	margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    margin: 30px 0 0;
}

.card p {
	text-align: center;
	margin-bottom: 16px;
}

.card a.readmores {
	display: inline-block;
	margin: 0px auto;
    text-transform: uppercase;
	text-align: center;
	color: white;
	text-shadow: none !important;
	text-decoration: none;
	font-size: 13px;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
	padding: 6px 10px 6px 10px;
	border: 1px solid #2f3032;
    border-radius: 5px;    
	background: #2f3032; /* Old browsers */
	background: -moz-linear-gradient(top, #2f3032 1%, #2f3032 94%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#2f3032), color-stop(94%,#2f3032)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #2f3032 1%,#2f3032 94%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #2f3032 1%,#2f3032 94%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #2f3032 1%,#2f3032 94%); /* IE10+ */
	background: linear-gradient(to bottom, #2f3032 1%,#2f3032 94%); /* W3C */
}

.card a.readmores:hover {
    background: #ffffff;
    color: #2f3032;
    border-radius: 5px;
}

.card .card-img {
	position: absolute;
	top: 0;
	height: 100%;
	width: 50%;
	overflow: hidden;
	transition: transform .4s linear;
}
.card .card-img.left {
	left: 0;
}
.card .card-img.right {
	right: 0;
}

.card:hover .card-img.left {
	transform: translateX(-100%);
}

.card:hover .card-img.right {
	transform: translateX(100%);
}

.card .card-img img {
	width: 200%;
	height: 100%;
	position: absolute;
	top: 0;
}

.card .card-img.left img {
	left: 0;
}

.card .card-img.right img {
	right: 0;
}
/* Final Pagina de inicio | Revista El Gavillero */