.contact-block {
  background: #fff;
  height: 500px;
}

.contact-block-2 {
  background: #5abcd3;
  height: 500px;
}

.colour-block {
  height: 30%;
  width: 100%;
  top: 35%;
  background: #5abcd3;
  position: relative;
}

.contact-container {
  background: #fff;
  width: 70%;
  height: 50%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: block;
  top: -5%;
  border: 1px solid #5abcd3;
  border-radius: 25px;
  box-shadow: 0px 0px 10px 0px;
}

.info {
  position: absolute;
  padding: 30px;
  width: 40%;
}

.contact-img {
  position: absolute;
  right: 0;
  height: 100%;
}

.puppy {
  height: inherit;
}

.footer {
  width: 100%;
  background: #5c5c5c;
  color: #f2f2f2;
  padding: 10px 0px 10px 0px;
  font-size: 12px;
}

@media (max-width:1100px) {
  .contact-container {
    width: 70%;
  }
  .info {
    width: 30%;
  }
  .contact-img {
    clip: rect(0px, 400px, 300px, 150px);
  }
}

@media (max-width:700px) {
  .info {
    width: 100%;
  }

  .puppy {
    display: none;
  }

}