body {
	position: relative;
	background: #222;
    font-family: "Open Sans", sans-serif;
}
.lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  margin: auto;
  width: 99.9%;
}
.lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.1);
  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%, #ffffff), to(#ffffff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 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: -10%;
}
.lines .line:nth-child(2) {
  margin-left: -20%;
}
.lines .line:nth-child(3) {
  margin-left: -30%;
}
.lines .line:nth-child(4) {
  margin-left: -40%;
}
.lines .line:nth-child(5) {
  margin-left: -50%;
}
.lines .line:nth-child(6) {
  margin-left: 10%;
}
.lines .line:nth-child(7) {
  margin-left: 20%;
}
.lines .line:nth-child(8) {
  margin-left: 30%;
}
.lines .line:nth-child(9) {
  margin-left: 40%;
}
.lines .line:nth-child(10) {
  margin-left: 49.9%;
}

.lines .line:nth-child(1)::after {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.lines .line:nth-child(2)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.lines .line:nth-child(3)::after {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.lines .line:nth-child(4)::after {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.lines .line:nth-child(5)::after {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.lines .line:nth-child(6)::after {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.lines .line:nth-child(7)::after {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.lines .line:nth-child(8)::after {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}
.lines .line:nth-child(9)::after {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.lines .line:nth-child(10)::after {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}



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

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

/* =============== coming soon code here =============== */

.top-box{
    height: 100vh;
}

.coming-soon{
    height: 100%;
    display: grid;
    place-items: center;
}

.coming-soon .box{
    background: rgba(255,255,255,.05);
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
}

.coming-soon .left .image{
    height: 100%;
    width: 100%;
}

.coming-soon .left .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.coming-soon .right{
    padding: 30px 10px;
}

.coming-soon .right .logo{
  width: 200px;
    /* width: 150px; */
    /* height: 150px; */
    /* border-radius: 50%; */
    overflow: hidden;
    margin: auto;
}

.coming-soon .right .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-soon .right h1{
    color: white;
    font-weight: 900;
    font-size: clamp(90px, 8vw, 150px);
    letter-spacing: 5px;
    background: linear-gradient(90deg, #ff0000, #ff7300, #ffeb00, #00ff00, #00c3ff, #ff00ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 10s infinite linear;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.coming-soon .right h1 span img{
    height: 110px;
    border-radius: 50%;
    margin: 0px 7px;
    margin-top: -20px;
}

.coming-soon .right h1.second{
    margin-top: -30px;
}

.coming-soon .right h3{
    display: inline-block;
    padding: 10px 30px;
    border-radius: 12px;
    margin: auto;
    margin-top: 20px;
    background-color: white;
    color: black;
    font-weight: 600;
}

.coming-soon .right .contact{
    margin-top: 20px;
}

.coming-soon .right .contact p{
    font-weight: 600;
    color: white;
    font-size: 22px;
}

.coming-soon .right .contact p a{
    text-decoration: none;
    color: white;
    transition: 300ms;
}

.coming-soon .right .contact p a:hover{
    text-decoration: underline;
    color: #ffeb00;
}





/* ================== Media Query Here ================= */

@media (max-width:1200px){

    .coming-soon .right h1 span img{
        height: 90px;
    }
    
    .coming-soon .right h1.second{
        margin-top: -20px;
    }
    
}

@media (max-width:768px){

    .coming-soon .right .logo{
        width: 140px;
        height: 120px;
    }

    .coming-soon .right h1{
        font-size: 70px;
    }

    .coming-soon .right h1 span img{
        height: 70px;
        margin-top: -15px;
    }

    .coming-soon .right h1.second{
        margin-top: -10px;
    }

    .coming-soon .right h3{
        font-size: 22px;
    }

    .coming-soon .right .contact p{
        font-size: 20px;
    }
    
}

@media (max-width:620px){
    
    .coming-soon .right h1{
        font-size: 60px;
    }

}

@media(max-width:575.5px){

    .coming-soon .left .image{
        height: 200px;
    }

    .coming-soon .left .image img{
        object-position: center 80%;
    }

}

@media (max-width:450px){

    .coming-soon .left .image{
        height: 160px;
    }

    .coming-soon .right h1 span img{
        height: 60px;
        margin-top: -10px;
    }

    .coming-soon .right h3{
        font-size: 20px;
        padding: 7px 20px;
        margin-top: 10px;
    }

    .coming-soon .right .contact p{
        font-size: 18px;
    }

}

@media (max-width:380px){

    .coming-soon .right .logo{
        width: 120px;
        height: 100px;
    }

    .coming-soon .right h1{
        font-size: 50px;
    }

}