@media only screen and (max-width: 600px) {
  .specialrow2{
    display: grid;
    grid-template-areas: "img1" "text2";
    grid-template-columns: 100%;
  }
  .img2 {
    grid-area: img2;
    grid-column: 1;
    grid-row: 1;

  }
  .text2 {
    grid-area: text2;
    grid-column: 1;
    grid-row: 2;
    margin-top : 15px;
}
}