.page-template-page-filmography {
    background: #0f0f0f;
    color: #FFFFFF;
}

.page-template-page-filmography #main-content {
    width: 100%;
}

.filmography-hero {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filmography-hero .hero-text {
    z-index: 2;
}

.filmography-hero .gradient-overlay {
    position: absolute;
    bottom: 0;
    z-index: 1;    
    width: 100%;
    height: 60vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.heading {
    font-size: 50px;
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.subheading {
    font-size: 20px;
    color: white;
    text-align: center;
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto;
    width: 100%;
    max-width: 90%;
    gap: 30px;
}

.page-template-page-filmography .project-link {
    width: calc(19% - 10px);
}

.page-template-page-filmography .project-container {
    overflow: hidden;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 4px 8px 0 rgba(0, 0, 0, 0.075);
    transition: all 0.5s ease;
}

.project-container:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.075);
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: .5s ease;
    background: -webkit-linear-gradient(bottom,#e65100, #ff6f00,  #ffa000, #ffeb3b, #fff176);
  }

  .project-container:hover .portfolio-overlay {
    opacity: 0.5;
  } 

  .project-link {
      line-height: 0;
  }



/* Tablet */
@media only screen and (max-width: 1550px) {

    .page-template-page-filmography .project-link {
        width: calc(25% - 30px);
    }

}

/* Tablet */
@media only screen and (max-width: 1180px) {

    .page-template-page-filmography .project-link {
        width: calc(33% - 30px);
    }
}


/* Tablet */
@media only screen and (max-width: 980px) {
    .filmography-hero {
        height: 400px;
    }

    .page-template-page-filmography .project-link {
        width: calc(50% - 30px);
    }

}


/* Tablet */
@media only screen and (max-width: 880px) {
    .project-list {
        /* width: 620px; */
    }
}


/* Tablet */
@media only screen and (max-width: 640px) {
    .project-list {
        /* width: 420px; */
    }
}