.grid {
    background: #EEE;
    width: 100%;
    height: 100%;
    /* opacity: 0.9; */
  }
  
  /* clearfix */
  .grid:after {
    content: '';
    display: block;
    clear: both;
  }
  
  /* ---- grid-item ---- */
  
  .grid-item {
    width: 25%;
    height: 25%;
    float: left;
    background: #b6b5b5;
    border: 1px solid #333;
    border-color: hsla(0, 0%, 0%, 0.5);
    border-radius: 0px;
  }
  
  .grid-item--width2 { width:  50%; }
  .grid-item--width3 { width:  75%; }
  .grid-item--width4 { width:  100%; }
  
  .grid-item--height2 { height: 50%; }
  .grid-item--height3 { height: 75%; }
  .grid-item--height4 { height: 100%; }


  .grid-item-border-bottom-none {
    border-bottom: none;
  }
  
  /* ---- static-banner ---- */
  
  .static-banner {
    position: absolute;
    left: 0%;
    margin-top: 15px;
    /* top: 10px; */
    padding: 10px 30px;
    color: white;
    background: #683025;
    /* font-size: 22px; */
    z-index: 2;
    text-transform: uppercase;
    opacity: 0.9;
  }
  
  