/* Site designed by armedialabs. */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Archivo";
}

.container{
    width: 100vw;
    height: 100vh;
    background: url("images/bg_landscape.webp") center/cover;
    display: flex;
    overflow: hidden;
}

.left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-basis: 100%;
}

.logo{
    height: 300px;
}

.coming{
    color: #ebe2ce;
    font-size: 48px;
    margin-top: 75px;
}

.social{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* width: 300px; */
    margin-top: 75px;
}

.social img{
    height: 40px;
}

.right{
    display: flex;
    flex-basis: 100%;
    justify-content: end;
}

.logo-white{
    height: 150px;
    margin-right: 100px;
    margin-top: 100px;
}

@media only screen and (max-width: 992px) {
    .container {
      background: url("images/bg_portrait.webp") center/cover;
      flex-direction: column-reverse;
    }
    .logo{
        height: 240px;
        position: absolute;
        top: 100px;
    }
    .coming{
        font-size: 36px;
        margin-top: 20px;
        position: absolute;
        top: 360px;
    }
    .social{
        /* width: 200px; */
        position: absolute;
        bottom: 5vh;
    }
    .social img{
        height: 30px;
    }
    .right{
        flex-basis: auto;
    }
    .logo-white{
        height: 87.5px;
    }
  }

  @media only screen and (max-width: 576px) {
    .logo{
        height: 200px;
        top: 20vh;
    }
    .coming{
        font-size: 28px;
        top: 46vh;
    }
    .right{
        justify-content: center;
    }
    .logo-white{
        height: 75px;
        margin-right: 0;
        margin-top: 5vh;
    }
  }