.coming-soon-wrapper {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url('../images/1.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/1.jpg');
  background-position: 0px 0px, 0% 50%;
  background-size: auto, cover;
}

.wrapper {
  width: 500px;
  height: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.49);
  text-align: center;
}

.logo {
  height: 200px;
  background-image: url('../images/image002.jpg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

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

.heading {
  color: #022162;
}

.button {
  margin-top: 28px;
  border-radius: 2px;
  background-color: #022162;
}

.button:hover {
  background-color: rgba(2, 33, 98, 0.69);
}

.button._2 {
  margin-left: 11px;
  background-color: #f80000;
}

.button._2:hover {
  background-color: rgba(248, 0, 0, 0.7);
}

@media screen and (max-width: 479px) {
  .coming-soon-wrapper {
    background-position: 50% 50%;
  }
  .wrapper {
    width: 100%;
  }
}