@font-face {
  font-family: Poppins-Regular;
  src: url("fonts/Poppins-Regular.ttf");
}

@font-face {
  font-family: Poppins-Bold;
  src: url("fonts/Poppins-Bold.ttf");
}

@font-face {
  font-family: Aldrich-Regular;
  src: url("fonts/Aldrich-Regular.ttf");
}

*,
*:before,
*:after {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #666666;

  height: 100%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*---------------------------------------------*/
a:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
}

/* ------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}

/* ------------------------------------ */
input,
textarea,
label {
  display: block;
  outline: none;
  border: none;
}

/* ------------------------------------ */
button {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
button:focus {
  outline: none;
}

iframe {
  border: none;
}
.coming-wrap {
  position: relative;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  background-image: url("bg01.jpg");
}
.coming-wrap::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #30bab6;
  background: -webkit-linear-gradient(top, #009efd, #2af598);
  background: -o-linear-gradient(top, #009efd, #2af598);
  background: -moz-linear-gradient(top, #009efd, #2af598);
  background: linear-gradient(top, #009efd, #2af598);
  opacity: 0.8;
}

.coming-text-down {
  font-family: Poppins-Bold;
  font-size: 70px;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  padding-bottom: 45px;
}
.coming-text-up {
  font-family: Poppins-Regular;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  padding-bottom: 10px;
}
@media screen and (max-width:991px) {
    .coming-text-up {
        font-size: 25px;
    }
    .coming-text-down{
        font-size: 50px;
    }
}