.grid-item {
    display: inline-block;
        /*height: 259px;*/
    
        overflow: hidden;
        text-align: center;
        width: 370px;
        padding: 10px;
    }
    .grid-item img{
        width:100%;
        height:auto;
        /*filter: url(filters.svg#grayscale);
        filter: gray;
        -webkit-filter: grayscale(1);*/
        transition: 0.9s;
    }
    .grid-item img:hover{
        filter: none;
    }
    
    .isotope-pager .pager {
      display: inline-block;
    }
    .filters {
        width: 100%;
        text-align: center;
        padding-bottom: 35px;
        padding-top:20px;
        
    }
    
    .filters ul {
        list-style: none;
        padding: 20px 10px;
        box-shadow: -1px 1px 11px rgba(0,0,0,.4);
        margin: 0 40px;
        border-radius: 30px;
        background-color: #232323;
    }
    
    .filters li {
        display: inline-block;
        padding: 10px 25px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
    }
    .filters li a{
        color: #b6b6b6;
        text-decoration: none;
    }
    .filters li a:hover{
        color:#fff;
    }
    
    .filters li:hover {
        box-shadow: -1px 1px 11px rgba(0,0,0,.4);
        border-radius: 15px;
    }
    
    .filters li.active a{
        color: #e3ca66;
        border: 1px solid #e3ca66;
        border-radius: 15px;
        box-shadow: -1px 1px 11px rgba(0,0,0,.4);
        padding: 10px 25px;
        
    }
    
    
    
    .isotope-pager a{
      margin: 6px 1px;
        display: inline-block;
        width: 50px;
        /* height: 60px; */
        line-height: 31px;
        color: #b6b6b6;
        font-weight: 600;
        transition: 0.3s;
        /* position: relative; */
        /* padding-right: 26px; */
        box-shadow: -1px 1px 11px rgba(0,0,0,.1);
        border-radius: 25px;
        background-color: #232323;
        border: .5px solid #e3ca66;
        text-decoration:none;
    }
    
    .isotope-pager a:hover{
      color: #fff;
      border: .5px solid #ffeeac;
      box-shadow: -1px 1px 10px 3px rgba(0,0,0,.1);
    }
    
    .isotope-pager .active{
      color: #e3ca66 !important;
        box-shadow: -1px 1px 10px 5px rgba(0,0,0,.1);
        border-radius: 25px;
        background-color: #161616;
        border: 1px dotted #e3ca66;
    }
    
    .isotope-pager .prev{
      border-radius: 30px 0 0 30px;
    }
    
    .isotope-pager .next{
      border-radius: 0 30px 30px 0;
    }
    
    .isotope-pager a::before,.isotope-pager a:after{
      content: "";
      position: absolute;
      border-top: 30px solid transparent;
      border-bottom: 30px solid transparent;
    }
    .isotope-pager .num::before,.next::before{
      border-right: 20px solid #2c3e50;
      right: 100%;
    }
    
    .isotope-pager .num:after,.prev:after{
      border-right: 20px solid #f1f1f1;
      right: 0;
    }
    
    
    
    
    
    .overlay {
      position: absolute; 
      bottom: 0; 
      background: rgb(0, 0, 0);
      background: rgba(0, 0, 0, 0.5); /* Black see-through */
      color: #f1f1f1; 
      width: 100%;
      transition: .5s ease;
      opacity:0;
      color: white;
      font-size: 20px;
      padding: 20px;
      text-align: center;
    }
    
    .grid-item:hover .overlay {
      opacity: 1;
    }



    /* Gallery */

    .wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .card {
        overflow: hidden;
        box-shadow: 0px 2px 20px #d7dfe2;
        background: white;
        border-radius: 0.5rem;
        position: relative;
        width: 340px;
        margin: 1rem;
        transition: 250ms all ease-in-out;
        cursor: pointer;
      }
      
      .card:hover {
        transform: scale(1.05);
        box-shadow: 0px 2px 40px #d7dfe2;
      }
      
      .banner-img {
        position: absolute;
        object-fit: cover;
        height: 14rem;
        width: 100%;
      }
      
      .category-tag {
        font-size: 0.8rem;
        font-weight: bold;
        color: white;
        background: red;
        padding: 0.5rem 1.3rem 0.5rem 1rem;
        text-transform: uppercase;
        position: absolute;
        z-index: 1;
        top: 1rem;
        border-radius: 0 2rem 2rem 0;
      }
      
      .color1 {
        background: rgb(239, 37, 122,0.8);
      }
      
      .color2 {
        background: rgb(101, 31, 255,0.8);
      }
      
      .color3 {
        background: rgb(232, 88, 8,0.8);
      }
      .color4 {
        background: rgba(30, 143, 2, 0.8);
      }
      
      .card-body {
        margin: 14rem 0rem 0rem 0rem;
      }
      
      .blog-hashtag {
        font-size: 0.9rem;
        font-weight: 500;
        color: #4d97b2;
        margin: 0px;
      }
      
      .blog-title {
        line-height: 2rem;
        /* margin: 1rem 0 0.5rem; */
      }
      
      .blog-description {
        color: #616b74;
        font-size: 0.9rem;
      }
      
      .card-profile {
        display: flex;
        margin-top: 2rem;
        align-items: center;
      }
      
      .profile-img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
      }
      
      .card-profile-info {
        margin-left: 1rem;
      }
      
      .profile-name {
        font-size: 1rem;
      }
      
      .profile-followers {
        color: #616b74;
        font-size: 0.9rem;
      }