.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  padding: 20px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f1f1f1;
}

.block.color1 {
  background-color: #99e0ff;
}

.block.color2 {
  background-color: #ff8686;
}

.block.color3 {
  background-color: #ffb760;
}

.block.contact {
  padding: 50px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading {
  padding-right: 10px;
  padding-left: 10px;
  font-family: 'Permanent Marker', sans-serif;
  color: #5f5f5f;
  font-size: 40px;
  line-height: 100px;
  font-weight: 400;
  text-shadow: 13px 15px 15px #e0e0e0;
}

.heading-2 {
  font-family: Roboto, sans-serif;
  color: #ffbdbd;
  font-size: 30px;
  text-transform: none;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.h1 {
  font-family: Roboto, sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.image {
  width: 20%;
}

.heading-3 {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: Roboto, sans-serif;
  color: #727272;
  font-size: 20px;
  line-height: 26px;
  font-weight: 100;
}

.h2 {
  margin-top: 10px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
}

.link {
  color: #727272;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .block {
    width: 100%;
    height: 25%;
  }
}

@media screen and (max-width: 479px) {
  .block.contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .h1 {
    font-size: 20px;
  }

  .h3 {
    font-size: 16px;
  }

  .h2 {
    font-size: 20px;
  }
}

