.block-inline-block--mosaic {
    /*display: flex;*/
    flex-wrap: wrap;
    width: 100vw;
    position: relative;
    left: 50%;
/*    right: 50%;*/
    margin-left: -50vw;
/*    margin-right: -50vw;*/
    margin-top: 3em;
    padding: 0!important;
}

.block-inline-block--mosaic h2 {
    padding-left:1.25rem!important;
}

.block-inline-block--mosaic img {
   width:100vw;
}

.block-inline-block--mosaic .container {
    background: #141E3C;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.block-inline-block--mosaic .container .box {
    position: relative;
    width: 100%;
    text-align: center;
}

.hide {
  display:none;
}

.imageDIV:hover .hide {
  display: block;
  cursor: auto;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.first-box {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.hide > .field {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.gold {
    background: rgba(255, 192, 42, .75);
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.purple {
    background: rgba(66, 39, 204, .75);
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.magenta {
    background: rgba(234, 24, 100, .75);
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.green {
    background: rgba(108, 204, 102, .75);
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.cyan {
    background: rgba(95, 203, 206, .75);
    /*overflow: hidden;*/
    height: 100%;
    width: 100%;
    z-index: 2;
}


@media screen and (min-width: 768px) {
  .block-inline-block--mosaic .box {
    width: 33.33%;
  }
  .block-inline-block--mosaic img {
   width:100%;
}
}

@media screen and (min-width: 992px) {
  .block-inline-block--mosaic .container {
    flex-wrap: nowrap;
  }
}