/* google font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::after,
*::before {
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

body {
    font-family: 'Inter', sans-serif;
}

/* header section start */

.header-box {
    height: 100vh;
    width: 100%;
    background-color: #0F1116;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap-container {
    display: inline-block;
}

.top-img {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-img-one {
    width: 178.08px;
}

.top-img-two {
    width: 223px;
}

.logo {
    transform: translateY(-40px);
    text-align: center;
}

.logo img {
    width: 365.45px;
}

.time-counter {
    padding: 50px 0;
}

.time-counter ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.time-counter ul li {
    color: #80ED99;
}

.time-counter ul li {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    text-align: center;
}

.time-counter ul li span {
    padding-bottom: 8px;
}

.sub-form {
    height: 46px;
    width: 713px;
    position: relative;
}

.form-input {
    height: 46px;
    width: 713px;
    position: absolute;
}

.form-input input {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    border-bottom: 1px solid #495267;
    padding: 0 28px 28px 28px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.form-input input:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid #fff;
}

.form-input input::placeholder {
    font-size: 18px;
    font-weight: 500;
    color: #495267;
}

.form-input button {
    position: absolute;
    right: 28px;
    top: 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #57CC99;
    cursor: pointer;
    transition: all .4s;
}

.form-input button:hover {
    color: #38A3A5;
}

.social-media {
    padding-top: 100px;
}

.social-media ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-media ul li a {
    font-size: 20px;
    color: #fff;
}

.social-media ul li a:hover {
    color: #80ED99;
}

.notify-box {
    position: absolute;
    bottom: -48px;
    left: 0;
    height: 40px;
    width: 80%;
}

.notify-box div {
    color: #fff;
    font-size: 14px;
}

.notify-box a {
    color: #fff;
    text-decoration: underline;
}

/*
========================
All device responsive
========================
*/

@media (min-width: 1367px) and (max-width: 1600px) {
    .top-img-one {
        width: 130px;
    }

    .top-img-two {
        width: 160px;
    }

    .logo img {
        width: 310px;
    }

    .time-counter {
        padding: 20px 0px 50px 0;
    }
}


@media (min-width: 800px) and (max-width: 1366px) {
    .top-img-one {
        width: 100px;
    }

    .top-img-two {
        width: 130px;
    }

    .logo img {
        width: 260px;
    }

    .time-counter {
        padding: 20px 0px 50px 0;
    }

    .time-counter ul li {
        font-size: 12px;
    }

    .sub-form {
        width: 630px;
    }

    .form-input {
        width: 630px;
    }

    .form-input input::placeholder,
    .form-input input,
    .form-input button {
        font-size: 12px;
    }

    .form-input input,
    .form-input {
        height: 40px;
    }

    .form-input input {
        padding: 0 18px 18px 18px;
    }

    .social-media {
        padding-top: 70px;
    }

    .social-media ul li a {
        font-size: 14px;
    }
}

@media screen and (max-width: 800px) {
    .top-img-one {
        width: 80px;
    }

    .top-img-two {
        width: 100px;
    }

    .logo img {
        width: 200px;
    }

    .time-counter {
        padding: 20px 0px 50px 0;
    }

    .time-counter ul li {
        font-size: 12px;
    }

    .sub-form {
        width: 100%;
    }

    .form-input {
        width: 100%;
    }

    .form-input input::placeholder,
    .form-input input,
    .form-input button {
        font-size: 12px;
    }

    .form-input button {
        right: 18px;
        top: 4px;
    }

    .form-input input,
    .form-input {
        height: 40px;
    }

    .form-input input {
        padding: 0 135px 18px 18px;
    }

    .social-media {
        padding-top: 44%;
    }

    .social-media ul li a {
        font-size: 14px;
    }

    .wrap-container {
        width: 90%;
    }
}