@font-face {
    font-family: 'mynerve';
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Mynerve-Regular.ttf");
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-display: swap;
    src: url("../fonts/PlusJakartaSans-VariableFont_wght.ttf");
}
* {
    box-sizing: border-box;
}

/* coming soon page */
.coming-soon-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 10px 0px;
    .wrapper {
        width: 100%;
        max-width: 1000px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        .logo {
            max-width: 270px;
            img {
                width: 100%;
            }
        }
        .title {
            text-align: center;
            h1{
                font-size: 120px;
                font-weight: 500;
                font-family: "Plus Jakarta Sans";
                margin: 12px 0px 15px;
                position: relative;
                color: #000000;
                span {
                    font-size: 44px;
                    font-weight: 400;
                    font-family: "mynerve";
                    position: absolute;
                    bottom: -20px;
                    right: -5%;
                }
                &::before {
                    content: '';
                    position: absolute;
                    height: 35px;
                    width: 35px;
                    background-image: url("../images/eye.png");
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: contain;
                    right: 21%;
                    top: 50%;
                }
                &::after {
                    content: '';
                    position: absolute;
                    height: 35px;
                    width: 35px;
                    background-image: url("../images/eye.png");
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: contain;
                    right: 13%;
                    top: 50%;
                }
            }
            p {
                font-size: 25px;
                font-weight: 400;
                font-family: "Plus Jakarta Sans",sans-serif;
                color: #3F454C;
                margin: 15px 0px 30px;
            }
        }
        form {
            width: 60%;
            .email {
                padding: 15px 50px 15px 30px;
                border: 0px;
                border-radius: 30px;
                box-shadow: 0px 5px 2px -2px #00000030;
                margin-right: 22px;
                width: 60%;
                font-size: 18px;
                font-weight: 400;
            }
            button{
                background-color: #41464A;
                color: #ffffff;
                padding: 15px 50px;
                font-size: 16px;
                font-weight: 500;
                border: 0px;
                border-radius: 40px;
                box-shadow: 0px 5px 2px -2px #00000030;
                cursor: pointer;
                transition: all .5s;
                &:hover {
                    background-color: #000000;
                }
            }
        }
    }
}
.fix-image {
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: -1;
}
.image-mobile {
    display: none;
}
/* media query */
@media (max-width: 1150px) {
    .coming-soon-main {
        .wrapper {
            .title {
                h1 {
                    font-size: 90px;
                    span {
                        bottom: -30px;
                        right: 5%;
                    }
                    &::before{
                        height: 28px;
                        width: 28px;
                        right: 28.2%;
                        top: 48%;
                    }
                    &::after{
                        height: 28px;
                        width: 28px;
                        right: 22.4%;
                        top: 48%;
                    }
                }
                p {
                    font-size: 20px;
                }
            }
            form {
                button {
                    font-size: 14px;
                }
            }
        }
    }
}

@media (max-width: 991px) {
    .coming-soon-main {
        .wrapper {
            max-width: 700px;
            .title {
                h1 {
                    font-size: 80px;
                    span {
                        right: -3%;
                        font-size: 30px;
                        bottom: -15px;
                    }
                    &::before{
                        height: 25px;
                        width: 25px;
                        right: 22.4%;
                    }
                    &::after{
                        height: 25px;
                        width: 25px;
                        right: 15%;
                    }
                }
                p {
                    font-size: 18px;
                }
            }
            form {
                width: 70%;
                .email {
                    font-size: 13px;
                }
            }
        }
    }
}

@media (max-width: 767px) {
    .coming-soon-main {
        .wrapper {
            max-width: 480px;
            .logo {
                max-width: 150px;
            }
            .title {
                h1 {
                    font-size: 50px;
                    span {
                        right: 5%;
                        font-size: 25px;
                        bottom: -20px;
                    }
                    &::before{
                        height: 15px;
                        width: 15px;
                        right: 24.8%;
                        top: 50%;
                    }
                    &::after{
                        height: 15px;
                        width: 15px;
                        right: 18.1%;
                        top: 50%;
                    }
                }
                p {
                    font-size: 16px;
                }
            }
            form {
                width: 90%;
                .email {
                    padding: 15px 30px 15px 20px;
                }
                button {
                    padding: 15px 30px;
                }
            }
        }
    }
}

@media (max-width: 500px) {
    .coming-soon-main {
        .wrapper {
            max-width: 300px;
            .logo {
                max-width: 120px;
            }
            .title {
                h1 {
                    font-size: 30px;
                    span {
                        font-size: 15px;
                        bottom: -15px;
                    }
                    &::before{
                        height: 8px;
                        width: 8px;
                        right: 26%;
                    }
                    &::after{
                        height: 8px;
                        width: 8px;
                        right: 19.5%;
                    }
                }
                p {
                    font-size: 13px;
                }
            }
            form {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 15px;

                .email {
                    padding: 10px 20px 10px 10px;
                    margin-right: 0px;
                    width: 100%;
                }
                button {
                    padding: 10px 20px;
                    font-size: 12px;
                    width: max-content;
                }
            }
        }
    }
    .image-desktop {
        display: none;
    }
    .image-mobile {
        display: block;
    }
}

@media (min-height: 800px) {
    .coming-soon-main {
        padding-top: 100px;
    }
}