body {
    margin: 0;
    height: 100vh;
    overflow-x:hidden;
    overflow-y: hidden;
    margin-right: calc(-1 * (100vw - 100%));
    background-color: #ffffff;
    color: #2E3192;
    font-family: "arial",sans-serif;
    font-weight: 700;
}
h1{
  font-size: 5vw;
  text-transform: capitalize;
  line-height: 1.2;
  letter-spacing: 1px;
}
a{
  text-decoration: none;
  text-transform: none;
  color: inherit;
  font-size: 1.51vw;
  line-height: 1.5;
  display: block;
}


#coming_soon{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#coming_soon .left{
  flex-basis: 45%;
  width:45%;
  box-sizing: border-box;
  padding: 3.91vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#coming_soon .left .logo img{
  display: block;
  margin: auto;
  margin-left: 0px;
  max-width: 270px;
}
.info{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#coming_soon .right{
  flex-basis: 55%;
  width: 45%;
  height: 100vh;
  background-position: center;
  background-repeat:no-repeat;
  background-size: cover;
}


/*Media Quries*/
@media(max-width:1024px){
  #coming_soon .left .logo img{
    max-width: 200px;
  }
  a{
    font-size: 20px;
  }
  h1{
    font-size: 50px;
  }
  #coming_soon .left{
    flex-basis: 55%;
    width:55%;
  }
  #coming_soon .right{
    flex-basis: 45%;
    width:45%;
  }
}
@media(max-width:768px){
  #coming_soon .left .logo img{
    max-width: 180px;
    margin: auto;
  }
  #coming_soon{
    position: relative;
    text-align: center;
  }
  .info{
    flex-direction: column;
  }
  .info .address{
    margin-top: 30px;
  }
  #coming_soon .right{
    flex-basis: 100%;
    width:100%;
  }
  #coming_soon .left{
    flex-basis: 100%;
    width:100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color:#ffffffde;
    z-index: 1;
    padding: 80px 3.91vw;
  }
  a{
    font-size: 18px;
    line-height: 1.3;
  }
  h1{
    font-size: 40px;
  }
}
