Back to lobby
Awards - welcome image

Awards

Recognized Excellence: Our Award-Winning Work

<style>
  /* -- The root styles must go in the element of the structure with the name "Gallery". --*/

  .galerie__gallery .bricks-layout-item{
    /* Styles applied to elements multiplied by 4 and multiplied by 4 +1 */
    &:nth-child(4n), &:nth-child(4n+1){
      grid-column: span 2;

      @media(max-width: 478px){
        grid-column: auto;
      }

      figure, a, img{
        height: 100%;
      }

      img{
        aspect-ratio: 3 / 1;

        @media(max-width: 478px){
          aspect-ratio: 1 / 1;
        }
      }
    }
  }

</style>