html,
body {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(../img/bg-img.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Mulish", serif;
    font-optical-sizing: auto;
    font-style: normal;
    position: relative;
}

.container {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.full-height {
    height: calc(var(--vh, 1vh) * 100);
}

.glass-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ns_commingsoon {
    background: rgb(255 255 255 / 1%);
    backdrop-filter: blur(10px);
    padding: 80px 40px 100px;
    text-align: center;
    box-shadow: -5px 15px 20px 5px #0808083d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 485px;
    width: 100%;
}

.logo {
    display: block;
    text-align: center;
    margin: 0 0 30px;
    max-width: 250px;
}

.ns_logo {
    display: block;
    width: 100%;
}

.text-wrap {
    color: #323956;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 7px;
}

.text-wrap p {
    margin: 0;
}

.text-wrap p.strong {
    color: #e64f14;
    font-size: 2.3em;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.social-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    max-width: 50px;
    width: 100%;
    position: absolute;
    bottom: 35px;
}

.social-icon .icon {
    max-width: calc(25px - 5px);
}

#countdown-container {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 200;
    color: #323956;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

#countdown-container div {
    margin: 0 10px;
}

#countdown-container div:first-child {
    font-weight: 700;
    margin-left: 0;
}

#countdown-container div:last-child {
    margin-right: 0;
}

#countdown-container span {
    display: block;
    font-size: 0.4em;
}

.footer-section {
    display: block;
    position: absolute;
    bottom: 20px;
    font-size: 10px;
}

@media(max-width: 767px) {
    .logo {
        margin: 30px 0px;
        width: 80%;
    }
    .text-wrap p.strong {
        font-size: 23px;
        margin-bottom: 0;
    }
    .ns_commingsoon {
        padding: 50px 20px 90px;
    }
}