.imgBox {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-auto-flow: row;
}
.imgBox .imgDiv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgBox.reverse .imgDiv {
  order: 1;
}

.div_grey {
  background-color: #f2f2f3;
  padding: 3vw;
}

.smallImg {
  width: 60%;
  margin: 1rem;
}

.centralImg {
  width: 70%;
}

.twoImg {
  margin: 0 1rem;
  text-align: center;
}

.hideDesktop {
  display: none;
}

.hideMobile {
  display: block;
}

@media (max-width: 768px) {
  .imgBox {
    grid-template-columns: 100%;
  }
  .imgBox .hideMobile {
    display: none;
  }
  .hideDesktop {
    display: block;
  }
  .hideMobile {
    display: none;
  }
  .mobileImg {
    max-width: 100%;
    margin: 0.5rem 0;
  }
}/*# sourceMappingURL=euro_v2.css.map */