  .hero-right {
    background-image:
        var(--gradient-1),
        url('../media/our-work-hero.jpg');
  }  
    
  p {
    text-align: center;
    width: 60%;
    margin: 0 auto;
  }
  
  .gallery-section {
    background-color: #06222e;;
  }

  .gallery-section > p:nth-child(1) {
    margin-bottom: 90px;
  }
  
  .gallery-section:nth-child(even) {
    background-image: var(--gradient-4);
  }

  .gallery-section h3 {
    text-align: center;
    margin-top: 0;
  }

  .gallery-section button {
    margin-top: 30px;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 8px;
  }
  
  .gallery-item {
    background-color: rgb(0,0,0,0.3);
    border-radius: var(--border-radius);
    transition: 0.3s;
    aspect-ratio: 1;
  }
  
  .gallery-item img {
    display: block;
    width: 100%;
    border-radius: var(--border-radius);
  }
  
  .gallery-item:hover {
      transform: scale(1.01);
      filter: brightness(90%);
      overflow: hidden;
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    margin: 50px 0;
  }

  .gallery-grid a {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1.5;
    background-position: center;
    background-size: cover;
    color: lightblue;
    font-size: 2rem;
    font-weight: 500;
    padding: 1.5em;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition:  0.2s;
  }

  .gallery-grid a:hover {
    scale: 1.02;
    filter: brightness(150%);
  }

  .video-grid {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .video-grid iframe {
    width: 100%;
    aspect-ratio: 16/9;
    margin: 2em 0;
  }
  
  @media(max-width: 1000px) {
    p {
        width: 100%;
        text-align: left;
    }

    .gallery {
        grid-template-columns: auto auto auto auto;
    }

    .gallery-section h3 {
      text-align: left;
      font-size: 2.4rem;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .gallery-grid a {
      aspect-ratio: 2;
    }
  }

  @media (max-width: 500px) {
    .gallery {
        grid-template-columns: auto auto auto;
    }
  }