.imrp {
  background-color: #111;
  border-radius: 5px;
  margin: 2em 0;
  display: flex;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  font-size: 16px;
  line-height: 24px;
}

.imrp img {
  filter: grayscale(100%);
  width: 100px;
  max-height: 129px;
  padding: 1.9em 2.5em;
}

.imrp:hover img {
  filter: grayscale(0%);
}
.imrp .mtext {
    // max-width: 1000px;
  min-width: 300px;
  color: lightgray;
  padding: 1em 3em;
}

@media only screen and (max-width: 540px) {
  .imrp {
    flex-wrap: wrap;
  }
  .imrp img {
    width: 100%;
    max-height: inherit;
    filter: grayscale(0%);
  }
}

@media only screen and (min-width: 1600px) {
    .imrp {
        max-width: 64%;
    }
}


