.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    margin-top: 100px;
    margin-bottom: 100px;
    width: 100%;
    background-color: rgba(88, 88, 88, 0.2);
    border-radius: 10px;
    gap: 5px;
  }
  
  .box {
    box-sizing: border-box;
    padding: 10px;
    color: white;
    font-size: 4vw;
    text-align: center;
    border-radius: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .box > a{
    width: 100%;
    height: 100%;
  }
  
  .box img{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .box:nth-child(1), 
  .box:nth-child(2) {
    grid-column: span 6;
    
  }
  
  .box:nth-child(3),
  .box:nth-child(4),
  .box:nth-child(5) {
      grid-column: span 4;
  }
  
  /* for <a> tag in the gallary */
  .cwa-lightbox-image{
    display: flex;
    object-fit: fill;
  } 
  
  /* for the 5th image in the gallery */
  .dim{
    filter: brightness(40%);
  }
  
  /* for the overlay text */
  .centered {
    position: absolute;
    z-index: 100;
    background-color: none;
  }
  
  .text-size{
    font-size: 18px;
  }
  
  /* for remaining images */
  .hidden{
    display: none;
    color: transparent;
    height: 0;
    width: 0;
  }
  
  
  /* for displaying images */
  
  .lb-dataContainer{
    position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
  }