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

body {
    background: #c3ddf2 url(../images/body-bg.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.coming-soon-wrapper {
    width: 100vw;
    height: 100%;
    padding: 4% 8%;
    position: relative;
    display: flex;
    align-items: center;
}

.coming-soon-wrapper .container {
    max-width: 1180px;
}

.coming-soon-wrapper .container>.logo {
    margin:40px 0;
}

.launch-content-wrapper {
    display: flex;
    align-items: center;
}

.content {
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%); */
    color: #000;
}

.content p {
    font-size: 24px;
    margin: 0;
    margin-bottom: 16px;
    line-height: 1.7;
}
.content p.light{
    font-size: 20px;
    color: #222;
}

.content h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    color: #444;
    margin-bottom: 24px;
}

.content h1>span {
    color: #0f8964;
    font-weight: 900;
}

.launch-time {
    display: flex;
    gap: 16px;
}

.launch-time>div {
    flex-basis: 130px;
    background-color: #fff;
    padding: 24px;
    text-align: center;
    -webkit-box-shadow: 0 0 16px 0 #a1a1a13e;
    box-shadow: 0 0 16px 0 #a1a1a13e;
    border-radius: 4px;
}

.launch-time>div p {
    font-size: 48px;
    font-weight: 400;
    margin: 16px 0;
}

.launch-time>div>span {
    font-size: 16px;
}

.launch-content-wrapper>.content {
    width: 60%;
    position: relative;
    z-index: 1;
}

.launch-content-wrapper>.rocket-container {
    width: 40%;
}

@media screen and (max-width:1200px) {}

@media screen and (max-width:1024px) {
    .coming-soon-wrapper {
        padding: 0;
    }
    .launch-content-wrapper {
        flex-wrap: wrap;
    }
    .launch-content-wrapper>.content {
        width: 100%;
    }
    .launch-content-wrapper>.rocket-container {
        width:100%;
    }
}
@media screen and (max-width:778px) {
    .coming-soon-wrapper {
        height: auto;
    }
}


/* form */

.form-container {
    position: relative;
    margin-top: 40px;
    padding-bottom:40px;
}

.form-container p {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}
.form-container p.light-txt {
    color:#585757;
}

.form-container .input-row {
    display: flex;
    position: relative;
    width: 480px;
    align-items: center;
}

.form-container .input-row>input {
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 16px;
    outline: 0;
}

.form-container .input-row>input[type="email"] {
    width: 480px;
    height: 48px;
    padding-right: 130px;
    border: 1px solid #89c4b2;
}

.form-container .input-row>input.btn-submit {
    position: absolute;
    right: 4px;
    padding: 8px 24px;
    background: #239065 !important;
}

.form-feedback-error {
    color: #e80e19;
    width: 100%;
    display: none;
    border: none;
    margin-top: 4px
}
@media screen and (max-width:550px) {
    .content h1 {
        font-size: 48px;
    }
    .launch-time {
        gap:8px;
    }
    .launch-time>div {
        flex:1;
        padding: 8px 16px;
    }
    .launch-time>div p {
        font-size: 32px;
    }
    .form-container .input-row {
        width: 100%;
    }
    .form-container .input-row>input[type="email"]{
        width: 100%;
    }
}

/* rocket style */
.rocket-container {
    position: relative;
}

.rocket {
    position: relative;
    top: -30%;
    transform: translateY(-30%);
    width: 80px;
    margin: 0 auto;
    margin-bottom: 30%;
    margin-top: -30%;
}
@media screen and (max-width:1024px) {
    .rocket {
        position: fixed;
        right: 14%;
        top: 80%;
    }
}
.rocket .rocket-body {
    width: 80px;
    left: calc(50% - 50px);
    animation: bounce 0.5s infinite;
}

.rocket .rocket-body .body {
    background-color: #dadada;
    height: 180px;
    left: calc(50% - 50px);
    border-top-right-radius: 100%;
    border-top-left-radius: 100%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top: 5px solid #f5f5f5;
}

.rocket .rocket-body:before {
    content: "";
    position: absolute;
    left: calc(50% - 24px);
    width: 48px;
    height: 13px;
    background-color: #554842;
    bottom: -13px;
    border-bottom-right-radius: 60%;
    border-bottom-left-radius: 60%;
}

.rocket .window {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #3a3a3a;
    left: calc(50% - 20px);
    top: 40px;
    border: 5px solid #b4b2b2;
}

.rocket .fin {
    position: absolute;
    z-index: -100;
    height: 55px;
    width: 50px;
    background-color: #3a3a3a;
}

.rocket .fin-left {
    left: -30px;
    top: calc(100% - 55px);
    border-top-left-radius: 80%;
    border-bottom-left-radius: 20%;
}

.rocket .fin-right {
    right: -30px;
    top: calc(100% - 55px);
    border-top-right-radius: 80%;
    border-bottom-right-radius: 20%;
}

.rocket .exhaust-flame {
    position: absolute;
    top: 90%;
    width: 28px;
    background: linear-gradient(to bottom, transparent 10%, #f5f5f5 100%);
    height: 150px;
    left: calc(50% - 14px);
    animation: exhaust 0.2s infinite;
}

.rocket .exhaust-fumes li {
    width: 60px;
    height: 60px;
    background-color: #f5f5f5;
    list-style: none;
    position: absolute;
    border-radius: 100%;
}

.rocket .exhaust-fumes li:first-child {
    width: 200px;
    height: 200px;
    bottom: -300px;
    animation: fumes 5s infinite;
}

.rocket .exhaust-fumes li:nth-child(2) {
    width: 150px;
    height: 150px;
    left: -120px;
    top: 260px;
    animation: fumes 3.2s infinite;
}

.rocket .exhaust-fumes li:nth-child(3) {
    width: 120px;
    height: 120px;
    left: -40px;
    top: 330px;
    animation: fumes 3s 1s infinite;
}

.rocket .exhaust-fumes li:nth-child(4) {
    width: 100px;
    height: 100px;
    left: -170px;
    animation: fumes 4s 2s infinite;
    top: 380px;
}

.rocket .exhaust-fumes li:nth-child(5) {
    width: 130px;
    height: 130px;
    left: -120px;
    top: 350px;
    animation: fumes 5s infinite;
}

.rocket .exhaust-fumes li:nth-child(6) {
    width: 200px;
    height: 200px;
    left: -60px;
    top: 280px;
    animation: fumes2 10s infinite;
}

.rocket .exhaust-fumes li:nth-child(7) {
    width: 100px;
    height: 100px;
    left: -100px;
    top: 320px;
}

.rocket .exhaust-fumes li:nth-child(8) {
    width: 110px;
    height: 110px;
    left: 70px;
    top: 340px;
}

.rocket .exhaust-fumes li:nth-child(9) {
    width: 90px;
    height: 90px;
    left: 200px;
    top: 380px;
    animation: fumes 20s infinite;
}

.star li {
    list-style: none;
    position: absolute;
}

.star li:before,
.star li:after {
    content: "";
    position: absolute;
    background-color: #f5f5f5;
}

.star li:before {
    width: 10px;
    height: 2px;
    border-radius: 50%;
}

.star li:after {
    height: 8px;
    width: 2px;
    left: 4px;
    top: -3px;
}

.star li:first-child {
    top: -30px;
    left: -210px;
    animation: twinkle 0.4s infinite;
}

.star li:nth-child(2) {
    top: 0;
    left: 60px;
    animation: twinkle 0.5s infinite;
}

.star li:nth-child(2):before {
    height: 1px;
    width: 5px;
}

.star li:nth-child(2):after {
    width: 1px;
    height: 5px;
    top: -2px;
    left: 2px;
}

.star li:nth-child(3) {
    left: 120px;
    top: 220px;
    animation: twinkle 1s infinite;
}

.star li:nth-child(4) {
    left: -100px;
    top: 200px;
    animation: twinkle 0.5s ease infinite;
}

.star li:nth-child(5) {
    left: 170px;
    top: 100px;
    animation: twinkle 0.4s ease infinite;
}

.star li:nth-child(6) {
    top: 87px;
    left: -79px;
    animation: twinkle 0.2s infinite;
}

.star li:nth-child(6):before {
    height: 1px;
    width: 5px;
}

.star li:nth-child(6):after {
    width: 1px;
    height: 5px;
    top: -2px;
    left: 2px;
}
#thanks {display:none;}
.thanks-content {display:inline-flex;gap:20px;align-items:center;padding:12px 32px;background-color:#fff;border-radius:40px;border:1px solid #89c4b2;}
.thanks-content h6 {color:#0aab58;}
.thanks-content p {margin:0 !important;font-size:14px;}
@keyframes fumes {
    50% {
        transform: scale(1.5);
        background-color: transparent;
    }

    51% {
        transform: scale(0.8);
    }

    100% {
        background-color: #f5f5f5;
        transform: scale(1);
    }
}

@keyframes bounce {
    0% {
        transform: translate3d(0px, 0px, 0);
    }

    50% {
        transform: translate3d(0px, -4px, 0);
    }

    100% {
        transform: translate3d(0px, 0px, 0);
    }
}

@keyframes exhaust {
    0% {
        background: linear-gradient(to bottom, transparent 10%, #f5f5f5 100%);
    }

    50% {
        background: linear-gradient(to bottom, transparent 8%, #f5f5f5 100%);
    }

    75% {
        background: linear-gradient(to bottom, transparent 12%, #f5f5f5 100%);
    }
}

@keyframes fumes2 {
    50% {
        transform: scale(1.1);
    }
}

@keyframes twinkle {
    80% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}
.idlePopup-parent {display: none !important;}
/* rocket style end */