  .projects-slider {
    height: 90vh;
    width: 100vw;
  }
  
  .slider-project-title {
    text-decoration: underline;
  }
.projects-row {
    display: flex;
    flex-direction: column;

}
  .project-category a {
    font-size: 14px;
  }
  .project-thumbnail img {
    width: 300px;
    height: 300px;
  }
  
  .small-portfolio-image {
    position: relative;
    width: 400px;     
    height: 300px;
    overflow: hidden;
  }
  .small-portfolio-image img {
       max-width: 100%;
       width: 100%;
       height: auto;
       top: 50%;     
       left: 50%;
  }
  
  .portfolio-row div.w3-col {
    padding: 20px;
  }
  /*** W3.CSS overrides ***/
  

  /** Media Queries **/
  @media only screen and (min-width: 1460px ) {
  
    .project-category a{
      font-size: 18px;
    }
  
  }
  
  @media only screen and (max-width: 1440px ) {
    .project-category a{
      font-size: 16px;
    }
  
  }
  
  @media only screen and (max-width: 1024px ) {
  
   .projects-slider {
     height: auto;
   }
  }
  
  @media only screen and (max-width: 768px ) {
    .projects-slider {
      height: 90vh;
      width: auto;
      left: 50%;
      transform: translateX(-50%);
    }

  }