.website-coming-soon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -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-image: url('../images/EasySmile-BG.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.image {
  height: 400px;
}

.container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  -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;
}

.paragraph {
  font-family: 'Open Sans', sans-serif;
  color: #01375b;
  text-align: center;
}

.heading {
  font-family: 'Open Sans', sans-serif;
  color: #01375b;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 767px) {
  .website-coming-soon {
    height: 120vh;
  }
  .heading {
    font-size: 30px;
  }
}

@media (max-width: 479px) {
  .website-coming-soon {
    height: 100vh;
  }
  .image {
    height: 250px;
  }
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
  .heading {
    font-size: 28px;
  }
}