.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
}

.body {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image {
  width: 20%;
}

.section {
  text-align: center;
}

.text-block {
  color: #282828;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  max-width: 70%;
  margin: 40px auto;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 27px;
  display: block;
}

.heading-2 {
  color: #282828;
  margin-top: 40px;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.heading-3 {
  color: #282828;
  text-align: center;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 30px;
  text-decoration: none;
}

.text-span {
  color: #282828;
  text-decoration: none;
}

.text-span:hover {
  font-size: 40px;
  text-decoration: none;
}

.link {
  font-size: 30px;
  text-decoration: none;
  transition: font-size .325s;
}

.link:hover {
  color: #f28f38;
  font-size: 35px;
  text-decoration: underline;
}

.link-2 {
  color: #282828;
  font-size: 30px;
  text-decoration: none;
  transition: font-size .4s;
}

.link-2:hover {
  color: #f28f38;
  font-size: 33px;
}

@media screen and (max-width: 991px) {
  .image {
    width: 30%;
  }
}

@media screen and (max-width: 767px) {
  .image {
    width: 45%;
  }
}

@media screen and (max-width: 479px) {
  .text-block {
    font-size: 18px;
  }

  .heading-2 {
    font-size: 30px;
  }

  .heading-3 {
    max-width: 90%;
    font-size: 23px;
  }

  .link-2, .link-2:hover {
    font-size: 23px;
  }
}


