.div-block {
  width: 100vw;
  height: 100vh;
  background-color: #68a142;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.div-block-2 {
  width: 50%;
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px;
  display: flex;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.image {
  width: 40%;
}

.body {
  font-family: Montserrat, sans-serif;
}

.heading {
  text-align: center;
  margin-top: 88px;
  font-weight: 500;
}

.text-block {
  text-align: center;
}

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

@media screen and (max-width: 767px) {
  .div-block-2 {
    width: 70%;
  }
}

@media screen and (max-width: 479px) {
  .div-block-2 {
    padding: 39px;
  }

  .image {
    width: auto;
  }

  .heading {
    margin-top: 60px;
    font-size: 16px;
    line-height: 25px;
  }

  .text-block {
    font-size: 12px;
  }
}
