/*-----------------------------------------------------------------------------------*/
/*  07. GALLERY AND BLOG ITEM
/*-----------------------------------------------------------------------------------*/
/*Grid style*/
.gird-row {
    margin: 0 auto;
    padding: 7rem 0;
    max-width: 120rem;
}
.gird-row div{

}
.gird-row a {
    color: rgba(119,119,121, .5);
}
.gird-row img {
    width: 100%;
}
.masonry img {
    z-index: 1;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
}
.grid-item {
    margin-top: 3rem;
    cursor: pointer;
}
.grid-item figcaption {
    display: none;
}
/*Blog style*/
.blog-item {
    margin-bottom: 6rem;
}
.blog-item.timeline:nth-child(2) {
    margin-top: 31rem;
}
.blog-item a {
    color: #ef4138;
}
.blog-description {
    height: 26.4rem;
}
.post-info {
    min-height: 30rem;
    padding-bottom: 1rem;
    overflow: hidden;
    opacity: 0;
    animation-delay: .1s !important;
    border-bottom: solid 1px #eee;
    -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
.post-info h3{
    margin-top: 0;
}
.date {
    position: relative;
    font-size: 6em;
    font-weight: 900;
    text-align: left;
    opacity: .6;
    margin-top: 1rem;
}
.date span {
    font-size: 1.2rem;
    font-weight: 400;
    position: absolute;
    bottom: 2.6rem;
    left: 10rem;
    width: 3rem;
}
.post-info .text-left{
    padding: 0
}
/*Hover item*/
.grid-item:hover,
.blog-item:hover{
    z-index: 3;
}
.grid-item:hover img,
.blog-item:hover img {
    -webkit-box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.6);
       -moz-box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.6);
            box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.6);
}
.text-right i{
    margin-right: -4.6rem;
    -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}
.timeline .text-right i{
    margin-right: -3.2rem;
}
.blog-item:hover .text-right i{
    margin-right: -2.5rem;
}
.timeline:hover .text-right i{
    margin-right: -1rem;
}
.blog-item:hover .post-info{
    border-color: #ef4138;
}

/*-----------------------------------------------------------------------------------*/
/*  12. RESPONSIVE
/*-----------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
    .row{
        margin: 0 50px;
    }
    .blog-item.timeline:nth-child(2) {
        margin-top: 33%;
    }
}
@media (max-width: 760px) {
    .row{
        max-width: 100%;
        padding: 30px 0;
        margin: 0 15px;
    }
    .grid-item:hover img,
    .blog-item:hover img {
    -webkit-box-shadow: 0 1.2rem 1.8rem 0 rgba(0, 0, 0, 0.24), 0 1.7rem 5rem 0 rgba(0, 0, 0, 0.19);
            box-shadow: 0 1.2rem 1.8rem 0 rgba(0, 0, 0, 0.24), 0 1.7rem 5rem 0 rgba(0, 0, 0, 0.19);
    }
}