@import url("https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800&amp;display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: "Hind", sans-serif;
}
@font-face {
  font-family: AgencyFb;
  src: url(fonts/AGENCYB.TTF);
}

a {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover, a:focus {
  text-decoration: none;
}

p:last-child {
  margin-bottom: 0;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: AgencyFb;
  color: #000000;
}

img {
  max-width: 100%;
}

/*================================================
Navbar CSS
=================================================*/
.navbar-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 99;
  padding-top: 30px;
}

.navbar-menu {
  text-align: right;
}

.navbar-menu .logo {
  text-align: left;
}

.navbar-menu .logo a {
  display: inline-block;
}

.navbar-menu .burger-menu {
  width: 35px;
  height: auto;
  background-color: transparent;
  margin-left: auto;
  cursor: pointer;
}

.navbar-menu .burger-menu span {
  display: block;
  width: 35px;
  height: 3px;
  background: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 30px;
  margin-left: auto;
  margin-bottom: 4px;
}

.navbar-menu .burger-menu span:nth-child(3) {
  margin-bottom: 0;
  width: 28px;
  margin-left: auto;
}

.navbar-menu .burger-menu:hover span:nth-child(3) {
  width: 35px;
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  background-image: url(../img/main-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.coming-soon-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000000;
  opacity: .60;
}

.coming-soon-content {
  margin-top: 15px;
}

.coming-soon-content h5 {
  display: block;
  color: #ff5e14;
  margin-bottom: 5px;
  line-height: initial;
  font-size: 25px;
  font-weight: 600;
  font-family: "Dosis", sans-serif;
}

.coming-soon-content h1 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
}

.coming-soon-content p {
  color: #d2d2d2;
  /*max-width: 600px;*/
  line-height: 1.7;
  margin-bottom: 0;
}

.coming-soon-content #timer {
  margin-top: 25px;
  margin-bottom: 35px;
}

.coming-soon-content #timer div {
  display: inline-block;
  color: #ff5e14;
  margin-right: 40px;
  font-size: 55px;
  font-weight: 700;
}

.coming-soon-content #timer div span {
  color: #ffffff;
  display: inline-block;
  margin-left: 5px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: normal;
  font-family: "Dosis", sans-serif;
}

.coming-soon-content #timer div:last-child {
  margin-right: 0;
}

.coming-soon-content .notify-btn {
  padding: 0;
  background-color: transparent;
  outline: 0;
  border: none;
  display: inline-block;
  font-size: 17px;
  color: #ffffff;
  position: relative;
}
.coming-soon-content .notify-btn a{
  color: white;
}

.coming-soon-content .notify-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content .notify-btn:hover {
  color: orange;
}
.coming-soon-content .notify-btn a:hover {
  color: orange;
}

.coming-soon-content .notify-btn:hover::before {
  width: 100%;
}

.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: auto;
  width: 100vw;
  z-index: -1;
}

.lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lines .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, #ff5e14), to(#ff5e14));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ff5e14 75%, #ff5e14 100%);
  -webkit-animation: run 7s 0s infinite;
          animation: run 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
          animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.lines .line:nth-child(1) {
  margin-left: -45%;
}

.lines .line:nth-child(1)::after {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.lines .line:nth-child(3) {
  margin-left: 45%;
}

.lines .line:nth-child(3)::after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.lines .line:nth-child(4) {
  margin-left: 40%;
}

.lines .line:nth-child(4)::after {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.lines .line:nth-child(5) {
  margin-left: -40%;
}

.lines .line:nth-child(5)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.lines .line:nth-child(6) {
  margin-left: 35%;
}

.lines .line:nth-child(6)::after {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.lines .line:nth-child(7) {
  margin-left: -35%;
}

.lines .line:nth-child(7)::after {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.lines .line:nth-child(8) {
  margin-left: 30%;
}

.lines .line:nth-child(8)::after {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.lines .line:nth-child(9) {
  margin-left: -30%;
}

.lines .line:nth-child(9)::after {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.lines .line:nth-child(10) {
  margin-left: 25%;
}

.lines .line:nth-child(10)::after {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.lines .line:nth-child(11) {
  margin-left: -25%;
}

.lines .line:nth-child(11)::after {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.lines .line:nth-child(12) {
  margin-left: 20%;
}

.lines .line:nth-child(12)::after {
  -webkit-animation-delay: 5.5s;
          animation-delay: 5.5s;
}

.lines .line:nth-child(13) {
  margin-left: -20%;
}

.lines .line:nth-child(13)::after {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

.lines .line:nth-child(14) {
  margin-left: 15%;
}

.lines .line:nth-child(14)::after {
  -webkit-animation-delay: 6.5s;
          animation-delay: 6.5s;
}

.lines .line:nth-child(15) {
  margin-left: -15%;
}

.lines .line:nth-child(15)::after {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.lines .line:nth-child(16) {
  margin-left: 10%;
}

.lines .line:nth-child(16)::after {
  -webkit-animation-delay: 7.5s;
          animation-delay: 7.5s;
}

.lines .line:nth-child(17) {
  margin-left: -10%;
}

.lines .line:nth-child(17)::after {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.lines .line:nth-child(18) {
  margin-left: 5%;
}

.lines .line:nth-child(18)::after {
  -webkit-animation-delay: 8.5s;
          animation-delay: 8.5s;
}

.lines .line:nth-child(19) {
  margin-left: -5%;
}

.lines .line:nth-child(19)::after {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

@-webkit-keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

@keyframes run {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

/*================================================
Footer CSS
=================================================*/
.footer-area {
  /*position: absolute;
  left: 0;
  bottom: 0; */
  width: 100%;
  height: auto;
  padding: 30px;
}

.footer-area p {
  color: #d6d1d1;
  font-size: 18px;
}

.footer-area p a {
  display: inline-block;
  color: #d6d1d1;
}

.footer-area p a:hover {
  color: #ff5e14;
}

.footer-area ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: right;
}

.footer-area ul li {
  display: inline-block;
  color: #ffffff;
}

.footer-area ul li span {
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
}

.footer-area ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #ffffff;
  border-radius: 50%;
  background-color: transparent;
  text-align: center;
  line-height: 30px;
  font-size: 12.5px;
  border: 1px solid #716f6f;
}

.footer-area ul li a:hover {
  background-color: #ff5e14;
  color: #ffffff;
  border-color: #ff5e14;
}
