
.hero {
    background-image: url(../assets/images/portHope/project-cover.png);
    background-position: right;

}
.hero::after {
    content: "Port Hope"; /* Manually set the alt text */
}
#brand-1{
    background-image: url(../assets/images/portHope/brand.png);
}

#brand-1::after  {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background:  #e6a8ff;
    color: #3f125b;  
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#brand-1:hover::after, #brand-2:hover::after, #brand-3:hover::after, #brand-4:hover::after {
    opacity: 1;
}
#brand-1::after {
    content: "Port Hope Website on Devices"; /* Manually set the alt text */

}


.work-items {
    height: 670px;
}
.deliverable-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2%;
}

@media (max-width: 599px) {
    .work-items {
      height: 250px;
    }
    .deliverable-images{
        margin-bottom: 4rem;
        grid-template-columns: 1fr;
    }
  }
  
  @media screen and (min-width: 600px) and (max-width: 768px) {
  
    .work-items {
  
        height: 250px;
  
    }

  }
  @media screen and (min-width: 769px) and (max-width:1024px){
    .work-items {
  
        height: 550px;
  
    } 

 }