.projects-holder {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    column-gap: 3%;
    row-gap: 20px;
}

.project-item-image {
    min-height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}

.project-item-bottom-holder {
    padding: 20px;
    background-color: #1a1a1b;
    color: #fff;
    display: block;
    padding-bottom:30px;
}

.grid-item-title {
    
    font-family: Playfair Display;
    font-size: 28px;
    padding-bottom:5px;
    line-height:35px;
}


.single-project-grid-item {
    background-color: #1a1a1b;
    display: block;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.grid-item-subtitle {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 3px;
    padding-bottom:15px;
}

.projects-filter {
    border-bottom-width: 1px;
    display:inline-flex;
    justify-content: center;
    column-gap: 40px;
    padding-bottom:12px;
    border-bottom-style: solid;
    margin-bottom: 50px;
    border-bottom-color: #aaa;
    flex-flow: wrap;
    row-gap: 20px;
}

.projects-filter-container {
    text-align: center;
}
.filterItem {

cursor: pointer;
font-family: Playfair Display;
position: relative;
font-size: 15px;


}

.filterItem:hover {
    color: #000;
}


.filterItem:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    bottom: -14px;
    left: 0;
    background-color: #94703d;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    border-radius:2px;
  }
  .filterActive:after {
    content: '';
    position: absolute;
    width: 100%;

    height: 4px;
    bottom: -14px;
    left: 0;
    background-color: #94703d;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    border-radius:2px;
    transform: scaleX(1);
}
  
  .filterItem:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  @media screen and (min-width: 0px) and (max-width: 419px) {

    .projects-holder {
        grid-template-columns: 100%;
        row-gap: 20px;
    }

  }
  
  @media screen and (min-width: 420px) and (max-width: 576px) {
    .projects-holder {
        grid-template-columns: 100%;
        row-gap: 20px;
    }
  
  }
  
  
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .projects-holder {
        grid-template-columns: 100%;
        row-gap: 20px;
    }
  }
  
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .projects-holder {
        grid-template-columns: 48% 48%;
    }

  }
  
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    .projects-holder {
        grid-template-columns: 48% 48%;
    }
    

  
  }
  
  @media screen and (min-width: 1201px) and (max-width: 1440px) {

  
  }
  
  
  @media screen and (min-width: 1441px) {
  
  
  }